main 11f27c671cba cached
36 files
1.5 MB
491.4k tokens
196 symbols
1 requests
Download .txt
Showing preview only (1,531K chars total). Download the full file or copy to clipboard to get everything.
Repository: 0x192/universal-android-debloater
Branch: main
Commit: 11f27c671cba
Files: 36
Total size: 1.5 MB

Directory structure:
gitextract__90_xxjy/

├── .cargo/
│   └── config
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── add-new-package-s-.md
│   │   ├── bug_report.md
│   │   ├── debloat-issue-report.md
│   │   ├── feature_request.md
│   │   └── update-apps-description-or-recommendation.md
│   ├── release.yml
│   └── workflows/
│       ├── build_artifacts.yml
│       ├── ci.yml
│       └── release.yml
├── .gitignore
├── CHANGELOG.md
├── Cargo.toml
├── LICENSE
├── README.md
├── resources/
│   └── assets/
│       ├── icons.json
│       └── uad_lists.json
└── src/
    ├── core/
    │   ├── config.rs
    │   ├── mod.rs
    │   ├── save.rs
    │   ├── sync.rs
    │   ├── theme.rs
    │   ├── uad_lists.rs
    │   ├── update.rs
    │   └── utils.rs
    ├── gui/
    │   ├── mod.rs
    │   ├── style.rs
    │   ├── views/
    │   │   ├── about.rs
    │   │   ├── list.rs
    │   │   ├── mod.rs
    │   │   └── settings.rs
    │   └── widgets/
    │       ├── mod.rs
    │       ├── modal.rs
    │       ├── navigation_menu.rs
    │       └── package_row.rs
    └── main.rs

================================================
FILE CONTENTS
================================================

================================================
FILE: .cargo/config
================================================
[target.x86_64-pc-windows-msvc]
rustflags = ["-C", "target-feature=+crt-static"]

[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]


================================================
FILE: .github/ISSUE_TEMPLATE/add-new-package-s-.md
================================================
---
name: Add new package(s)
about: You want to add new apps in the debloat list
title: ""
labels: package::addition
assignees: ""
---

**Your phone model:**

**Packages:**

```
com.this.is.a.bad.application
com.this.is.another.bad.application
...
```

- [ ] **I removed all those packages on my phone**
      If not why. Leave the brackets blank and explain why.

## Document each package the best you can

**List**: `Google`|`Misc`|`OEM` (manufacturer)|`AOSP`|`Pending`|`Carrier` (isp).

**Removal**: `Recommended`, `Advanced`, `Expert` (this can break important features),
or `Unsafe` (this can bootloop the phone or break extremely important features).

### \<package name\>

**List**: \<list\>
**Removal**: \<recommendation list\>

> Description. Link to its Playstore page if it exists.


================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: You have an issue with the UAD software itself
title: ""
labels: bug
assignees: ""
---

**Describe the bug**
A clear and concise description of what the bug is.

**Expected behavior**
A clear and concise description of what you expected to happen.

**You have a solution?**
What to do to fix the issue.

**UAD log**
Upload the logfile generated by UAD.


================================================
FILE: .github/ISSUE_TEMPLATE/debloat-issue-report.md
================================================
---
name: Debloat issue report
about: Your phone has unexpected issues after debloating
title: ""
labels: package::breakage
assignees: ""
---

**Your phone model**:

**Describe the issue**
A clear and concise description of what the problem is.

**You have a solution?**
What to do to fix the issue.

**UAD log**
Upload the logfile generated by UAD. It would be difficult to help you without it.


================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: You want a new feature
title: ""
labels: enhancement
assignees: ""
---

**Describe the feature you want**
A clear description of what you want to happen.


================================================
FILE: .github/ISSUE_TEMPLATE/update-apps-description-or-recommendation.md
================================================
---
name: Update apps description or recommendation
about: You want to improve/update a description/recommendation
title: ""
labels: package::documentation
assignees: ""
---

**Your phone model**:

**Packages documentation to update:**

```
com.this.is.a.application
com.this.is.another.application
...
```

## Documentation Change

**List**: `Google`|`Misc`|`OEM` (manufacturer)|`AOSP`|`Pending`|`Carrier` (isp).
**Removal**: `Recommended`, `Advanced`, `Expert` (this can break important features),
or `Unsafe` (this can bootloop the phone or break extremely important features).

### \<package name\>

**List**: \<current list\> :arrow_right: \<proposed list\>
**Removal**: \<current recommendation list\>
:arrow_right: \<proposed recommendation list\>

### Current description

> Current description

### Proposed description

> Proposed description


================================================
FILE: .github/release.yml
================================================
changelog:
  exclude:
    labels:
      - package::documentation
      - package::addition
      - package::breakage
      - package::bootloop
  categories:
    - title: Added
      labels:
        - feature
    - title: Changed
      labels:
        - enhancement
    - title: Fixed
      labels:
        - bug


================================================
FILE: .github/workflows/build_artifacts.yml
================================================
name: Build artifacts
on:
  workflow_dispatch:
  workflow_call:

jobs:
  build:
    name: Building ${{ matrix.build_target }} [${{ matrix.graphics }}] [${{ matrix.update_feature }}]
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        build_target: [linux, macos, windows]
        graphics: [glow, wgpu]
        update_feature: [self-update, no-self-update]
        exclude:
          - build_target: windows
            update_feature: no-self-update
        include:
          - build_target: linux
            os: ubuntu-latest
          - build_target: macos
            os: macos-latest
          - build_target: windows
            os: windows-latest
          - graphics: glow
            renderer: "-opengl"
          - graphics: wgpu
            renderer: "" # Vulkan but we don't want this in the binary filename
          - update_feature: self-update
            update_name: "" # we don't want this in the binary filename
          - update_feature: no-self-update
            update_name: "-noseflupdate"
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@stable
      - uses: rui314/setup-mold@v1 # faster linker
      - uses: actions/cache@v3
        with:
          path: |
            ~/.cargo/bin/
            ~/.cargo/registry/index/
            ~/.cargo/registry/cache/
            ~/.cargo/git/db/
            target
          key: ${{ runner.os }}-release-${{ hashFiles('**/Cargo.lock') }}
          restore-keys: ${{ runner.OS }}-release-
        if: matrix.os == 'ubuntu-latest'
      - name: Building
        run: cargo build --release --no-default-features --features ${{ matrix.graphics }},${{ matrix.update_feature }}
      - name: Creating ./bin directory
        run: mkdir -p bin
      - name: Renaming binaries [Windows]
        if: matrix.os == 'windows-latest'
        run: mv target/release/uad_gui.exe bin/uad_gui-${{ matrix.build_target }}${{ matrix.renderer }}.exe
      - name: Renaming binaries [Others]
        if: matrix.os != 'windows-latest'
        run: mv target/release/uad_gui bin/uad_gui${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }}
      - name: Tarball Linux/MacOS binary
        if: matrix.os != 'windows-latest'
        run: tar -czf bin/uad_gui${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }}{.tar.gz,}
      - name: Upload artifacts
        uses: actions/upload-artifact@v3
        with:
          name: uad_gui${{ matrix.update_name }}-${{ matrix.build_target }}${{ matrix.renderer }}
          path: bin/uad_gui-*


================================================
FILE: .github/workflows/ci.yml
================================================
name: Continuous Integration
on:
  push:
    paths:
      - "**.rs"
      - "Cargo.lock"
      - "Cargo.toml"
      - "**.json"
  pull_request:
    paths:
      - "**.rs"
      - "Cargo.lock"
      - "Cargo.toml"
      - "**.json"

jobs:
  lint:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macOS-latest]
        lint: [check, test, clippy, fmt]
        exclude: # https://github.com/community/community/discussions/7835
          - os: windows-latest
            lint: clippy
          - os: windows-latest
            lint: fmt
          - os: macOS-latest
            lint: clippy
          - os: macOS-latest
            lint: fmt
        include:
          - lint: check
            args: " --all-features"
          - lint: test
            args: ""
          - lint: clippy
            args: " --all --all-features -- -D warnings"
          - lint: fmt
            args: " --all -- --check"
    steps:
      - uses: actions/checkout@v3
      - uses: rui314/setup-mold@v1 # faster linker
      - uses: actions/cache@v3
        with:
          path: |
            ~/.cargo/bin/
            ~/.cargo/registry/index/
            ~/.cargo/registry/cache/
            ~/.cargo/git/db/
            target
          key: ${{ runner.os }}-${{ matrix.lint }}-${{ hashFiles('**/Cargo.lock') }}
          restore-keys: ${{ runner.OS }}-${{ matrix.lint }}-
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy,rustfmt
      - run: cargo ${{ matrix.lint }}${{ matrix.args }}


================================================
FILE: .github/workflows/release.yml
================================================
name: Build and release

on:
  push:
    branches:
      - main
    paths:
      - "**.rs"
      - "Cargo.lock"
      - "Cargo.toml"
    tags-ignore:
      - dev-build

env:
  dev_tag: dev-build

jobs:
  build:
    uses: ./.github/workflows/build_artifacts.yml
  release:
    runs-on: ubuntu-latest
    needs: build
    steps:
      - uses: actions/checkout@v3
      - name: Downloads artifacts
        uses: actions/download-artifact@v3
        with:
          path: bin
      - name: Create pre-release
        if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
        uses: softprops/action-gh-release@v1
        with:
          body_path: ${{ github.workspace }}/CHANGELOG.md
          files: bin/*/uad_gui-*
          prerelease: true
      # - name: Update dev-build tag
      #   if: ${{ github.event_name == 'push' }}
      #   run: |
      #     git tag -d ${{ env.dev_tag }} || true
      #     git push origin :refs/tags/${{ env.dev_tag }} || true
      #     git tag ${{ env.dev_tag }}
      #     git push origin ${{ env.dev_tag }}
      # - name: Create dev-build release
      #   if: ${{ github.event_name == 'push' }}
      #   uses: softprops/action-gh-release@v1
      #   with:
      #     generate_release_notes: true
      #     files: bin/*/uad_gui-*
      #     prerelease: true
      #     tag_name: ${{ env.dev_tag }}


================================================
FILE: .gitignore
================================================
debug/
target/
*.log


================================================
FILE: CHANGELOG.md
================================================
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

The sections should follow the order `Apps`, `Added`, `Changed`, `Fixed`, `Packaging`
and `Removed`.

## [0.6] - Unreleased

**WARNING: Settings specification has changed. Previous user settings will be erased**.

### Added
- [[#374](https://github.com/0x192/universal-android-debloater/pull/374)] **Device-specific persistent configuration:** Some settings are now device-specific which means you can maintain different settings across several devices.

- [[#447](https://github.com/0x192/universal-android-debloater/pull/447)] **Backup/Restore the state of a device:** Quick and easy way to save the state of all the system apps on a device and restore it.

- [[#450](https://github.com/0x192/universal-android-debloater/pull/450)] **Warn the user when a work profile is detected:** Displays a warning message when switching to a work profile user and displays unavailable work profile users in the settings.

### Changed
- [[#374](https://github.com/0x192/universal-android-debloater/pull/374)] ALL settings are now persistent.

### Fixed
- [[#448](https://github.com/0x192/universal-android-debloater/pull/448)] UAD crash when interacting with work profiles on recent phones.

### Removed
- The `Export current selection` button and the unintuitive auto import selection (see https://github.com/0x192/universal-android-debloater/issues/192) have been replaced by the new backup/restore system.

## [0.5.1] - 2022-07-03

Since `0.5.0`, all changes related to apps are available to users without downloading a new version of UAD as the software directly download the json debloat list from Github. These changes can be tracked in commits with `[Pkg]` in their name. [See the commits](https://github.com/0x192/universal-android-debloater/commits/main)

### Added
- [[#209](https://github.com/0x192/universal-android-debloater/issues/209)] Persistent highlighting when you click on a package

### Changed
- `neededBy` and `dependencies` field can now list multiple packages (feature not visible in the UI yet)

### Fixed
- [[#286](https://github.com/0x192/universal-android-debloater/issues/286)] UAD stuck on "Downloading UAD lists. Please wait" screen

## Packaging
- [[#256](https://github.com/0x192/universal-android-debloater/issues/256)] Fixed typo in the release name of the noseflupdate variation
- Bump dependencies

## [0.5.0] - 2022-04-03

### Apps

- [[#115](https://github.com/0x192/universal-android-debloater/issues/115)] Added `com.tblenovo.lenovotips` to the recommended list.
- [[#120](https://github.com/0x192/universal-android-debloater/pull/120)] Move Google keyboard to `Advanced` list (Default keyboards should not be in the `Recommended` list)
- [[#169](https://github.com/0x192/universal-android-debloater/issues/154) Move `com.android.htmlviewer` to the `Expert` list. Removing it bootloop the device on MIUI 12.5.4+.

Huge thanks to [@KarlRamstedt](https://github.com/KarlRamstedt) for their help in this major debloat list update:
- [[#122](https://github.com/0x192/universal-android-debloater/pull/122)] Added a bunch of new packages
- [[#122](https://github.com/0x192/universal-android-debloater/pull/122)] A lot of description updates and fixes
- [[#122](https://github.com/0x192/universal-android-debloater/pull/122) | [#138](https://github.com/0x192/universal-android-debloater/pull/138)] Big revision of the recommendations according to more consistent criteria ([see the wiki](https://github.com/0x192/universal-android-debloater/wiki/FAQ#how-are-the-recommendations-chosen))

### Added
- [[#68](https://github.com/0x192/universal-android-debloater/issue/68)] **Unselect all button**: Let's you unselect all the packages you see on screen (i.e in the current filtered list).
- [[#119](https://github.com/0x192/universal-android-debloater/issue/119)] **Reboot button**: Let's you quickly reboot the currently selected device.
- [[#110](https://github.com/0x192/universal-android-debloater/pull/110)] **Remote `uad_lists.json` download**: The debloat list is now directly fetched from the main branch of this repo when you launch UAD. This means there is no longer the need to release a new version of UAD for updating the debloat lists! :rocket:
- [[#121](https://github.com/0x192/universal-android-debloater/pull/121)] :arrows_counterclockwise: **UAD self-update**: UAD will now check at launch if there is a new version of itself and enable you to perform the update directly from the app! :rocket:

### Changed
- [[#165](https://github.com/0x192/universal-android-debloater/issues/165)] UAD now tries every 500ms (for 1min) to initiate an ADB connection until a device is found during the `FindingPhones` loading state.
- All the init process was reworked and a status message is displayed at each stage (`DownloadingList`, `FindingPhones`,`LoadingPackages`,`UpdatingUad` `Ready`) so you know what is happening.
- Minor UI changes

### Packaging
- Add a `no-self-update` build for MacOS and Linux. Useful if UAD is distributed into repositories. The update process will then be managed by a package manager.
- MacOS builds are now also be released as a compressed tarball (like for Linux). You won't need to manually add the executable permission anymore. ([more info](https://github.com/actions/upload-artifact/issues/38))
- Bump dependencies


## [0.4.1] - 2022-01-31

### Fixed
- Selection counter never decreasing.

## [0.4] - 2022-01-30

### Apps
- [[#92](https://github.com/0x192/universal-android-debloater/pull/92)] Added 3 Fairphone packages + 7 Qualcomm packages (thanks [@VeH-c](https://github.com/VeH-c))
- [[#87](https://github.com/0x192/universal-android-debloater/pull/87)] Added 2 Unihertz packages (thanks [@rar0ch](https://github.com/rar0ch))
- [[#52](https://github.com/0x192/universal-android-debloater/issues/52)] Added `uk.co.ee.myee` to the debloat lists  (thanks [@lawson58](https://github.com/lawson85)).
- [[#58](https://github.com/0x192/universal-android-debloater/issues/52)] Added `android` to the debloat lists with the tag `Unsafe`.
- Added 2 new Xiaomi packages to the `Recommended` list.
- Multiple package description improvement (thanks [@jonas-ott](https://github.com/jonas-ott) and [@felurx](https://github.com/felurx) for the help)
- Review of the package lists recommendations. The `Recommended` debloat list is now safer (less likely to remove something you'd want to keep).

### Added
- [[#49](https://github.com/0x192/universal-android-debloater/issues/49)] Multi-device support: You are now able to select a device among the list of all ADB connected devices/emulators.
- [[#44](https://github.com/0x192/universal-android-debloater/issues/44)] Persistent settings: Settings (only `theme` for now) are saved to a config file. Its location follows [the standards of the different OS](https://github.com/dirs-dev/dirs-rs#example).
- Links to the Github page, wiki, github issues and logfiles in the `About` page.

### Changed
- [[#65](https://github.com/0x192/universal-android-debloater/issues/65)] ADB commands now run in parallel and asynchronously! This means no more UI freeze when performing long/many actions! :rocket:
- UI now updates itself in real time when performing ADB actions (thanks to async & multithreading). Before, it waited for the end of all actions.
- Logfiles are now located in a more conventional place: [cache_dir](https://docs.rs/dirs/latest/dirs/).
- Previous logs are no longer overwritten. The logger now only appends to the current logfile of the day (UAD_%Y%m%d.log).
- Each new day the logger will create a new file on UAD launch.
- [[#78](https://github.com/0x192/universal-android-debloater/issues/78)] Disable mode is now only available on Android 6+ because the disable ADB commands do not work without root on older devices. The setting will be greyed-out for those devices.
- Minor light theme update


### Fixed
- [[#50](https://github.com/0x192/universal-android-debloater/issues/50)] Resync button flipping theme back to `Lupin`.
- [Regression ([048e7f](https://github.com/0x192/universal-android-debloater/commit/048e7fc8fd6d44b0e8ba933c289249366254a9cc))] Weird disabled/greyed action button with older devices (< Android 8.0). Package could be selected but no action was performed.
- [[#78](https://github.com/0x192/universal-android-debloater/issues/78)] Packages not being actually uninstalled on older devices (< Android 6.0). Without root we can only use `pm block`/`pm unblock` for Android KitKit (4.4) and `pm hide`/`pm unhide` on Android Lollipop (5.x).

### Packaging
- For Arch-based users, UAD is now available in the AUR: `universal-android-debloater-bin` (binary) and `universal-android-debloater` (from source)
- Bump dependencies


## [0.3] - 2021-10-10

### Added
- [[#16](https://github.com/0x192/universal-android-debloater/issues/16)] Multi-user support: You can now debloat/restore apps for any user of the phone (not only the primary user 0). 
   - `Multi user mode` setting (default to `on` for Android 5+) allowing to remove packages for all users ([a work profile is another user](https://developer.android.com/work/managed-profiles)) instead of only the selected user.
   - User switcher (picklist).
- [[#11](https://github.com/0x192/universal-android-debloater/issues/11)] New themes: light, dark and lupin. Lupin theme is now the new default theme. Themes can be changed from the settings.
- [[#40](https://github.com/0x192/universal-android-debloater/issues/40)] Description field scrollbar: you can now scroll long descriptions.

### Fixed
- [Regression] Unsafe packages can be deleted without enabling `expert mode`.
- The refresh button doesn't update settings when a (new) phone is connected.
- [Regression] Restore buttons are disabled when connecting an Android 8.0 phone.
- [[#17](https://github.com/0x192/universal-android-debloater/issues/17)] Refresh icon does not appear.

## [0.2.2] - 2021-09-30

### Fixed
- Crash when connecting a LG device (#33)

## [0.2.1] - 2021-09-28

### Added
- Software version in the navigation panel

### Packaging
- `wgpu` renderer is not the default renderer (you don't need to add `--features wgpu` if you want to build UAD with `wgpu`)

### Fixed
- [[#35](https://github.com/0x192/universal-android-debloater/issues/35)] Exported selection not found

## [0.2] - 2021-09-26

### Added
- [[#2](https://github.com/0x192/universal-android-debloater/issues/2)] UAD now comes with a logger. Debug information will be written to a `uad.log` file (Warning level log in *stdout*)
- [[#15](https://github.com/0x192/universal-android-debloater/issues/15)] Support for older phone (< Android 8.0):
- Disable mode in settings: clear and disable packages instead of uninstalling them (default for old phones because you can't restore uninstalled packages)
- [[#8](https://github.com/0x192/universal-android-debloater/issues/8)] Export your selection in the `uad_exported_selection.txt` file. Packages from this file (if found in the current directory) will be automatically selected upon the start of UAD (or after a refresh).

### Changed
- [[#25](https://github.com/0x192/universal-android-debloater/issues/25)] UAD will no longer crash at start if it doesn't find ADB but will display a useful error message
- [[#3](https://github.com/0x192/universal-android-debloater/issues/3)] Better handling of ADB errors
- Updated dependencies (compatibility with [Iced](https://github.com/iced-rs/iced) main branch latest commit)
- Cleanup and refactoring of the code
- Performance improvement
- Various UI/UX improvement
- The `Debloat/Restore selection` button has been split in 2 buttons: `removing` and `restoring`

### Packaging
- Added an alternative build that uses [OpenGL](https://fr.wikipedia.org/wiki/OpenGL) (instead of [Vulkan](https://fr.wikipedia.org/wiki/Vulkan_(API))) for compatibility with older computers. If you encouter some visual glitches with the default Vulkan build you should try the OpenGL build.

### Fixed
- Spelling mistake
- Failed build with MSVC toolchain


================================================
FILE: Cargo.toml
================================================
[package]
name = "uad_gui"
description = "A cross-platform GUI debloater for android devices"
version = "0.5.1"
authors = ["w1nst0n"]
license = "GPL-3.0"
homepage = "https://github.com/0x192/universal-android-debloater"
repository = "https://github.com/0x192/universal-android-debloater"
readme = "README.md"
keywords = ["debloater", "android", "adb", "privacy", "bloatware"]
categories = ["gui"]
edition = "2021"

[features]
default = ["wgpu", "self-update"]
wgpu = []                         # Iced/wgpu is default
glow = ["iced/glow"]              # OpenGL support
self-update = ["flate2", "tar"]
no-self-update = []

[dependencies]
iced = { git = "https://github.com/iced-rs/iced.git" }
iced_native = { git = "https://github.com/iced-rs/iced.git" }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
static_init = "^1.0"
fern = { version = "^0", features = ["colored"] }
chrono = { version = "^0.4", default-features = false, features = ["std", "clock"] }
log = "^0.4"
regex = "^1.5"
toml = "^0"
dirs = "^5.0.0"
ureq = { version = "*", features = ["json"] }
retry = { version = "^2.0.0" }

[target.'cfg(not(target_os = "windows"))'.dependencies]
flate2 = { version = "^1", optional = true }
tar = { version = "^0.4", optional = true }

[profile.release]
opt-level = "s"
lto = true
strip = "symbols"


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    Universal Android Debloater GUI
    Copyright (C) 2021 W1nst0n

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    Universal Android Debloater GUI Copyright (C) 2021 W1nst0n
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
# Universal Android Debloater GUI

**DISCLAIMER**: Use at your own risk. I am not responsible for anything that
could happen to your phone.

<img src="/resources/screenshots/v0.5.0.png" width="850" alt="uad_screenshot">

**This software is still in an early stage of development. Check out the issues, and feel free to contribute!**

## Summary

This is a complete rewrite in Rust of the [UAD project](https://gitlab.com/W1nst0n/universal-android-debloater),
which aims to improve privacy and battery performance by removing unnecessary
and obscure system apps.
This can also contribute to improve security by reducing [the attack surface](https://en.wikipedia.org/wiki/Attack_surface).

Packages are as well documented as possible in order to provide a better
understanding of what you can delete or not. The worst issue that could happen
is removing an essential system package needed during boot causing then an unfortunate
bootloop. After about 5 failed system boots, the phone will automatically reboot
in recovery mode, and you'll have to perform a FACTORY RESET. Make a backup first!

In any case, you **CANNOT** brick your device with this software!
That's the main point, right?

## Features

- [x] Uninstall/Disable and Restore/Enable system packages
- [x] Multi-user support (e.g. apps in work profiles)
- [x] Export/Import your selection in `uad_exported_selection.txt`
- [x] Multi-device support: you can connect multiple phones at the same time
- [x] All your actions are logged, so you never forget what you've done

NB : System apps cannot truly be uninstalled without root (see the [FAQ](https://github.com/0x192/universal-android-debloater/wiki/FAQ))

## Universal Debloat Lists

- [x] GFAM (Google/Facebook/Amazon/Microsoft)
- [x] AOSP
- [x] Manufacturers (OEM)
- [x] Mobile carriers
- [x] Qualcomm / Mediatek / Miscellaneous

## Manufacturers debloat lists

- [ ] Archos
- [x] Asus
- [ ] Blackberry
- [ ] Gionee
- [x] LG
- [x] Google
- [ ] iQOO
- [x] Fairphone
- [ ] HTC
- [x] Huawei
- [x] Motorola
- [x] Nokia
- [x] OnePlus
- [x] Oppo
- [x] Realme
- [x] Samsung
- [x] Sony
- [x] Tecno
- [ ] TCL
- [x] Unihertz
- [x] Vivo/iQOO
- [ ] Wiko
- [x] Xiaomi
- [x] ZTE

## Mobile carriers debloat lists

| Country | Carriers                        |
| ------- | ------------------------------- |
| France  | Orange, SFR, Free, Bouygues     |
| USA     | T-Mobile, Verizon, Sprint, AT&T |
| Germany | Telekom                         |
| UK      | EE                              |

## How to use it

- **Read the [FAQ](https://github.com/0x192/universal-android-debloater/wiki/FAQ)!**
- **Do a proper backup of your data! You can never be too careful!**
- Enable _Developer Options_ on your smartphone.
- Turn on _USB Debugging_ from the developer panel.
- From the settings, disconnect from any OEM accounts (when you delete an OEM
  account package it could lock you on the lockscreen because the phone can't
  associate your identity anymore)
- Install ADB (see the intructions by clicking on your OS below):
  <p>
  <details>
  <summary>LINUX</summary>

  - Install _Android platform tools_ on your PC :

  Debian Base:

  ```bash
  sudo apt install android-sdk-platform-tools
  ```

  Arch-Linux Base:

  ```bash
  sudo pacman -S android-tools
  ```

  Red Hat Base:

  ```bash
  sudo yum install android-tools
  ```

  OpenSUSE Base:

  ```bash
  sudo zypper install android-tools
  ```

  </details>
  </p>

  <p>
  <details>
  <summary>MAC OS</summary>

  - Install [Homebrew](https://brew.sh/)
  - Install _Android platform tools_

    ```bash
    brew install android-platform-tools
    ```

    </details>
    </p>

  <p>
  <details>
  <summary>WINDOWS</summary>

  - Download [android platform tools](https://dl.google.com/android/repository/platform-tools-latest-windows.zip)
    and unzip it somewhere.
  - [Add the android platform tools to your PATH](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/)
    **OR** make sure to launch UAD from the same directory.

  - [Install USB drivers for your device](https://developer.android.com/studio/run/oem-usb#Drivers)
  - Check your device is detected:

    ```bash
     adb devices
    ```

    </details>
    </p>

- Download the latest release of UAD GUI for your Operating System [here](https://github.com/0x192/universal-android-debloater/releases).
  Take the `opengl` version only if the default version (with a Vulkan backend)
  doesn't launch.

**NOTE:** Chinese phones users may need to use the AOSP list for removing some stock
apps because those Chinese manufacturers (especially Xiaomi and Huawei) have been
using the name of AOSP packages for their own (modified & closed-source) apps.

**IMPORTANT NOTE:** You will have to run this software whenever your OEM pushes
an update to your phone as some _uninstalled_ system apps could be reinstalled.

## How to contribute

Hey-hey-hey! Don't go away so fast! This is a community project.
That means I need you! I'm sure you want to make this project better anyway.

==> [How to contribute](https://github.com/0x192/universal-android-debloater/wiki)

## Special thanks

- [@mawilms](https://github.com/mawilms) for his LotRO plugin manager ([Lembas](https://github.com/mawilms/lembas))
  which helped me a lot to understand how to use the [Iced](https://github.com/hecrj/iced)
  GUI library.
- [@casperstorm](https://github.com/casperstorm) for the UI/UX inspiration.


================================================
FILE: resources/assets/icons.json
================================================
{
  "metadata": {
    "name": "icons",
    "lastOpened": 1418773394855,
    "created": 1676497699814
  },
  "iconSets": [
    {
      "selection": [
        {
          "order": 11,
          "id": 0,
          "prevSize": 28,
          "code": 59648,
          "name": "refresh",
          "tempChar": ""
        }
      ],
      "id": 3,
      "metadata": {
        "name": "Font Awesome (subset)",
        "url": "https://github.com/FortAwesome/Font-Awesome",
        "designer": "Dave Gandy",
        "designerURL": "https://github.com/davegandy",
        "license": "Custom",
        "licenseURL": "https://github.com/FortAwesome/Font-Awesome#license",
        "iconsHash": 309851062,
        "importSize": {
          "width": 24,
          "height": 28
        }
      },
      "height": 1024,
      "prevSize": 28,
      "icons": [
        {
          "id": 0,
          "paths": [
            "M863.552 603.454c0 1.143 0 2.857-0.572 4.002-48.586 202.345-215.492 343.529-426.409 343.529-111.462 0-219.493-44.012-300.658-121.178l-73.736 73.736c-6.859 6.859-16.005 10.861-25.722 10.861-20.005 0-36.583-16.575-36.583-36.583v-256.074c0-20.005 16.575-36.583 36.583-36.583h256.074c20.005 0 36.583 16.575 36.583 36.583 0 9.716-4.002 18.863-10.861 25.722l-78.308 78.308c53.731 50.302 125.18 78.88 198.915 78.88 101.743 0 196.056-52.585 249.215-139.468 13.718-22.293 20.577-44.012 30.294-66.877 2.857-8.002 8.574-13.146 17.148-13.146h109.746c10.289 0 18.291 8.574 18.291 18.291zM877.841 146.179v256.074c0 20.005-16.575 36.583-36.583 36.583h-256.074c-20.005 0-36.583-16.575-36.583-36.583 0-9.716 4.002-18.863 10.861-25.722l78.88-78.88c-54.301-50.302-125.75-78.308-199.486-78.308-101.743 0-196.056 52.585-249.215 139.468-13.718 22.293-20.577 44.012-30.294 66.877-2.857 8.002-8.574 13.146-17.148 13.146h-113.746c-10.289 0-18.291-8.574-18.291-18.291v-4.002c49.156-202.915 217.777-343.529 428.695-343.529 112.032 0 221.207 44.585 302.373 121.178l74.309-73.736c6.859-6.859 16.005-10.861 25.722-10.861 20.005 0 36.583 16.575 36.583 36.583z"
          ],
          "attrs": [
            {}
          ],
          "width": 878,
          "isMulticolor": false,
          "isMulticolor2": false,
          "tags": [
            "refresh"
          ],
          "grid": 32
        }
      ],
      "invisible": false,
      "colorThemes": []
    },
    {
      "selection": [
        {
          "order": 0,
          "id": 1,
          "prevSize": 24,
          "code": 59649,
          "name": "refresh-cw",
          "tempChar": ""
        },
        {
          "order": 0,
          "id": 0,
          "name": "refresh-cw",
          "prevSize": 24,
          "code": 59648,
          "tempChar": ""
        }
      ],
      "id": 2,
      "metadata": {
        "name": "Feather (subset)",
        "importSize": {
          "width": 24,
          "height": 24
        },
        "url": "https://feathericons.com/",
        "designer": "Cole Bemis",
        "designerURL": "http://colebemis.com/",
        "license": "MIT",
        "licenseURL": "https://github.com/feathericons/feather/blob/master/LICENSE",
        "iconsHash": 555821689
      },
      "height": 1024,
      "prevSize": 24,
      "icons": [
        {
          "id": 1,
          "paths": [
            "M189.995 398.251c31.445-88.875 95.872-156.544 174.763-194.219s172.032-45.184 260.864-13.739c50.603 17.92 94.123 46.421 127.275 80.213l120.747 113.493h-148.309c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h255.872c0.213 0 0.384 0 0.597 0 5.845-0.043 11.435-1.323 16.469-3.499 5.077-2.176 9.771-5.376 13.824-9.6 0.512-0.555 1.024-1.109 1.536-1.664 3.2-3.712 5.675-7.808 7.381-12.16s2.731-9.003 2.944-13.909c0.043-0.64 0.043-1.237 0.043-1.835v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v157.397l-124.843-117.291c-42.325-43.093-96.896-78.635-159.701-100.864-111.061-39.296-227.627-29.824-326.101 17.152s-179.157 131.669-218.453 242.731c-7.893 22.187 3.755 46.549 25.941 54.443s46.592-3.755 54.443-25.984zM85.333 695.979l126.080 118.485c82.304 82.389 191.573 124.075 300.715 124.117s218.411-41.6 301.739-124.885c47.104-47.104 81.109-102.699 100.736-159.787 7.68-22.272-4.181-46.549-26.496-54.229s-46.549 4.181-54.229 26.496c-15.403 44.8-42.368 89.216-80.341 127.189-66.688 66.645-153.984 99.925-241.365 99.925s-174.677-33.365-242.304-100.949l-119.467-112.341h148.267c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-255.872c-0.213 0-0.384 0-0.597 0-5.845 0.043-11.435 1.323-16.469 3.499-5.077 2.176-9.771 5.376-13.824 9.6-0.512 0.555-1.024 1.109-1.536 1.664-3.2 3.712-5.675 7.808-7.381 12.16s-2.731 9.003-2.944 13.909c-0.043 0.64-0.043 1.237-0.043 1.835v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
          ],
          "attrs": [
            {}
          ],
          "isMulticolor": false,
          "isMulticolor2": false,
          "tags": [
            "refresh-cw"
          ],
          "grid": 24
        },
        {
          "id": 0,
          "paths": [
            "M189.995 398.251c31.445-88.875 95.872-156.544 174.763-194.219s172.032-45.184 260.864-13.739c50.603 17.92 94.123 46.421 127.275 80.213l120.747 113.493h-148.309c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h255.872c0.213 0 0.384 0 0.597 0 5.845-0.043 11.435-1.323 16.469-3.499 5.077-2.176 9.771-5.376 13.824-9.6 0.512-0.555 1.024-1.109 1.536-1.664 3.2-3.712 5.675-7.808 7.381-12.16s2.731-9.003 2.944-13.909c0.043-0.64 0.043-1.237 0.043-1.835v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v157.397l-124.843-117.291c-42.325-43.093-96.896-78.635-159.701-100.864-111.061-39.296-227.627-29.824-326.101 17.152s-179.157 131.669-218.453 242.731c-7.893 22.187 3.755 46.549 25.941 54.443s46.592-3.755 54.443-25.984zM85.333 695.979l126.080 118.485c82.304 82.389 191.573 124.075 300.715 124.117s218.411-41.6 301.739-124.885c47.104-47.104 81.109-102.699 100.736-159.787 7.68-22.272-4.181-46.549-26.496-54.229s-46.549 4.181-54.229 26.496c-15.403 44.8-42.368 89.216-80.341 127.189-66.688 66.645-153.984 99.925-241.365 99.925s-174.677-33.365-242.304-100.949l-119.467-112.341h148.267c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-255.872c-0.213 0-0.384 0-0.597 0-5.845 0.043-11.435 1.323-16.469 3.499-5.077 2.176-9.771 5.376-13.824 9.6-0.512 0.555-1.024 1.109-1.536 1.664-3.2 3.712-5.675 7.808-7.381 12.16s-2.731 9.003-2.944 13.909c-0.043 0.64-0.043 1.237-0.043 1.835v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
          ],
          "attrs": [
            {}
          ],
          "isMulticolor": false,
          "isMulticolor2": false,
          "tags": [
            "refresh-cw"
          ],
          "grid": 24
        }
      ],
      "invisible": false,
      "colorThemes": []
    },
    {
      "selection": [
        {
          "ligatures": "home, house",
          "name": "home",
          "order": 0,
          "id": 1
        },
        {
          "ligatures": "home2, house2",
          "name": "home2",
          "order": 0,
          "id": 2
        },
        {
          "ligatures": "home3, house3",
          "name": "home3",
          "order": 0,
          "id": 3
        },
        {
          "ligatures": "office, buildings",
          "name": "office",
          "order": 0,
          "id": 4
        },
        {
          "ligatures": "newspaper, news",
          "name": "newspaper",
          "order": 0,
          "id": 5
        },
        {
          "ligatures": "pencil, write",
          "name": "pencil",
          "order": 0,
          "id": 6
        },
        {
          "ligatures": "pencil2, write2",
          "name": "pencil2",
          "order": 0,
          "id": 7
        },
        {
          "ligatures": "quill, feather",
          "name": "quill",
          "order": 0,
          "id": 8
        },
        {
          "ligatures": "pen, write3",
          "name": "pen",
          "order": 0,
          "id": 9
        },
        {
          "ligatures": "blog, pen2",
          "name": "blog",
          "order": 0,
          "id": 10
        },
        {
          "ligatures": "eyedropper, color",
          "name": "eyedropper",
          "order": 0,
          "id": 11
        },
        {
          "ligatures": "droplet, color2",
          "name": "droplet",
          "order": 0,
          "id": 12
        },
        {
          "ligatures": "paint-format, format",
          "name": "paint-format",
          "order": 0,
          "id": 13
        },
        {
          "ligatures": "image, picture",
          "name": "image",
          "order": 0,
          "id": 14
        },
        {
          "ligatures": "images, pictures",
          "name": "images",
          "order": 0,
          "id": 15
        },
        {
          "ligatures": "camera, photo",
          "name": "camera",
          "order": 0,
          "id": 16
        },
        {
          "ligatures": "headphones, headset",
          "name": "headphones",
          "order": 0,
          "id": 17
        },
        {
          "ligatures": "music, song",
          "name": "music",
          "order": 0,
          "id": 18
        },
        {
          "ligatures": "play, video",
          "name": "play",
          "order": 0,
          "id": 19
        },
        {
          "ligatures": "film, video2",
          "name": "film",
          "order": 0,
          "id": 20
        },
        {
          "ligatures": "video-camera, video3",
          "name": "video-camera",
          "order": 0,
          "id": 21
        },
        {
          "ligatures": "dice, game",
          "name": "dice",
          "order": 0,
          "id": 22
        },
        {
          "ligatures": "pacman, game2",
          "name": "pacman",
          "order": 0,
          "id": 23
        },
        {
          "ligatures": "spades, cards",
          "name": "spades",
          "order": 0,
          "id": 24
        },
        {
          "ligatures": "clubs, cards2",
          "name": "clubs",
          "order": 0,
          "id": 25
        },
        {
          "ligatures": "diamonds, cards3",
          "name": "diamonds",
          "order": 0,
          "id": 26
        },
        {
          "ligatures": "bullhorn, megaphone",
          "name": "bullhorn",
          "order": 0,
          "id": 27
        },
        {
          "ligatures": "connection, wifi",
          "name": "connection",
          "order": 0,
          "id": 28
        },
        {
          "ligatures": "podcast, broadcast",
          "name": "podcast",
          "order": 0,
          "id": 29
        },
        {
          "ligatures": "feed, wave",
          "name": "feed",
          "order": 0,
          "id": 30
        },
        {
          "ligatures": "mic, microphone",
          "name": "mic",
          "order": 0,
          "id": 31
        },
        {
          "ligatures": "book, read",
          "name": "book",
          "order": 0,
          "id": 32
        },
        {
          "ligatures": "books, library",
          "name": "books",
          "order": 0,
          "id": 33
        },
        {
          "ligatures": "library2, bank",
          "name": "library",
          "order": 0,
          "id": 34
        },
        {
          "ligatures": "file-text, file",
          "name": "file-text",
          "order": 0,
          "id": 35
        },
        {
          "ligatures": "profile, file2",
          "name": "profile",
          "order": 0,
          "id": 36
        },
        {
          "ligatures": "file-empty, file3",
          "name": "file-empty",
          "order": 0,
          "id": 37
        },
        {
          "ligatures": "files-empty, files",
          "name": "files-empty",
          "order": 0,
          "id": 38
        },
        {
          "ligatures": "file-text2, file4",
          "name": "file-text2",
          "order": 0,
          "id": 39
        },
        {
          "ligatures": "file-picture, file5",
          "name": "file-picture",
          "order": 0,
          "id": 40
        },
        {
          "ligatures": "file-music, file6",
          "name": "file-music",
          "order": 0,
          "id": 41
        },
        {
          "ligatures": "file-play, file7",
          "name": "file-play",
          "order": 0,
          "id": 42
        },
        {
          "ligatures": "file-video, file8",
          "name": "file-video",
          "order": 0,
          "id": 43
        },
        {
          "ligatures": "file-zip, file9",
          "name": "file-zip",
          "order": 0,
          "id": 44
        },
        {
          "ligatures": "copy, duplicate",
          "name": "copy",
          "order": 0,
          "id": 45
        },
        {
          "ligatures": "paste, clipboard-file",
          "name": "paste",
          "order": 0,
          "id": 46
        },
        {
          "ligatures": "stack, layers",
          "name": "stack",
          "order": 0,
          "id": 47
        },
        {
          "ligatures": "folder, directory",
          "name": "folder",
          "order": 0,
          "id": 48
        },
        {
          "ligatures": "folder-open, directory2",
          "name": "folder-open",
          "order": 0,
          "id": 49
        },
        {
          "ligatures": "folder-plus, directory3",
          "name": "folder-plus",
          "order": 0,
          "id": 50
        },
        {
          "ligatures": "folder-minus, directory4",
          "name": "folder-minus",
          "order": 0,
          "id": 51
        },
        {
          "ligatures": "folder-download, directory5",
          "name": "folder-download",
          "order": 0,
          "id": 52
        },
        {
          "ligatures": "folder-upload, directory6",
          "name": "folder-upload",
          "order": 0,
          "id": 53
        },
        {
          "ligatures": "price-tag",
          "name": "price-tag",
          "order": 0,
          "id": 54
        },
        {
          "ligatures": "price-tags",
          "name": "price-tags",
          "order": 0,
          "id": 55
        },
        {
          "ligatures": "barcode",
          "name": "barcode",
          "order": 0,
          "id": 56
        },
        {
          "ligatures": "qrcode",
          "name": "qrcode",
          "order": 0,
          "id": 57
        },
        {
          "ligatures": "ticket, theater",
          "name": "ticket",
          "order": 0,
          "id": 58
        },
        {
          "ligatures": "cart, purchase",
          "name": "cart",
          "order": 0,
          "id": 59
        },
        {
          "ligatures": "coin-dollar, money",
          "name": "coin-dollar",
          "order": 0,
          "id": 60
        },
        {
          "ligatures": "coin-euro, money2",
          "name": "coin-euro",
          "order": 0,
          "id": 61
        },
        {
          "ligatures": "coin-pound, money3",
          "name": "coin-pound",
          "order": 0,
          "id": 62
        },
        {
          "ligatures": "coin-yen, money4",
          "name": "coin-yen",
          "order": 0,
          "id": 63
        },
        {
          "ligatures": "credit-card, money5",
          "name": "credit-card",
          "order": 0,
          "id": 64
        },
        {
          "ligatures": "calculator, compute",
          "name": "calculator",
          "order": 0,
          "id": 65
        },
        {
          "ligatures": "lifebuoy, support",
          "name": "lifebuoy",
          "order": 0,
          "id": 66
        },
        {
          "ligatures": "phone, telephone",
          "name": "phone",
          "order": 0,
          "id": 67
        },
        {
          "ligatures": "phone-hang-up, telephone2",
          "name": "phone-hang-up",
          "order": 0,
          "id": 68
        },
        {
          "ligatures": "address-book, contact",
          "name": "address-book",
          "order": 0,
          "id": 69
        },
        {
          "ligatures": "envelop, mail",
          "name": "envelop",
          "order": 0,
          "id": 70
        },
        {
          "ligatures": "pushpin, pin",
          "name": "pushpin",
          "order": 0,
          "id": 71
        },
        {
          "ligatures": "location, map-marker",
          "name": "location",
          "order": 0,
          "id": 72
        },
        {
          "ligatures": "location2, map-marker2",
          "name": "location2",
          "order": 0,
          "id": 73
        },
        {
          "ligatures": "compass, direction",
          "name": "compass",
          "order": 0,
          "id": 74
        },
        {
          "ligatures": "compass2, direction2",
          "name": "compass2",
          "order": 0,
          "id": 75
        },
        {
          "ligatures": "map, guide",
          "name": "map",
          "order": 0,
          "id": 76
        },
        {
          "ligatures": "map2, guide2",
          "name": "map2",
          "order": 0,
          "id": 77
        },
        {
          "ligatures": "history, time",
          "name": "history",
          "order": 0,
          "id": 78
        },
        {
          "ligatures": "clock, time2",
          "name": "clock",
          "order": 0,
          "id": 79
        },
        {
          "ligatures": "clock2, time3",
          "name": "clock2",
          "order": 0,
          "id": 80
        },
        {
          "ligatures": "alarm, time4",
          "name": "alarm",
          "order": 0,
          "id": 81
        },
        {
          "ligatures": "bell, alarm2",
          "name": "bell",
          "order": 0,
          "id": 82
        },
        {
          "ligatures": "stopwatch, time5",
          "name": "stopwatch",
          "order": 0,
          "id": 83
        },
        {
          "ligatures": "calendar, date",
          "name": "calendar",
          "order": 0,
          "id": 84
        },
        {
          "ligatures": "printer, print",
          "name": "printer",
          "order": 0,
          "id": 85
        },
        {
          "ligatures": "keyboard, typing",
          "name": "keyboard",
          "order": 0,
          "id": 86
        },
        {
          "ligatures": "display, screen",
          "name": "display",
          "order": 0,
          "id": 87
        },
        {
          "ligatures": "laptop, computer",
          "name": "laptop",
          "order": 0,
          "id": 88
        },
        {
          "ligatures": "mobile, cell-phone",
          "name": "mobile",
          "order": 0,
          "id": 89
        },
        {
          "ligatures": "mobile2, cell-phone2",
          "name": "mobile2",
          "order": 0,
          "id": 90
        },
        {
          "ligatures": "tablet, mobile3",
          "name": "tablet",
          "order": 0,
          "id": 91
        },
        {
          "ligatures": "tv, television",
          "name": "tv",
          "order": 0,
          "id": 92
        },
        {
          "ligatures": "drawer, box",
          "name": "drawer",
          "order": 0,
          "id": 93
        },
        {
          "ligatures": "drawer2, box2",
          "name": "drawer2",
          "order": 0,
          "id": 94
        },
        {
          "ligatures": "box-add, box3",
          "name": "box-add",
          "order": 0,
          "id": 95
        },
        {
          "ligatures": "box-remove, box4",
          "name": "box-remove",
          "order": 0,
          "id": 96
        },
        {
          "ligatures": "download, save",
          "name": "download",
          "order": 0,
          "id": 97
        },
        {
          "ligatures": "upload, load",
          "name": "upload",
          "order": 0,
          "id": 98
        },
        {
          "ligatures": "floppy-disk, save2",
          "name": "floppy-disk",
          "order": 0,
          "id": 99
        },
        {
          "ligatures": "drive, save3",
          "name": "drive",
          "order": 0,
          "id": 100
        },
        {
          "ligatures": "database, db",
          "name": "database",
          "order": 0,
          "id": 101
        },
        {
          "ligatures": "undo, ccw",
          "name": "undo",
          "order": 0,
          "id": 102
        },
        {
          "ligatures": "redo, cw",
          "name": "redo",
          "order": 0,
          "id": 103
        },
        {
          "ligatures": "undo2, left",
          "name": "undo2",
          "order": 0,
          "id": 104
        },
        {
          "ligatures": "redo2, right",
          "name": "redo2",
          "order": 0,
          "id": 105
        },
        {
          "ligatures": "forward, right2",
          "name": "forward",
          "order": 0,
          "id": 106
        },
        {
          "ligatures": "reply, left2",
          "name": "reply",
          "order": 0,
          "id": 107
        },
        {
          "ligatures": "bubble, comment",
          "name": "bubble",
          "order": 0,
          "id": 108
        },
        {
          "ligatures": "bubbles, comments",
          "name": "bubbles",
          "order": 0,
          "id": 109
        },
        {
          "ligatures": "bubbles2, comments2",
          "name": "bubbles2",
          "order": 0,
          "id": 110
        },
        {
          "ligatures": "bubble2, comment2",
          "name": "bubble2",
          "order": 0,
          "id": 111
        },
        {
          "ligatures": "bubbles3, comments3",
          "name": "bubbles3",
          "order": 0,
          "id": 112
        },
        {
          "ligatures": "bubbles4, comments4",
          "name": "bubbles4",
          "order": 0,
          "id": 113
        },
        {
          "ligatures": "user, profile2",
          "name": "user",
          "order": 0,
          "id": 114
        },
        {
          "ligatures": "users, group",
          "name": "users",
          "order": 0,
          "id": 115
        },
        {
          "ligatures": "user-plus, user2",
          "name": "user-plus",
          "order": 0,
          "id": 116
        },
        {
          "ligatures": "user-minus, user3",
          "name": "user-minus",
          "order": 0,
          "id": 117
        },
        {
          "ligatures": "user-check, user4",
          "name": "user-check",
          "order": 0,
          "id": 118
        },
        {
          "ligatures": "user-tie, user5",
          "name": "user-tie",
          "order": 0,
          "id": 119
        },
        {
          "ligatures": "quotes-left, ldquo",
          "name": "quotes-left",
          "order": 0,
          "id": 120
        },
        {
          "ligatures": "quotes-right, rdquo",
          "name": "quotes-right",
          "order": 0,
          "id": 121
        },
        {
          "ligatures": "hour-glass, loading",
          "name": "hour-glass",
          "order": 0,
          "id": 122
        },
        {
          "ligatures": "spinner, loading2",
          "name": "spinner",
          "order": 0,
          "id": 123
        },
        {
          "ligatures": "spinner2, loading3",
          "name": "spinner2",
          "order": 0,
          "id": 124
        },
        {
          "ligatures": "spinner3, loading4",
          "name": "spinner3",
          "order": 0,
          "id": 125
        },
        {
          "ligatures": "spinner4, loading5",
          "name": "spinner4",
          "order": 0,
          "id": 126
        },
        {
          "ligatures": "spinner5, loading6",
          "name": "spinner5",
          "order": 0,
          "id": 127
        },
        {
          "ligatures": "spinner6, loading7",
          "name": "spinner6",
          "order": 0,
          "id": 128
        },
        {
          "ligatures": "spinner7, loading8",
          "name": "spinner7",
          "order": 0,
          "id": 129
        },
        {
          "ligatures": "spinner8, loading9",
          "name": "spinner8",
          "order": 0,
          "id": 130
        },
        {
          "ligatures": "spinner9, loading10",
          "name": "spinner9",
          "order": 0,
          "id": 131
        },
        {
          "ligatures": "spinner10, loading11",
          "name": "spinner10",
          "order": 0,
          "id": 132
        },
        {
          "ligatures": "spinner11, loading12",
          "name": "spinner11",
          "order": 0,
          "id": 133
        },
        {
          "ligatures": "binoculars, lookup",
          "name": "binoculars",
          "order": 0,
          "id": 134
        },
        {
          "ligatures": "search, magnifier",
          "name": "search",
          "order": 0,
          "id": 135
        },
        {
          "ligatures": "zoom-in, magnifier2",
          "name": "zoom-in",
          "order": 0,
          "id": 136
        },
        {
          "ligatures": "zoom-out, magnifier3",
          "name": "zoom-out",
          "order": 0,
          "id": 137
        },
        {
          "ligatures": "enlarge, expand",
          "name": "enlarge",
          "order": 0,
          "id": 138
        },
        {
          "ligatures": "shrink, collapse",
          "name": "shrink",
          "order": 0,
          "id": 139
        },
        {
          "ligatures": "enlarge2, expand2",
          "name": "enlarge2",
          "order": 0,
          "id": 140
        },
        {
          "ligatures": "shrink2, collapse2",
          "name": "shrink2",
          "order": 0,
          "id": 141
        },
        {
          "ligatures": "key, password",
          "name": "key",
          "order": 0,
          "id": 142
        },
        {
          "ligatures": "key2, password2",
          "name": "key2",
          "order": 0,
          "id": 143
        },
        {
          "ligatures": "lock, secure",
          "name": "lock",
          "order": 0,
          "id": 144
        },
        {
          "ligatures": "unlocked, lock-open",
          "name": "unlocked",
          "order": 0,
          "id": 145
        },
        {
          "ligatures": "wrench, tool",
          "name": "wrench",
          "order": 0,
          "id": 146
        },
        {
          "ligatures": "equalizer, sliders",
          "name": "equalizer",
          "order": 0,
          "id": 147
        },
        {
          "ligatures": "equalizer2, sliders2",
          "name": "equalizer2",
          "order": 0,
          "id": 148
        },
        {
          "ligatures": "cog, gear",
          "name": "cog",
          "order": 0,
          "id": 149
        },
        {
          "ligatures": "cogs, gears",
          "name": "cogs",
          "order": 0,
          "id": 150
        },
        {
          "ligatures": "hammer, tool2",
          "name": "hammer",
          "order": 0,
          "id": 151
        },
        {
          "ligatures": "magic-wand, wizard",
          "name": "magic-wand",
          "order": 0,
          "id": 152
        },
        {
          "ligatures": "aid-kit, health",
          "name": "aid-kit",
          "order": 0,
          "id": 153
        },
        {
          "ligatures": "bug, virus",
          "name": "bug",
          "order": 0,
          "id": 154
        },
        {
          "ligatures": "pie-chart, stats",
          "name": "pie-chart",
          "order": 0,
          "id": 155
        },
        {
          "ligatures": "stats-dots, stats2",
          "name": "stats-dots",
          "order": 0,
          "id": 156
        },
        {
          "ligatures": "stats-bars, stats3",
          "name": "stats-bars",
          "order": 0,
          "id": 157
        },
        {
          "ligatures": "stats-bars2, stats4",
          "name": "stats-bars2",
          "order": 0,
          "id": 158
        },
        {
          "ligatures": "trophy, cup",
          "name": "trophy",
          "order": 0,
          "id": 159
        },
        {
          "ligatures": "gift, present",
          "name": "gift",
          "order": 0,
          "id": 160
        },
        {
          "ligatures": "glass, drink",
          "name": "glass",
          "order": 0,
          "id": 161
        },
        {
          "ligatures": "glass2, drink2",
          "name": "glass2",
          "order": 0,
          "id": 162
        },
        {
          "ligatures": "mug, drink3",
          "name": "mug",
          "order": 0,
          "id": 163
        },
        {
          "ligatures": "spoon-knife, food",
          "name": "spoon-knife",
          "order": 0,
          "id": 164
        },
        {
          "ligatures": "leaf, nature",
          "name": "leaf",
          "order": 0,
          "id": 165
        },
        {
          "ligatures": "rocket, jet",
          "name": "rocket",
          "order": 0,
          "id": 166
        },
        {
          "ligatures": "meter, gauge",
          "name": "meter",
          "order": 0,
          "id": 167
        },
        {
          "ligatures": "meter2, gauge2",
          "name": "meter2",
          "order": 0,
          "id": 168
        },
        {
          "ligatures": "hammer2, gavel",
          "name": "hammer2",
          "order": 0,
          "id": 169
        },
        {
          "ligatures": "fire, flame",
          "name": "fire",
          "order": 0,
          "id": 170
        },
        {
          "ligatures": "lab, beta",
          "name": "lab",
          "order": 0,
          "id": 171
        },
        {
          "ligatures": "magnet, attract",
          "name": "magnet",
          "order": 0,
          "id": 172
        },
        {
          "ligatures": "bin, trashcan",
          "name": "bin",
          "order": 0,
          "id": 173
        },
        {
          "ligatures": "bin2, trashcan2",
          "name": "bin2",
          "order": 0,
          "id": 174
        },
        {
          "ligatures": "briefcase, portfolio",
          "name": "briefcase",
          "order": 0,
          "id": 175
        },
        {
          "ligatures": "airplane, travel",
          "name": "airplane",
          "order": 0,
          "id": 176
        },
        {
          "ligatures": "truck, transit",
          "name": "truck",
          "order": 0,
          "id": 177
        },
        {
          "ligatures": "road, asphalt",
          "name": "road",
          "order": 0,
          "id": 178
        },
        {
          "ligatures": "accessibility",
          "name": "accessibility",
          "order": 0,
          "id": 179
        },
        {
          "ligatures": "target, goal",
          "name": "target",
          "order": 0,
          "id": 180
        },
        {
          "ligatures": "shield, security",
          "name": "shield",
          "order": 0,
          "id": 181
        },
        {
          "ligatures": "power, lightning",
          "name": "power",
          "order": 0,
          "id": 182
        },
        {
          "ligatures": "switch",
          "name": "switch",
          "order": 0,
          "id": 183
        },
        {
          "ligatures": "power-cord, plugin",
          "name": "power-cord",
          "order": 0,
          "id": 184
        },
        {
          "ligatures": "clipboard, board",
          "name": "clipboard",
          "order": 0,
          "id": 185
        },
        {
          "ligatures": "list-numbered, options",
          "name": "list-numbered",
          "order": 0,
          "id": 186
        },
        {
          "ligatures": "list, todo",
          "name": "list",
          "order": 0,
          "id": 187
        },
        {
          "ligatures": "list2, todo2",
          "name": "list2",
          "order": 0,
          "id": 188
        },
        {
          "ligatures": "tree, branches",
          "name": "tree",
          "order": 0,
          "id": 189
        },
        {
          "ligatures": "menu, list3",
          "name": "menu",
          "order": 0,
          "id": 190
        },
        {
          "ligatures": "menu2, options2",
          "name": "menu2",
          "order": 0,
          "id": 191
        },
        {
          "ligatures": "menu3, options3",
          "name": "menu3",
          "order": 0,
          "id": 192
        },
        {
          "ligatures": "menu4, options4",
          "name": "menu4",
          "order": 0,
          "id": 193
        },
        {
          "ligatures": "cloud, weather",
          "name": "cloud",
          "order": 0,
          "id": 194
        },
        {
          "ligatures": "cloud-download, cloud2",
          "name": "cloud-download",
          "order": 0,
          "id": 195
        },
        {
          "ligatures": "cloud-upload, cloud3",
          "name": "cloud-upload",
          "order": 0,
          "id": 196
        },
        {
          "ligatures": "cloud-check, cloud4",
          "name": "cloud-check",
          "order": 0,
          "id": 197
        },
        {
          "ligatures": "download2, save4",
          "name": "download2",
          "order": 0,
          "id": 198
        },
        {
          "ligatures": "upload2, load2",
          "name": "upload2",
          "order": 0,
          "id": 199
        },
        {
          "ligatures": "download3, save5",
          "name": "download3",
          "order": 0,
          "id": 200
        },
        {
          "ligatures": "upload3, load3",
          "name": "upload3",
          "order": 0,
          "id": 201
        },
        {
          "ligatures": "sphere, globe",
          "name": "sphere",
          "order": 0,
          "id": 202
        },
        {
          "ligatures": "earth, globe2",
          "name": "earth",
          "order": 0,
          "id": 203
        },
        {
          "ligatures": "link, chain",
          "name": "link",
          "order": 0,
          "id": 204
        },
        {
          "ligatures": "flag, report",
          "name": "flag",
          "order": 0,
          "id": 205
        },
        {
          "ligatures": "attachment, paperclip",
          "name": "attachment",
          "order": 0,
          "id": 206
        },
        {
          "ligatures": "eye, views",
          "name": "eye",
          "order": 0,
          "id": 207
        },
        {
          "ligatures": "eye-plus, views2",
          "name": "eye-plus",
          "order": 0,
          "id": 208
        },
        {
          "ligatures": "eye-minus, views3",
          "name": "eye-minus",
          "order": 0,
          "id": 209
        },
        {
          "ligatures": "eye-blocked, views4",
          "name": "eye-blocked",
          "order": 0,
          "id": 210
        },
        {
          "ligatures": "bookmark, ribbon",
          "name": "bookmark",
          "order": 0,
          "id": 211
        },
        {
          "ligatures": "bookmarks, ribbons",
          "name": "bookmarks",
          "order": 0,
          "id": 212
        },
        {
          "ligatures": "sun, weather2",
          "name": "sun",
          "order": 0,
          "id": 213
        },
        {
          "ligatures": "contrast",
          "name": "contrast",
          "order": 0,
          "id": 214
        },
        {
          "ligatures": "brightness-contrast",
          "name": "brightness-contrast",
          "order": 0,
          "id": 215
        },
        {
          "ligatures": "star-empty, rate",
          "name": "star-empty",
          "order": 0,
          "id": 216
        },
        {
          "ligatures": "star-half, rate2",
          "name": "star-half",
          "order": 0,
          "id": 217
        },
        {
          "ligatures": "star-full, rate3",
          "name": "star-full",
          "order": 0,
          "id": 218
        },
        {
          "ligatures": "heart, like",
          "name": "heart",
          "order": 0,
          "id": 219
        },
        {
          "ligatures": "heart-broken, heart2",
          "name": "heart-broken",
          "order": 0,
          "id": 220
        },
        {
          "ligatures": "man, male",
          "name": "man",
          "order": 0,
          "id": 221
        },
        {
          "ligatures": "woman, female",
          "name": "woman",
          "order": 0,
          "id": 222
        },
        {
          "ligatures": "man-woman, toilet",
          "name": "man-woman",
          "order": 0,
          "id": 223
        },
        {
          "ligatures": "happy, emoticon",
          "name": "happy",
          "order": 0,
          "id": 224
        },
        {
          "ligatures": "happy2, emoticon2",
          "name": "happy2",
          "order": 0,
          "id": 225
        },
        {
          "ligatures": "smile, emoticon3",
          "name": "smile",
          "order": 0,
          "id": 226
        },
        {
          "ligatures": "smile2, emoticon4",
          "name": "smile2",
          "order": 0,
          "id": 227
        },
        {
          "ligatures": "tongue, emoticon5",
          "name": "tongue",
          "order": 0,
          "id": 228
        },
        {
          "ligatures": "tongue2, emoticon6",
          "name": "tongue2",
          "order": 0,
          "id": 229
        },
        {
          "ligatures": "sad, emoticon7",
          "name": "sad",
          "order": 0,
          "id": 230
        },
        {
          "ligatures": "sad2, emoticon8",
          "name": "sad2",
          "order": 0,
          "id": 231
        },
        {
          "ligatures": "wink, emoticon9",
          "name": "wink",
          "order": 0,
          "id": 232
        },
        {
          "ligatures": "wink2, emoticon10",
          "name": "wink2",
          "order": 0,
          "id": 233
        },
        {
          "ligatures": "grin, emoticon11",
          "name": "grin",
          "order": 0,
          "id": 234
        },
        {
          "ligatures": "grin2, emoticon12",
          "name": "grin2",
          "order": 0,
          "id": 235
        },
        {
          "ligatures": "cool, emoticon13",
          "name": "cool",
          "order": 0,
          "id": 236
        },
        {
          "ligatures": "cool2, emoticon14",
          "name": "cool2",
          "order": 0,
          "id": 237
        },
        {
          "ligatures": "angry, emoticon15",
          "name": "angry",
          "order": 0,
          "id": 238
        },
        {
          "ligatures": "angry2, emoticon16",
          "name": "angry2",
          "order": 0,
          "id": 239
        },
        {
          "ligatures": "evil, emoticon17",
          "name": "evil",
          "order": 0,
          "id": 240
        },
        {
          "ligatures": "evil2, emoticon18",
          "name": "evil2",
          "order": 0,
          "id": 241
        },
        {
          "ligatures": "shocked, emoticon19",
          "name": "shocked",
          "order": 0,
          "id": 242
        },
        {
          "ligatures": "shocked2, emoticon20",
          "name": "shocked2",
          "order": 0,
          "id": 243
        },
        {
          "ligatures": "baffled, emoticon21",
          "name": "baffled",
          "order": 0,
          "id": 244
        },
        {
          "ligatures": "baffled2, emoticon22",
          "name": "baffled2",
          "order": 0,
          "id": 245
        },
        {
          "ligatures": "confused, emoticon23",
          "name": "confused",
          "order": 0,
          "id": 246
        },
        {
          "ligatures": "confused2, emoticon24",
          "name": "confused2",
          "order": 0,
          "id": 247
        },
        {
          "ligatures": "neutral, emoticon25",
          "name": "neutral",
          "order": 0,
          "id": 248
        },
        {
          "ligatures": "neutral2, emoticon26",
          "name": "neutral2",
          "order": 0,
          "id": 249
        },
        {
          "ligatures": "hipster, emoticon27",
          "name": "hipster",
          "order": 0,
          "id": 250
        },
        {
          "ligatures": "hipster2, emoticon28",
          "name": "hipster2",
          "order": 0,
          "id": 251
        },
        {
          "ligatures": "wondering, emoticon29",
          "name": "wondering",
          "order": 0,
          "id": 252
        },
        {
          "ligatures": "wondering2, emoticon30",
          "name": "wondering2",
          "order": 0,
          "id": 253
        },
        {
          "ligatures": "sleepy, emoticon31",
          "name": "sleepy",
          "order": 0,
          "id": 254
        },
        {
          "ligatures": "sleepy2, emoticon32",
          "name": "sleepy2",
          "order": 0,
          "id": 255
        },
        {
          "ligatures": "frustrated, emoticon33",
          "name": "frustrated",
          "order": 0,
          "id": 256
        },
        {
          "ligatures": "frustrated2, emoticon34",
          "name": "frustrated2",
          "order": 0,
          "id": 257
        },
        {
          "ligatures": "crying, emoticon35",
          "name": "crying",
          "order": 0,
          "id": 258
        },
        {
          "ligatures": "crying2, emoticon36",
          "name": "crying2",
          "order": 0,
          "id": 259
        },
        {
          "ligatures": "point-up, finger",
          "name": "point-up",
          "order": 0,
          "id": 260
        },
        {
          "ligatures": "point-right, finger2",
          "name": "point-right",
          "order": 0,
          "id": 261
        },
        {
          "ligatures": "point-down, finger3",
          "name": "point-down",
          "order": 0,
          "id": 262
        },
        {
          "ligatures": "point-left, finger4",
          "name": "point-left",
          "order": 0,
          "id": 263
        },
        {
          "ligatures": "warning, sign",
          "name": "warning",
          "order": 0,
          "id": 264
        },
        {
          "ligatures": "notification, warning2",
          "name": "notification",
          "order": 0,
          "id": 265
        },
        {
          "ligatures": "question, help",
          "name": "question",
          "order": 0,
          "id": 266
        },
        {
          "ligatures": "plus, add",
          "name": "plus",
          "order": 0,
          "id": 267
        },
        {
          "ligatures": "minus, subtract",
          "name": "minus",
          "order": 0,
          "id": 268
        },
        {
          "ligatures": "info, information",
          "name": "info",
          "order": 2,
          "id": 269,
          "prevSize": 28,
          "code": 59916,
          "tempChar": ""
        },
        {
          "ligatures": "cancel-circle, close",
          "name": "cancel-circle",
          "order": 0,
          "id": 270
        },
        {
          "ligatures": "blocked, forbidden",
          "name": "blocked",
          "order": 0,
          "id": 271
        },
        {
          "ligatures": "cross, cancel",
          "name": "cross",
          "order": 0,
          "id": 272
        },
        {
          "ligatures": "checkmark, tick",
          "name": "checkmark",
          "order": 0,
          "id": 273
        },
        {
          "ligatures": "checkmark2, tick2",
          "name": "checkmark2",
          "order": 0,
          "id": 274
        },
        {
          "ligatures": "spell-check, spelling",
          "name": "spell-check",
          "order": 0,
          "id": 275
        },
        {
          "ligatures": "enter, signin",
          "name": "enter",
          "order": 0,
          "id": 276
        },
        {
          "ligatures": "exit, signout",
          "name": "exit",
          "order": 0,
          "id": 277
        },
        {
          "ligatures": "play2, player",
          "name": "play2",
          "order": 0,
          "id": 278
        },
        {
          "ligatures": "pause, player2",
          "name": "pause",
          "order": 0,
          "id": 279
        },
        {
          "ligatures": "stop, player3",
          "name": "stop",
          "order": 0,
          "id": 280
        },
        {
          "ligatures": "previous, player4",
          "name": "previous",
          "order": 0,
          "id": 281
        },
        {
          "ligatures": "next, player5",
          "name": "next",
          "order": 0,
          "id": 282
        },
        {
          "ligatures": "backward, player6",
          "name": "backward",
          "order": 0,
          "id": 283
        },
        {
          "ligatures": "forward2, player7",
          "name": "forward2",
          "order": 0,
          "id": 284
        },
        {
          "ligatures": "play3, player8",
          "name": "play3",
          "order": 0,
          "id": 285
        },
        {
          "ligatures": "pause2, player9",
          "name": "pause2",
          "order": 0,
          "id": 286
        },
        {
          "ligatures": "stop2, player10",
          "name": "stop2",
          "order": 0,
          "id": 287
        },
        {
          "ligatures": "backward2, player11",
          "name": "backward2",
          "order": 0,
          "id": 288
        },
        {
          "ligatures": "forward3, player12",
          "name": "forward3",
          "order": 0,
          "id": 289
        },
        {
          "ligatures": "first, player13",
          "name": "first",
          "order": 0,
          "id": 290
        },
        {
          "ligatures": "last, player14",
          "name": "last",
          "order": 0,
          "id": 291
        },
        {
          "ligatures": "previous2, player15",
          "name": "previous2",
          "order": 0,
          "id": 292
        },
        {
          "ligatures": "next2, player16",
          "name": "next2",
          "order": 0,
          "id": 293
        },
        {
          "ligatures": "eject, player17",
          "name": "eject",
          "order": 0,
          "id": 294
        },
        {
          "ligatures": "volume-high, volume",
          "name": "volume-high",
          "order": 0,
          "id": 295
        },
        {
          "ligatures": "volume-medium, volume2",
          "name": "volume-medium",
          "order": 0,
          "id": 296
        },
        {
          "ligatures": "volume-low, volume3",
          "name": "volume-low",
          "order": 0,
          "id": 297
        },
        {
          "ligatures": "volume-mute, volume4",
          "name": "volume-mute",
          "order": 0,
          "id": 298
        },
        {
          "ligatures": "volume-mute2, volume5",
          "name": "volume-mute2",
          "order": 0,
          "id": 299
        },
        {
          "ligatures": "volume-increase, volume6",
          "name": "volume-increase",
          "order": 0,
          "id": 300
        },
        {
          "ligatures": "volume-decrease, volume7",
          "name": "volume-decrease",
          "order": 0,
          "id": 301
        },
        {
          "ligatures": "loop, repeat",
          "name": "loop",
          "order": 0,
          "id": 302
        },
        {
          "ligatures": "loop2, repeat2",
          "name": "loop2",
          "order": 0,
          "id": 303,
          "prevSize": 32,
          "code": 59950,
          "tempChar": ""
        },
        {
          "ligatures": "infinite",
          "name": "infinite",
          "order": 0,
          "id": 304
        },
        {
          "ligatures": "shuffle, random",
          "name": "shuffle",
          "order": 0,
          "id": 305
        },
        {
          "ligatures": "arrow-up-left, up-left",
          "name": "arrow-up-left",
          "order": 0,
          "id": 306
        },
        {
          "ligatures": "arrow-up, up",
          "name": "arrow-up",
          "order": 0,
          "id": 307
        },
        {
          "ligatures": "arrow-up-right, up-right",
          "name": "arrow-up-right",
          "order": 0,
          "id": 308
        },
        {
          "ligatures": "arrow-right, right3",
          "name": "arrow-right",
          "order": 0,
          "id": 309
        },
        {
          "ligatures": "arrow-down-right, down-right",
          "name": "arrow-down-right",
          "order": 0,
          "id": 310
        },
        {
          "ligatures": "arrow-down, down",
          "name": "arrow-down",
          "order": 0,
          "id": 311
        },
        {
          "ligatures": "arrow-down-left, down-left",
          "name": "arrow-down-left",
          "order": 0,
          "id": 312
        },
        {
          "ligatures": "arrow-left, left3",
          "name": "arrow-left",
          "order": 0,
          "id": 313
        },
        {
          "ligatures": "arrow-up-left2, up-left2",
          "name": "arrow-up-left2",
          "order": 0,
          "id": 314
        },
        {
          "ligatures": "arrow-up2, up2",
          "name": "arrow-up2",
          "order": 0,
          "id": 315
        },
        {
          "ligatures": "arrow-up-right2, up-right2",
          "name": "arrow-up-right2",
          "order": 0,
          "id": 316
        },
        {
          "ligatures": "arrow-right2, right4",
          "name": "arrow-right2",
          "order": 0,
          "id": 317
        },
        {
          "ligatures": "arrow-down-right2, down-right2",
          "name": "arrow-down-right2",
          "order": 0,
          "id": 318
        },
        {
          "ligatures": "arrow-down2, down2",
          "name": "arrow-down2",
          "order": 0,
          "id": 319
        },
        {
          "ligatures": "arrow-down-left2, down-left2",
          "name": "arrow-down-left2",
          "order": 0,
          "id": 320
        },
        {
          "ligatures": "arrow-left2, left4",
          "name": "arrow-left2",
          "order": 0,
          "id": 321
        },
        {
          "ligatures": "circle-up, up3",
          "name": "circle-up",
          "order": 0,
          "id": 322
        },
        {
          "ligatures": "circle-right, right5",
          "name": "circle-right",
          "order": 0,
          "id": 323
        },
        {
          "ligatures": "circle-down, down3",
          "name": "circle-down",
          "order": 0,
          "id": 324
        },
        {
          "ligatures": "circle-left, left5",
          "name": "circle-left",
          "order": 0,
          "id": 325
        },
        {
          "ligatures": "tab, arrows",
          "name": "tab",
          "order": 0,
          "id": 326
        },
        {
          "ligatures": "move-up, sort",
          "name": "move-up",
          "order": 0,
          "id": 327
        },
        {
          "ligatures": "move-down, sort2",
          "name": "move-down",
          "order": 0,
          "id": 328
        },
        {
          "ligatures": "sort-alpha-asc, arrange",
          "name": "sort-alpha-asc",
          "order": 0,
          "id": 329
        },
        {
          "ligatures": "sort-alpha-desc, arrange2",
          "name": "sort-alpha-desc",
          "order": 0,
          "id": 330
        },
        {
          "ligatures": "sort-numeric-asc, arrange3",
          "name": "sort-numeric-asc",
          "order": 0,
          "id": 331
        },
        {
          "ligatures": "sort-numberic-desc, arrange4",
          "name": "sort-numberic-desc",
          "order": 0,
          "id": 332
        },
        {
          "ligatures": "sort-amount-asc, arrange5",
          "name": "sort-amount-asc",
          "order": 0,
          "id": 333
        },
        {
          "ligatures": "sort-amount-desc, arrange6",
          "name": "sort-amount-desc",
          "order": 0,
          "id": 334
        },
        {
          "ligatures": "command, cmd",
          "name": "command",
          "order": 0,
          "id": 335
        },
        {
          "ligatures": "shift",
          "name": "shift",
          "order": 0,
          "id": 336
        },
        {
          "ligatures": "ctrl, control",
          "name": "ctrl",
          "order": 0,
          "id": 337
        },
        {
          "ligatures": "opt, option",
          "name": "opt",
          "order": 0,
          "id": 338
        },
        {
          "ligatures": "checkbox-checked, checkbox",
          "name": "checkbox-checked",
          "order": 0,
          "id": 339
        },
        {
          "ligatures": "checkbox-unchecked, checkbox2",
          "name": "checkbox-unchecked",
          "order": 0,
          "id": 340
        },
        {
          "ligatures": "radio-checked, radio-button",
          "name": "radio-checked",
          "order": 0,
          "id": 341
        },
        {
          "ligatures": "radio-checked2, radio-button2",
          "name": "radio-checked2",
          "order": 0,
          "id": 342
        },
        {
          "ligatures": "radio-unchecked, radio-button3",
          "name": "radio-unchecked",
          "order": 0,
          "id": 343
        },
        {
          "ligatures": "crop, resize",
          "name": "crop",
          "order": 0,
          "id": 344
        },
        {
          "ligatures": "make-group",
          "name": "make-group",
          "order": 0,
          "id": 345
        },
        {
          "ligatures": "ungroup",
          "name": "ungroup",
          "order": 0,
          "id": 346
        },
        {
          "ligatures": "scissors, cut",
          "name": "scissors",
          "order": 0,
          "id": 347
        },
        {
          "ligatures": "filter, funnel",
          "name": "filter",
          "order": 0,
          "id": 348
        },
        {
          "ligatures": "font, typeface",
          "name": "font",
          "order": 0,
          "id": 349
        },
        {
          "ligatures": "ligature, typography",
          "name": "ligature",
          "order": 0,
          "id": 350
        },
        {
          "ligatures": "ligature2, typography2",
          "name": "ligature2",
          "order": 0,
          "id": 351
        },
        {
          "ligatures": "text-height, wysiwyg",
          "name": "text-height",
          "order": 0,
          "id": 352
        },
        {
          "ligatures": "text-width, wysiwyg2",
          "name": "text-width",
          "order": 0,
          "id": 353
        },
        {
          "ligatures": "font-size, wysiwyg3",
          "name": "font-size",
          "order": 0,
          "id": 354
        },
        {
          "ligatures": "bold, wysiwyg4",
          "name": "bold",
          "order": 0,
          "id": 355
        },
        {
          "ligatures": "underline, wysiwyg5",
          "name": "underline",
          "order": 0,
          "id": 356
        },
        {
          "ligatures": "italic, wysiwyg6",
          "name": "italic",
          "order": 0,
          "id": 357
        },
        {
          "ligatures": "strikethrough, wysiwyg7",
          "name": "strikethrough",
          "order": 0,
          "id": 358
        },
        {
          "ligatures": "omega, wysiwyg8",
          "name": "omega",
          "order": 0,
          "id": 359
        },
        {
          "ligatures": "sigma, wysiwyg9",
          "name": "sigma",
          "order": 0,
          "id": 360
        },
        {
          "ligatures": "page-break, wysiwyg10",
          "name": "page-break",
          "order": 0,
          "id": 361
        },
        {
          "ligatures": "superscript, wysiwyg11",
          "name": "superscript",
          "order": 0,
          "id": 362
        },
        {
          "ligatures": "subscript, wysiwyg12",
          "name": "subscript",
          "order": 0,
          "id": 363
        },
        {
          "ligatures": "superscript2, wysiwyg13",
          "name": "superscript2",
          "order": 0,
          "id": 364
        },
        {
          "ligatures": "subscript2, wysiwyg14",
          "name": "subscript2",
          "order": 0,
          "id": 365
        },
        {
          "ligatures": "text-color, wysiwyg15",
          "name": "text-color",
          "order": 0,
          "id": 366
        },
        {
          "ligatures": "pagebreak, wysiwyg16",
          "name": "pagebreak",
          "order": 0,
          "id": 367
        },
        {
          "ligatures": "clear-formatting, wysiwyg17",
          "name": "clear-formatting",
          "order": 0,
          "id": 368
        },
        {
          "ligatures": "table, wysiwyg18",
          "name": "table",
          "order": 0,
          "id": 369
        },
        {
          "ligatures": "table2, wysiwyg19",
          "name": "table2",
          "order": 0,
          "id": 370
        },
        {
          "ligatures": "insert-template, wysiwyg20",
          "name": "insert-template",
          "order": 0,
          "id": 371
        },
        {
          "ligatures": "pilcrow, wysiwyg21",
          "name": "pilcrow",
          "order": 0,
          "id": 372
        },
        {
          "ligatures": "ltr, wysiwyg22",
          "name": "ltr",
          "order": 0,
          "id": 373
        },
        {
          "ligatures": "rtl, wysiwyg23",
          "name": "rtl",
          "order": 0,
          "id": 374
        },
        {
          "ligatures": "section, wysiwyg24",
          "name": "section",
          "order": 0,
          "id": 375
        },
        {
          "ligatures": "paragraph-left, wysiwyg25",
          "name": "paragraph-left",
          "order": 0,
          "id": 376
        },
        {
          "ligatures": "paragraph-center, wysiwyg26",
          "name": "paragraph-center",
          "order": 0,
          "id": 377
        },
        {
          "ligatures": "paragraph-right, wysiwyg27",
          "name": "paragraph-right",
          "order": 0,
          "id": 378
        },
        {
          "ligatures": "paragraph-justify, wysiwyg28",
          "name": "paragraph-justify",
          "order": 0,
          "id": 379
        },
        {
          "ligatures": "indent-increase, wysiwyg29",
          "name": "indent-increase",
          "order": 0,
          "id": 380
        },
        {
          "ligatures": "indent-decrease, wysiwyg30",
          "name": "indent-decrease",
          "order": 0,
          "id": 381
        },
        {
          "ligatures": "share, out",
          "name": "share",
          "order": 0,
          "id": 382
        },
        {
          "ligatures": "new-tab, out2",
          "name": "new-tab",
          "order": 0,
          "id": 383
        },
        {
          "ligatures": "embed, code",
          "name": "embed",
          "order": 0,
          "id": 384
        },
        {
          "ligatures": "embed2, code2",
          "name": "embed2",
          "order": 0,
          "id": 385
        },
        {
          "ligatures": "terminal, console",
          "name": "terminal",
          "order": 0,
          "id": 386
        },
        {
          "ligatures": "share2, social",
          "name": "share2",
          "order": 0,
          "id": 387
        },
        {
          "ligatures": "mail2, contact2",
          "name": "mail",
          "order": 0,
          "id": 388
        },
        {
          "ligatures": "mail3, contact3",
          "name": "mail2",
          "order": 0,
          "id": 389
        },
        {
          "ligatures": "mail4, contact4",
          "name": "mail3",
          "order": 0,
          "id": 390
        },
        {
          "ligatures": "mail5, contact5",
          "name": "mail4",
          "order": 0,
          "id": 391
        },
        {
          "name": "amazon",
          "ligatures": "amazon, brand",
          "order": 0,
          "id": 392
        },
        {
          "name": "google",
          "ligatures": "google, brand2",
          "order": 0,
          "id": 393
        },
        {
          "name": "google2",
          "ligatures": "google2, brand3",
          "order": 0,
          "id": 394
        },
        {
          "name": "google3",
          "ligatures": "google3, brand4",
          "order": 0,
          "id": 395
        },
        {
          "ligatures": "google-plus, brand5",
          "name": "google-plus",
          "order": 0,
          "id": 396
        },
        {
          "ligatures": "google-plus2, brand6",
          "name": "google-plus2",
          "order": 0,
          "id": 397
        },
        {
          "ligatures": "google-plus3, brand7",
          "name": "google-plus3",
          "order": 0,
          "id": 398
        },
        {
          "name": "hangouts",
          "ligatures": "hangouts, brand8",
          "order": 0,
          "id": 399
        },
        {
          "ligatures": "google-drive, brand9",
          "name": "google-drive",
          "order": 0,
          "id": 400
        },
        {
          "ligatures": "facebook, brand10",
          "name": "facebook",
          "order": 0,
          "id": 401
        },
        {
          "ligatures": "facebook2, brand11",
          "name": "facebook2",
          "order": 0,
          "id": 402
        },
        {
          "ligatures": "instagram, brand12",
          "name": "instagram",
          "order": 0,
          "id": 403
        },
        {
          "name": "whatsapp",
          "ligatures": "whatsapp, brand13",
          "order": 0,
          "id": 404
        },
        {
          "name": "spotify",
          "ligatures": "spotify, brand14",
          "order": 0,
          "id": 405
        },
        {
          "name": "telegram",
          "ligatures": "telegram, brand15",
          "order": 0,
          "id": 406
        },
        {
          "ligatures": "twitter, brand16",
          "name": "twitter",
          "order": 0,
          "id": 407
        },
        {
          "name": "vine",
          "ligatures": "vine, brand17",
          "order": 0,
          "id": 408
        },
        {
          "name": "vk",
          "ligatures": "vk, brand18",
          "order": 0,
          "id": 409
        },
        {
          "name": "renren",
          "ligatures": "renren, brand19",
          "order": 0,
          "id": 410
        },
        {
          "name": "sina-weibo",
          "ligatures": "sina-weibo, brand20",
          "order": 0,
          "id": 411
        },
        {
          "ligatures": "feed2, rss",
          "name": "rss",
          "order": 0,
          "id": 412
        },
        {
          "ligatures": "feed3, rss2",
          "name": "rss2",
          "order": 0,
          "id": 413
        },
        {
          "ligatures": "youtube, brand21",
          "name": "youtube",
          "order": 0,
          "id": 414
        },
        {
          "ligatures": "youtube2, brand22",
          "name": "youtube2",
          "order": 0,
          "id": 415
        },
        {
          "ligatures": "twitch, brand23",
          "name": "twitch",
          "order": 0,
          "id": 416
        },
        {
          "ligatures": "vimeo, brand24",
          "name": "vimeo",
          "order": 0,
          "id": 417
        },
        {
          "ligatures": "vimeo2, brand25",
          "name": "vimeo2",
          "order": 0,
          "id": 418
        },
        {
          "ligatures": "lanyrd, brand26",
          "name": "lanyrd",
          "order": 0,
          "id": 419
        },
        {
          "ligatures": "flickr, brand27",
          "name": "flickr",
          "order": 0,
          "id": 420
        },
        {
          "ligatures": "flickr2, brand28",
          "name": "flickr2",
          "order": 0,
          "id": 421
        },
        {
          "ligatures": "flickr3, brand29",
          "name": "flickr3",
          "order": 0,
          "id": 422
        },
        {
          "ligatures": "flickr4, brand30",
          "name": "flickr4",
          "order": 0,
          "id": 423
        },
        {
          "ligatures": "dribbble, brand31",
          "name": "dribbble",
          "order": 0,
          "id": 424
        },
        {
          "name": "behance",
          "ligatures": "behance, brand32",
          "order": 0,
          "id": 425
        },
        {
          "name": "behance2",
          "ligatures": "behance2, brand33",
          "order": 0,
          "id": 426
        },
        {
          "ligatures": "deviantart, brand34",
          "name": "deviantart",
          "order": 0,
          "id": 427
        },
        {
          "name": "500px",
          "ligatures": "500px, brand35",
          "order": 0,
          "id": 428
        },
        {
          "ligatures": "steam, brand36",
          "name": "steam",
          "order": 0,
          "id": 429
        },
        {
          "ligatures": "steam2, brand37",
          "name": "steam2",
          "order": 0,
          "id": 430
        },
        {
          "ligatures": "dropbox, brand38",
          "name": "dropbox",
          "order": 0,
          "id": 431
        },
        {
          "ligatures": "onedrive, brand39",
          "name": "onedrive",
          "order": 0,
          "id": 432
        },
        {
          "ligatures": "github, brand40",
          "name": "github",
          "order": 0,
          "id": 433
        },
        {
          "name": "npm",
          "ligatures": "npm, brand41",
          "order": 0,
          "id": 434
        },
        {
          "name": "basecamp",
          "ligatures": "basecamp, brand42",
          "order": 0,
          "id": 435
        },
        {
          "name": "trello",
          "ligatures": "trello, brand43",
          "order": 0,
          "id": 436
        },
        {
          "ligatures": "wordpress, brand44",
          "name": "wordpress",
          "order": 0,
          "id": 437
        },
        {
          "ligatures": "joomla, brand45",
          "name": "joomla",
          "order": 0,
          "id": 438
        },
        {
          "ligatures": "ello, brand46",
          "name": "ello",
          "order": 0,
          "id": 439
        },
        {
          "ligatures": "blogger, brand47",
          "name": "blogger",
          "order": 0,
          "id": 440
        },
        {
          "ligatures": "blogger2, brand48",
          "name": "blogger2",
          "order": 0,
          "id": 441
        },
        {
          "ligatures": "tumblr, brand49",
          "name": "tumblr",
          "order": 0,
          "id": 442
        },
        {
          "ligatures": "tumblr2, brand50",
          "name": "tumblr2",
          "order": 0,
          "id": 443
        },
        {
          "ligatures": "yahoo, brand51",
          "name": "yahoo",
          "order": 0,
          "id": 444
        },
        {
          "name": "yahoo2",
          "ligatures": "yahoo2",
          "order": 0,
          "id": 445
        },
        {
          "ligatures": "tux, brand52",
          "name": "tux",
          "order": 0,
          "id": 446
        },
        {
          "ligatures": "apple, brand53",
          "name": "appleinc",
          "order": 0,
          "id": 447
        },
        {
          "ligatures": "finder, brand54",
          "name": "finder",
          "order": 0,
          "id": 448
        },
        {
          "ligatures": "android, brand55",
          "name": "android",
          "order": 0,
          "id": 449
        },
        {
          "ligatures": "windows, brand56",
          "name": "windows",
          "order": 0,
          "id": 450
        },
        {
          "ligatures": "windows8, brand57",
          "name": "windows8",
          "order": 0,
          "id": 451
        },
        {
          "ligatures": "soundcloud, brand58",
          "name": "soundcloud",
          "order": 0,
          "id": 452
        },
        {
          "ligatures": "soundcloud2, brand59",
          "name": "soundcloud2",
          "order": 0,
          "id": 453
        },
        {
          "ligatures": "skype, brand60",
          "name": "skype",
          "order": 0,
          "id": 454
        },
        {
          "ligatures": "reddit, brand61",
          "name": "reddit",
          "order": 0,
          "id": 455
        },
        {
          "name": "hackernews",
          "ligatures": "hackernews, brand62",
          "order": 0,
          "id": 456
        },
        {
          "name": "wikipedia",
          "ligatures": "wikipedia, brand63",
          "order": 0,
          "id": 457
        },
        {
          "ligatures": "linkedin, brand64",
          "name": "linkedin",
          "order": 0,
          "id": 458
        },
        {
          "ligatures": "linkedin2, brand65",
          "name": "linkedin2",
          "order": 0,
          "id": 459
        },
        {
          "ligatures": "lastfm, brand66",
          "name": "lastfm",
          "order": 0,
          "id": 460
        },
        {
          "ligatures": "lastfm2, brand67",
          "name": "lastfm2",
          "order": 0,
          "id": 461
        },
        {
          "ligatures": "delicious, brand68",
          "name": "delicious",
          "order": 0,
          "id": 462
        },
        {
          "name": "stumbleupon",
          "ligatures": "stumbleupon, brand69",
          "order": 0,
          "id": 463
        },
        {
          "ligatures": "stumbleupon2, brand70",
          "name": "stumbleupon2",
          "order": 0,
          "id": 464
        },
        {
          "ligatures": "stackoverflow, brand71",
          "name": "stackoverflow",
          "order": 0,
          "id": 465
        },
        {
          "name": "pinterest",
          "ligatures": "pinterest, brand72",
          "order": 0,
          "id": 466
        },
        {
          "ligatures": "pinterest2, brand73",
          "name": "pinterest2",
          "order": 0,
          "id": 467
        },
        {
          "ligatures": "xing, brand74",
          "name": "xing",
          "order": 0,
          "id": 468
        },
        {
          "ligatures": "xing2, brand75",
          "name": "xing2",
          "codes": [
            61231
          ],
          "order": 0,
          "id": 469
        },
        {
          "ligatures": "flattr, brand76",
          "name": "flattr",
          "order": 0,
          "id": 470
        },
        {
          "ligatures": "foursquare, brand77",
          "name": "foursquare",
          "order": 0,
          "id": 471
        },
        {
          "ligatures": "yelp, brand78",
          "name": "yelp",
          "order": 0,
          "id": 472
        },
        {
          "ligatures": "paypal, brand79",
          "name": "paypal",
          "codes": [
            61234
          ],
          "order": 0,
          "id": 473
        },
        {
          "ligatures": "chrome, browser",
          "name": "chrome",
          "order": 0,
          "id": 474
        },
        {
          "ligatures": "firefox, browser2",
          "name": "firefox",
          "order": 0,
          "id": 475
        },
        {
          "ligatures": "IE, browser3",
          "name": "IE",
          "order": 0,
          "id": 476
        },
        {
          "name": "edge",
          "ligatures": "edge, browser4",
          "order": 0,
          "id": 477
        },
        {
          "ligatures": "safari, browser5",
          "name": "safari",
          "order": 0,
          "id": 478
        },
        {
          "ligatures": "opera, browser6",
          "name": "opera",
          "order": 0,
          "id": 479
        },
        {
          "ligatures": "file-pdf, file10",
          "name": "file-pdf",
          "order": 0,
          "id": 480
        },
        {
          "ligatures": "file-openoffice, file11",
          "name": "file-openoffice",
          "order": 0,
          "id": 481
        },
        {
          "ligatures": "file-word, file12",
          "name": "file-word",
          "order": 0,
          "id": 482
        },
        {
          "ligatures": "file-excel, file13",
          "name": "file-excel",
          "order": 0,
          "id": 483
        },
        {
          "ligatures": "libreoffice, file14",
          "name": "libreoffice",
          "order": 0,
          "id": 484
        },
        {
          "ligatures": "html-five, w3c",
          "name": "html-five",
          "order": 0,
          "id": 485
        },
        {
          "ligatures": "html-five2, w3c2",
          "name": "html-five2",
          "order": 0,
          "id": 486
        },
        {
          "ligatures": "css3, w3c3",
          "name": "css3",
          "order": 0,
          "id": 487
        },
        {
          "ligatures": "git, brand80",
          "name": "git",
          "order": 0,
          "id": 488
        },
        {
          "ligatures": "codepen, brand81",
          "name": "codepen",
          "order": 0,
          "id": 489
        },
        {
          "ligatures": "svg",
          "name": "svg",
          "order": 0,
          "id": 490
        },
        {
          "ligatures": "IcoMoon, icomoon",
          "name": "IcoMoon",
          "order": 0,
          "id": 491
        }
      ],
      "metadata": {
        "name": "IcoMoon - Free",
        "licenseURL": "https://icomoon.io/#icons-icomoon",
        "license": "GPL or CC BY 4.0",
        "designerURL": "http://keyamoon.com",
        "designer": "Keyamoon",
        "url": "https://icomoon.io/#icons-icomoon",
        "iconsHash": 767040192
      },
      "height": 1024,
      "icons": [
        {
          "paths": [
            "M1024 590.444l-512-397.426-512 397.428v-162.038l512-397.426 512 397.428zM896 576v384h-256v-256h-256v256h-256v-384l384-288z"
          ],
          "tags": [
            "home",
            "house"
          ],
          "defaultCode": 59648,
          "grid": 16,
          "id": 1,
          "attrs": []
        },
        {
          "paths": [
            "M512 32l-512 512 96 96 96-96v416h256v-192h128v192h256v-416l96 96 96-96-512-512zM512 448c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64z"
          ],
          "tags": [
            "home",
            "house"
          ],
          "defaultCode": 59649,
          "grid": 16,
          "id": 2,
          "attrs": []
        },
        {
          "paths": [
            "M1024 608l-192-192v-288h-128v160l-192-192-512 512v32h128v320h320v-192h128v192h320v-320h128z"
          ],
          "tags": [
            "home",
            "house"
          ],
          "defaultCode": 59650,
          "grid": 16,
          "id": 3,
          "attrs": []
        },
        {
          "paths": [
            "M0 1024h512v-1024h-512v1024zM320 128h128v128h-128v-128zM320 384h128v128h-128v-128zM320 640h128v128h-128v-128zM64 128h128v128h-128v-128zM64 384h128v128h-128v-128zM64 640h128v128h-128v-128zM576 320h448v64h-448zM576 1024h128v-256h192v256h128v-576h-448z"
          ],
          "tags": [
            "office",
            "buildings",
            "work"
          ],
          "defaultCode": 59651,
          "grid": 16,
          "id": 4,
          "attrs": []
        },
        {
          "paths": [
            "M896 256v-128h-896v704c0 35.346 28.654 64 64 64h864c53.022 0 96-42.978 96-96v-544h-128zM832 832h-768v-640h768v640zM128 320h640v64h-640zM512 448h256v64h-256zM512 576h256v64h-256zM512 704h192v64h-192zM128 448h320v320h-320z"
          ],
          "tags": [
            "newspaper",
            "news",
            "paper"
          ],
          "defaultCode": 59652,
          "grid": 16,
          "id": 5,
          "attrs": []
        },
        {
          "paths": [
            "M864 0c88.364 0 160 71.634 160 160 0 36.020-11.91 69.258-32 96l-64 64-224-224 64-64c26.742-20.090 59.978-32 96-32zM64 736l-64 288 288-64 592-592-224-224-592 592zM715.578 363.578l-448 448-55.156-55.156 448-448 55.156 55.156z"
          ],
          "tags": [
            "pencil",
            "write",
            "edit"
          ],
          "defaultCode": 59653,
          "grid": 16,
          "id": 6,
          "attrs": []
        },
        {
          "paths": [
            "M384 640l128-64 448-448-64-64-448 448-64 128zM289.3 867.098c-31.632-66.728-65.666-100.762-132.396-132.394l99.096-272.792 128-77.912 384-384h-192l-384 384-192 640 640-192 384-384v-192l-384 384-77.912 128z"
          ],
          "tags": [
            "pencil",
            "write",
            "edit"
          ],
          "defaultCode": 59654,
          "grid": 16,
          "id": 7,
          "attrs": []
        },
        {
          "paths": [
            "M0 1024c128-384 463-1024 1024-1024-263 211-384 704-576 704s-192 0-192 0l-192 320h-64z"
          ],
          "tags": [
            "quill",
            "feather",
            "write",
            "edit"
          ],
          "defaultCode": 59655,
          "grid": 16,
          "id": 8,
          "attrs": []
        },
        {
          "paths": [
            "M1018.17 291.89l-286.058-286.058c-9.334-9.334-21.644-7.234-27.356 4.666l-38.354 79.904 267.198 267.198 79.904-38.354c11.9-5.712 14-18.022 4.666-27.356z",
            "M615.384 135.384l-263.384 21.95c-17.5 2.166-32.080 5.898-37.090 28.752-0.006 0.024-0.012 0.042-0.018 0.066-71.422 343.070-314.892 677.848-314.892 677.848l57.374 57.374 271.986-271.99c-5.996-12.53-9.36-26.564-9.36-41.384 0-53.020 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96c-14.82 0-28.852-3.364-41.384-9.36l-271.988 271.986 57.372 57.374c0 0 334.778-243.47 677.848-314.892 0.024-0.006 0.042-0.012 0.066-0.018 22.854-5.010 26.586-19.59 28.752-37.090l21.95-263.384-273.232-273.232z"
          ],
          "tags": [
            "pen",
            "write",
            "edit"
          ],
          "defaultCode": 59656,
          "grid": 16,
          "id": 9,
          "attrs": []
        },
        {
          "paths": [
            "M384 0v96c73.482 0 144.712 14.37 211.716 42.71 64.768 27.394 122.958 66.632 172.948 116.624s89.228 108.18 116.624 172.948c28.342 67.004 42.712 138.238 42.712 211.718h96c0-353.46-286.54-640-640-640z",
            "M384 192v96c94.022 0 182.418 36.614 248.9 103.098 66.486 66.484 103.1 154.878 103.1 248.902h96c0-247.422-200.576-448-448-448z",
            "M480 384l-64 64-224 64-192 416 25.374 25.374 232.804-232.804c-1.412-5.286-2.178-10.84-2.178-16.57 0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64c-5.732 0-11.282-0.764-16.568-2.178l-232.804 232.804 25.372 25.374 416-192 64-224 64-64-160-160z"
          ],
          "tags": [
            "blog",
            "pen",
            "feed",
            "publish",
            "broadcast",
            "write"
          ],
          "defaultCode": 59657,
          "grid": 16,
          "id": 10,
          "attrs": []
        },
        {
          "paths": [
            "M986.51 37.49c-49.988-49.986-131.032-49.986-181.020 0l-172.118 172.118-121.372-121.372-135.764 135.764 106.426 106.426-472.118 472.118c-8.048 8.048-11.468 18.958-10.3 29.456h-0.244v160c0 17.674 14.328 32 32 32h160c0 0 2.664 0 4 0 9.212 0 18.426-3.516 25.456-10.544l472.118-472.118 106.426 106.426 135.764-135.764-121.372-121.372 172.118-172.118c49.986-49.988 49.986-131.032 0-181.020zM173.090 960h-109.090v-109.090l469.574-469.572 109.088 109.088-469.572 469.574z"
          ],
          "tags": [
            "eyedropper",
            "color",
            "color-picker",
            "sample"
          ],
          "defaultCode": 59658,
          "grid": 16,
          "id": 11,
          "attrs": []
        },
        {
          "paths": [
            "M864.626 473.162c-65.754-183.44-205.11-348.15-352.626-473.162-147.516 125.012-286.87 289.722-352.626 473.162-40.664 113.436-44.682 236.562 12.584 345.4 65.846 125.14 198.632 205.438 340.042 205.438s274.196-80.298 340.040-205.44c57.27-108.838 53.25-231.962 12.586-345.398zM738.764 758.956c-43.802 83.252-132.812 137.044-226.764 137.044-55.12 0-108.524-18.536-152.112-50.652 13.242 1.724 26.632 2.652 40.112 2.652 117.426 0 228.668-67.214 283.402-171.242 44.878-85.292 40.978-173.848 23.882-244.338 14.558 28.15 26.906 56.198 36.848 83.932 22.606 63.062 40.024 156.34-5.368 242.604z"
          ],
          "tags": [
            "droplet",
            "color",
            "water"
          ],
          "defaultCode": 59659,
          "grid": 16,
          "id": 12,
          "attrs": []
        },
        {
          "paths": [
            "M1024 576v-384h-192v-64c0-35.2-28.8-64-64-64h-704c-35.2 0-64 28.8-64 64v192c0 35.2 28.8 64 64 64h704c35.2 0 64-28.8 64-64v-64h128v256h-576v128h-32c-17.674 0-32 14.326-32 32v320c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-320c0-17.674-14.326-32-32-32h-32v-64h576zM768 192h-704v-64h704v64z"
          ],
          "tags": [
            "paint-format",
            "format",
            "color"
          ],
          "defaultCode": 59660,
          "grid": 16,
          "id": 13,
          "attrs": []
        },
        {
          "paths": [
            "M959.884 128c0.040 0.034 0.082 0.076 0.116 0.116v767.77c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.772c0.034-0.040 0.076-0.082 0.114-0.114h895.77zM960 64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64v0z",
            "M832 288c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z",
            "M896 832h-768v-128l224-384 256 320h64l224-192z"
          ],
          "tags": [
            "image",
            "picture",
            "photo",
            "graphic"
          ],
          "defaultCode": 59661,
          "grid": 16,
          "id": 14,
          "attrs": []
        },
        {
          "width": 1152,
          "paths": [
            "M1088 128h-64v-64c0-35.2-28.8-64-64-64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h64v64c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64zM128 192v640h-63.886c-0.040-0.034-0.082-0.076-0.114-0.116v-767.77c0.034-0.040 0.076-0.082 0.114-0.114h895.77c0.040 0.034 0.082 0.076 0.116 0.116v63.884h-768c-35.2 0-64 28.8-64 64v0zM1088 959.884c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.77c0.034-0.040 0.076-0.082 0.114-0.114h895.77c0.040 0.034 0.082 0.076 0.116 0.116v767.768z",
            "M960 352c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z",
            "M1024 896h-768v-128l224-384 256 320h64l224-192z"
          ],
          "tags": [
            "images",
            "pictures",
            "photos",
            "graphics"
          ],
          "defaultCode": 59662,
          "grid": 16,
          "id": 15,
          "attrs": []
        },
        {
          "paths": [
            "M304 608c0 114.876 93.124 208 208 208s208-93.124 208-208-93.124-208-208-208-208 93.124-208 208zM960 256h-224c-16-64-32-128-96-128h-256c-64 0-80 64-96 128h-224c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-576c0-35.2-28.8-64-64-64zM512 892c-156.85 0-284-127.148-284-284 0-156.85 127.15-284 284-284 156.852 0 284 127.15 284 284 0 156.852-127.146 284-284 284zM960 448h-128v-64h128v64z"
          ],
          "tags": [
            "camera",
            "photo",
            "picture",
            "image"
          ],
          "defaultCode": 59663,
          "grid": 16,
          "id": 16,
          "attrs": []
        },
        {
          "paths": [
            "M288 576h-64v448h64c17.6 0 32-14.4 32-32v-384c0-17.6-14.4-32-32-32z",
            "M736 576c-17.602 0-32 14.4-32 32v384c0 17.6 14.398 32 32 32h64v-448h-64z",
            "M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512c0 61.412 10.83 120.29 30.656 174.848-19.478 33.206-30.656 71.87-30.656 113.152 0 112.846 83.448 206.188 192 221.716v-443.418c-31.914 4.566-61.664 15.842-87.754 32.378-5.392-26.718-8.246-54.364-8.246-82.676 0-229.75 186.25-416 416-416s416 186.25 416 416c0 28.314-2.83 55.968-8.22 82.696-26.1-16.546-55.854-27.848-87.78-32.418v443.44c108.548-15.532 192-108.874 192-221.714 0-41.274-11.178-79.934-30.648-113.138 19.828-54.566 30.648-113.452 30.648-174.866z"
          ],
          "tags": [
            "headphones",
            "headset",
            "music",
            "audio"
          ],
          "defaultCode": 59664,
          "grid": 16,
          "id": 17,
          "attrs": []
        },
        {
          "paths": [
            "M960 0h64v736c0 88.366-100.29 160-224 160s-224-71.634-224-160c0-88.368 100.29-160 224-160 62.684 0 119.342 18.4 160 48.040v-368.040l-512 113.778v494.222c0 88.366-100.288 160-224 160s-224-71.634-224-160c0-88.368 100.288-160 224-160 62.684 0 119.342 18.4 160 48.040v-624.040l576-128z"
          ],
          "tags": [
            "music",
            "song",
            "audio",
            "sound",
            "note"
          ],
          "defaultCode": 59665,
          "grid": 16,
          "id": 18,
          "attrs": []
        },
        {
          "paths": [
            "M981.188 160.108c-143.632-20.65-302.332-32.108-469.186-32.108-166.86 0-325.556 11.458-469.194 32.108-27.53 107.726-42.808 226.75-42.808 351.892 0 125.14 15.278 244.166 42.808 351.89 143.638 20.652 302.336 32.11 469.194 32.11 166.854 0 325.552-11.458 469.186-32.11 27.532-107.724 42.812-226.75 42.812-351.89 0-125.142-15.28-244.166-42.812-351.892zM384.002 704v-384l320 192-320 192z"
          ],
          "tags": [
            "play",
            "video",
            "movie"
          ],
          "defaultCode": 59666,
          "grid": 16,
          "id": 19,
          "attrs": []
        },
        {
          "paths": [
            "M0 128v768h1024v-768h-1024zM192 832h-128v-128h128v128zM192 576h-128v-128h128v128zM192 320h-128v-128h128v128zM768 832h-512v-640h512v640zM960 832h-128v-128h128v128zM960 576h-128v-128h128v128zM960 320h-128v-128h128v128zM384 320v384l256-192z"
          ],
          "tags": [
            "film",
            "video",
            "movie",
            "tape",
            "play"
          ],
          "defaultCode": 59667,
          "grid": 16,
          "id": 20,
          "attrs": []
        },
        {
          "paths": [
            "M384 288c0-88.366 71.634-160 160-160s160 71.634 160 160c0 88.366-71.634 160-160 160s-160-71.634-160-160zM0 288c0-88.366 71.634-160 160-160s160 71.634 160 160c0 88.366-71.634 160-160 160s-160-71.634-160-160zM768 608v-96c0-35.2-28.8-64-64-64h-640c-35.2 0-64 28.8-64 64v320c0 35.2 28.8 64 64 64h640c35.2 0 64-28.8 64-64v-96l256 160v-448l-256 160zM640 768h-512v-192h512v192z"
          ],
          "tags": [
            "video-camera",
            "video",
            "media",
            "film",
            "movie"
          ],
          "defaultCode": 59668,
          "grid": 16,
          "id": 21,
          "attrs": []
        },
        {
          "paths": [
            "M864 192h-512c-88 0-160 72-160 160v512c0 88 72 160 160 160h512c88 0 160-72 160-160v-512c0-88-72-160-160-160zM416 896c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM416 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM608 704c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM800 896c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM800 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM828.76 128c-14.93-72.804-79.71-128-156.76-128h-512c-88 0-160 72-160 160v512c0 77.046 55.196 141.83 128 156.76v-636.76c0-35.2 28.8-64 64-64h636.76z"
          ],
          "tags": [
            "dice",
            "game",
            "chance",
            "luck",
            "random",
            "gample"
          ],
          "defaultCode": 59669,
          "grid": 16,
          "id": 22,
          "attrs": []
        },
        {
          "paths": [
            "M964.73 178.804c-93.902-109.45-233.21-178.804-388.73-178.804-282.77 0-512 229.23-512 512s229.23 512 512 512c155.52 0 294.828-69.356 388.728-178.804l-324.728-333.196 324.73-333.196zM704 120.602c39.432 0 71.398 31.964 71.398 71.398 0 39.432-31.966 71.398-71.398 71.398s-71.398-31.966-71.398-71.398c0-39.432 31.966-71.398 71.398-71.398z"
          ],
          "tags": [
            "pacman",
            "game",
            "arcade"
          ],
          "defaultCode": 59670,
          "grid": 16,
          "id": 23,
          "attrs": []
        },
        {
          "paths": [
            "M817.57 348.15c-193.566-143.858-260.266-259.018-305.566-348.148v0c-0.004 0-0.004-0.002-0.004-0.002v0.002c-45.296 89.13-112 204.292-305.566 348.148-330.036 245.286-19.376 587.668 253.758 399.224-17.796 116.93-78.53 202.172-140.208 238.882v37.744h384.032v-37.74c-61.682-36.708-122.41-121.954-140.212-238.884 273.136 188.446 583.8-153.94 253.766-399.226z"
          ],
          "tags": [
            "spades",
            "cards",
            "poker"
          ],
          "defaultCode": 59671,
          "grid": 16,
          "id": 24,
          "attrs": []
        },
        {
          "paths": [
            "M786.832 392.772c-59.032 0-112.086 24.596-149.852 64.694-15.996 16.984-43.762 37.112-73.8 54.81 14.11-53.868 58.676-121.7 89.628-151.456 39.64-38.17 63.984-91.83 63.984-151.5 0.006-114.894-91.476-208.096-204.788-209.32-113.32 1.222-204.796 94.426-204.796 209.318 0 59.672 24.344 113.33 63.986 151.5 30.954 29.756 75.52 97.588 89.628 151.456-30.042-17.7-57.806-37.826-73.8-54.81-37.768-40.098-90.82-64.694-149.85-64.694-114.386 0-207.080 93.664-207.080 209.328 0 115.638 92.692 209.338 207.080 209.338 59.042 0 112.082-25.356 149.85-65.452 16.804-17.872 46.444-40.138 78.292-58.632-3.002 147.692-73.532 256.168-145.318 298.906v37.742h384.014v-37.74c-71.792-42.736-142.32-151.216-145.32-298.906 31.852 18.494 61.488 40.768 78.292 58.632 37.766 40.094 90.808 65.452 149.852 65.452 114.386 0 207.078-93.7 207.078-209.338-0.002-115.664-92.692-209.328-207.080-209.328z"
          ],
          "tags": [
            "clubs",
            "cards",
            "poker"
          ],
          "defaultCode": 59672,
          "grid": 16,
          "id": 25,
          "attrs": []
        },
        {
          "paths": [
            "M512 0l-320 512 320 512 320-512z"
          ],
          "tags": [
            "diamonds",
            "cards",
            "poker"
          ],
          "defaultCode": 59673,
          "grid": 16,
          "id": 26,
          "attrs": []
        },
        {
          "paths": [
            "M1024 429.256c0-200.926-58.792-363.938-131.482-365.226 0.292-0.006 0.578-0.030 0.872-0.030h-82.942c0 0-194.8 146.336-475.23 203.754-8.56 45.292-14.030 99.274-14.030 161.502s5.466 116.208 14.030 161.5c280.428 57.418 475.23 203.756 475.23 203.756h82.942c-0.292 0-0.578-0.024-0.872-0.032 72.696-1.288 131.482-164.298 131.482-365.224zM864.824 739.252c-9.382 0-19.532-9.742-24.746-15.548-12.63-14.064-24.792-35.96-35.188-63.328-23.256-61.232-36.066-143.31-36.066-231.124 0-87.81 12.81-169.89 36.066-231.122 10.394-27.368 22.562-49.266 35.188-63.328 5.214-5.812 15.364-15.552 24.746-15.552 9.38 0 19.536 9.744 24.744 15.552 12.634 14.064 24.796 35.958 35.188 63.328 23.258 61.23 36.068 143.312 36.068 231.122 0 87.804-12.81 169.888-36.068 231.124-10.39 27.368-22.562 49.264-35.188 63.328-5.208 5.806-15.36 15.548-24.744 15.548zM251.812 429.256c0-51.95 3.81-102.43 11.052-149.094-47.372 6.554-88.942 10.324-140.34 10.324-67.058 0-67.058 0-67.058 0l-55.466 94.686v88.17l55.46 94.686c0 0 0 0 67.060 0 51.398 0 92.968 3.774 140.34 10.324-7.236-46.664-11.048-97.146-11.048-149.096zM368.15 642.172l-127.998-24.51 81.842 321.544c4.236 16.634 20.744 25.038 36.686 18.654l118.556-47.452c15.944-6.376 22.328-23.964 14.196-39.084l-123.282-229.152zM864.824 548.73c-3.618 0-7.528-3.754-9.538-5.992-4.87-5.42-9.556-13.86-13.562-24.408-8.962-23.6-13.9-55.234-13.9-89.078s4.938-65.478 13.9-89.078c4.006-10.548 8.696-18.988 13.562-24.408 2.010-2.24 5.92-5.994 9.538-5.994 3.616 0 7.53 3.756 9.538 5.994 4.87 5.42 9.556 13.858 13.56 24.408 8.964 23.598 13.902 55.234 13.902 89.078 0 33.842-4.938 65.478-13.902 89.078-4.004 10.548-8.696 18.988-13.56 24.408-2.008 2.238-5.92 5.992-9.538 5.992z"
          ],
          "tags": [
            "bullhorn",
            "megaphone",
            "announcement",
            "advertisement",
            "news"
          ],
          "defaultCode": 59674,
          "grid": 16,
          "id": 27,
          "attrs": []
        },
        {
          "width": 1280,
          "paths": [
            "M640 576c105.87 0 201.87 43.066 271.402 112.598l-90.468 90.468c-46.354-46.356-110.356-75.066-180.934-75.066s-134.578 28.71-180.934 75.066l-90.468-90.468c69.532-69.532 165.532-112.598 271.402-112.598zM187.452 507.452c120.88-120.88 281.598-187.452 452.548-187.452s331.668 66.572 452.55 187.452l-90.51 90.508c-96.706-96.704-225.28-149.96-362.040-149.96-136.762 0-265.334 53.256-362.038 149.962l-90.51-90.51zM988.784 134.438c106.702 45.132 202.516 109.728 284.782 191.996v0l-90.508 90.508c-145.056-145.056-337.92-224.942-543.058-224.942-205.14 0-398 79.886-543.058 224.942l-90.51-90.51c82.268-82.266 178.082-146.862 284.784-191.994 110.504-46.738 227.852-70.438 348.784-70.438s238.278 23.7 348.784 70.438zM576 896c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z"
          ],
          "tags": [
            "connection",
            "wifi",
            "wave"
          ],
          "defaultCode": 59675,
          "grid": 16,
          "id": 28,
          "attrs": []
        },
        {
          "paths": [
            "M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512c0 220.054 138.836 407.664 333.686 480.068l-13.686 31.932h384l-13.686-31.932c194.85-72.404 333.686-260.014 333.686-480.068zM486.79 634.826c-22.808-9.788-38.79-32.436-38.79-58.826 0-35.346 28.654-64 64-64s64 28.654 64 64c0 26.39-15.978 49.044-38.786 58.834l-25.214-58.834-25.21 58.826zM538.268 637.292c58.092-12.118 101.732-63.602 101.732-125.292 0-70.694-57.306-128-128-128-70.692 0-128 57.306-128 128 0 61.692 43.662 113.122 101.76 125.228l-74.624 174.122c-91.23-39.15-155.136-129.784-155.136-235.35 0-141.384 114.616-268 256-268s256 126.616 256 268c0 105.566-63.906 196.2-155.136 235.35l-74.596-174.058zM688.448 987.708l-73.924-172.486c126.446-42.738 217.476-162.346 217.476-303.222 0-176.73-143.268-320-320-320-176.73 0-320 143.27-320 320 0 140.876 91.030 260.484 217.476 303.222l-73.924 172.486c-159.594-68.488-271.386-227.034-271.386-411.708 0-247.332 200.502-459.834 447.834-459.834s447.834 212.502 447.834 459.834c0 184.674-111.792 343.22-271.386 411.708z"
          ],
          "tags": [
            "podcast",
            "broadcast",
            "live",
            "radio",
            "feed"
          ],
          "defaultCode": 59676,
          "grid": 16,
          "id": 29,
          "attrs": []
        },
        {
          "paths": [
            "M384 512c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM664.348 230.526c99.852 54.158 167.652 159.898 167.652 281.474s-67.8 227.316-167.652 281.474c44.066-70.126 71.652-170.27 71.652-281.474s-27.586-211.348-71.652-281.474zM288 512c0 111.204 27.584 211.348 71.652 281.474-99.852-54.16-167.652-159.898-167.652-281.474s67.8-227.314 167.652-281.474c-44.068 70.126-71.652 170.27-71.652 281.474zM96 512c0 171.9 54.404 326.184 140.652 431.722-142.302-90.948-236.652-250.314-236.652-431.722s94.35-340.774 236.652-431.722c-86.248 105.538-140.652 259.822-140.652 431.722zM787.352 80.28c142.298 90.946 236.648 250.312 236.648 431.72s-94.35 340.774-236.648 431.72c86.244-105.536 140.648-259.82 140.648-431.72s-54.404-326.184-140.648-431.72z"
          ],
          "tags": [
            "feed",
            "wave",
            "radio",
            "live",
            "broadcast"
          ],
          "defaultCode": 59677,
          "grid": 16,
          "id": 30,
          "attrs": []
        },
        {
          "paths": [
            "M480 704c88.366 0 160-71.634 160-160v-384c0-88.366-71.634-160-160-160s-160 71.634-160 160v384c0 88.366 71.636 160 160 160zM704 448v96c0 123.71-100.29 224-224 224-123.712 0-224-100.29-224-224v-96h-64v96c0 148.238 112.004 270.3 256 286.22v129.78h-128v64h320v-64h-128v-129.78c143.994-15.92 256-137.982 256-286.22v-96h-64z"
          ],
          "tags": [
            "mic",
            "microphone",
            "voice",
            "audio"
          ],
          "defaultCode": 59678,
          "grid": 16,
          "id": 31,
          "attrs": []
        },
        {
          "paths": [
            "M896 128v832h-672c-53.026 0-96-42.98-96-96s42.974-96 96-96h608v-768h-640c-70.398 0-128 57.6-128 128v768c0 70.4 57.602 128 128 128h768v-896h-64z",
            "M224.056 832v0c-0.018 0.002-0.038 0-0.056 0-17.672 0-32 14.326-32 32s14.328 32 32 32c0.018 0 0.038-0.002 0.056-0.002v0.002h607.89v-64h-607.89z"
          ],
          "tags": [
            "book",
            "read",
            "reading"
          ],
          "defaultCode": 59679,
          "grid": 16,
          "id": 32,
          "attrs": []
        },
        {
          "width": 1152,
          "paths": [
            "M224 128h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM192 320h-128v-64h128v64z",
            "M544 128h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM512 320h-128v-64h128v64z",
            "M765.088 177.48l-171.464 86.394c-15.716 7.918-22.096 27.258-14.178 42.976l287.978 571.548c7.918 15.718 27.258 22.098 42.976 14.178l171.464-86.392c15.716-7.92 22.096-27.26 14.178-42.974l-287.978-571.55c-7.92-15.718-27.26-22.1-42.976-14.18z"
          ],
          "tags": [
            "books",
            "library",
            "archive"
          ],
          "defaultCode": 59680,
          "grid": 16,
          "id": 33,
          "attrs": []
        },
        {
          "width": 1088,
          "paths": [
            "M1024 960v-64h-64v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-64v64h-64v64h1088v-64h-64z",
            "M512 0h64l512 320v64h-1088v-64l512-320z"
          ],
          "tags": [
            "library",
            "bank",
            "building"
          ],
          "defaultCode": 59681,
          "grid": 16,
          "id": 34,
          "attrs": []
        },
        {
          "paths": [
            "M864 0h-768c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h768c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM832 896h-704v-768h704v768zM256 448h448v64h-448zM256 576h448v64h-448zM256 704h448v64h-448zM256 320h448v64h-448z"
          ],
          "tags": [
            "file-text",
            "file",
            "document",
            "list",
            "paper"
          ],
          "defaultCode": 59682,
          "grid": 16,
          "id": 35,
          "attrs": []
        },
        {
          "paths": [
            "M864 0h-768c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h768c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM832 896h-704v-768h704v768zM256 576h448v64h-448zM256 704h448v64h-448zM320 288c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM480 384h-128c-52.8 0-96 28.8-96 64v64h320v-64c0-35.2-43.2-64-96-64z"
          ],
          "tags": [
            "profile",
            "file",
            "document",
            "page",
            "user",
            "paper"
          ],
          "defaultCode": 59683,
          "grid": 16,
          "id": 36,
          "attrs": []
        },
        {
          "paths": [
            "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z"
          ],
          "tags": [
            "file-empty",
            "file",
            "document",
            "paper",
            "page",
            "new",
            "empty",
            "blank"
          ],
          "defaultCode": 59684,
          "grid": 16,
          "id": 37,
          "attrs": []
        },
        {
          "paths": [
            "M917.806 357.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-368c-44.114 0-80 35.888-80 80v736c0 44.112 35.886 80 80 80h608c44.112 0 80-35.888 80-80v-496c0-14.332-4.372-39.35-42.194-90.924zM785.374 302.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-608c-8.672 0-16-7.328-16-16v-736c0-8.672 7.328-16 16-16 0 0 367.956-0.002 368 0v224c0 17.672 14.324 32 32 32h224v496z",
            "M602.924 42.196c-51.574-37.822-76.592-42.196-90.924-42.196h-368c-44.112 0-80 35.888-80 80v736c0 38.632 27.528 70.958 64 78.39v-814.39c0-8.672 7.328-16 16-16h486.876c-9.646-7.92-19.028-15.26-27.952-21.804z"
          ],
          "tags": [
            "files-empty",
            "files",
            "documents",
            "papers",
            "pages"
          ],
          "defaultCode": 59685,
          "grid": 16,
          "id": 38,
          "attrs": []
        },
        {
          "paths": [
            "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z",
            "M736 832h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z",
            "M736 704h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z",
            "M736 576h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z"
          ],
          "tags": [
            "file-text",
            "file",
            "document",
            "list",
            "paper",
            "page"
          ],
          "defaultCode": 59686,
          "grid": 16,
          "id": 39,
          "attrs": []
        },
        {
          "paths": [
            "M832 896h-640v-128l192-320 263 320 185-128v256z",
            "M832 480c0 53.020-42.98 96-96 96-53.022 0-96-42.98-96-96s42.978-96 96-96c53.020 0 96 42.98 96 96z",
            "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z"
          ],
          "tags": [
            "file-picture",
            "file",
            "document",
            "file-image"
          ],
          "defaultCode": 59687,
          "grid": 16,
          "id": 40,
          "attrs": []
        },
        {
          "paths": [
            "M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z",
            "M756.288 391.252c-7.414-6.080-17.164-8.514-26.562-6.632l-320 64c-14.958 2.994-25.726 16.126-25.726 31.38v236.876c-18.832-8.174-40.678-12.876-64-12.876-70.692 0-128 42.98-128 96s57.308 96 128 96 128-42.98 128-96v-229.766l256-51.202v133.842c-18.832-8.174-40.678-12.876-64-12.876-70.692 0-128 42.98-128 96s57.308 96 128 96 128-42.98 128-96v-319.998c0-9.586-4.298-18.668-11.712-24.748z"
          ],
          "tags": [
            "file-music",
            "file",
            "document",
            "file-song",
            "file-audio"
          ],
          "defaultCode": 59688,
          "grid": 16,
          "id": 41,
          "attrs": []
        },
        {
          "paths": [
            "M384 384l320 224-320 224v-448z",
            "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z"
          ],
          "tags": [
            "file-play",
            "file",
            "document",
            "file-media",
            "file-video"
          ],
          "defaultCode": 59689,
          "grid": 16,
          "id": 42,
          "attrs": []
        },
        {
          "paths": [
            "M917.806 229.076c-22.208-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.594-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.882 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0 0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.98 17.78 50.678 41.878 81.374 72.572v0 0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.32 32 32 32h224v624z",
            "M256 512h320v320h-320v-320z",
            "M576 640l192-128v320l-192-128z"
          ],
          "tags": [
            "file-video",
            "file",
            "document",
            "file-camera"
          ],
          "defaultCode": 59690,
          "grid": 16,
          "id": 43,
          "attrs": []
        },
        {
          "paths": [
            "M917.806 229.076c-22.208-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.884 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0 0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.98 17.78 50.678 41.878 81.374 72.572v0 0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.322 32 32 32h224v624z",
            "M256 64h128v64h-128v-64z",
            "M384 128h128v64h-128v-64z",
            "M256 192h128v64h-128v-64z",
            "M384 256h128v64h-128v-64z",
            "M256 320h128v64h-128v-64z",
            "M384 384h128v64h-128v-64z",
            "M256 448h128v64h-128v-64z",
            "M384 512h128v64h-128v-64z",
            "M256 848c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-80v-64h-128v272zM448 768v64h-128v-64h128z"
          ],
          "tags": [
            "file-zip",
            "file",
            "document",
            "file-compressed",
            "file-type",
            "file-format"
          ],
          "defaultCode": 59691,
          "grid": 16,
          "id": 44,
          "attrs": []
        },
        {
          "paths": [
            "M640 256v-256h-448l-192 192v576h384v256h640v-768h-384zM192 90.51v101.49h-101.49l101.49-101.49zM64 704v-448h192v-192h320v192l-192 192v256h-320zM576 346.51v101.49h-101.49l101.49-101.49zM960 960h-512v-448h192v-192h320v640z"
          ],
          "tags": [
            "copy",
            "duplicate",
            "files",
            "pages",
            "papers",
            "documents"
          ],
          "defaultCode": 59692,
          "grid": 16,
          "id": 45,
          "attrs": []
        },
        {
          "paths": [
            "M704 128h-128v-64c0-35.2-28.8-64-64-64h-128c-35.204 0-64 28.8-64 64v64h-128v128h512v-128zM512 128h-128v-63.886c0.034-0.038 0.072-0.078 0.114-0.114h127.768c0.042 0.036 0.082 0.076 0.118 0.114v63.886zM832 320v-160c0-17.6-14.4-32-32-32h-64v64h32v128h-192l-192 192v256h-256v-576h32v-64h-64c-17.602 0-32 14.4-32 32v640c0 17.6 14.398 32 32 32h288v192h640v-704h-192zM576 410.51v101.49h-101.49l101.49-101.49zM960 960h-512v-384h192v-192h320v576z"
          ],
          "tags": [
            "paste",
            "clipboard-file"
          ],
          "defaultCode": 59693,
          "grid": 16,
          "id": 46,
          "attrs": []
        },
        {
          "paths": [
            "M1024 320l-512-256-512 256 512 256 512-256zM512 148.97l342.058 171.030-342.058 171.030-342.058-171.030 342.058-171.030zM921.444 460.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722zM921.444 652.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722z"
          ],
          "tags": [
            "stack",
            "layers"
          ],
          "defaultCode": 59694,
          "grid": 16,
          "id": 47,
          "attrs": []
        },
        {
          "paths": [
            "M448 128l128 128h448v704h-1024v-832z"
          ],
          "tags": [
            "folder",
            "directory",
            "category",
            "browse"
          ],
          "defaultCode": 59695,
          "grid": 16,
          "id": 48,
          "attrs": []
        },
        {
          "paths": [
            "M832 960l192-512h-832l-192 512zM128 384l-128 576v-832h288l128 128h416v128z"
          ],
          "tags": [
            "folder-open",
            "directory",
            "category",
            "browse"
          ],
          "defaultCode": 59696,
          "grid": 16,
          "id": 49,
          "attrs": []
        },
        {
          "paths": [
            "M576 256l-128-128h-448v832h1024v-704h-448zM704 704h-128v128h-128v-128h-128v-128h128v-128h128v128h128v128z"
          ],
          "tags": [
            "folder-plus",
            "directory",
            "folder-add"
          ],
          "defaultCode": 59697,
          "grid": 16,
          "id": 50,
          "attrs": []
        },
        {
          "paths": [
            "M576 256l-128-128h-448v832h1024v-704h-448zM704 704h-384v-128h384v128z"
          ],
          "tags": [
            "folder-minus",
            "directory",
            "folder-remove"
          ],
          "defaultCode": 59698,
          "grid": 16,
          "id": 51,
          "attrs": []
        },
        {
          "paths": [
            "M576 256l-128-128h-448v832h1024v-704h-448zM512 864l-224-224h160v-256h128v256h160l-224 224z"
          ],
          "tags": [
            "folder-download",
            "directory",
            "folder-save"
          ],
          "defaultCode": 59699,
          "grid": 16,
          "id": 52,
          "attrs": []
        },
        {
          "paths": [
            "M576 256l-128-128h-448v832h1024v-704h-448zM512 480l224 224h-160v256h-128v-256h-160l224-224z"
          ],
          "tags": [
            "folder-upload",
            "directory",
            "folder-load"
          ],
          "defaultCode": 59700,
          "grid": 16,
          "id": 53,
          "attrs": []
        },
        {
          "paths": [
            "M976 0h-384c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l476.118-476.118c18.666-18.666 33.94-55.54 33.94-81.94v-384c0-26.4-21.6-48-48-48zM736 384c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z"
          ],
          "tags": [
            "price-tag"
          ],
          "defaultCode": 59701,
          "grid": 16,
          "id": 54,
          "attrs": []
        },
        {
          "width": 1280,
          "paths": [
            "M1232 0h-384c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l476.118-476.118c18.666-18.666 33.94-55.54 33.94-81.94v-384c0-26.4-21.6-48-48-48zM992 384c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z",
            "M128 544l544-544h-80c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l30.058-30.058-416-416z"
          ],
          "tags": [
            "price-tags"
          ],
          "defaultCode": 59702,
          "grid": 16,
          "id": 55,
          "attrs": []
        },
        {
          "paths": [
            "M0 128h128v640h-128zM192 128h64v640h-64zM320 128h64v640h-64zM512 128h64v640h-64zM768 128h64v640h-64zM960 128h64v640h-64zM640 128h32v640h-32zM448 128h32v640h-32zM864 128h32v640h-32zM0 832h64v64h-64zM192 832h64v64h-64zM320 832h64v64h-64zM640 832h64v64h-64zM960 832h64v64h-64zM768 832h128v64h-128zM448 832h128v64h-128z"
          ],
          "tags": [
            "barcode"
          ],
          "defaultCode": 59703,
          "grid": 16,
          "id": 56,
          "attrs": []
        },
        {
          "paths": [
            "M320 64h-256v256h256v-256zM384 0v0 384h-384v-384h384zM128 128h128v128h-128zM960 64h-256v256h256v-256zM1024 0v0 384h-384v-384h384zM768 128h128v128h-128zM320 704h-256v256h256v-256zM384 640v0 384h-384v-384h384zM128 768h128v128h-128zM448 0h64v64h-64zM512 64h64v64h-64zM448 128h64v64h-64zM512 192h64v64h-64zM448 256h64v64h-64zM512 320h64v64h-64zM448 384h64v64h-64zM448 512h64v64h-64zM512 576h64v64h-64zM448 640h64v64h-64zM512 704h64v64h-64zM448 768h64v64h-64zM512 832h64v64h-64zM448 896h64v64h-64zM512 960h64v64h-64zM960 512h64v64h-64zM64 512h64v64h-64zM128 448h64v64h-64zM0 448h64v64h-64zM256 448h64v64h-64zM320 512h64v64h-64zM384 448h64v64h-64zM576 512h64v64h-64zM640 448h64v64h-64zM704 512h64v64h-64zM768 448h64v64h-64zM832 512h64v64h-64zM896 448h64v64h-64zM960 640h64v64h-64zM576 640h64v64h-64zM640 576h64v64h-64zM704 640h64v64h-64zM832 640h64v64h-64zM896 576h64v64h-64zM960 768h64v64h-64zM576 768h64v64h-64zM640 704h64v64h-64zM768 704h64v64h-64zM832 768h64v64h-64zM896 704h64v64h-64zM960 896h64v64h-64zM640 832h64v64h-64zM704 896h64v64h-64zM768 832h64v64h-64zM832 896h64v64h-64zM640 960h64v64h-64zM768 960h64v64h-64zM896 960h64v64h-64z"
          ],
          "tags": [
            "qrcode"
          ],
          "defaultCode": 59704,
          "grid": 16,
          "id": 57,
          "attrs": []
        },
        {
          "paths": [
            "M575.996 320l127.998 127.998-255.994 255.994-127.998-127.998zM1001.526 297.504l-73.516-73.516-32.008 32.008c-16.378 16.38-39.010 26.51-64 26.51-49.988 0-90.514-40.522-90.514-90.51 0-25.002 10.14-47.638 26.534-64.018l31.988-31.986-73.518-73.516c-29.968-29.968-79.008-29.968-108.976 0l-595.040 595.038c-29.966 29.968-29.966 79.010 0 108.976l73.52 73.518 31.962-31.964c16.382-16.406 39.030-26.552 64.044-26.552 49.988 0 90.51 40.524 90.51 90.51 0 25.006-10.14 47.64-26.534 64.022l-31.984 31.986 73.516 73.518c29.966 29.966 79.008 29.966 108.976 0l595.040-595.040c29.964-29.976 29.964-79.016 0-108.984zM448.002 831.996l-256-256 384-384 256 256-384 384z"
          ],
          "tags": [
            "ticket",
            "theater",
            "cinema"
          ],
          "defaultCode": 59705,
          "grid": 16,
          "id": 58,
          "attrs": []
        },
        {
          "paths": [
            "M384 928c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z",
            "M1024 928c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z",
            "M1024 512v-384h-768c0-35.346-28.654-64-64-64h-192v64h128l48.074 412.054c-29.294 23.458-48.074 59.5-48.074 99.946 0 70.696 57.308 128 128 128h768v-64h-768c-35.346 0-64-28.654-64-64 0-0.218 0.014-0.436 0.016-0.656l831.984-127.344z"
          ],
          "tags": [
            "cart",
            "purchase",
            "ecommerce",
            "shopping"
          ],
          "defaultCode": 59706,
          "grid": 16,
          "id": 59,
          "attrs": []
        },
        {
          "paths": [
            "M480 64c-265.096 0-480 214.904-480 480 0 265.098 214.904 480 480 480 265.098 0 480-214.902 480-480 0-265.096-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384zM512 512v-128h128v-64h-128v-64h-64v64h-128v256h128v128h-128v64h128v64h64v-64h128.002l-0.002-256h-128zM448 512h-64v-128h64v128zM576.002 704h-64.002v-128h64.002v128z"
          ],
          "tags": [
            "coin-dollar",
            "money",
            "cash",
            "currency-dollar"
          ],
          "defaultCode": 59707,
          "grid": 16,
          "id": 60,
          "attrs": []
        },
        {
          "paths": [
            "M480 64c-265.096 0-480 214.904-480 480s214.904 480 480 480c265.098 0 480-214.902 480-480s-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.076 0 384 171.922 384 384s-171.924 384-384 384z",
            "M670.824 644.34c-15.27-8.884-34.862-3.708-43.75 11.57-17.256 29.662-49.088 48.090-83.074 48.090h-128c-41.716 0-77.286-26.754-90.496-64h154.496c17.672 0 32-14.326 32-32s-14.328-32-32-32h-160v-64h160c17.672 0 32-14.328 32-32s-14.328-32-32-32h-154.496c13.21-37.246 48.78-64 90.496-64h128c33.986 0 65.818 18.426 83.074 48.090 8.888 15.276 28.478 20.456 43.752 11.568 15.276-8.888 20.456-28.476 11.568-43.752-28.672-49.288-81.702-79.906-138.394-79.906h-128c-77.268 0-141.914 55.056-156.78 128h-35.22c-17.672 0-32 14.328-32 32s14.328 32 32 32h32v64h-32c-17.672 0-32 14.326-32 32s14.328 32 32 32h35.22c14.866 72.944 79.512 128 156.78 128h128c56.692 0 109.72-30.62 138.394-79.91 8.888-15.276 3.708-34.864-11.57-43.75z"
          ],
          "tags": [
            "coin-euro",
            "money",
            "cash",
            "currency-euro"
          ],
          "defaultCode": 59708,
          "grid": 16,
          "id": 61,
          "attrs": []
        },
        {
          "paths": [
            "M480 64c-265.096 0-480 214.904-480 480s214.904 480 480 480c265.098 0 480-214.902 480-480s-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.074 0 384 171.922 384 384s-171.926 384-384 384z",
            "M608 704h-224v-128h96c17.672 0 32-14.326 32-32s-14.328-32-32-32h-96v-32c0-52.934 43.066-96 96-96 34.17 0 66.042 18.404 83.18 48.030 8.85 15.298 28.426 20.526 43.722 11.676 15.296-8.848 20.526-28.424 11.676-43.722-28.538-49.336-81.638-79.984-138.578-79.984-88.224 0-160 71.776-160 160v32h-32c-17.672 0-32 14.326-32 32s14.328 32 32 32h32v192h288c17.674 0 32-14.326 32-32s-14.326-32-32-32z"
          ],
          "tags": [
            "coin-pound",
            "money",
            "cash",
            "currency-pound"
          ],
          "defaultCode": 59709,
          "grid": 16,
          "id": 62,
          "attrs": []
        },
        {
          "paths": [
            "M480 64c-265.096 0-480 214.904-480 480s214.904 480 480 480c265.098 0 480-214.902 480-480s-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.076 0 384 171.922 384 384s-171.924 384-384 384z",
            "M608 576c17.674 0 32-14.326 32-32s-14.326-32-32-32h-68.208l94.832-142.25c9.804-14.704 5.83-34.572-8.876-44.376-14.704-9.802-34.572-5.83-44.376 8.876l-101.372 152.062-101.374-152.062c-9.804-14.706-29.672-18.68-44.376-8.876-14.706 9.804-18.678 29.672-8.876 44.376l94.834 142.25h-68.208c-17.672 0-32 14.326-32 32s14.328 32 32 32h96v64h-96c-17.672 0-32 14.326-32 32s14.328 32 32 32h96v96c0 17.674 14.328 32 32 32s32-14.326 32-32v-96h96c17.674 0 32-14.326 32-32s-14.326-32-32-32h-96v-64h96z"
          ],
          "tags": [
            "coin-yen",
            "money",
            "cash",
            "currency-yen"
          ],
          "defaultCode": 59710,
          "grid": 16,
          "id": 63,
          "attrs": []
        },
        {
          "paths": [
            "M928 128h-832c-52.8 0-96 43.2-96 96v576c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-576c0-52.8-43.2-96-96-96zM96 192h832c17.346 0 32 14.654 32 32v96h-896v-96c0-17.346 14.654-32 32-32zM928 832h-832c-17.346 0-32-14.654-32-32v-288h896v288c0 17.346-14.654 32-32 32zM128 640h64v128h-64zM256 640h64v128h-64zM384 640h64v128h-64z"
          ],
          "tags": [
            "credit-card",
            "money",
            "payment",
            "ecommerce"
          ],
          "defaultCode": 59711,
          "grid": 16,
          "id": 64,
          "attrs": []
        },
        {
          "paths": [
            "M384 64h-320c-35.2 0-64 28.8-64 64v320c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM384 320h-320v-64h320v64zM896 64h-320c-35.204 0-64 28.8-64 64v832c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-832c0-35.2-28.8-64-64-64zM896 640h-320v-64h320v64zM896 448h-320v-64h320v64zM384 576h-320c-35.2 0-64 28.8-64 64v320c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM384 832h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z"
          ],
          "tags": [
            "calculator",
            "compute",
            "math",
            "arithmetic",
            "sum"
          ],
          "defaultCode": 59712,
          "grid": 16,
          "id": 65,
          "attrs": []
        },
        {
          "paths": [
            "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM320 512c0-106.040 85.96-192 192-192s192 85.96 192 192-85.96 192-192 192-192-85.96-192-192zM925.98 683.476v0l-177.42-73.49c12.518-30.184 19.44-63.276 19.44-97.986s-6.922-67.802-19.44-97.986l177.42-73.49c21.908 52.822 34.020 110.73 34.020 171.476s-12.114 118.654-34.020 171.476v0zM683.478 98.020v0 0l-73.49 177.42c-30.184-12.518-63.276-19.44-97.988-19.44s-67.802 6.922-97.986 19.44l-73.49-177.422c52.822-21.904 110.732-34.018 171.476-34.018 60.746 0 118.654 12.114 171.478 34.020zM98.020 340.524l177.422 73.49c-12.518 30.184-19.442 63.276-19.442 97.986s6.922 67.802 19.44 97.986l-177.42 73.49c-21.906-52.822-34.020-110.73-34.020-171.476s12.114-118.654 34.020-171.476zM340.524 925.98l73.49-177.42c30.184 12.518 63.276 19.44 97.986 19.44s67.802-6.922 97.986-19.44l73.49 177.42c-52.822 21.904-110.73 34.020-171.476 34.020-60.744 0-118.654-12.114-171.476-34.020z"
          ],
          "tags": [
            "lifebuoy",
            "support",
            "help"
          ],
          "defaultCode": 59713,
          "grid": 16,
          "id": 66,
          "attrs": []
        },
        {
          "paths": [
            "M704 640c-64 64-64 128-128 128s-128-64-192-128-128-128-128-192 64-64 128-128-128-256-192-256-192 192-192 192c0 128 131.5 387.5 256 512s384 256 512 256c0 0 192-128 192-192s-192-256-256-192z"
          ],
          "tags": [
            "phone",
            "telephone",
            "contact",
            "support",
            "call"
          ],
          "defaultCode": 59714,
          "grid": 16,
          "id": 67,
          "attrs": []
        },
        {
          "paths": [
            "M1017.378 575.994c8.004 55.482 13.216 131.392-11.664 160.446-41.142 48.044-301.712 48.044-301.712-48.042 0-48.398 42.856-80.134 1.712-128.178-40.472-47.262-113.026-48.030-193.714-48.042-80.686 0.012-153.242 0.78-193.714 48.042-41.142 48.046 1.714 79.78 1.714 128.178 0 96.086-260.57 96.086-301.714 48.044-24.878-29.054-19.668-104.964-11.662-160.446 6.16-37.038 21.724-76.996 71.548-127.994 0-0.002 0.002-0.002 0.002-0.004 74.738-69.742 187.846-126.738 429.826-127.968v-0.030c1.344 0 2.664 0.010 4 0.014 1.338-0.004 2.656-0.014 4-0.014v0.028c241.98 1.23 355.088 58.226 429.826 127.968 0.002 0.002 0.002 0.004 0.002 0.004 49.824 50.996 65.39 90.954 71.55 127.994z"
          ],
          "tags": [
            "phone-hang-up",
            "telephone",
            "contact",
            "support",
            "call"
          ],
          "defaultCode": 59715,
          "grid": 16,
          "id": 68,
          "attrs": []
        },
        {
          "paths": [
            "M192 0v1024h768v-1024h-768zM576 256.33c70.51 0 127.67 57.16 127.67 127.67s-57.16 127.67-127.67 127.67-127.67-57.16-127.67-127.67 57.16-127.67 127.67-127.67v0zM768 768h-384v-64c0-70.696 57.306-128 128-128v0h128c70.696 0 128 57.304 128 128v64z",
            "M64 64h96v192h-96v-192z",
            "M64 320h96v192h-96v-192z",
            "M64 576h96v192h-96v-192z",
            "M64 832h96v192h-96v-192z"
          ],
          "tags": [
            "address-book",
            "contact",
            "book",
            "contacts"
          ],
          "defaultCode": 59716,
          "grid": 16,
          "id": 69,
          "attrs": []
        },
        {
          "paths": [
            "M928 128h-832c-52.8 0-96 43.2-96 96v640c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-640c0-52.8-43.2-96-96-96zM398.74 550.372l-270.74 210.892v-501.642l270.74 290.75zM176.38 256h671.24l-335.62 252-335.62-252zM409.288 561.698l102.712 110.302 102.71-110.302 210.554 270.302h-626.528l210.552-270.302zM625.26 550.372l270.74-290.75v501.642l-270.74-210.892z"
          ],
          "tags": [
            "envelop",
            "mail",
            "email",
            "contact",
            "letter"
          ],
          "defaultCode": 59717,
          "grid": 16,
          "id": 70,
          "attrs": []
        },
        {
          "paths": [
            "M544 0l-96 96 96 96-224 256h-224l176 176-272 360.616v39.384h39.384l360.616-272 176 176v-224l256-224 96 96 96-96-480-480zM448 544l-64-64 224-224 64 64-224 224z"
          ],
          "tags": [
            "pushpin",
            "pin"
          ],
          "defaultCode": 59718,
          "grid": 16,
          "id": 71,
          "attrs": []
        },
        {
          "paths": [
            "M512 0c-176.732 0-320 143.268-320 320 0 320 320 704 320 704s320-384 320-704c0-176.732-143.27-320-320-320zM512 512c-106.040 0-192-85.96-192-192s85.96-192 192-192 192 85.96 192 192-85.96 192-192 192z"
          ],
          "tags": [
            "location",
            "map-marker",
            "pin"
          ],
          "defaultCode": 59719,
          "grid": 16,
          "id": 72,
          "attrs": []
        },
        {
          "paths": [
            "M512 0c-176.732 0-320 143.268-320 320 0 320 320 704 320 704s320-384 320-704c0-176.732-143.27-320-320-320zM512 516c-108.248 0-196-87.752-196-196s87.752-196 196-196 196 87.752 196 196-87.752 196-196 196zM388 320c0-68.483 55.517-124 124-124s124 55.517 124 124c0 68.483-55.517 124-124 124s-124-55.517-124-124z"
          ],
          "tags": [
            "location",
            "map-marker",
            "pin"
          ],
          "defaultCode": 59720,
          "grid": 16,
          "id": 73,
          "attrs": []
        },
        {
          "paths": [
            "M544.010 1024.004c-2.296 0-4.622-0.25-6.94-0.764-14.648-3.25-25.070-16.238-25.070-31.24v-480h-480c-15.002 0-27.992-10.422-31.24-25.070-3.25-14.646 4.114-29.584 17.708-35.928l960-448c12.196-5.688 26.644-3.144 36.16 6.372 9.516 9.514 12.060 23.966 6.372 36.16l-448 960c-5.342 11.44-16.772 18.47-28.99 18.47zM176.242 448h367.758c17.674 0 32 14.328 32 32v367.758l349.79-749.546-749.548 349.788z"
          ],
          "tags": [
            "compass",
            "direction",
            "location"
          ],
          "defaultCode": 59721,
          "grid": 16,
          "id": 74,
          "attrs": []
        },
        {
          "paths": [
            "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM96 512c0-229.75 186.25-416 416-416 109.574 0 209.232 42.386 283.534 111.628l-411.534 176.372-176.372 411.534c-69.242-74.302-111.628-173.96-111.628-283.534zM585.166 585.166l-256.082 109.75 109.75-256.082 146.332 146.332zM512 928c-109.574 0-209.234-42.386-283.532-111.628l411.532-176.372 176.372-411.532c69.242 74.298 111.628 173.958 111.628 283.532 0 229.75-186.25 416-416 416z"
          ],
          "tags": [
            "compass",
            "direction",
            "location"
          ],
          "defaultCode": 59722,
          "grid": 16,
          "id": 75,
          "attrs": []
        },
        {
          "paths": [
            "M0 192l320-128v768l-320 128z",
            "M384 32l320 192v736l-320-160z",
            "M768 224l256-192v768l-256 192z"
          ],
          "tags": [
            "map",
            "guide"
          ],
          "defaultCode": 59723,
          "grid": 16,
          "id": 76,
          "attrs": []
        },
        {
          "paths": [
            "M672 192l-320-128-352 128v768l352-128 320 128 352-128v-768l-352 128zM384 145.73l256 102.4v630.138l-256-102.398v-630.14zM64 236.828l256-93.090v631.8l-256 93.088v-631.798zM960 787.172l-256 93.092v-631.8l256-93.090v631.798z"
          ],
          "tags": [
            "map",
            "guide"
          ],
          "defaultCode": 59724,
          "grid": 16,
          "id": 77,
          "attrs": []
        },
        {
          "width": 1088,
          "paths": [
            "M640 64c247.424 0 448 200.576 448 448s-200.576 448-448 448v-96c94.024 0 182.418-36.614 248.902-103.098s103.098-154.878 103.098-248.902c0-94.022-36.614-182.418-103.098-248.902s-154.878-103.098-248.902-103.098c-94.022 0-182.418 36.614-248.902 103.098-51.14 51.138-84.582 115.246-97.306 184.902h186.208l-224 256-224-256h164.57c31.060-217.102 217.738-384 443.43-384zM832 448v128h-256v-320h128v192z"
          ],
          "tags": [
            "history",
            "time",
            "archive",
            "past"
          ],
          "defaultCode": 59725,
          "grid": 16,
          "id": 78,
          "attrs": []
        },
        {
          "paths": [
            "M658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254zM512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"
          ],
          "tags": [
            "clock",
            "time",
            "schedule"
          ],
          "defaultCode": 59726,
          "grid": 16,
          "id": 79,
          "attrs": []
        },
        {
          "paths": [
            "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254-90.512 90.512z"
          ],
          "tags": [
            "clock",
            "time",
            "schedule"
          ],
          "defaultCode": 59727,
          "grid": 16,
          "id": 80,
          "attrs": []
        },
        {
          "paths": [
            "M512 128c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448zM512 936c-198.824 0-360-161.178-360-360 0-198.824 161.176-360 360-360 198.822 0 360 161.176 360 360 0 198.822-161.178 360-360 360zM934.784 287.174c16.042-28.052 25.216-60.542 25.216-95.174 0-106.040-85.96-192-192-192-61.818 0-116.802 29.222-151.92 74.596 131.884 27.236 245.206 105.198 318.704 212.578v0zM407.92 74.596c-35.116-45.374-90.102-74.596-151.92-74.596-106.040 0-192 85.96-192 192 0 34.632 9.174 67.122 25.216 95.174 73.5-107.38 186.822-185.342 318.704-212.578z",
            "M512 576v-256h-64v320h256v-64z"
          ],
          "tags": [
            "alarm",
            "time",
            "clock"
          ],
          "defaultCode": 59728,
          "grid": 16,
          "id": 81,
          "attrs": []
        },
        {
          "paths": [
            "M1025.5 800c0-288-256-224-256-448 0-18.56-1.788-34.42-5.048-47.928-16.83-113.018-92.156-203.72-189.772-231.36 0.866-3.948 1.32-8.032 1.32-12.21 0-33.278-28.8-60.502-64-60.502s-64 27.224-64 60.5c0 4.18 0.456 8.264 1.32 12.21-109.47 30.998-190.914 141.298-193.254 273.442-0.040 1.92-0.066 3.864-0.066 5.846 0 224.002-256 160.002-256 448.002 0 76.226 170.59 139.996 398.97 156.080 21.524 40.404 64.056 67.92 113.030 67.92s91.508-27.516 113.030-67.92c228.38-16.084 398.97-79.854 398.97-156.080 0-0.228-0.026-0.456-0.028-0.682l1.528 0.682zM826.246 854.096c-54.23 14.47-118.158 24.876-186.768 30.648-5.704-65.418-60.582-116.744-127.478-116.744s-121.774 51.326-127.478 116.744c-68.608-5.772-132.538-16.178-186.768-30.648-74.63-19.914-110.31-42.19-123.368-54.096 13.058-11.906 48.738-34.182 123.368-54.096 86.772-23.152 198.372-35.904 314.246-35.904s227.474 12.752 314.246 35.904c74.63 19.914 110.31 42.19 123.368 54.096-13.058 11.906-48.738 34.182-123.368 54.096z"
          ],
          "tags": [
            "bell",
            "alarm",
            "notification"
          ],
          "defaultCode": 59729,
          "grid": 16,
          "id": 82,
          "attrs": []
        },
        {
          "paths": [
            "M512.002 193.212v-65.212h128v-64c0-35.346-28.654-64-64.002-64h-191.998c-35.346 0-64 28.654-64 64v64h128v65.212c-214.798 16.338-384 195.802-384 414.788 0 229.75 186.25 416 416 416s416-186.25 416-416c0-218.984-169.202-398.448-384-414.788zM706.276 834.274c-60.442 60.44-140.798 93.726-226.274 93.726s-165.834-33.286-226.274-93.726c-60.44-60.44-93.726-140.8-93.726-226.274s33.286-165.834 93.726-226.274c58.040-58.038 134.448-91.018 216.114-93.548l-21.678 314.020c-1.86 26.29 12.464 37.802 31.836 37.802s33.698-11.512 31.836-37.802l-21.676-314.022c81.666 2.532 158.076 35.512 216.116 93.55 60.44 60.44 93.726 140.8 93.726 226.274s-33.286 165.834-93.726 226.274z"
          ],
          "tags": [
            "stopwatch",
            "time",
            "speed",
            "meter",
            "chronometer"
          ],
          "defaultCode": 59730,
          "grid": 16,
      
Download .txt
gitextract__90_xxjy/

├── .cargo/
│   └── config
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── add-new-package-s-.md
│   │   ├── bug_report.md
│   │   ├── debloat-issue-report.md
│   │   ├── feature_request.md
│   │   └── update-apps-description-or-recommendation.md
│   ├── release.yml
│   └── workflows/
│       ├── build_artifacts.yml
│       ├── ci.yml
│       └── release.yml
├── .gitignore
├── CHANGELOG.md
├── Cargo.toml
├── LICENSE
├── README.md
├── resources/
│   └── assets/
│       ├── icons.json
│       └── uad_lists.json
└── src/
    ├── core/
    │   ├── config.rs
    │   ├── mod.rs
    │   ├── save.rs
    │   ├── sync.rs
    │   ├── theme.rs
    │   ├── uad_lists.rs
    │   ├── update.rs
    │   └── utils.rs
    ├── gui/
    │   ├── mod.rs
    │   ├── style.rs
    │   ├── views/
    │   │   ├── about.rs
    │   │   ├── list.rs
    │   │   ├── mod.rs
    │   │   └── settings.rs
    │   └── widgets/
    │       ├── mod.rs
    │       ├── modal.rs
    │       ├── navigation_menu.rs
    │       └── package_row.rs
    └── main.rs
Download .txt
SYMBOL INDEX (196 symbols across 16 files)

FILE: src/core/config.rs
  type Config (line 11) | pub struct Config {
    method save_changes (line 56) | pub fn save_changes(settings: &Settings, device_id: &String) {
    method load_configuration_file (line 73) | pub fn load_configuration_file() -> Self {
  type GeneralSettings (line 18) | pub struct GeneralSettings {
  type BackupSettings (line 24) | pub struct BackupSettings {
  type DeviceSettings (line 33) | pub struct DeviceSettings {
  method default (line 42) | fn default() -> Self {

FILE: src/core/save.rs
  type PhoneBackup (line 15) | struct PhoneBackup {
  type UserBackup (line 21) | struct UserBackup {
  function backup_phone (line 27) | pub async fn backup_phone(
  function list_available_backups (line 73) | pub fn list_available_backups(dir: &Path) -> Vec<DisplayablePath> {
  function list_available_backup_user (line 84) | pub fn list_available_backup_user(backup: DisplayablePath) -> Vec<User> {
  type BackupPackage (line 108) | pub struct BackupPackage {
  function restore_backup (line 113) | pub fn restore_backup(

FILE: src/core/sync.rs
  type Phone (line 19) | pub struct Phone {
    method fmt (line 38) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  method default (line 27) | fn default() -> Self {
  type User (line 44) | pub struct User {
    method fmt (line 51) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  function adb_shell_command (line 56) | pub fn adb_shell_command(shell: bool, args: &str) -> Result<String, Stri...
  type CommandType (line 99) | pub enum CommandType {
  function perform_adb_commands (line 103) | pub async fn perform_adb_commands(
  function user_flag (line 137) | pub fn user_flag(user_id: Option<&User>) -> String {
  function list_all_system_packages (line 144) | pub fn list_all_system_packages(user_id: Option<&User>) -> String {
  function hashset_system_packages (line 152) | pub fn hashset_system_packages(state: PackageState, user_id: Option<&Use...
  type CorePackage (line 170) | pub struct CorePackage {
    method from (line 176) | fn from(pr: &mut PackageRow) -> Self {
    method from (line 184) | fn from(pr: PackageRow) -> Self {
    method from (line 193) | fn from(pr: &PackageRow) -> Self {
  function apply_pkg_state_commands (line 201) | pub fn apply_pkg_state_commands(
  function request_builder (line 250) | pub fn request_builder(commands: &[&str], package: &str, user: Option<&U...
  function get_phone_model (line 261) | pub fn get_phone_model() -> String {
  function get_android_sdk (line 272) | pub fn get_android_sdk() -> u8 {
  function get_phone_brand (line 276) | pub fn get_phone_brand() -> String {
  function is_protected_user (line 286) | pub fn is_protected_user(user_id: &str) -> bool {
  function get_user_list (line 290) | pub fn get_user_list() -> Vec<User> {
  function get_devices_list (line 308) | pub async fn get_devices_list() -> Vec<Phone> {

FILE: src/core/theme.rs
  type Theme (line 4) | pub enum Theme {
    constant ALL (line 41) | pub const ALL: [Self; 3] = [Self::Lupin, Self::Dark, Self::Light];
    method palette (line 42) | pub fn palette(self) -> ColorPalette {
    method fmt (line 103) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  type BaseColors (line 12) | pub struct BaseColors {
  type NormalColors (line 18) | pub struct NormalColors {
  type BrightColors (line 26) | pub struct BrightColors {
  type ColorPalette (line 34) | pub struct ColorPalette {

FILE: src/core/uad_lists.rs
  type Package (line 12) | pub struct Package {
  type UadList (line 23) | pub enum UadList {
    constant ALL (line 56) | pub const ALL: [Self; 8] = [
    method fmt (line 69) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  type UadListState (line 36) | pub enum UadListState {
    method fmt (line 44) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  type PackageState (line 88) | pub enum PackageState {
    constant ALL (line 97) | pub const ALL: [Self; 4] = [Self::All, Self::Enabled, Self::Uninstalle...
    method fmt (line 101) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  type Opposite (line 115) | pub trait Opposite {
    method opposite (line 116) | fn opposite(&self, disable: bool) -> PackageState;
    method opposite (line 120) | fn opposite(&self, disable: bool) -> Self {
  type Removal (line 137) | pub enum Removal {
    constant ALL (line 148) | pub const ALL: [Self; 6] = [
    method fmt (line 159) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  type PackageHashMap (line 175) | type PackageHashMap = HashMap<String, Package>;
  function load_debloat_lists (line 176) | pub fn load_debloat_lists(remote: bool) -> (Result<PackageHashMap, Packa...
  function get_local_lists (line 219) | fn get_local_lists() -> Vec<Package> {
  function test_parse_json (line 235) | fn test_parse_json() {

FILE: src/core/update.rs
  type Release (line 14) | pub struct Release {
  type ReleaseAsset (line 20) | pub struct ReleaseAsset {
  type SelfUpdateState (line 27) | pub struct SelfUpdateState {
  type SelfUpdateStatus (line 33) | pub enum SelfUpdateStatus {
    method fmt (line 42) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  function download_file (line 55) | pub async fn download_file<T: ToString + Send>(url: T, dest_file: PathBu...
  function download_update_to_temp_file (line 76) | pub async fn download_update_to_temp_file(
  function get_latest_release (line 165) | pub fn get_latest_release() -> Result<Option<Release>, ()> {
  function get_latest_release (line 173) | pub fn get_latest_release() -> Result<Option<Release>, ()> {
  function extract_binary_from_tar (line 206) | pub fn extract_binary_from_tar(archive_path: &Path, temp_file: &Path) ->...
  function bin_name (line 229) | pub const fn bin_name() -> &'static str {
  function rename (line 251) | pub fn rename<F, T>(from: F, to: T) -> Result<(), String>
  function remove_file (line 279) | pub fn remove_file<P>(path: P) -> Result<(), String>

FILE: src/core/utils.rs
  function fetch_packages (line 12) | pub fn fetch_packages(
  function string_to_theme (line 54) | pub fn string_to_theme(theme: &str) -> Theme {
  function setup_uad_dir (line 63) | pub fn setup_uad_dir(dir: Option<PathBuf>) -> PathBuf {
  function open_url (line 69) | pub fn open_url(dir: PathBuf) {
  function last_modified_date (line 92) | pub fn last_modified_date(file: PathBuf) -> DateTime<Utc> {
  function format_diff_time_from_now (line 99) | pub fn format_diff_time_from_now(date: DateTime<Utc>) -> String {
  type DisplayablePath (line 114) | pub struct DisplayablePath {
    method fmt (line 119) | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {

FILE: src/gui/mod.rs
  type View (line 27) | enum View {
  type UpdateState (line 35) | pub struct UpdateState {
  type UadGui (line 41) | pub struct UadGui {
    method start (line 355) | pub fn start() -> iced::Result {
  type Message (line 53) | pub enum Message {
  type Theme (line 71) | type Theme = Theme;
  type Executor (line 72) | type Executor = iced::executor::Default;
  type Message (line 73) | type Message = Message;
  type Flags (line 74) | type Flags = ();
  method new (line 76) | fn new(_flags: ()) -> (Self, Command<Message>) {
  method theme (line 89) | fn theme(&self) -> Theme {
  method title (line 93) | fn title(&self) -> String {
  method update (line 96) | fn update(&mut self, msg: Message) -> Command<Message> {
  method view (line 323) | fn view(&self) -> Element<Self::Message, Renderer<Self::Theme>> {

FILE: src/gui/style.rs
  type Application (line 9) | pub enum Application {
  type Style (line 15) | type Style = Application;
  method appearance (line 17) | fn appearance(&self, _style: &Self::Style) -> application::Appearance {
  type Container (line 26) | pub enum Container {
  type Style (line 36) | type Style = Container;
  method appearance (line 38) | fn appearance(&self, style: &Self::Style) -> container::Appearance {
  type Button (line 73) | pub enum Button {
  type Style (line 86) | type Style = Button;
  method active (line 88) | fn active(&self, style: &Self::Style) -> button::Appearance {
  method hovered (line 134) | fn hovered(&self, style: &Self::Style) -> button::Appearance {
  method pressed (line 157) | fn pressed(&self, style: &Self::Style) -> button::Appearance {
  method disabled (line 161) | fn disabled(&self, style: &Self::Style) -> button::Appearance {
  type Scrollable (line 184) | pub enum Scrollable {
  type Style (line 191) | type Style = Scrollable;
  method active (line 193) | fn active(&self, style: &Self::Style) -> scrollable::Scrollbar {
  method hovered (line 213) | fn hovered(&self, style: &Self::Style, _mouse_over_scrollbar: bool) -> s...
  method dragging (line 220) | fn dragging(&self, style: &Self::Style) -> scrollable::Scrollbar {
  type CheckBox (line 230) | pub enum CheckBox {
  type Style (line 239) | type Style = CheckBox;
  method active (line 241) | fn active(&self, style: &Self::Style, _is_checked: bool) -> checkbox::Ap...
  method hovered (line 281) | fn hovered(&self, style: &Self::Style, is_checked: bool) -> checkbox::Ap...
  type TextInput (line 301) | pub enum TextInput {
  type Style (line 307) | type Style = TextInput;
  method active (line 309) | fn active(&self, _style: &Self::Style) -> text_input::Appearance {
  method focused (line 318) | fn focused(&self, _style: &Self::Style) -> text_input::Appearance {
  method placeholder_color (line 330) | fn placeholder_color(&self, _style: &Self::Style) -> Color {
  method value_color (line 334) | fn value_color(&self, _style: &Self::Style) -> Color {
  method selection_color (line 338) | fn selection_color(&self, _style: &Self::Style) -> Color {
  method hovered (line 343) | fn hovered(&self, style: &Self::Style) -> text_input::Appearance {
  type PickList (line 349) | pub enum PickList {
  type Style (line 355) | type Style = ();
  method appearance (line 357) | fn appearance(&self, _style: &Self::Style) -> menu::Appearance {
  type Style (line 373) | type Style = ();
  method active (line 375) | fn active(&self, _style: &()) -> pick_list::Appearance {
  method hovered (line 390) | fn hovered(&self, style: &()) -> pick_list::Appearance {
  type Text (line 400) | pub enum Text {
    method from (line 410) | fn from(color: Color) -> Self {
  type Style (line 416) | type Style = Text;
  method appearance (line 418) | fn appearance(&self, style: Self::Style) -> text::Appearance {
  type Style (line 436) | type Style = ();
  method active (line 438) | fn active(&self, _style: &Self::Style, _is_selected: bool) -> radio::App...
  method hovered (line 448) | fn hovered(&self, style: &Self::Style, _is_selected: bool) -> radio::App...
  type Rule (line 461) | pub enum Rule {
  type Style (line 467) | type Style = Rule;
  method appearance (line 469) | fn appearance(&self, style: &Self::Style) -> rule::Appearance {

FILE: src/gui/views/about.rs
  type About (line 13) | pub struct About {}
    method update (line 23) | pub fn update(&mut self, msg: Message) {
    method view (line 29) | pub fn view(&self, update_state: &UpdateState) -> Element<Message, Ren...
  type Message (line 16) | pub enum Message {

FILE: src/gui/views/list.rs
  type PackageInfo (line 23) | pub struct PackageInfo {
  type LoadingState (line 30) | pub enum LoadingState {
  method default (line 40) | fn default() -> Self {
  type List (line 46) | pub struct List {
    method update (line 84) | pub fn update(
    method view (line 284) | pub fn view(
    method apply_selection_modal (line 468) | fn apply_selection_modal(
    method filter_package_lists (line 671) | fn filter_package_lists(&mut self) {
    method load_packages (line 689) | async fn load_packages(
    method init_apps_view (line 707) | async fn init_apps_view(
  type Message (line 63) | pub enum Message {
  function waiting_view (line 728) | fn waiting_view<'a>(
  function build_action_pkg_commands (line 760) | fn build_action_pkg_commands(
  function recap (line 801) | fn recap<'a>(

FILE: src/gui/views/settings.rs
  type Settings (line 17) | pub struct Settings {
    method update (line 47) | pub fn update(
    method view (line 185) | pub fn view(&self, phone: &Phone) -> Element<Message, Renderer<Theme>> {
  method default (line 23) | fn default() -> Self {
  type Message (line 32) | pub enum Message {

FILE: src/gui/widgets/modal.rs
  type Modal (line 9) | pub struct Modal<'a, Message, Renderer> {
  function new (line 17) | pub fn new(
  function on_blur (line 31) | pub fn on_blur(self, on_blur: Message) -> Self {
  function children (line 44) | fn children(&self) -> Vec<Tree> {
  function diff (line 48) | fn diff(&self, tree: &mut Tree) {
  function width (line 52) | fn width(&self) -> Length {
  function height (line 56) | fn height(&self) -> Length {
  function layout (line 60) | fn layout(&self, renderer: &Renderer, limits: &layout::Limits) -> layout...
  function on_event (line 64) | fn on_event(
  function draw (line 85) | fn draw(
  function overlay (line 106) | fn overlay<'b>(
  function mouse_interaction (line 123) | fn mouse_interaction(
  function operate (line 140) | fn operate(
  type Overlay (line 153) | struct Overlay<'a, 'b, Message, Renderer> {
  function layout (line 166) | fn layout(&self, renderer: &Renderer, _bounds: Size, position: Point) ->...
  function on_event (line 180) | fn on_event(
  function draw (line 212) | fn draw(
  function operate (line 244) | fn operate(
  function mouse_interaction (line 258) | fn mouse_interaction(
  function from (line 280) | fn from(modal: Modal<'a, Message, Renderer>) -> Self {

FILE: src/gui/widgets/navigation_menu.rs
  constant ICONS (line 10) | pub const ICONS: Font = Font::External {
  function nav_menu (line 15) | pub fn nav_menu<'a>(

FILE: src/gui/widgets/package_row.rs
  type PackageRow (line 11) | pub struct PackageRow {
    method new (line 29) | pub fn new(
    method update (line 49) | pub fn update(&mut self, _message: &Message) -> Command<Message> {
    method view (line 53) | pub fn view(&self, settings: &Settings, _phone: &Phone) -> Element<Mes...
  type Message (line 22) | pub enum Message {

FILE: src/main.rs
  function main (line 24) | fn main() -> iced::Result {
  function setup_logger (line 29) | pub fn setup_logger() -> Result<(), fern::InitError> {
Condensed preview — 36 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,641K chars).
[
  {
    "path": ".cargo/config",
    "chars": 178,
    "preview": "[target.x86_64-pc-windows-msvc]\nrustflags = [\"-C\", \"target-feature=+crt-static\"]\n\n[target.x86_64-unknown-linux-gnu]\nlink"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/add-new-package-s-.md",
    "chars": 793,
    "preview": "---\nname: Add new package(s)\nabout: You want to add new apps in the debloat list\ntitle: \"\"\nlabels: package::addition\nass"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 381,
    "preview": "---\nname: Bug report\nabout: You have an issue with the UAD software itself\ntitle: \"\"\nlabels: bug\nassignees: \"\"\n---\n\n**De"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/debloat-issue-report.md",
    "chars": 396,
    "preview": "---\nname: Debloat issue report\nabout: Your phone has unexpected issues after debloating\ntitle: \"\"\nlabels: package::break"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 187,
    "preview": "---\nname: Feature request\nabout: You want a new feature\ntitle: \"\"\nlabels: enhancement\nassignees: \"\"\n---\n\n**Describe the "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/update-apps-description-or-recommendation.md",
    "chars": 853,
    "preview": "---\nname: Update apps description or recommendation\nabout: You want to improve/update a description/recommendation\ntitle"
  },
  {
    "path": ".github/release.yml",
    "chars": 312,
    "preview": "changelog:\n  exclude:\n    labels:\n      - package::documentation\n      - package::addition\n      - package::breakage\n   "
  },
  {
    "path": ".github/workflows/build_artifacts.yml",
    "chars": 2571,
    "preview": "name: Build artifacts\non:\n  workflow_dispatch:\n  workflow_call:\n\njobs:\n  build:\n    name: Building ${{ matrix.build_targ"
  },
  {
    "path": ".github/workflows/ci.yml",
    "chars": 1559,
    "preview": "name: Continuous Integration\non:\n  push:\n    paths:\n      - \"**.rs\"\n      - \"Cargo.lock\"\n      - \"Cargo.toml\"\n      - \"*"
  },
  {
    "path": ".github/workflows/release.yml",
    "chars": 1366,
    "preview": "name: Build and release\n\non:\n  push:\n    branches:\n      - main\n    paths:\n      - \"**.rs\"\n      - \"Cargo.lock\"\n      - "
  },
  {
    "path": ".gitignore",
    "chars": 21,
    "preview": "debug/\ntarget/\n*.log\n"
  },
  {
    "path": "CHANGELOG.md",
    "chars": 12217,
    "preview": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Change"
  },
  {
    "path": "Cargo.toml",
    "chars": 1324,
    "preview": "[package]\nname = \"uad_gui\"\ndescription = \"A cross-platform GUI debloater for android devices\"\nversion = \"0.5.1\"\nauthors "
  },
  {
    "path": "LICENSE",
    "chars": 35106,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 5422,
    "preview": "# Universal Android Debloater GUI\n\n**DISCLAIMER**: Use at your own risk. I am not responsible for anything that\ncould ha"
  },
  {
    "path": "resources/assets/icons.json",
    "chars": 493941,
    "preview": "{\n  \"metadata\": {\n    \"name\": \"icons\",\n    \"lastOpened\": 1418773394855,\n    \"created\": 1676497699814\n  },\n  \"iconSets\": "
  },
  {
    "path": "resources/assets/uad_lists.json",
    "chars": 823791,
    "preview": "[\n  {\n    \"id\": \"com.sony.tvsideview.videoph\",\n    \"list\": \"Oem\",\n    \"description\": \"Video & TV SideView (replaced by h"
  },
  {
    "path": "src/core/config.rs",
    "chars": 2665,
    "preview": "use crate::core::sync::{get_android_sdk, User};\nuse crate::core::utils::DisplayablePath;\nuse crate::gui::views::settings"
  },
  {
    "path": "src/core/mod.rs",
    "chars": 109,
    "preview": "pub mod config;\npub mod save;\npub mod sync;\npub mod theme;\npub mod uad_lists;\npub mod update;\npub mod utils;\n"
  },
  {
    "path": "src/core/save.rs",
    "chars": 5527,
    "preview": "use crate::core::config::DeviceSettings;\nuse crate::core::sync::{apply_pkg_state_commands, CorePackage, Phone, User};\nus"
  },
  {
    "path": "src/core/sync.rs",
    "chars": 10706,
    "preview": "use crate::core::uad_lists::PackageState;\nuse crate::gui::views::list::PackageInfo;\nuse crate::gui::widgets::package_row"
  },
  {
    "path": "src/core/theme.rs",
    "chars": 3321,
    "preview": "use iced::{color, Color};\n\n#[derive(Default, Debug, PartialEq, Eq, Copy, Clone)]\npub enum Theme {\n    #[default]\n    Lup"
  },
  {
    "path": "src/core/uad_lists.rs",
    "chars": 6551,
    "preview": "use crate::core::utils::{format_diff_time_from_now, last_modified_date};\nuse crate::CACHE_DIR;\nuse retry::{delay::Fixed,"
  },
  {
    "path": "src/core/update.rs",
    "chars": 9050,
    "preview": "use serde::Deserialize;\n\n#[cfg(feature = \"self-update\")]\nuse {\n    retry::{delay::Fibonacci, retry, OperationResult},\n  "
  },
  {
    "path": "src/core/utils.rs",
    "chars": 4540,
    "preview": "use crate::core::sync::{hashset_system_packages, list_all_system_packages, User};\nuse crate::core::theme::Theme;\nuse cra"
  },
  {
    "path": "src/gui/mod.rs",
    "chars": 14200,
    "preview": "pub mod style;\npub mod views;\npub mod widgets;\n\nuse crate::core::sync::{get_devices_list, perform_adb_commands, CommandT"
  },
  {
    "path": "src/gui/style.rs",
    "chars": 15250,
    "preview": "use crate::core::theme::Theme;\nuse iced::overlay::menu;\nuse iced::widget::{\n    button, checkbox, container, pick_list, "
  },
  {
    "path": "src/gui/views/about.rs",
    "chars": 5106,
    "preview": "use crate::core::theme::Theme;\nuse crate::core::utils::{last_modified_date, open_url};\nuse crate::gui::{style, UpdateSta"
  },
  {
    "path": "src/gui/views/list.rs",
    "chars": 33620,
    "preview": "use crate::core::config::DeviceSettings;\nuse crate::core::sync::{apply_pkg_state_commands, perform_adb_commands, Command"
  },
  {
    "path": "src/gui/views/mod.rs",
    "chars": 47,
    "preview": "pub mod about;\npub mod list;\npub mod settings;\n"
  },
  {
    "path": "src/gui/views/settings.rs",
    "chars": 15999,
    "preview": "use crate::core::config::{BackupSettings, Config, DeviceSettings, GeneralSettings};\nuse crate::core::save::{\n    backup_"
  },
  {
    "path": "src/gui/widgets/mod.rs",
    "chars": 61,
    "preview": "pub mod modal;\npub mod navigation_menu;\npub mod package_row;\n"
  },
  {
    "path": "src/gui/widgets/modal.rs",
    "chars": 7613,
    "preview": "use iced_native::alignment::Alignment;\nuse iced_native::widget::{self, Tree};\nuse iced_native::{\n    event, layout, mous"
  },
  {
    "path": "src/gui/widgets/navigation_menu.rs",
    "chars": 3553,
    "preview": "pub use crate::core::sync::Phone;\nuse crate::core::theme::Theme;\nuse crate::core::update::{SelfUpdateState, SelfUpdateSt"
  },
  {
    "path": "src/gui/widgets/package_row.rs",
    "chars": 4119,
    "preview": "use crate::core::sync::Phone;\nuse crate::core::theme::Theme;\nuse crate::core::uad_lists::{PackageState, Removal, UadList"
  },
  {
    "path": "src/main.rs",
    "chars": 2141,
    "preview": "#![windows_subsystem = \"windows\"]\n#[macro_use]\nextern crate log;\n\nuse crate::core::utils::setup_uad_dir;\nuse fern::{\n   "
  }
]

About this extraction

This page contains the full source code of the 0x192/universal-android-debloater GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 36 files (1.5 MB), approximately 491.4k tokens, and a symbol index with 196 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!