diff --git a/.github/ISSUE_TEMPLATE/request_suggest.yml b/.github/ISSUE_TEMPLATE/request_suggest.yml
index 03bfc8cc..7a6c2bf2 100644
--- a/.github/ISSUE_TEMPLATE/request_suggest.yml
+++ b/.github/ISSUE_TEMPLATE/request_suggest.yml
@@ -1,32 +1,34 @@
-name: "\U0001FA79 Requests & Suggestions"
+name: "๐ Requests & Suggestions"
description: Suggest an icon or request changes
-labels: "\U0001FA79 Requests & Suggestions"
+labels: "๐ Requests & Suggestions"
assignees: walkxcode
body:
- type: markdown
attributes:
- value: "Thank you for your interest in contributing to our icon repository! To ensure smooth collaboration, we've established clear guidelines for contributors.\n## ๐ Icon Specifications\n\n- Icons should be provided in both `PNG` and `SVG` formats. Formats like `JPEG` or `WEBP` will not be accepted.\n - If an `SVG` version is unavailable, a `PNG` version alone suffices.\n - Conversely, if a `PNG` version is missing, it can be generated using [Ezgif SVG to PNG](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md#-converting-svg-to-png).\n\n- `PNG` files should have a height of exactly `512px` Width can vary, but a 1:1 aspect ratio is preferred.\n - โ Exceptions for upscales will be made only if the correct or a downscaled version cannot be obtained.\n - Downsizing can be accomplished using [iLoveIMG Resize](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md#-downscaling-pngs).\n\n- Icons should be named using the [Kebab Case](https://wiki.c2.com/?KebabCase) convention, reflecting their full name. For instance, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `name-light.png`. If a light version is absent, utilize [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to adjust its color.\n"
+ value: |
+ Thank you for your interest in contributing to our icon repository! To ensure smooth collaboration, please make sure to read and agree to our [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md) before submitting your request.
+
- type: checkboxes
attributes:
label: Contribution Guidelines
options:
- - label: I have read and agree to the [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md)
+ - label: "I have read and agree to the [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md)"
required: true
+
- type: textarea
id: icon-name
attributes:
label: Icon Name
- description: What is the name of the icon you are contributing?
+ description: What is the name of the icon you are requesting or suggesting?
placeholder: Enter icon name here
validations:
required: true
+
- type: textarea
- id: icons
+ id: icon-details
attributes:
- label: Icon(s)
- description: >-
- Upload your icons here. You can do this by Copy-Pasting or Drag &
- Dropping the images.
- placeholder: Copy-Paste or Drag & Drop images here!
+ label: Icon Details
+ description: Provide any additional details or context for the icon request.
+ placeholder: Enter details here
validations:
required: false
diff --git a/.github/workflows/compress_pngs.yml b/.github/workflows/compress_pngs.yml
new file mode 100644
index 00000000..27dd5795
--- /dev/null
+++ b/.github/workflows/compress_pngs.yml
@@ -0,0 +1,33 @@
+name: Compress PNGs ๐๏ธ
+
+on:
+ schedule:
+ - cron: "0 0 * * 0"
+ workflow_dispatch:
+
+jobs:
+ compress_pngs:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v3
+
+ - name: Install Dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y zopfli
+
+ - name: Compress PNG Files
+ run: |
+ echo "Compressing PNGs..."
+ find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} zopflipng -y {} {}
+
+ - name: Commit and Push Changes
+ run: |
+ git config --global user.email "noreply@lammers.media"
+ git config --global user.name "Dashboard Icons Bot"
+ git add png/
+ git commit -m ":compression: Compressed PNGs" || exit 0
+ git pull --rebase
+ git push
diff --git a/.github/workflows/generate_file_tree.yml b/.github/workflows/generate_file_tree.yml
new file mode 100644
index 00000000..8a9f0e7d
--- /dev/null
+++ b/.github/workflows/generate_file_tree.yml
@@ -0,0 +1,31 @@
+name: Generate File Tree ๐ณ
+
+on:
+ push:
+ branches:
+ - main
+ workflow_dispatch:
+
+jobs:
+ generate_file_tree:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v3
+
+ - name: Set Up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.9"
+
+ - name: Generate File Tree
+ run: python scripts/generate_file_tree.py svg png webp
+
+ - name: Commit and Push Changes
+ run: |
+ git config --global user.email "noreply@lammers.media"
+ git config --global user.name "Dashboard Icons Bot"
+ git add tree.json
+ git commit -m ":construction_worker: Generate file tree" || exit 0
+ git push
diff --git a/.github/workflows/generate_icons_page.yml b/.github/workflows/generate_icons_page.yml
new file mode 100644
index 00000000..34e9d1ce
--- /dev/null
+++ b/.github/workflows/generate_icons_page.yml
@@ -0,0 +1,31 @@
+name: Generate Icons Page ๐
+
+on:
+ push:
+ branches:
+ - main
+ workflow_dispatch:
+
+jobs:
+ build_icons_page:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v3
+
+ - name: Set Up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.9"
+
+ - name: Generate ICONS.md
+ run: python scripts/generate_icons_page.py
+
+ - name: Commit and Push Changes
+ run: |
+ git config --global user.email "noreply@lammers.media"
+ git config --global user.name "Dashboard Icons Bot"
+ git add ICONS.md
+ git commit -m ":construction_worker: Generate ICONS.md" || exit 0
+ git push
diff --git a/.github/workflows/icons-page-generation.yml b/.github/workflows/icons-page-generation.yml
deleted file mode 100644
index 6fc36d57..00000000
--- a/.github/workflows/icons-page-generation.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: ๐ Generates ICONS
-
-on:
- push:
- workflow_dispatch:
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v3
-
- - name: Setup Python
- uses: actions/setup-python@v4
- with:
- python-version: "3.9"
- architecture: "x64"
-
- - name: ICONS Generator
- run: |-
- python config/ci.py
- cat ICONS.md
-
- - name: Load to GitHub
- run: |-
- git diff
- git config --global user.email "noreply@lammers.media"
- git config --global user.name "Dashboard Icons Bot"
- git add -A
- git commit -m ":construction_worker: Generates ICONS.md" || exit 0
- git push
diff --git a/.github/workflows/png-compression.yml b/.github/workflows/png-compression.yml
deleted file mode 100644
index a7428682..00000000
--- a/.github/workflows/png-compression.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: ๐๏ธ PNG Compression
-
-on:
- schedule:
- - cron: "0 0 * * 0"
- workflow_dispatch:
-
-jobs:
- compress-images:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Install Dependencies
- run: |
- sudo apt-get update
- sudo apt-get install -y zopfli
-
- - name: Compress PNGs
- run: |
- echo "Compressing PNGs..."
- find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} sh -c 'echo "Compressing {}"; zopflipng -y {} {}' || true
-
- - name: Load to GitHub
- run: |-
- git diff
- git config --global user.email "noreply@walkx.fyi"
- git config --global user.name "Dashboard Icons Bot"
- git add -A
- git commit -m ":children_crossing: Compresses PNGs" || exit 0
- git pull --ff-only
- git push
diff --git a/.github/workflows/validate_and_preview_icons.yml b/.github/workflows/validate_and_preview_icons.yml
new file mode 100644
index 00000000..0cd89d7e
--- /dev/null
+++ b/.github/workflows/validate_and_preview_icons.yml
@@ -0,0 +1,72 @@
+name: Validate and Preview Icons ๐ ๏ธ
+
+on:
+ pull_request:
+ types: [opened, synchronize]
+
+jobs:
+ validate_icons:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v3
+
+ - name: Set Up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.9"
+
+ - name: Install Dependencies
+ run: |
+ pip install cairosvg pillow
+
+ - name: Run SVG to PNG and WEBP Conversion
+ run: python scripts/convert_svg_assets.py
+
+ - name: Upload Converted Icons
+ uses: actions/upload-artifact@v3
+ with:
+ name: converted-icons
+ path: |
+ png/*.png
+ webp/*.webp
+
+ - name: Post Comment with Preview
+ uses: marocchino/sticky-pull-request-comment@v2
+ with:
+ message: |
+ ## Icon Conversion Results
+
+ **Total Icons Processed:** ${{ steps.process.outputs.total_icons }}
+ **Converted PNGs:** ${{ steps.process.outputs.converted_pngs }}
+ **Converted WEBPs:** ${{ steps.process.outputs.converted_webps }}
+ **Removed PNGs:** ${{ steps.process.outputs.removed_pngs }}
+ **Removed WEBPs:** ${{ steps.process.outputs.removed_webps }}
+
+ ${{ steps.process.outputs.failed_files }}
+
+ ### Preview of Converted Icons:
+
+ ${{ steps.preview.outputs.icon_previews }}
+ - name: Set Output Variables
+ id: process
+ run: |
+ echo "::set-output name=total_icons::$(grep 'Total icons:' output.log | awk '{print $3}')"
+ echo "::set-output name=converted_pngs::$(grep 'Converted' output.log | awk '{print $2}')"
+ echo "::set-output name=converted_webps::$(grep 'Converted' output.log | awk '{print $5}')"
+ echo "::set-output name=removed_pngs::$(grep 'Removed' output.log | awk '{print $2}')"
+ echo "::set-output name=removed_webps::$(grep 'Removed' output.log | awk '{print $5}')"
+ echo "::set-output name=failed_files::$(grep 'The following files failed' -A 10 output.log)"
+
+ - name: Generate Icon Previews
+ id: preview
+ run: |
+ ICONS=$(find png/ -type f -name "*.png")
+ PREVIEWS=""
+ for ICON in $ICONS; do
+ ICON_NAME=$(basename $ICON)
+ PREVIEW="![${ICON_NAME}](https://raw.githubusercontent.com/walkxcode/dashboard-icons/${{ github.event.pull_request.head.ref }}/png/${ICON_NAME})"
+ PREVIEWS="$PREVIEWS $PREVIEW"
+ done
+ echo "::set-output name=icon_previews::$PREVIEWS"
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index ac0e38e7..bacba7d4 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -1,23 +1,30 @@
-# ๐จ Code of Conduct
+## Code of Conduct
-We are committed to providing a welcoming and harassment-free environment for everyone who wants to participate in our icon repository, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age, religion, or nationality.
+We are committed to creating a welcoming and harassment-free environment for everyone who contributes to our icon repository. This includes people of all genders, gender identities, sexual orientations, disabilities, appearances, body sizes, races, ages, religions, and nationalities.
-## ๐ฌ Communication
+### Communication
-All communication should be appropriate for a professional audience including people of many different backgrounds. Be respectful, considerate, and constructive in all communication, both online and offline.
+All communication should be appropriate for a professional audience, respectful, constructive, and considerate of people from different backgrounds. Please aim to create a positive and inclusive atmosphere.
-## ๐ซ Prohibited Behavior
+### Prohibited Behavior
-Harassment, intimidation, discrimination, or any other inappropriate conduct or behavior will not be tolerated. This includes, but is not limited to, the use of sexual language or imagery, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention.
+We do not tolerate harassment, intimidation, discrimination, or any other inappropriate conduct, whether in communication or behavior. Prohibited actions include:
-## ๐ข Reporting
+- The use of sexual language or imagery
+- Deliberate intimidation or stalking
+- Unwelcome sexual attention or harassment
+- Inappropriate physical contact
+- Disruptions during events or conversations
+- Discrimination of any kind
-If you believe someone is violating the code of conduct, please report it immediately to walkxnl@gmail.com. All reports will be reviewed and investigated promptly and confidentially.
+### Reporting
-## ๐จ Consequences
+If you witness or experience behavior that violates this code of conduct, please report it immediately to [bjorn@lammers.media](mailto:bjorn@lammers.media). All reports will be reviewed confidentially and promptly, and appropriate actions will be taken.
-Anyone found to be engaging in behavior that violates the code of conduct will be subject to appropriate action, which may include, but is not limited to, warning, removal from the repository, or banning from participation in the repository.
+### Consequences
-## ๐ Acknowledgment
+Anyone violating this code of conduct may face consequences, such as warnings, removal from the repository, or a ban from future participation. We take violations seriously to ensure a safe and welcoming environment for everyone.
-We ask that all participants in this repository agree to abide by this code of conduct. By contributing to this repository, you agree to these terms and conditions. Thank you for helping us create a welcoming and inclusive environment for all. ๐
+### Acknowledgment
+
+By contributing to this repository, you agree to adhere to this code of conduct. Thank you for helping us create an inclusive and supportive environment for all contributors.
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index cae56100..353fe49c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,50 +1,78 @@
-# ๐ค Contribution Guidelines
+![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen?style=flat-square)
-We appreciate your interest in contributing to our icon repository! To ensure smooth collaboration, kindly adhere to the following guidelines:
+## Contribution Guidelines
-## ๐ Icon Specifications
+Thank you for your interest in contributing to the icon repository! To ensure smooth collaboration, please follow these guidelines. Your contributions help make this project better.
-- Icons should be provided in both `PNG` and `SVG` formats. Other formats like `JPEG` or `WEBP` will not be accepted.
- - In cases where an `SVG` version is unavailable, a `PNG` version alone suffices.
- - Conversely, if a `PNG` version is missing, it can be generated using [Ezgif SVG to PNG](#-converting-svg-to-png).
-- `PNG`s should maintain a height of exactly `512px`, while width can vary. However, a 1:1 aspect ratio is preferred.
- - โ Avoid upscales! Exceptions will be made only if the correct or a downscaled version cannot be obtained.
- - Downsizing can be accomplished using [iLoveIMG Resize](#-downscaling-pngs).
-- Icons should be named using the [Kebab Case](https://wiki.c2.com/?KebabCase) convention, reflecting their full name. For instance, "Facebook Messenger" should be named `facebook-messenger.png`.
-- Icons that are predominantly monochrome should default to a dark version. Light versions should be named `name-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to adjust its color.
+## Table of Contents
-## ๐ป Gitmoji Commits
+- [Contribution Guidelines](#contribution-guidelines)
+- [Table of Contents](#table-of-contents)
+- [Icon Specifications](#icon-specifications)
+ - [Format](#format)
+ - [Cropping](#cropping)
+ - [Light and Dark Versions](#light-and-dark-versions)
+ - [File Naming](#file-naming)
+ - [Quality Requirements](#quality-requirements)
+- [Git Commit Messages](#git-commit-messages)
+- [Contribution Process](#contribution-process)
+- [Code of Conduct](#code-of-conduct)
+- [Contact](#contact)
-- Use [Gitmoji](https://gitmoji.dev/) in your commit messages. This helps us keep our commit history clear and easy to understand. For instance, use the `๐ฑ` emoji for commits related to updating icon colors, and `๐` for documentation updates.
+## Icon Specifications
-## ๐ Converting SVG to PNG
+### Format
-1. Go to https://ezgif.com/svg-to-png.
-2. Upload the `SVG` file by clicking "Upload".
-3. Set the "Height (optional)" field to `512`, leaving other settings as default.
-4. Click "Convert to PNG!".
-5. Click "Save" located at the bottom right under the converted image.
+- **SVG Format Required**: All icons must be submitted in SVG format.
+- **Automatic PNG and WEBP Generation**: PNG and WEBP versions are generated automatically from the SVG files using the following settings:
+ - **Dimensions**:
+ - Height: 512 pixels
+ - Width: Auto (maintaining aspect ratio)
+ - **Transparency**: Enabled
-## โคต๏ธ Downscaling PNGs
+### Cropping
-1. Go to https://www.iloveimg.com/resize-image.
-2. Upload the `PNG` file(s).
-3. Adjust the "Height (px)" field to `512`, leaving other settings as default.
-4. Click "Resize IMAGES".
-5. Download the resized icon(s).
+- **Remove Empty Space**: Crop any empty space from your SVG files to ensure the icon is properly centered and sized. You can use [SVG Crop](https://svgcrop.com/) to assist with this.
-## ๐ค Contributing
+### Light and Dark Versions
-1. Fork the repository to your GitHub account.
-2. Clone the repository to your local machine.
-3. Add your icon(s) to the repository, adhering to the specified guidelines.
-4. Push your changes to your fork.
-5. Create a pull request in the main repository.
+- **Monochrome or Single Primary Color Icons**:
+ - If your icon is monochrome, please provide additional versions if applicable:
+ - **`-light` Version**: For icons primarily dark or using black as a main color, provide a `-light` version for light backgrounds.
+ - **`-dark` Version**: For icons primarily light or using white as a main color, provide a `-dark` version for dark backgrounds.
+ - **Examples**:
+ - A black logo should include a `-light` version where black is inverted.
+ - A multicolored logo using black should provide a `-light` version with the black replaced.
+ - **Tool Recommendation**: [DEEditor](https://deeditor.com/) can help adjust icon colors if needed.
-## ๐จ Code of Conduct
+### File Naming
-Kindly note that contributing to this repository necessitates adherence to our code of conduct, outlined in the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file within the repository.
+- **Kebab Case**: Name your files using kebab case (lowercase words separated by hyphens). For example, "Nextcloud Calendar" becomes `nextcloud-calendar.svg`.
+ - **Note**: Filenames are automatically converted to kebab case, but please double-check your naming to avoid conflicts or errors.
----
+### Quality Requirements
-Should you have any queries or concerns, feel free to reach out to me using walkxnl@gmail.com. Happy contributing! ๐
+- **No Upscaled Images**: Icons should maintain their original quality without artificial enlargement.
+- **No Embedded Raster Images in SVGs**: Ensure that SVG files are true vector graphics without embedded raster images.
+
+## Git Commit Messages
+
+- **Use Gitmoji**: Incorporate [Gitmoji](https://gitmoji.dev/) in your commit messages to keep the commit history clear and expressive. For example:
+ - `:bento: Adds xxx` when adding new icons.
+
+## Contribution Process
+
+1. **Fork the Repository**: Create a fork of this repository on your GitHub account.
+2. **Clone the Repository**: Clone your forked repository to your local machine.
+3. **Add Your Icons**: Place your SVG icon(s) into the appropriate directory, following the specifications above.
+4. **Commit Your Changes**: Commit your additions with clear and descriptive commit messages using Gitmoji.
+5. **Push to Your Fork**: Push your committed changes to your forked repository on GitHub.
+6. **Create a Pull Request**: Submit a pull request to the main repository for review.
+
+## Code of Conduct
+
+By contributing, you agree to abide by our [Code of Conduct](CODE_OF_CONDUCT.md). Please review it to understand the expectations for all participants.
+
+## Contact
+
+If you have any questions or need assistance, feel free to reach out at [bjorn@lammers.media](mailto:bjorn@lammers.media). I'm happy to help.
\ No newline at end of file
diff --git a/ICONS.md b/ICONS.md
index 351bbf1a..25c922f8 100644
--- a/ICONS.md
+++ b/ICONS.md
@@ -1,21 +1,13 @@
-
-
๐ Dashboard Icons
-
-
-
-
-
-
- The best source for dashboard icons.
-
- โฌ
๏ธ Back to repo
-
-
-
-
+![jsDelivr hits (GitHub)](https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?style=flat-square&color=%23A020F0)
+
+## Dashboard Icons
+
+The best source for dashboard icons.
+[**โ Back to repository**](https://github.com/walkxcode/dashboard-icons/)
+
+
+
+
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
index 05a87dbe..1625c179 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,16 +1,121 @@
-**Icons and Assets**
+Creative Commons Legal Code
-Unless otherwise indicated, all images and assets in this repository, including product names, trademarks, and registered trademarks, are the property of their respective owners. These images and assets are used for identification purposes only and their use does not imply endorsement.
+CC0 1.0 Universal
----
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
+ LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
+ REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
+ PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
+ THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
+ HEREUNDER.
-**Code and Documentation**
+Statement of Purpose
-Copyright (c) 2024 Bjorn Lammers (walkxcode)
+The laws of most jurisdictions throughout the world automatically confer
+exclusive Copyright and Related Rights (defined below) upon the creator
+and subsequent owner(s) (each and all, an "owner") of an original work of
+authorship and/or a database (each, a "Work").
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+Certain owners wish to permanently relinquish those rights to a Work for
+the purpose of contributing to a commons of creative, cultural and
+scientific works ("Commons") that the public can reliably and without fear
+of later claims of infringement build upon, modify, incorporate in other
+works, reuse and redistribute as freely as possible in any form whatsoever
+and for any purposes, including without limitation commercial purposes.
+These owners may contribute to the Commons to promote the ideal of a free
+culture and the further production of creative, cultural and scientific
+works, or to gain reputation or greater distribution for their Work in
+part through the use and efforts of others.
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+For these and/or other purposes and motivations, and without any
+expectation of additional consideration or compensation, the person
+associating CC0 with a Work (the "Affirmer"), to the extent that he or she
+is an owner of Copyright and Related Rights in the Work, voluntarily
+elects to apply CC0 to the Work and publicly distribute the Work under its
+terms, with knowledge of his or her Copyright and Related Rights in the
+Work and the meaning and intended legal effect of CC0 on those rights.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+1. Copyright and Related Rights. A Work made available under CC0 may be
+protected by copyright and related or neighboring rights ("Copyright and
+Related Rights"). Copyright and Related Rights include, but are not
+limited to, the following:
+
+ i. the right to reproduce, adapt, distribute, perform, display,
+ communicate, and translate a Work;
+ ii. moral rights retained by the original author(s) and/or performer(s);
+iii. publicity and privacy rights pertaining to a person's image or
+ likeness depicted in a Work;
+ iv. rights protecting against unfair competition in regards to a Work,
+ subject to the limitations in paragraph 4(a), below;
+ v. rights protecting the extraction, dissemination, use and reuse of data
+ in a Work;
+ vi. database rights (such as those arising under Directive 96/9/EC of the
+ European Parliament and of the Council of 11 March 1996 on the legal
+ protection of databases, and under any national implementation
+ thereof, including any amended or successor version of such
+ directive); and
+vii. other similar, equivalent or corresponding rights throughout the
+ world based on applicable law or treaty, and any national
+ implementations thereof.
+
+2. Waiver. To the greatest extent permitted by, but not in contravention
+of, applicable law, Affirmer hereby overtly, fully, permanently,
+irrevocably and unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims and causes
+of action, whether now known or unknown (including existing as well as
+future claims and causes of action), in the Work (i) in all territories
+worldwide, (ii) for the maximum duration provided by applicable law or
+treaty (including future time extensions), (iii) in any current or future
+medium and for any number of copies, and (iv) for any purpose whatsoever,
+including without limitation commercial, advertising or promotional
+purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
+member of the public at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be subject to
+revocation, rescission, cancellation, termination, or any other legal or
+equitable action to disrupt the quiet enjoyment of the Work by the public
+as contemplated by Affirmer's express Statement of Purpose.
+
+3. Public License Fallback. Should any part of the Waiver for any reason
+be judged legally invalid or ineffective under applicable law, then the
+Waiver shall be preserved to the maximum extent permitted taking into
+account Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each affected
+person a royalty-free, non transferable, non sublicensable, non exclusive,
+irrevocable and unconditional license to exercise Affirmer's Copyright and
+Related Rights in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty (including future
+time extensions), (iii) in any current or future medium and for any number
+of copies, and (iv) for any purpose whatsoever, including without
+limitation commercial, advertising or promotional purposes (the
+"License"). The License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the License for any
+reason be judged legally invalid or ineffective under applicable law, such
+partial invalidity or ineffectiveness shall not invalidate the remainder
+of the License, and in such case Affirmer hereby affirms that he or she
+will not (i) exercise any of his or her remaining Copyright and Related
+Rights in the Work or (ii) assert any associated claims and causes of
+action with respect to the Work, in either case contrary to Affirmer's
+express Statement of Purpose.
+
+4. Limitations and Disclaimers.
+
+ a. No trademark or patent rights held by Affirmer are waived, abandoned,
+ surrendered, licensed or otherwise affected by this document.
+ b. Affirmer offers the Work as-is and makes no representations or
+ warranties of any kind concerning the Work, express, implied,
+ statutory or otherwise, including without limitation warranties of
+ title, merchantability, fitness for a particular purpose, non
+ infringement, or the absence of latent or other defects, accuracy, or
+ the present or absence of errors, whether or not discoverable, all to
+ the greatest extent permissible under applicable law.
+ c. Affirmer disclaims responsibility for clearing rights of other persons
+ that may apply to the Work or any use thereof, including without
+ limitation any person's Copyright and Related Rights in the Work.
+ Further, Affirmer disclaims responsibility for obtaining any necessary
+ consents, permissions or other rights required for any use of the
+ Work.
+ d. Affirmer understands and acknowledges that Creative Commons is not a
+ party to this document and has no duty or obligation with respect to
+ this CC0 or use of the Work.
\ No newline at end of file
diff --git a/README.md b/README.md
index 63358ff3..20963892 100644
--- a/README.md
+++ b/README.md
@@ -1,73 +1,110 @@
-
+![jsDelivr hits (GitHub)](https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?style=flat-square&color=%23A020F0)
-# ๐ Table of Contents
+## Dashboard Icons
-- [๐ Table of Contents](#-table-of-contents)
- - [๐ Getting Started](#-getting-started)
- - [๐ Dashboards](#-dashboards)
- - [โจ Usage](#-usage)
- - [๐จ Icons](#-icons)
- - [๐ Contribution Guidelines](#-contribution-guidelines)
- - [๐ Legal](#-legal)
+The best source for dashboard icons.
+[**View icons โ**](#icons)
-## ๐ Getting Started
+## Table of Contents
+- [Dashboard Icons](#dashboard-icons)
+- [Table of Contents](#table-of-contents)
+- [Icon Requests](#icon-requests)
+- [Supported Dashboards](#supported-dashboards)
+- [Usage and Details](#usage-and-details)
+ - [Direct Links](#direct-links)
+ - [Base URL](#base-url)
+ - [Name](#name)
+ - [Formats](#formats)
+ - [Dark/Light Versions](#darklight-versions)
+ - [Downloading Icons](#downloading-icons)
+- [Disclaimer](#disclaimer)
-### ๐ Dashboards
+## Icon Requests
-Several dashboards now offer seamless integration with Dashboard Icons. Here are some of the top choices:
+If you're looking to add a new icon, please read the [Contribution Guidelines](CONTRIBUTING.md). Afterwards, submit a Pull Request or open an issue.
+
+## Supported Dashboards
+
+Several dashboards offer seamless integration with Dashboard Icons. Here are some of the most popular options:
- [Homepage](https://github.com/gethomepage/homepage)
- [Homarr](https://github.com/ajnart/homarr)
- [Dashy](https://github.com/Lissy93/dashy)
-### โจ Usage
+## Usage and Details
-To download an icon from the [icons page](#-icons), simply `Right click > Save link as`.
+### Direct Links
-For non-desktop operating systems or those who prefer using the terminal:
-*Replace `example` with the icon's name, and `png` with `svg` if needed.*
+Icons can be used directly from either GitHub or jsDelivr (recommended). Links consist of three components, each described below:
-```sh
-curl -O https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
-```
+- **Base URL**
+- **Name**
+- **Format**
+
+A complete link will look like this:
+
+ https:// //.
+
+For example, the icon URL for the WEBP version of Nextcloud Calendar would be:
+
+ https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/webp/nextcloud-calendar.webp
+
+#### Base URL
+
+We recommend using jsDelivr, a free and fast CDN:
+
+- `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons`
+
+Alternatively, you can use direct links to the repository:
+
+- `https://raw.githubusercontent.com/walkxcode/dashboard-icons/refs/heads/main`
+
+#### Name
+
+Icons are named using kebab case (lowercase words separated by hyphens). For example, "Nextcloud Calendar" becomes `nextcloud-calendar`.
+
+#### Formats
+
+Icons are available in the following formats:
+
+- SVG
+- PNG
+- WEBP
+
+All icons are generated from the SVG file as the base.
+
+*Read more about the specifics and standards of icons in the [Contribution Guidelines](CONTRIBUTING.md).*
+
+### Dark/Light Versions
+
+In some cases, an icon might have very light or dark colors, making it hard to see on certain backgrounds. In this situation, a `-light` or `-dark` version will be added to the end of the icon's name, with colors adjusted accordingly.
+
+For example, "2fauth" becomes `2fauth-light`.
+
+*Read more about the specifics and standards of icons in the [Contribution Guidelines](CONTRIBUTING.md).*
+
+### Downloading Icons
+
+To download icons from the [icons page](ICONS.md), simply Right-click the icon link and select "Save link as".
+
+**Warning**: Visiting the icons page will load every icon in the repository. This may result in:
+
+- High data usage.
+- System slowdowns.
+- Browser crashes on some devices.
+
+If you prefer not to load all icons at once, consider using the direct links or downloading icons individually.
+
+To download icons using the terminal, use `curl` or `wget`. Refer to [Direct Links](#direct-links) for details on the link structure.
+
+ curl -O https:// //.
or
-```sh
-wget https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
-```
+ wget https:// //.
-**๐ก Tip!** Access Dashboard Icons online faster via `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`, replacing `example` with the icon name!
+## Disclaimer
-## ๐จ Icons
-**โ ๏ธ Warning!** Visiting this page will load every single icon in the repository. This may cause:
-- ๐ Excessive data usage.
-- ๐ป System slowdowns.
- - ๐ Browser crashes.
+Unless otherwise indicated, all images and assets in this repository, including product names, trademarks, and registered trademarks, are the property of their respective owners. These images and assets are used for identification purposes only, and their use does not imply endorsement.
-*If your device cannot handle loading more than 1000 images or if you are on a limited data connection, we advise against visiting this page.*
-
-โก๏ธ Click [**here**](ICONS.md) to view all icons.
-
-## ๐ Contribution Guidelines
-Please review the [Contribution Guidelines](CONTRIBUTING.md) before contributing to this project.
-
-## ๐ Legal
-
-Read our [LICENSE](LICENSE) for information regarding the use of our software and assets. By accessing or using this repository, you agree to be bound by the terms and conditions of the license.
-
-For questions or concerns regarding the license, contact me at hey@lammers.media before using or distributing the contents of this repository.
+Read the [LICENSE](LICENSE) for more information about the project itself. For questions or concerns, contact me at [bjorn@lammers.media](mailto:bjorn@lammers.media).
\ No newline at end of file
diff --git a/config/TEMPLATE.md b/config/TEMPLATE.md
deleted file mode 100644
index d6e86bd0..00000000
--- a/config/TEMPLATE.md
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
๐ Dashboard Icons
-
-
-
-
-
-
- The best source for dashboard icons.
-
- โฌ
๏ธ Back to repo
-
-
-
-
-
-
-
-
-
diff --git a/config/banner.png b/config/banner.png
deleted file mode 100644
index 9ef04c18..00000000
Binary files a/config/banner.png and /dev/null differ
diff --git a/config/ci.py b/config/ci.py
deleted file mode 100644
index aa322340..00000000
--- a/config/ci.py
+++ /dev/null
@@ -1,32 +0,0 @@
-import pathlib
-from pathlib import Path
-
-root = pathlib.Path(__file__).parent.resolve()
-template_path = root / "TEMPLATE.md"
-path = root / "../ICONS.md"
-
-
-def generate_img_tag(file):
- return f' '
-
-
-imgs = sorted(Path("./png").glob("*.png"))
-img_tags = [generate_img_tag(x) for x in imgs]
-line_number = 0
-
-# Read the template file
-with open(template_path, "r", encoding="UTF-8") as f:
- lines = f.readlines()
-# Find the line that starts with ""
-for line in lines:
- if line.startswith(""):
- line_number = lines.index(line)
- break
-# Insert the icons after the line
-lines.insert(line_number + 1, " ".join(img_tags))
-# Write the new file
-with open(path, "w", encoding="UTF-8") as f:
- f.write("".join(lines))
- f.write("\n")
-print("Done!")
-print("Please commit the new ICONS.md file.")
diff --git a/config/logo.png b/config/logo.png
deleted file mode 100644
index ae511b08..00000000
Binary files a/config/logo.png and /dev/null differ
diff --git a/png/13ft.png b/png/13ft.png
index db768fc9..4a556914 100644
Binary files a/png/13ft.png and b/png/13ft.png differ
diff --git a/png/2fauth-light.png b/png/2fauth-light.png
index c34c4a2a..fbbbfe7b 100644
Binary files a/png/2fauth-light.png and b/png/2fauth-light.png differ
diff --git a/png/2fauth.png b/png/2fauth.png
index c7c09946..3a528c7c 100644
Binary files a/png/2fauth.png and b/png/2fauth.png differ
diff --git a/png/3cx.png b/png/3cx.png
deleted file mode 100644
index 132c7a84..00000000
Binary files a/png/3cx.png and /dev/null differ
diff --git a/png/5etools.png b/png/5etools.png
deleted file mode 100644
index 31891d53..00000000
Binary files a/png/5etools.png and /dev/null differ
diff --git a/png/Thumbs.db b/png/Thumbs.db
deleted file mode 100644
index 6496695a..00000000
Binary files a/png/Thumbs.db and /dev/null differ
diff --git a/png/act.png b/png/act.png
index 142238db..0a0fd914 100644
Binary files a/png/act.png and b/png/act.png differ
diff --git a/png/activepieces.png b/png/activepieces.png
new file mode 100644
index 00000000..162f8174
Binary files /dev/null and b/png/activepieces.png differ
diff --git a/png/actual-budget.png b/png/actual-budget.png
new file mode 100644
index 00000000..bb12cfa3
Binary files /dev/null and b/png/actual-budget.png differ
diff --git a/png/actual.png b/png/actual.png
deleted file mode 100644
index a3edc9de..00000000
Binary files a/png/actual.png and /dev/null differ
diff --git a/png/adblock.png b/png/adblock.png
deleted file mode 100644
index 869112e8..00000000
Binary files a/png/adblock.png and /dev/null differ
diff --git a/png/adguard-home.png b/png/adguard-home.png
index 94da44ca..73f37ce0 100644
Binary files a/png/adguard-home.png and b/png/adguard-home.png differ
diff --git a/png/adm.png b/png/adm.png
deleted file mode 100644
index 0d301ec3..00000000
Binary files a/png/adm.png and /dev/null differ
diff --git a/png/adminer.png b/png/adminer.png
index 65b3aab0..e023ddd1 100644
Binary files a/png/adminer.png and b/png/adminer.png differ
diff --git a/png/adsbexchange.png b/png/adsbexchange.png
deleted file mode 100644
index 2efa3ac5..00000000
Binary files a/png/adsbexchange.png and /dev/null differ
diff --git a/png/adventure-log.png b/png/adventure-log.png
new file mode 100644
index 00000000..8c6a569c
Binary files /dev/null and b/png/adventure-log.png differ
diff --git a/png/adventurelog.png b/png/adventurelog.png
deleted file mode 100644
index 8c89f9fa..00000000
Binary files a/png/adventurelog.png and /dev/null differ
diff --git a/png/affine-light.png b/png/affine-light.png
new file mode 100644
index 00000000..48411d3c
Binary files /dev/null and b/png/affine-light.png differ
diff --git a/png/affine.png b/png/affine.png
new file mode 100644
index 00000000..fe2916a0
Binary files /dev/null and b/png/affine.png differ
diff --git a/png/airsonic.png b/png/airsonic.png
index 694b7e53..48d7fd2c 100644
Binary files a/png/airsonic.png and b/png/airsonic.png differ
diff --git a/png/airtable.png b/png/airtable.png
new file mode 100644
index 00000000..27867a45
Binary files /dev/null and b/png/airtable.png differ
diff --git a/png/airtel.png b/png/airtel.png
index 651c9cc4..13d2a043 100644
Binary files a/png/airtel.png and b/png/airtel.png differ
diff --git a/png/airvpn.png b/png/airvpn.png
index a81518aa..e2a7234d 100644
Binary files a/png/airvpn.png and b/png/airvpn.png differ
diff --git a/png/akkoma-light.png b/png/akkoma-light.png
new file mode 100644
index 00000000..62166c8f
Binary files /dev/null and b/png/akkoma-light.png differ
diff --git a/png/akkoma.png b/png/akkoma.png
new file mode 100644
index 00000000..b23b4821
Binary files /dev/null and b/png/akkoma.png differ
diff --git a/png/alarmpi.png b/png/alarmpi.png
deleted file mode 100644
index 53698476..00000000
Binary files a/png/alarmpi.png and /dev/null differ
diff --git a/png/albert-heijn.png b/png/albert-heijn.png
new file mode 100644
index 00000000..d31666a9
Binary files /dev/null and b/png/albert-heijn.png differ
diff --git a/png/albertheijn.png b/png/albertheijn.png
deleted file mode 100644
index 3bddc2ce..00000000
Binary files a/png/albertheijn.png and /dev/null differ
diff --git a/png/alertmanager.png b/png/alertmanager.png
index c83eebda..353bdd5f 100644
Binary files a/png/alertmanager.png and b/png/alertmanager.png differ
diff --git a/png/algovpn.png b/png/algovpn.png
deleted file mode 100644
index 1ecec279..00000000
Binary files a/png/algovpn.png and /dev/null differ
diff --git a/png/aliexpress.png b/png/aliexpress.png
index 6754e850..30853226 100644
Binary files a/png/aliexpress.png and b/png/aliexpress.png differ
diff --git a/png/alist.png b/png/alist.png
index ac9cb6cc..c4376893 100644
Binary files a/png/alist.png and b/png/alist.png differ
diff --git a/png/alloy.png b/png/alloy.png
index a9990c5b..1c12b674 100644
Binary files a/png/alloy.png and b/png/alloy.png differ
diff --git a/png/alltube.png b/png/alltube.png
deleted file mode 100644
index b1f75bed..00000000
Binary files a/png/alltube.png and /dev/null differ
diff --git a/png/alma-linux.png b/png/alma-linux.png
new file mode 100644
index 00000000..90e82ae0
Binary files /dev/null and b/png/alma-linux.png differ
diff --git a/png/alma.png b/png/alma.png
deleted file mode 100644
index 29a9c10a..00000000
Binary files a/png/alma.png and /dev/null differ
diff --git a/png/alpine-linux.png b/png/alpine-linux.png
new file mode 100644
index 00000000..85d9bbcf
Binary files /dev/null and b/png/alpine-linux.png differ
diff --git a/png/alpine.png b/png/alpine.png
deleted file mode 100644
index 7ea4e345..00000000
Binary files a/png/alpine.png and /dev/null differ
diff --git a/png/amazon-light.png b/png/amazon-light.png
index 18ec7a43..be5d25c9 100644
Binary files a/png/amazon-light.png and b/png/amazon-light.png differ
diff --git a/png/amazon-prime.png b/png/amazon-prime.png
new file mode 100644
index 00000000..2f4ced7f
Binary files /dev/null and b/png/amazon-prime.png differ
diff --git a/png/amazon-web-services-light.png b/png/amazon-web-services-light.png
new file mode 100644
index 00000000..fa30b386
Binary files /dev/null and b/png/amazon-web-services-light.png differ
diff --git a/png/amazon-web-services.png b/png/amazon-web-services.png
new file mode 100644
index 00000000..479669e8
Binary files /dev/null and b/png/amazon-web-services.png differ
diff --git a/png/amazon.png b/png/amazon.png
index 59f96916..80618ca6 100644
Binary files a/png/amazon.png and b/png/amazon.png differ
diff --git a/png/amcrest-cloud.png b/png/amcrest-cloud.png
deleted file mode 100644
index 03445368..00000000
Binary files a/png/amcrest-cloud.png and /dev/null differ
diff --git a/png/amcrest.png b/png/amcrest.png
deleted file mode 100644
index 937ba959..00000000
Binary files a/png/amcrest.png and /dev/null differ
diff --git a/png/amd-light.png b/png/amd-light.png
index 1c6640c6..592360ce 100644
Binary files a/png/amd-light.png and b/png/amd-light.png differ
diff --git a/png/amd.png b/png/amd.png
index d93aca30..4b1d10f3 100644
Binary files a/png/amd.png and b/png/amd.png differ
diff --git a/png/ami-alt-light.png b/png/ami-alt-light.png
deleted file mode 100644
index 89acab68..00000000
Binary files a/png/ami-alt-light.png and /dev/null differ
diff --git a/png/ami-alt.png b/png/ami-alt.png
deleted file mode 100644
index ed24084f..00000000
Binary files a/png/ami-alt.png and /dev/null differ
diff --git a/png/ami.png b/png/ami.png
deleted file mode 100644
index e82c3f90..00000000
Binary files a/png/ami.png and /dev/null differ
diff --git a/png/amp.png b/png/amp.png
deleted file mode 100644
index ff93038e..00000000
Binary files a/png/amp.png and /dev/null differ
diff --git a/png/ampache.png b/png/ampache.png
deleted file mode 100644
index c3b5c32a..00000000
Binary files a/png/ampache.png and /dev/null differ
diff --git a/png/amvd.png b/png/amvd.png
deleted file mode 100644
index 693fdaad..00000000
Binary files a/png/amvd.png and /dev/null differ
diff --git a/png/android-auto-dark.png b/png/android-auto-dark.png
new file mode 100644
index 00000000..7708a6c3
Binary files /dev/null and b/png/android-auto-dark.png differ
diff --git a/png/android-auto.png b/png/android-auto.png
index 66d59b16..72765ae2 100644
Binary files a/png/android-auto.png and b/png/android-auto.png differ
diff --git a/png/android-light.png b/png/android-light.png
deleted file mode 100644
index a9ddd082..00000000
Binary files a/png/android-light.png and /dev/null differ
diff --git a/png/android-robot.png b/png/android-robot.png
index ff8d9baa..9986cc9d 100644
Binary files a/png/android-robot.png and b/png/android-robot.png differ
diff --git a/png/android.png b/png/android.png
index f5b28d95..acc2ef69 100644
Binary files a/png/android.png and b/png/android.png differ
diff --git a/png/anonaddy.png b/png/anonaddy.png
index a234051c..23c92f5b 100644
Binary files a/png/anonaddy.png and b/png/anonaddy.png differ
diff --git a/png/ansible-light.png b/png/ansible-light.png
new file mode 100644
index 00000000..5614f5bb
Binary files /dev/null and b/png/ansible-light.png differ
diff --git a/png/ansible.png b/png/ansible.png
index 2125d4b3..762ad86b 100644
Binary files a/png/ansible.png and b/png/ansible.png differ
diff --git a/png/anything-llm-dark.png b/png/anything-llm-dark.png
deleted file mode 100644
index 6a2102a5..00000000
Binary files a/png/anything-llm-dark.png and /dev/null differ
diff --git a/png/anything-llm-light.png b/png/anything-llm-light.png
deleted file mode 100644
index a62bc9af..00000000
Binary files a/png/anything-llm-light.png and /dev/null differ
diff --git a/png/apache-airflow.png b/png/apache-airflow.png
index 5dbebf02..7864fd3b 100644
Binary files a/png/apache-airflow.png and b/png/apache-airflow.png differ
diff --git a/png/apache-answer.png b/png/apache-answer.png
new file mode 100644
index 00000000..65d21580
Binary files /dev/null and b/png/apache-answer.png differ
diff --git a/png/apache-cassandra.png b/png/apache-cassandra.png
index b9e3e0e7..a0061fbe 100644
Binary files a/png/apache-cassandra.png and b/png/apache-cassandra.png differ
diff --git a/png/apache-cloudstack.png b/png/apache-cloudstack.png
deleted file mode 100644
index 13b3a89d..00000000
Binary files a/png/apache-cloudstack.png and /dev/null differ
diff --git a/png/apache-druid.png b/png/apache-druid.png
index d55bdd55..a9c24a9a 100644
Binary files a/png/apache-druid.png and b/png/apache-druid.png differ
diff --git a/png/apache-openoffice.png b/png/apache-openoffice.png
index f1b680e7..bae791ad 100644
Binary files a/png/apache-openoffice.png and b/png/apache-openoffice.png differ
diff --git a/png/apache-solr.png b/png/apache-solr.png
index f80bf6b7..0dd7f9e1 100644
Binary files a/png/apache-solr.png and b/png/apache-solr.png differ
diff --git a/png/apache-subversion.png b/png/apache-subversion.png
index 4ee2e4ea..2f761a01 100644
Binary files a/png/apache-subversion.png and b/png/apache-subversion.png differ
diff --git a/png/apache-tomcat-light.png b/png/apache-tomcat-light.png
new file mode 100644
index 00000000..841071c1
Binary files /dev/null and b/png/apache-tomcat-light.png differ
diff --git a/png/apache-tomcat.png b/png/apache-tomcat.png
index 371b2d69..f78638ea 100644
Binary files a/png/apache-tomcat.png and b/png/apache-tomcat.png differ
diff --git a/png/apache.png b/png/apache.png
index c92ec79c..0f395542 100644
Binary files a/png/apache.png and b/png/apache.png differ
diff --git a/png/apc.png b/png/apc.png
index b3b57ff7..b55575a9 100644
Binary files a/png/apc.png and b/png/apc.png differ
diff --git a/png/apiscp.png b/png/apiscp.png
index 1502fd8c..426c0712 100644
Binary files a/png/apiscp.png and b/png/apiscp.png differ
diff --git a/png/app-store.png b/png/app-store.png
index ee51d407..63b4b8d7 100644
Binary files a/png/app-store.png and b/png/app-store.png differ
diff --git a/png/appdaemon.png b/png/appdaemon.png
deleted file mode 100644
index b06b43ab..00000000
Binary files a/png/appdaemon.png and /dev/null differ
diff --git a/png/appflowy.png b/png/appflowy.png
new file mode 100644
index 00000000..c0db8cc8
Binary files /dev/null and b/png/appflowy.png differ
diff --git a/png/apple-alt.png b/png/apple-alt.png
index 925d62d1..fb703289 100644
Binary files a/png/apple-alt.png and b/png/apple-alt.png differ
diff --git a/png/apple-light.png b/png/apple-light.png
new file mode 100644
index 00000000..15c50631
Binary files /dev/null and b/png/apple-light.png differ
diff --git a/png/apple-music.png b/png/apple-music.png
new file mode 100644
index 00000000..949e7bf4
Binary files /dev/null and b/png/apple-music.png differ
diff --git a/png/apple-tv-plus-light.png b/png/apple-tv-plus-light.png
new file mode 100644
index 00000000..ce46aa2c
Binary files /dev/null and b/png/apple-tv-plus-light.png differ
diff --git a/png/apple-tv-plus.png b/png/apple-tv-plus.png
new file mode 100644
index 00000000..41360821
Binary files /dev/null and b/png/apple-tv-plus.png differ
diff --git a/png/apple.png b/png/apple.png
index 357ae326..becdf840 100644
Binary files a/png/apple.png and b/png/apple.png differ
diff --git a/png/apprise.png b/png/apprise.png
deleted file mode 100644
index 9ce06e68..00000000
Binary files a/png/apprise.png and /dev/null differ
diff --git a/png/appwrite.png b/png/appwrite.png
new file mode 100644
index 00000000..b43b1306
Binary files /dev/null and b/png/appwrite.png differ
diff --git a/png/ara-records-ansible.png b/png/ara-records-ansible.png
new file mode 100644
index 00000000..2e4cfbdb
Binary files /dev/null and b/png/ara-records-ansible.png differ
diff --git a/png/arch-linux.png b/png/arch-linux.png
new file mode 100644
index 00000000..909f1b75
Binary files /dev/null and b/png/arch-linux.png differ
diff --git a/png/arch.png b/png/arch.png
deleted file mode 100644
index 369d1c0a..00000000
Binary files a/png/arch.png and /dev/null differ
diff --git a/png/archisteamfarm.png b/png/archisteamfarm.png
deleted file mode 100644
index 9fff4b0c..00000000
Binary files a/png/archisteamfarm.png and /dev/null differ
diff --git a/png/archivebox.png b/png/archivebox.png
deleted file mode 100644
index 039a67b9..00000000
Binary files a/png/archivebox.png and /dev/null differ
diff --git a/png/archiveteamwarrior.png b/png/archiveteamwarrior.png
deleted file mode 100644
index 5676471f..00000000
Binary files a/png/archiveteamwarrior.png and /dev/null differ
diff --git a/png/arduino.png b/png/arduino.png
index d5197437..ffa46c6c 100644
Binary files a/png/arduino.png and b/png/arduino.png differ
diff --git a/png/arggocd.png b/png/arggocd.png
deleted file mode 100644
index 9ad30d3b..00000000
Binary files a/png/arggocd.png and /dev/null differ
diff --git a/png/argo-cd.png b/png/argo-cd.png
new file mode 100644
index 00000000..baab90f2
Binary files /dev/null and b/png/argo-cd.png differ
diff --git a/png/argocd.png b/png/argocd.png
deleted file mode 100644
index 46a00a89..00000000
Binary files a/png/argocd.png and /dev/null differ
diff --git a/png/ariang.png b/png/ariang.png
deleted file mode 100644
index 56ecb153..00000000
Binary files a/png/ariang.png and /dev/null differ
diff --git a/png/arm.png b/png/arm.png
index faaf28b1..c4eb61aa 100644
Binary files a/png/arm.png and b/png/arm.png differ
diff --git a/png/arris-light.png b/png/arris-light.png
deleted file mode 100644
index 561199f4..00000000
Binary files a/png/arris-light.png and /dev/null differ
diff --git a/png/arris.png b/png/arris.png
deleted file mode 100644
index d08a9396..00000000
Binary files a/png/arris.png and /dev/null differ
diff --git a/png/artifacthub.png b/png/artifacthub.png
index e2a2c01b..99618cd7 100644
Binary files a/png/artifacthub.png and b/png/artifacthub.png differ
diff --git a/png/artifactory.png b/png/artifactory.png
deleted file mode 100644
index 09c85885..00000000
Binary files a/png/artifactory.png and /dev/null differ
diff --git a/png/aruba.png b/png/aruba.png
index 4593d2e2..3cbc5824 100644
Binary files a/png/aruba.png and b/png/aruba.png differ
diff --git a/png/asana.png b/png/asana.png
index 2e285cad..87a9c03e 100644
Binary files a/png/asana.png and b/png/asana.png differ
diff --git a/png/asciinema.png b/png/asciinema.png
index 46e0ca32..ee01ceda 100644
Binary files a/png/asciinema.png and b/png/asciinema.png differ
diff --git a/png/asrockrackipmi.png b/png/asrockrackipmi.png
deleted file mode 100644
index b0210633..00000000
Binary files a/png/asrockrackipmi.png and /dev/null differ
diff --git a/png/assetgrid.png b/png/assetgrid.png
deleted file mode 100644
index 5f33f1d1..00000000
Binary files a/png/assetgrid.png and /dev/null differ
diff --git a/png/asterisk.png b/png/asterisk.png
deleted file mode 100644
index 16344f23..00000000
Binary files a/png/asterisk.png and /dev/null differ
diff --git a/png/astral-light.png b/png/astral-light.png
deleted file mode 100644
index a7bd4509..00000000
Binary files a/png/astral-light.png and /dev/null differ
diff --git a/png/astral.png b/png/astral.png
index 2f5efa04..89e1883e 100644
Binary files a/png/astral.png and b/png/astral.png differ
diff --git a/png/astuto-light.png b/png/astuto-light.png
new file mode 100644
index 00000000..0abbaf4d
Binary files /dev/null and b/png/astuto-light.png differ
diff --git a/png/astuto.png b/png/astuto.png
new file mode 100644
index 00000000..3401ca5b
Binary files /dev/null and b/png/astuto.png differ
diff --git a/png/asus-light.png b/png/asus-light.png
deleted file mode 100644
index 9b8d471b..00000000
Binary files a/png/asus-light.png and /dev/null differ
diff --git a/png/asus-rog.png b/png/asus-rog.png
index b89c170d..270fdd6e 100644
Binary files a/png/asus-rog.png and b/png/asus-rog.png differ
diff --git a/png/asus-router.png b/png/asus-router.png
index e63d9912..d423a2a5 100644
Binary files a/png/asus-router.png and b/png/asus-router.png differ
diff --git a/png/asus.png b/png/asus.png
index 4acd355d..7573f166 100644
Binary files a/png/asus.png and b/png/asus.png differ
diff --git a/png/asustor-data-master.png b/png/asustor-data-master.png
deleted file mode 100644
index 0d301ec3..00000000
Binary files a/png/asustor-data-master.png and /dev/null differ
diff --git a/png/asustor.png b/png/asustor.png
index 0d301ec3..0fbf1ff1 100644
Binary files a/png/asustor.png and b/png/asustor.png differ
diff --git a/png/at-t.png b/png/at-t.png
index d104deed..7b5cd70c 100644
Binary files a/png/at-t.png and b/png/at-t.png differ
diff --git a/png/atlassian-bamboo.png b/png/atlassian-bamboo.png
index 2f05eea0..72fd131f 100644
Binary files a/png/atlassian-bamboo.png and b/png/atlassian-bamboo.png differ
diff --git a/png/atlassian-bitbucket.png b/png/atlassian-bitbucket.png
new file mode 100644
index 00000000..091aec94
Binary files /dev/null and b/png/atlassian-bitbucket.png differ
diff --git a/png/atlassian-confluence.png b/png/atlassian-confluence.png
deleted file mode 100644
index 1211380c..00000000
Binary files a/png/atlassian-confluence.png and /dev/null differ
diff --git a/png/atlassian-jira.png b/png/atlassian-jira.png
index df8bfc2c..0e482bf7 100644
Binary files a/png/atlassian-jira.png and b/png/atlassian-jira.png differ
diff --git a/png/atlassian-opsgenie.png b/png/atlassian-opsgenie.png
index 9fdccdcd..63b4e85c 100644
Binary files a/png/atlassian-opsgenie.png and b/png/atlassian-opsgenie.png differ
diff --git a/png/atlassian-trello.png b/png/atlassian-trello.png
index c32dc789..b2aac9c3 100644
Binary files a/png/atlassian-trello.png and b/png/atlassian-trello.png differ
diff --git a/png/atlassian.png b/png/atlassian.png
index 464c27ce..8d804879 100644
Binary files a/png/atlassian.png and b/png/atlassian.png differ
diff --git a/png/atuin-light.png b/png/atuin-light.png
new file mode 100644
index 00000000..14553933
Binary files /dev/null and b/png/atuin-light.png differ
diff --git a/png/atuin.png b/png/atuin.png
new file mode 100644
index 00000000..eb72cbaa
Binary files /dev/null and b/png/atuin.png differ
diff --git a/png/audacity.png b/png/audacity.png
index 483b3bc9..b0e54d7b 100644
Binary files a/png/audacity.png and b/png/audacity.png differ
diff --git a/png/audiobookshelf.png b/png/audiobookshelf.png
index 932713c6..803351a6 100644
Binary files a/png/audiobookshelf.png and b/png/audiobookshelf.png differ
diff --git a/png/auracast.png b/png/auracast.png
index adf1314a..487d3f34 100644
Binary files a/png/auracast.png and b/png/auracast.png differ
diff --git a/png/authelia.png b/png/authelia.png
index b5db391f..9869f09f 100644
Binary files a/png/authelia.png and b/png/authelia.png differ
diff --git a/png/authentik-light.png b/png/authentik-light.png
deleted file mode 100644
index 73299972..00000000
Binary files a/png/authentik-light.png and /dev/null differ
diff --git a/png/authentik.png b/png/authentik.png
index 0b82f311..28e6d3e9 100644
Binary files a/png/authentik.png and b/png/authentik.png differ
diff --git a/png/authman.png b/png/authman.png
new file mode 100644
index 00000000..a4f45900
Binary files /dev/null and b/png/authman.png differ
diff --git a/png/autobrr.png b/png/autobrr.png
index 1f01f43b..e4e117e6 100644
Binary files a/png/autobrr.png and b/png/autobrr.png differ
diff --git a/png/automad-light.png b/png/automad-light.png
new file mode 100644
index 00000000..a9999c7b
Binary files /dev/null and b/png/automad-light.png differ
diff --git a/png/automad.png b/png/automad.png
new file mode 100644
index 00000000..a2148520
Binary files /dev/null and b/png/automad.png differ
diff --git a/png/avg.png b/png/avg.png
deleted file mode 100644
index bffad6e4..00000000
Binary files a/png/avg.png and /dev/null differ
diff --git a/png/avigilon.png b/png/avigilon.png
index 1757f301..02b41300 100644
Binary files a/png/avigilon.png and b/png/avigilon.png differ
diff --git a/png/avm-fritzbox-light.png b/png/avm-fritzbox-light.png
new file mode 100644
index 00000000..6bf59fa7
Binary files /dev/null and b/png/avm-fritzbox-light.png differ
diff --git a/png/avm-fritzbox.png b/png/avm-fritzbox.png
new file mode 100644
index 00000000..c13a2c7e
Binary files /dev/null and b/png/avm-fritzbox.png differ
diff --git a/png/avmfritzbox.png b/png/avmfritzbox.png
deleted file mode 100644
index 8bc6b586..00000000
Binary files a/png/avmfritzbox.png and /dev/null differ
diff --git a/png/aws-ecs.png b/png/aws-ecs.png
index c88d3253..4fc352e9 100644
Binary files a/png/aws-ecs.png and b/png/aws-ecs.png differ
diff --git a/png/aws-light.png b/png/aws-light.png
new file mode 100644
index 00000000..fa30b386
Binary files /dev/null and b/png/aws-light.png differ
diff --git a/png/aws.png b/png/aws.png
index 064471e9..479669e8 100644
Binary files a/png/aws.png and b/png/aws.png differ
diff --git a/png/awwesome.png b/png/awwesome.png
index 526eed8f..acfc4911 100644
Binary files a/png/awwesome.png and b/png/awwesome.png differ
diff --git a/png/awx.png b/png/awx.png
deleted file mode 100644
index 62ce4391..00000000
Binary files a/png/awx.png and /dev/null differ
diff --git a/png/axis.png b/png/axis.png
deleted file mode 100644
index 89758bf6..00000000
Binary files a/png/axis.png and /dev/null differ
diff --git a/png/azuracast.png b/png/azuracast.png
index a9e3c9ff..7cb4055d 100644
Binary files a/png/azuracast.png and b/png/azuracast.png differ
diff --git a/png/azure-container-instances.png b/png/azure-container-instances.png
index 2648a3b8..5ef13243 100644
Binary files a/png/azure-container-instances.png and b/png/azure-container-instances.png differ
diff --git a/png/azure-container-service.png b/png/azure-container-service.png
index 6be892b3..839a2f66 100644
Binary files a/png/azure-container-service.png and b/png/azure-container-service.png differ
diff --git a/png/azure-devops.png b/png/azure-devops.png
index 217fe9bb..376c9690 100644
Binary files a/png/azure-devops.png and b/png/azure-devops.png differ
diff --git a/png/azure-dns.png b/png/azure-dns.png
index ec370514..b0af26ae 100644
Binary files a/png/azure-dns.png and b/png/azure-dns.png differ
diff --git a/png/azure.png b/png/azure.png
index 7efce5de..69578320 100644
Binary files a/png/azure.png and b/png/azure.png differ
diff --git a/png/babybuddy.png b/png/babybuddy.png
deleted file mode 100644
index 25189090..00000000
Binary files a/png/babybuddy.png and /dev/null differ
diff --git a/png/backblaze.png b/png/backblaze.png
index c893bc47..d292ce67 100644
Binary files a/png/backblaze.png and b/png/backblaze.png differ
diff --git a/png/backrest-light.png b/png/backrest-light.png
new file mode 100644
index 00000000..236fb505
Binary files /dev/null and b/png/backrest-light.png differ
diff --git a/png/backrest.png b/png/backrest.png
new file mode 100644
index 00000000..88c49b05
Binary files /dev/null and b/png/backrest.png differ
diff --git a/png/bacula.png b/png/bacula.png
deleted file mode 100644
index cb644846..00000000
Binary files a/png/bacula.png and /dev/null differ
diff --git a/png/badge.png b/png/badge.png
deleted file mode 100644
index 287c5ff2..00000000
Binary files a/png/badge.png and /dev/null differ
diff --git a/png/baikal.png b/png/baikal.png
deleted file mode 100644
index 5eac8895..00000000
Binary files a/png/baikal.png and /dev/null differ
diff --git a/png/bar-assistant.png b/png/bar-assistant.png
index 4bb3acc1..92b8331e 100644
Binary files a/png/bar-assistant.png and b/png/bar-assistant.png differ
diff --git a/png/barcodebuddy.png b/png/barcodebuddy.png
deleted file mode 100644
index 3bb572bf..00000000
Binary files a/png/barcodebuddy.png and /dev/null differ
diff --git a/png/baserow.png b/png/baserow.png
index 2b7a8000..1b9639a4 100644
Binary files a/png/baserow.png and b/png/baserow.png differ
diff --git a/png/basilisk.png b/png/basilisk.png
deleted file mode 100644
index 00df523d..00000000
Binary files a/png/basilisk.png and /dev/null differ
diff --git a/png/bastillion.png b/png/bastillion.png
deleted file mode 100644
index 4ef96cd7..00000000
Binary files a/png/bastillion.png and /dev/null differ
diff --git a/png/bazarr-dark.png b/png/bazarr-dark.png
new file mode 100644
index 00000000..9da8b389
Binary files /dev/null and b/png/bazarr-dark.png differ
diff --git a/png/bazarr-light.png b/png/bazarr-light.png
deleted file mode 100644
index 28ef313d..00000000
Binary files a/png/bazarr-light.png and /dev/null differ
diff --git a/png/bazarr.png b/png/bazarr.png
index e00ba3b5..9af5f977 100644
Binary files a/png/bazarr.png and b/png/bazarr.png differ
diff --git a/png/beaver-habit-tracker-light.png b/png/beaver-habit-tracker-light.png
new file mode 100644
index 00000000..cba2eaf5
Binary files /dev/null and b/png/beaver-habit-tracker-light.png differ
diff --git a/png/beaver-habit-tracker.png b/png/beaver-habit-tracker.png
new file mode 100644
index 00000000..9de1ca53
Binary files /dev/null and b/png/beaver-habit-tracker.png differ
diff --git a/png/beef-light.png b/png/beef-light.png
index cc64992e..5012fc1d 100644
Binary files a/png/beef-light.png and b/png/beef-light.png differ
diff --git a/png/beef.png b/png/beef.png
index 1e161ef6..dbf1bf33 100644
Binary files a/png/beef.png and b/png/beef.png differ
diff --git a/png/beets.png b/png/beets.png
deleted file mode 100644
index 08194e09..00000000
Binary files a/png/beets.png and /dev/null differ
diff --git a/png/benotes.png b/png/benotes.png
deleted file mode 100644
index 9212ce7e..00000000
Binary files a/png/benotes.png and /dev/null differ
diff --git a/png/beszel-light.png b/png/beszel-light.png
new file mode 100644
index 00000000..02cf2c46
Binary files /dev/null and b/png/beszel-light.png differ
diff --git a/png/beszel.png b/png/beszel.png
new file mode 100644
index 00000000..1a902ce0
Binary files /dev/null and b/png/beszel.png differ
diff --git a/png/betanin.png b/png/betanin.png
deleted file mode 100644
index fd90115b..00000000
Binary files a/png/betanin.png and /dev/null differ
diff --git a/png/bible-gateway.png b/png/bible-gateway.png
deleted file mode 100644
index 0cb9770d..00000000
Binary files a/png/bible-gateway.png and /dev/null differ
diff --git a/png/bibliogram.png b/png/bibliogram.png
deleted file mode 100644
index 174ee102..00000000
Binary files a/png/bibliogram.png and /dev/null differ
diff --git a/png/biblioreads-light.png b/png/biblioreads-light.png
new file mode 100644
index 00000000..7ba336ad
Binary files /dev/null and b/png/biblioreads-light.png differ
diff --git a/png/biblioreads.png b/png/biblioreads.png
new file mode 100644
index 00000000..e9b4415c
Binary files /dev/null and b/png/biblioreads.png differ
diff --git a/png/biedronka.png b/png/biedronka.png
deleted file mode 100644
index 946e632e..00000000
Binary files a/png/biedronka.png and /dev/null differ
diff --git a/png/bigcapital.png b/png/bigcapital.png
new file mode 100644
index 00000000..81ec3515
Binary files /dev/null and b/png/bigcapital.png differ
diff --git a/png/bing.png b/png/bing.png
index 3140e1ac..4833967e 100644
Binary files a/png/bing.png and b/png/bing.png differ
diff --git a/png/birdnet.png b/png/birdnet.png
deleted file mode 100644
index f5d83ba9..00000000
Binary files a/png/birdnet.png and /dev/null differ
diff --git a/png/bitbucket.png b/png/bitbucket.png
new file mode 100644
index 00000000..fd2c1faf
Binary files /dev/null and b/png/bitbucket.png differ
diff --git a/png/bitcoin.png b/png/bitcoin.png
index 1b0cb09b..74a0a08b 100644
Binary files a/png/bitcoin.png and b/png/bitcoin.png differ
diff --git a/png/bithumen.png b/png/bithumen.png
deleted file mode 100644
index 26678e2a..00000000
Binary files a/png/bithumen.png and /dev/null differ
diff --git a/png/bitwarden.png b/png/bitwarden.png
index 5cb9c929..956d4d55 100644
Binary files a/png/bitwarden.png and b/png/bitwarden.png differ
diff --git a/png/blocky.png b/png/blocky.png
index 09275f4b..59d6f4c4 100644
Binary files a/png/blocky.png and b/png/blocky.png differ
diff --git a/png/blogger.png b/png/blogger.png
index 86e07daa..209ba221 100644
Binary files a/png/blogger.png and b/png/blogger.png differ
diff --git a/png/blue-iris.png b/png/blue-iris.png
deleted file mode 100644
index bc953f01..00000000
Binary files a/png/blue-iris.png and /dev/null differ
diff --git a/png/bluesky.png b/png/bluesky.png
new file mode 100644
index 00000000..14405c57
Binary files /dev/null and b/png/bluesky.png differ
diff --git a/png/bluetooth.png b/png/bluetooth.png
index c99d1e74..e29e82a2 100644
Binary files a/png/bluetooth.png and b/png/bluetooth.png differ
diff --git a/png/bluewallet.png b/png/bluewallet.png
deleted file mode 100644
index 45b5df61..00000000
Binary files a/png/bluewallet.png and /dev/null differ
diff --git a/png/bobcat-miner.png b/png/bobcat-miner.png
deleted file mode 100644
index f4e832b6..00000000
Binary files a/png/bobcat-miner.png and /dev/null differ
diff --git a/png/booklogr-light.png b/png/booklogr-light.png
new file mode 100644
index 00000000..ec958cb7
Binary files /dev/null and b/png/booklogr-light.png differ
diff --git a/png/booklogr.png b/png/booklogr.png
new file mode 100644
index 00000000..ad038510
Binary files /dev/null and b/png/booklogr.png differ
diff --git a/png/booksonic.png b/png/booksonic.png
deleted file mode 100644
index 8b299669..00000000
Binary files a/png/booksonic.png and /dev/null differ
diff --git a/png/bookstack.png b/png/bookstack.png
index 26106551..cfa38001 100644
Binary files a/png/bookstack.png and b/png/bookstack.png differ
diff --git a/png/bootstrap.png b/png/bootstrap.png
index 3145a088..89f2cd31 100644
Binary files a/png/bootstrap.png and b/png/bootstrap.png differ
diff --git a/png/borg.png b/png/borg.png
index f7e146b7..d29ece24 100644
Binary files a/png/borg.png and b/png/borg.png differ
diff --git a/png/borgbackup.png b/png/borgbackup.png
deleted file mode 100644
index f7e146b7..00000000
Binary files a/png/borgbackup.png and /dev/null differ
diff --git a/png/borgmatic-light.png b/png/borgmatic-light.png
new file mode 100644
index 00000000..017a4c6c
Binary files /dev/null and b/png/borgmatic-light.png differ
diff --git a/png/borgmatic.png b/png/borgmatic.png
new file mode 100644
index 00000000..28fe1594
Binary files /dev/null and b/png/borgmatic.png differ
diff --git a/png/boundary.png b/png/boundary.png
index 501d167b..cf1612e8 100644
Binary files a/png/boundary.png and b/png/boundary.png differ
diff --git a/png/box.png b/png/box.png
index aaa7996a..1769cc6b 100644
Binary files a/png/box.png and b/png/box.png differ
diff --git a/png/brave-dev.png b/png/brave-dev.png
deleted file mode 100644
index 612cd8d3..00000000
Binary files a/png/brave-dev.png and /dev/null differ
diff --git a/png/brave.png b/png/brave.png
index 790a371b..b6b19f67 100644
Binary files a/png/brave.png and b/png/brave.png differ
diff --git a/png/brewpi.png b/png/brewpi.png
deleted file mode 100644
index d90c47c9..00000000
Binary files a/png/brewpi.png and /dev/null differ
diff --git a/png/brillcam.png b/png/brillcam.png
deleted file mode 100644
index 0768af4a..00000000
Binary files a/png/brillcam.png and /dev/null differ
diff --git a/png/broadcastchannel-light.png b/png/broadcastchannel-light.png
new file mode 100644
index 00000000..62ddf64f
Binary files /dev/null and b/png/broadcastchannel-light.png differ
diff --git a/png/broadcastchannel.png b/png/broadcastchannel.png
new file mode 100644
index 00000000..50683d8e
Binary files /dev/null and b/png/broadcastchannel.png differ
diff --git a/png/brocade.png b/png/brocade.png
index c8cb6d08..3b362cbf 100644
Binary files a/png/brocade.png and b/png/brocade.png differ
diff --git a/png/brother.png b/png/brother.png
index 76f97cd2..e150c868 100644
Binary files a/png/brother.png and b/png/brother.png differ
diff --git a/png/browserless-light.png b/png/browserless-light.png
index d89f2ee8..213639be 100644
Binary files a/png/browserless-light.png and b/png/browserless-light.png differ
diff --git a/png/browserless.png b/png/browserless.png
index 1e65e276..c8c3361a 100644
Binary files a/png/browserless.png and b/png/browserless.png differ
diff --git a/png/browsh.png b/png/browsh.png
index a95a80c5..320da502 100644
Binary files a/png/browsh.png and b/png/browsh.png differ
diff --git a/png/btcpay-server.png b/png/btcpay-server.png
deleted file mode 100644
index 214ae402..00000000
Binary files a/png/btcpay-server.png and /dev/null differ
diff --git a/png/buddy.png b/png/buddy.png
deleted file mode 100644
index 5902cf56..00000000
Binary files a/png/buddy.png and /dev/null differ
diff --git a/png/budget-zero.png b/png/budget-zero.png
deleted file mode 100644
index 6c6e3d78..00000000
Binary files a/png/budget-zero.png and /dev/null differ
diff --git a/png/budgetbee-light.png b/png/budgetbee-light.png
new file mode 100644
index 00000000..d60b37a5
Binary files /dev/null and b/png/budgetbee-light.png differ
diff --git a/png/budgetbee.png b/png/budgetbee.png
new file mode 100644
index 00000000..38768909
Binary files /dev/null and b/png/budgetbee.png differ
diff --git a/png/budibase-light.png b/png/budibase-light.png
deleted file mode 100644
index 85b2b785..00000000
Binary files a/png/budibase-light.png and /dev/null differ
diff --git a/png/budibase.png b/png/budibase.png
index 9b84e32e..dc8e8365 100644
Binary files a/png/budibase.png and b/png/budibase.png differ
diff --git a/png/buffalo.png b/png/buffalo.png
deleted file mode 100644
index 24228f71..00000000
Binary files a/png/buffalo.png and /dev/null differ
diff --git a/png/bunkerweb-light.png b/png/bunkerweb-light.png
deleted file mode 100644
index 0b37a470..00000000
Binary files a/png/bunkerweb-light.png and /dev/null differ
diff --git a/png/bunkerweb.png b/png/bunkerweb.png
index 4dc66b55..5e983c63 100644
Binary files a/png/bunkerweb.png and b/png/bunkerweb.png differ
diff --git a/png/buxfer.png b/png/buxfer.png
deleted file mode 100644
index eea9d043..00000000
Binary files a/png/buxfer.png and /dev/null differ
diff --git a/png/c.png b/png/c.png
index 99516d3e..2c0c478c 100644
Binary files a/png/c.png and b/png/c.png differ
diff --git a/png/cabot.png b/png/cabot.png
deleted file mode 100644
index 5bb16fe7..00000000
Binary files a/png/cabot.png and /dev/null differ
diff --git a/png/cacti.png b/png/cacti.png
index 2731dc05..7931a867 100644
Binary files a/png/cacti.png and b/png/cacti.png differ
diff --git a/png/caddy.png b/png/caddy.png
index 796366c9..e81905b0 100644
Binary files a/png/caddy.png and b/png/caddy.png differ
diff --git a/png/cadvisor.png b/png/cadvisor.png
deleted file mode 100644
index 60fb9b5d..00000000
Binary files a/png/cadvisor.png and /dev/null differ
diff --git a/png/cal-com-light.png b/png/cal-com-light.png
new file mode 100644
index 00000000..70443ba7
Binary files /dev/null and b/png/cal-com-light.png differ
diff --git a/png/cal-com.png b/png/cal-com.png
new file mode 100644
index 00000000..ebdac0db
Binary files /dev/null and b/png/cal-com.png differ
diff --git a/png/calckey.png b/png/calckey.png
deleted file mode 100644
index f30ce27d..00000000
Binary files a/png/calckey.png and /dev/null differ
diff --git a/png/caldera.png b/png/caldera.png
deleted file mode 100644
index 2cf9b199..00000000
Binary files a/png/caldera.png and /dev/null differ
diff --git a/png/calibre-web.png b/png/calibre-web.png
index d1fdf4c2..66080a5c 100644
Binary files a/png/calibre-web.png and b/png/calibre-web.png differ
diff --git a/png/calibre.png b/png/calibre.png
index a4fa7b33..e79fadc0 100644
Binary files a/png/calibre.png and b/png/calibre.png differ
diff --git a/png/camera-ui.png b/png/camera-ui.png
deleted file mode 100644
index 6dfaf18b..00000000
Binary files a/png/camera-ui.png and /dev/null differ
diff --git a/png/canonical.png b/png/canonical.png
index 0682f2ab..9a75c4fe 100644
Binary files a/png/canonical.png and b/png/canonical.png differ
diff --git a/png/caprover.png b/png/caprover.png
new file mode 100644
index 00000000..13c6c3aa
Binary files /dev/null and b/png/caprover.png differ
diff --git a/png/cardigann-light.png b/png/cardigann-light.png
deleted file mode 100644
index b84f3927..00000000
Binary files a/png/cardigann-light.png and /dev/null differ
diff --git a/png/cardigann.png b/png/cardigann.png
deleted file mode 100644
index 0ced4e0f..00000000
Binary files a/png/cardigann.png and /dev/null differ
diff --git a/png/carrefour.png b/png/carrefour.png
index ee2fc726..84b30f48 100644
Binary files a/png/carrefour.png and b/png/carrefour.png differ
diff --git a/png/casaos.png b/png/casaos.png
index 2b64b0b5..6ffc3cae 100644
Binary files a/png/casaos.png and b/png/casaos.png differ
diff --git a/png/castopod.png b/png/castopod.png
index b3c1b725..7aade290 100644
Binary files a/png/castopod.png and b/png/castopod.png differ
diff --git a/png/cc-light.png b/png/cc-light.png
index 95dcc458..bbd63682 100644
Binary files a/png/cc-light.png and b/png/cc-light.png differ
diff --git a/png/cc.png b/png/cc.png
index e84b28df..8471a167 100644
Binary files a/png/cc.png and b/png/cc.png differ
diff --git a/png/centos.png b/png/centos.png
index aafc189f..a83032a4 100644
Binary files a/png/centos.png and b/png/centos.png differ
diff --git a/png/ceph.png b/png/ceph.png
index 9abc6f6c..da1bf04b 100644
Binary files a/png/ceph.png and b/png/ceph.png differ
diff --git a/png/cert-manager.png b/png/cert-manager.png
index 8a0a17ca..a0d8fe52 100644
Binary files a/png/cert-manager.png and b/png/cert-manager.png differ
diff --git a/png/cert-warden-light.png b/png/cert-warden-light.png
new file mode 100644
index 00000000..3757c199
Binary files /dev/null and b/png/cert-warden-light.png differ
diff --git a/png/cert-warden.png b/png/cert-warden.png
index f917a322..ce069317 100644
Binary files a/png/cert-warden.png and b/png/cert-warden.png differ
diff --git a/png/chainguard.png b/png/chainguard.png
index 9f0bf0e6..d4c51018 100644
Binary files a/png/chainguard.png and b/png/chainguard.png differ
diff --git a/png/changedetection-io.png b/png/changedetection-io.png
deleted file mode 100644
index ec9771fb..00000000
Binary files a/png/changedetection-io.png and /dev/null differ
diff --git a/png/changedetection.png b/png/changedetection.png
new file mode 100644
index 00000000..dc4afdea
Binary files /dev/null and b/png/changedetection.png differ
diff --git a/png/channels-dvr.png b/png/channels-dvr.png
new file mode 100644
index 00000000..1393f597
Binary files /dev/null and b/png/channels-dvr.png differ
diff --git a/png/channels.png b/png/channels.png
deleted file mode 100644
index 959ba80a..00000000
Binary files a/png/channels.png and /dev/null differ
diff --git a/png/chatgpt.png b/png/chatgpt.png
index 94651011..022ebee9 100644
Binary files a/png/chatgpt.png and b/png/chatgpt.png differ
diff --git a/png/chatpad-ai.png b/png/chatpad-ai.png
index b6280742..76b46359 100644
Binary files a/png/chatpad-ai.png and b/png/chatpad-ai.png differ
diff --git a/png/checkmk.png b/png/checkmk.png
index 64e80d01..5d8b55be 100644
Binary files a/png/checkmk.png and b/png/checkmk.png differ
diff --git a/png/cherry.png b/png/cherry.png
deleted file mode 100644
index d06020d0..00000000
Binary files a/png/cherry.png and /dev/null differ
diff --git a/png/chevereto.png b/png/chevereto.png
index cbc02406..15390ead 100644
Binary files a/png/chevereto.png and b/png/chevereto.png differ
diff --git a/png/chiefonboarding.png b/png/chiefonboarding.png
deleted file mode 100644
index cb69ceae..00000000
Binary files a/png/chiefonboarding.png and /dev/null differ
diff --git a/png/chirpy.png b/png/chirpy.png
new file mode 100644
index 00000000..5e929430
Binary files /dev/null and b/png/chirpy.png differ
diff --git a/png/chowdown.png b/png/chowdown.png
deleted file mode 100644
index 201c24bc..00000000
Binary files a/png/chowdown.png and /dev/null differ
diff --git a/png/chrome-beta.png b/png/chrome-beta.png
deleted file mode 100644
index 474b5b2e..00000000
Binary files a/png/chrome-beta.png and /dev/null differ
diff --git a/png/chrome-canary.png b/png/chrome-canary.png
index 8135d07e..4019feed 100644
Binary files a/png/chrome-canary.png and b/png/chrome-canary.png differ
diff --git a/png/chrome-dev.png b/png/chrome-dev.png
index eb281ed7..1b16e858 100644
Binary files a/png/chrome-dev.png and b/png/chrome-dev.png differ
diff --git a/png/chrome-devtools.png b/png/chrome-devtools.png
index 587e5293..2cbadd7e 100644
Binary files a/png/chrome-devtools.png and b/png/chrome-devtools.png differ
diff --git a/png/chrome-remote-desktop.png b/png/chrome-remote-desktop.png
index ae0634d0..801aa3c8 100644
Binary files a/png/chrome-remote-desktop.png and b/png/chrome-remote-desktop.png differ
diff --git a/png/chrome.png b/png/chrome.png
index 7cf58e08..679bdd78 100644
Binary files a/png/chrome.png and b/png/chrome.png differ
diff --git a/png/chromecast-light.png b/png/chromecast-light.png
deleted file mode 100644
index 399c4543..00000000
Binary files a/png/chromecast-light.png and /dev/null differ
diff --git a/png/chromecast.png b/png/chromecast.png
deleted file mode 100644
index f2d507cf..00000000
Binary files a/png/chromecast.png and /dev/null differ
diff --git a/png/chromium.png b/png/chromium.png
index 1a2c8997..50b1329f 100644
Binary files a/png/chromium.png and b/png/chromium.png differ
diff --git a/png/chronograf.png b/png/chronograf.png
deleted file mode 100644
index fecc9ee6..00000000
Binary files a/png/chronograf.png and /dev/null differ
diff --git a/png/cilium-light.png b/png/cilium-light.png
new file mode 100644
index 00000000..4e30d990
Binary files /dev/null and b/png/cilium-light.png differ
diff --git a/png/cilium.png b/png/cilium.png
index 4cf581f0..a3994294 100644
Binary files a/png/cilium.png and b/png/cilium.png differ
diff --git a/png/cinny-light.png b/png/cinny-light.png
index 85c5ff8e..a217bded 100644
Binary files a/png/cinny-light.png and b/png/cinny-light.png differ
diff --git a/png/cinny.png b/png/cinny.png
index 45f37a05..530d0e70 100644
Binary files a/png/cinny.png and b/png/cinny.png differ
diff --git a/png/cisco.png b/png/cisco.png
index 4d8ecef9..73116ff1 100644
Binary files a/png/cisco.png and b/png/cisco.png differ
diff --git a/png/clash.png b/png/clash.png
deleted file mode 100644
index c9f3284a..00000000
Binary files a/png/clash.png and /dev/null differ
diff --git a/png/clashX.png b/png/clashX.png
deleted file mode 100644
index c9f3284a..00000000
Binary files a/png/clashX.png and /dev/null differ
diff --git a/png/clickhouse.png b/png/clickhouse.png
new file mode 100644
index 00000000..ce5ecf39
Binary files /dev/null and b/png/clickhouse.png differ
diff --git a/png/closed-captioning-light.png b/png/closed-captioning-light.png
deleted file mode 100644
index 95dcc458..00000000
Binary files a/png/closed-captioning-light.png and /dev/null differ
diff --git a/png/closed-captioning.png b/png/closed-captioning.png
deleted file mode 100644
index e84b28df..00000000
Binary files a/png/closed-captioning.png and /dev/null differ
diff --git a/png/cloud66.png b/png/cloud66.png
index 2800dd27..f185c938 100644
Binary files a/png/cloud66.png and b/png/cloud66.png differ
diff --git a/png/cloud9-light.png b/png/cloud9-light.png
new file mode 100644
index 00000000..858013e7
Binary files /dev/null and b/png/cloud9-light.png differ
diff --git a/png/cloud9.png b/png/cloud9.png
index 87bfb7b5..72b59ec7 100644
Binary files a/png/cloud9.png and b/png/cloud9.png differ
diff --git a/png/cloudbeaver.png b/png/cloudbeaver.png
index c6a836ed..e1a2a0e8 100644
Binary files a/png/cloudbeaver.png and b/png/cloudbeaver.png differ
diff --git a/png/cloudcmd.png b/png/cloudcmd.png
deleted file mode 100644
index 93d5373e..00000000
Binary files a/png/cloudcmd.png and /dev/null differ
diff --git a/png/cloudflare-pages.png b/png/cloudflare-pages.png
index 41b8a1a8..20223360 100644
Binary files a/png/cloudflare-pages.png and b/png/cloudflare-pages.png differ
diff --git a/png/cloudflare-zero-trust.png b/png/cloudflare-zero-trust.png
index 4d3eca70..39cbcbac 100644
Binary files a/png/cloudflare-zero-trust.png and b/png/cloudflare-zero-trust.png differ
diff --git a/png/cloudflare.png b/png/cloudflare.png
index 4d33c5f4..c05107eb 100644
Binary files a/png/cloudflare.png and b/png/cloudflare.png differ
diff --git a/png/cloudpanel.png b/png/cloudpanel.png
index e79e52cd..ec46064a 100644
Binary files a/png/cloudpanel.png and b/png/cloudpanel.png differ
diff --git a/png/cockpit-cms-light.png b/png/cockpit-cms-light.png
index 150d2db6..c3ac66f0 100644
Binary files a/png/cockpit-cms-light.png and b/png/cockpit-cms-light.png differ
diff --git a/png/cockpit-cms.png b/png/cockpit-cms.png
index 1a616f9f..5f3d54bd 100644
Binary files a/png/cockpit-cms.png and b/png/cockpit-cms.png differ
diff --git a/png/cockpit-light.png b/png/cockpit-light.png
new file mode 100644
index 00000000..8b6771e3
Binary files /dev/null and b/png/cockpit-light.png differ
diff --git a/png/cockpit.png b/png/cockpit.png
index 8efd9b75..439fd644 100644
Binary files a/png/cockpit.png and b/png/cockpit.png differ
diff --git a/png/code-server.png b/png/code-server.png
deleted file mode 100644
index 5706f724..00000000
Binary files a/png/code-server.png and /dev/null differ
diff --git a/png/code.png b/png/code.png
index af38c2d3..c19e791f 100644
Binary files a/png/code.png and b/png/code.png differ
diff --git a/png/codeberg.png b/png/codeberg.png
index 15834f0d..c7e4adab 100644
Binary files a/png/codeberg.png and b/png/codeberg.png differ
diff --git a/png/coder-light.png b/png/coder-light.png
index 671afa2d..0dadef0d 100644
Binary files a/png/coder-light.png and b/png/coder-light.png differ
diff --git a/png/coder.png b/png/coder.png
index 9c28653c..537e1732 100644
Binary files a/png/coder.png and b/png/coder.png differ
diff --git a/png/codestats-light.png b/png/codestats-light.png
index f69a03ea..684f3474 100644
Binary files a/png/codestats-light.png and b/png/codestats-light.png differ
diff --git a/png/codestats.png b/png/codestats.png
index 0f55a521..b4ae01da 100644
Binary files a/png/codestats.png and b/png/codestats.png differ
diff --git a/png/codex-light.png b/png/codex-light.png
new file mode 100644
index 00000000..b06a3645
Binary files /dev/null and b/png/codex-light.png differ
diff --git a/png/codex.png b/png/codex.png
index fa4a5950..ecf5b4b4 100644
Binary files a/png/codex.png and b/png/codex.png differ
diff --git a/png/codimd-light.png b/png/codimd-light.png
deleted file mode 100644
index 6978e262..00000000
Binary files a/png/codimd-light.png and /dev/null differ
diff --git a/png/codimd.png b/png/codimd.png
deleted file mode 100644
index e96af701..00000000
Binary files a/png/codimd.png and /dev/null differ
diff --git a/png/collabora-online.png b/png/collabora-online.png
index 0aec8f46..eca03265 100644
Binary files a/png/collabora-online.png and b/png/collabora-online.png differ
diff --git a/png/commafeed-light.png b/png/commafeed-light.png
new file mode 100644
index 00000000..862cc5c5
Binary files /dev/null and b/png/commafeed-light.png differ
diff --git a/png/commafeed.png b/png/commafeed.png
index 70c9fb0b..c4ea2e2b 100644
Binary files a/png/commafeed.png and b/png/commafeed.png differ
diff --git a/png/commento-light.png b/png/commento-light.png
new file mode 100644
index 00000000..3333e631
Binary files /dev/null and b/png/commento-light.png differ
diff --git a/png/commento.png b/png/commento.png
new file mode 100644
index 00000000..bf86b638
Binary files /dev/null and b/png/commento.png differ
diff --git a/png/compreface.png b/png/compreface.png
new file mode 100644
index 00000000..b1c23fda
Binary files /dev/null and b/png/compreface.png differ
diff --git a/png/concourse.png b/png/concourse.png
index d4b4024e..8ee9e9a9 100644
Binary files a/png/concourse.png and b/png/concourse.png differ
diff --git a/png/confluence.png b/png/confluence.png
new file mode 100644
index 00000000..83fbae9c
Binary files /dev/null and b/png/confluence.png differ
diff --git a/png/consul.png b/png/consul.png
index a58f2adf..b0b5aa44 100644
Binary files a/png/consul.png and b/png/consul.png differ
diff --git a/png/contabo.png b/png/contabo.png
index 3840e88b..f5129163 100644
Binary files a/png/contabo.png and b/png/contabo.png differ
diff --git a/png/converse-light.png b/png/converse-light.png
new file mode 100644
index 00000000..1674823c
Binary files /dev/null and b/png/converse-light.png differ
diff --git a/png/converse.png b/png/converse.png
new file mode 100644
index 00000000..1ac3bd9d
Binary files /dev/null and b/png/converse.png differ
diff --git a/png/coolify.png b/png/coolify.png
index ee35346c..91444ed1 100644
Binary files a/png/coolify.png and b/png/coolify.png differ
diff --git a/png/coredns.png b/png/coredns.png
index 6ea177d4..111b0e2c 100644
Binary files a/png/coredns.png and b/png/coredns.png differ
diff --git a/png/coreos.png b/png/coreos.png
index 77090b09..04449340 100644
Binary files a/png/coreos.png and b/png/coreos.png differ
diff --git a/png/cosign.png b/png/cosign.png
index d6441222..59beedde 100644
Binary files a/png/cosign.png and b/png/cosign.png differ
diff --git a/png/costco.png b/png/costco.png
index 08ed72df..7abc82b1 100644
Binary files a/png/costco.png and b/png/costco.png differ
diff --git a/png/couchdb.png b/png/couchdb.png
new file mode 100644
index 00000000..829a9d02
Binary files /dev/null and b/png/couchdb.png differ
diff --git a/png/couchpotato.png b/png/couchpotato.png
deleted file mode 100644
index b89796dc..00000000
Binary files a/png/couchpotato.png and /dev/null differ
diff --git a/png/counter-analytics.png b/png/counter-analytics.png
new file mode 100644
index 00000000..b0e01693
Binary files /dev/null and b/png/counter-analytics.png differ
diff --git a/png/counter-strike-2.png b/png/counter-strike-2.png
deleted file mode 100644
index 8a6faff8..00000000
Binary files a/png/counter-strike-2.png and /dev/null differ
diff --git a/png/counter-strike-global-offensive.png b/png/counter-strike-global-offensive.png
deleted file mode 100644
index 9d5bcd88..00000000
Binary files a/png/counter-strike-global-offensive.png and /dev/null differ
diff --git a/png/cozy-cloud.png b/png/cozy-cloud.png
deleted file mode 100644
index 9a27c94c..00000000
Binary files a/png/cozy-cloud.png and /dev/null differ
diff --git a/png/cozy.png b/png/cozy.png
index 9a27c94c..4ea12dac 100644
Binary files a/png/cozy.png and b/png/cozy.png differ
diff --git a/png/cpanel.png b/png/cpanel.png
index 2ab9ce56..59ef3c03 100644
Binary files a/png/cpanel.png and b/png/cpanel.png differ
diff --git a/png/cpp.png b/png/cpp.png
index 89232690..2e80497c 100644
Binary files a/png/cpp.png and b/png/cpp.png differ
diff --git a/png/crafty-controller.png b/png/crafty-controller.png
index c4605cc3..688a7a9d 100644
Binary files a/png/crafty-controller.png and b/png/crafty-controller.png differ
diff --git a/png/crater-invoice.png b/png/crater-invoice.png
deleted file mode 100644
index 6aad8f00..00000000
Binary files a/png/crater-invoice.png and /dev/null differ
diff --git a/png/crazydomains.png b/png/crazydomains.png
deleted file mode 100644
index f181a1bc..00000000
Binary files a/png/crazydomains.png and /dev/null differ
diff --git a/png/cribl-light.png b/png/cribl-light.png
deleted file mode 100644
index c1dc809e..00000000
Binary files a/png/cribl-light.png and /dev/null differ
diff --git a/png/cribl.png b/png/cribl.png
deleted file mode 100644
index 7cadb237..00000000
Binary files a/png/cribl.png and /dev/null differ
diff --git a/png/cross-seed-square.png b/png/cross-seed-square.png
deleted file mode 100644
index de6d8ee4..00000000
Binary files a/png/cross-seed-square.png and /dev/null differ
diff --git a/png/cross-seed.png b/png/cross-seed.png
deleted file mode 100644
index 4b671119..00000000
Binary files a/png/cross-seed.png and /dev/null differ
diff --git a/png/crowdsec.png b/png/crowdsec.png
index 7c724c96..be787bdf 100644
Binary files a/png/crowdsec.png and b/png/crowdsec.png differ
diff --git a/png/cryptomator.png b/png/cryptomator.png
index 820dfbef..3afd3941 100644
Binary files a/png/cryptomator.png and b/png/cryptomator.png differ
diff --git a/png/cryptpad.png b/png/cryptpad.png
index 4c99075b..19d223d7 100644
Binary files a/png/cryptpad.png and b/png/cryptpad.png differ
diff --git a/png/csharp.png b/png/csharp.png
index ac95f12a..9475bdb8 100644
Binary files a/png/csharp.png and b/png/csharp.png differ
diff --git a/png/css-light.png b/png/css-light.png
new file mode 100644
index 00000000..30faf89d
Binary files /dev/null and b/png/css-light.png differ
diff --git a/png/css.png b/png/css.png
index 10cb334e..228d978a 100644
Binary files a/png/css.png and b/png/css.png differ
diff --git a/png/ctfreak.png b/png/ctfreak.png
new file mode 100644
index 00000000..11f8b153
Binary files /dev/null and b/png/ctfreak.png differ
diff --git a/png/cups-light.png b/png/cups-light.png
index dcd7abf7..1804ced4 100644
Binary files a/png/cups-light.png and b/png/cups-light.png differ
diff --git a/png/cups.png b/png/cups.png
index 032a0403..b20393ec 100644
Binary files a/png/cups.png and b/png/cups.png differ
diff --git a/png/cura.png b/png/cura.png
index d5d380c6..92c5f875 100644
Binary files a/png/cura.png and b/png/cura.png differ
diff --git a/png/cyberchef.png b/png/cyberchef.png
index 209d2fd0..56b3fd7a 100644
Binary files a/png/cyberchef.png and b/png/cyberchef.png differ
diff --git a/png/czkawka.png b/png/czkawka.png
new file mode 100644
index 00000000..9308cea6
Binary files /dev/null and b/png/czkawka.png differ
diff --git a/png/d-link-wifi.png b/png/d-link-wifi.png
deleted file mode 100644
index bbb4b53b..00000000
Binary files a/png/d-link-wifi.png and /dev/null differ
diff --git a/png/d-link.png b/png/d-link.png
index c48d1d98..6f9a96df 100644
Binary files a/png/d-link.png and b/png/d-link.png differ
diff --git a/png/dahua.png b/png/dahua.png
deleted file mode 100644
index 98b5acab..00000000
Binary files a/png/dahua.png and /dev/null differ
diff --git a/png/dalibo.png b/png/dalibo.png
new file mode 100644
index 00000000..dba7c44b
Binary files /dev/null and b/png/dalibo.png differ
diff --git a/png/dart.png b/png/dart.png
index 28cd1ea9..590a502c 100644
Binary files a/png/dart.png and b/png/dart.png differ
diff --git a/png/dashboard-icons.png b/png/dashboard-icons.png
deleted file mode 100644
index bf457aaa..00000000
Binary files a/png/dashboard-icons.png and /dev/null differ
diff --git a/png/dashdot.png b/png/dashdot.png
deleted file mode 100644
index eb05984c..00000000
Binary files a/png/dashdot.png and /dev/null differ
diff --git a/png/dashy.png b/png/dashy.png
deleted file mode 100644
index 4f0a6198..00000000
Binary files a/png/dashy.png and /dev/null differ
diff --git a/png/datadog.png b/png/datadog.png
index b445ae53..28a8755c 100644
Binary files a/png/datadog.png and b/png/datadog.png differ
diff --git a/png/davical.png b/png/davical.png
new file mode 100644
index 00000000..ac4f9cb0
Binary files /dev/null and b/png/davical.png differ
diff --git a/png/davis.png b/png/davis.png
deleted file mode 100644
index 15bdc331..00000000
Binary files a/png/davis.png and /dev/null differ
diff --git a/png/dawarich.png b/png/dawarich.png
new file mode 100644
index 00000000..f71d9085
Binary files /dev/null and b/png/dawarich.png differ
diff --git a/png/dc-os.png b/png/dc-os.png
index a2d48569..becae71a 100644
Binary files a/png/dc-os.png and b/png/dc-os.png differ
diff --git a/png/dd-wrt-light.png b/png/dd-wrt-light.png
deleted file mode 100644
index 71373b17..00000000
Binary files a/png/dd-wrt-light.png and /dev/null differ
diff --git a/png/dd-wrt.png b/png/dd-wrt.png
deleted file mode 100644
index bfe5b183..00000000
Binary files a/png/dd-wrt.png and /dev/null differ
diff --git a/png/ddclient.png b/png/ddclient.png
new file mode 100644
index 00000000..3ccdaaf7
Binary files /dev/null and b/png/ddclient.png differ
diff --git a/png/ddns-updater.png b/png/ddns-updater.png
index 5feba638..54f59e74 100644
Binary files a/png/ddns-updater.png and b/png/ddns-updater.png differ
diff --git a/png/debian-linux.png b/png/debian-linux.png
new file mode 100644
index 00000000..bb580ccc
Binary files /dev/null and b/png/debian-linux.png differ
diff --git a/png/debian.png b/png/debian.png
deleted file mode 100644
index 44aa3ff5..00000000
Binary files a/png/debian.png and /dev/null differ
diff --git a/png/deemix.png b/png/deemix.png
deleted file mode 100644
index 16481adb..00000000
Binary files a/png/deemix.png and /dev/null differ
diff --git a/png/defguard.png b/png/defguard.png
new file mode 100644
index 00000000..92da55ae
Binary files /dev/null and b/png/defguard.png differ
diff --git a/png/dell.png b/png/dell.png
index 61f8ec1a..e6230cb7 100644
Binary files a/png/dell.png and b/png/dell.png differ
diff --git a/png/deluge.png b/png/deluge.png
index 23a0972a..6cd40be7 100644
Binary files a/png/deluge.png and b/png/deluge.png differ
diff --git a/png/deno-light.png b/png/deno-light.png
index d02bf53c..0d7a102d 100644
Binary files a/png/deno-light.png and b/png/deno-light.png differ
diff --git a/png/deno.png b/png/deno.png
index 08d1af8c..2b2bb3be 100644
Binary files a/png/deno.png and b/png/deno.png differ
diff --git a/png/denon-light.png b/png/denon-light.png
index 08398208..f03720ec 100644
Binary files a/png/denon-light.png and b/png/denon-light.png differ
diff --git a/png/denon.png b/png/denon.png
index 4e656240..b2e10a96 100644
Binary files a/png/denon.png and b/png/denon.png differ
diff --git a/png/deployarr.png b/png/deployarr.png
index 8daf93fb..f5a3d695 100644
Binary files a/png/deployarr.png and b/png/deployarr.png differ
diff --git a/png/develancacheui.png b/png/develancacheui.png
deleted file mode 100644
index d7256d52..00000000
Binary files a/png/develancacheui.png and /dev/null differ
diff --git a/png/devtooly-light.png b/png/devtooly-light.png
deleted file mode 100644
index 3270c97e..00000000
Binary files a/png/devtooly-light.png and /dev/null differ
diff --git a/png/devtooly.png b/png/devtooly.png
deleted file mode 100644
index fc223560..00000000
Binary files a/png/devtooly.png and /dev/null differ
diff --git a/png/diagrams-net.png b/png/diagrams-net.png
index 20348a14..9e4fc5d5 100644
Binary files a/png/diagrams-net.png and b/png/diagrams-net.png differ
diff --git a/png/dietpi.png b/png/dietpi.png
deleted file mode 100644
index 990adea2..00000000
Binary files a/png/dietpi.png and /dev/null differ
diff --git a/png/digital-ocean.png b/png/digital-ocean.png
index 72bbbcae..f032092c 100644
Binary files a/png/digital-ocean.png and b/png/digital-ocean.png differ
diff --git a/png/dillinger-light.png b/png/dillinger-light.png
new file mode 100644
index 00000000..30463ea0
Binary files /dev/null and b/png/dillinger-light.png differ
diff --git a/png/dillinger.png b/png/dillinger.png
index 2f3ff822..fcc750bd 100644
Binary files a/png/dillinger.png and b/png/dillinger.png differ
diff --git a/png/dim-light.png b/png/dim-light.png
deleted file mode 100644
index 2e68208e..00000000
Binary files a/png/dim-light.png and /dev/null differ
diff --git a/png/dim.png b/png/dim.png
deleted file mode 100644
index a2f2eb5e..00000000
Binary files a/png/dim.png and /dev/null differ
diff --git a/png/directadmin.png b/png/directadmin.png
index 92fdb378..272541f7 100644
Binary files a/png/directadmin.png and b/png/directadmin.png differ
diff --git a/png/directus.png b/png/directus.png
index bcf820fd..f09ba5a8 100644
Binary files a/png/directus.png and b/png/directus.png differ
diff --git a/png/discord.png b/png/discord.png
index ac95e0e7..09330527 100644
Binary files a/png/discord.png and b/png/discord.png differ
diff --git a/png/discourse-light.png b/png/discourse-light.png
new file mode 100644
index 00000000..04cc6eb8
Binary files /dev/null and b/png/discourse-light.png differ
diff --git a/png/discourse.png b/png/discourse.png
index 4c380659..d9562fb3 100644
Binary files a/png/discourse.png and b/png/discourse.png differ
diff --git a/png/diskover.png b/png/diskover.png
deleted file mode 100644
index 09f014a0..00000000
Binary files a/png/diskover.png and /dev/null differ
diff --git a/png/disney-plus-light.png b/png/disney-plus-light.png
deleted file mode 100644
index 9334194d..00000000
Binary files a/png/disney-plus-light.png and /dev/null differ
diff --git a/png/disney-plus.png b/png/disney-plus.png
index f6973142..c116e446 100644
Binary files a/png/disney-plus.png and b/png/disney-plus.png differ
diff --git a/png/diun.png b/png/diun.png
deleted file mode 100644
index 4706100d..00000000
Binary files a/png/diun.png and /dev/null differ
diff --git a/png/diyhue.png b/png/diyhue.png
deleted file mode 100644
index 45b7bc21..00000000
Binary files a/png/diyhue.png and /dev/null differ
diff --git a/png/dlna.png b/png/dlna.png
index a13489ce..ef2fc75d 100644
Binary files a/png/dlna.png and b/png/dlna.png differ
diff --git a/png/docassemble-light.png b/png/docassemble-light.png
new file mode 100644
index 00000000..49674470
Binary files /dev/null and b/png/docassemble-light.png differ
diff --git a/png/docassemble.png b/png/docassemble.png
new file mode 100644
index 00000000..6bf10c34
Binary files /dev/null and b/png/docassemble.png differ
diff --git a/png/docker-amd.png b/png/docker-amd.png
deleted file mode 100644
index a17cef01..00000000
Binary files a/png/docker-amd.png and /dev/null differ
diff --git a/png/docker-compose.png b/png/docker-compose.png
deleted file mode 100644
index 9c18f186..00000000
Binary files a/png/docker-compose.png and /dev/null differ
diff --git a/png/docker-engine.png b/png/docker-engine.png
new file mode 100644
index 00000000..a22899b5
Binary files /dev/null and b/png/docker-engine.png differ
diff --git a/png/docker-gc.png b/png/docker-gc.png
deleted file mode 100644
index 55cddb5c..00000000
Binary files a/png/docker-gc.png and /dev/null differ
diff --git a/png/docker-mailserver-light.png b/png/docker-mailserver-light.png
new file mode 100644
index 00000000..316c474c
Binary files /dev/null and b/png/docker-mailserver-light.png differ
diff --git a/png/docker-mailserver.png b/png/docker-mailserver.png
index d3851116..a5b0b271 100644
Binary files a/png/docker-mailserver.png and b/png/docker-mailserver.png differ
diff --git a/png/docker-moby.png b/png/docker-moby.png
index c38aa910..5af85fe8 100644
Binary files a/png/docker-moby.png and b/png/docker-moby.png differ
diff --git a/png/docker-volume-backup.png b/png/docker-volume-backup.png
new file mode 100644
index 00000000..a65da668
Binary files /dev/null and b/png/docker-volume-backup.png differ
diff --git a/png/docker.png b/png/docker.png
index ff34a161..a22899b5 100644
Binary files a/png/docker.png and b/png/docker.png differ
diff --git a/png/dockge-light.png b/png/dockge-light.png
deleted file mode 100644
index e03f2975..00000000
Binary files a/png/dockge-light.png and /dev/null differ
diff --git a/png/dockge.png b/png/dockge.png
index cacf106e..36420e03 100644
Binary files a/png/dockge.png and b/png/dockge.png differ
diff --git a/png/docking-station.png b/png/docking-station.png
new file mode 100644
index 00000000..1b6647af
Binary files /dev/null and b/png/docking-station.png differ
diff --git a/png/dockstarter.png b/png/dockstarter.png
deleted file mode 100644
index b81ad756..00000000
Binary files a/png/dockstarter.png and /dev/null differ
diff --git a/png/docsify.png b/png/docsify.png
index 75483792..5961d0c1 100644
Binary files a/png/docsify.png and b/png/docsify.png differ
diff --git a/png/docspell.png b/png/docspell.png
index d427d428..3c9b32d5 100644
Binary files a/png/docspell.png and b/png/docspell.png differ
diff --git a/png/documenso.png b/png/documenso.png
new file mode 100644
index 00000000..e59f3542
Binary files /dev/null and b/png/documenso.png differ
diff --git a/png/docusaurus.png b/png/docusaurus.png
index b6bdcc08..2d7e0d3e 100644
Binary files a/png/docusaurus.png and b/png/docusaurus.png differ
diff --git a/png/docuseal.png b/png/docuseal.png
index b868c849..a20f86b5 100644
Binary files a/png/docuseal.png and b/png/docuseal.png differ
diff --git a/png/dogpile.png b/png/dogpile.png
deleted file mode 100644
index 89cd04e1..00000000
Binary files a/png/dogpile.png and /dev/null differ
diff --git a/png/dokemon.png b/png/dokemon.png
new file mode 100644
index 00000000..ff8ea910
Binary files /dev/null and b/png/dokemon.png differ
diff --git a/png/dokuwiki.png b/png/dokuwiki.png
index 1a238b09..fd75e809 100644
Binary files a/png/dokuwiki.png and b/png/dokuwiki.png differ
diff --git a/png/dolibarr.png b/png/dolibarr.png
deleted file mode 100644
index 09858c14..00000000
Binary files a/png/dolibarr.png and /dev/null differ
diff --git a/png/dolphin.png b/png/dolphin.png
deleted file mode 100644
index c0e5375b..00000000
Binary files a/png/dolphin.png and /dev/null differ
diff --git a/png/domainmod.png b/png/domainmod.png
deleted file mode 100644
index 29290f29..00000000
Binary files a/png/domainmod.png and /dev/null differ
diff --git a/png/domoticz.png b/png/domoticz.png
deleted file mode 100644
index d618b6e8..00000000
Binary files a/png/domoticz.png and /dev/null differ
diff --git a/png/dopplertask.png b/png/dopplertask.png
deleted file mode 100644
index 3bc9ab62..00000000
Binary files a/png/dopplertask.png and /dev/null differ
diff --git a/png/double-take-dark.png b/png/double-take-dark.png
new file mode 100644
index 00000000..8bb336e6
Binary files /dev/null and b/png/double-take-dark.png differ
diff --git a/png/double-take.png b/png/double-take.png
index dda25011..b759f798 100644
Binary files a/png/double-take.png and b/png/double-take.png differ
diff --git a/png/dovecot.png b/png/dovecot.png
index cfef009e..9ad2d9ec 100644
Binary files a/png/dovecot.png and b/png/dovecot.png differ
diff --git a/png/dozzle.png b/png/dozzle.png
index 44687dcc..9bbb895f 100644
Binary files a/png/dozzle.png and b/png/dozzle.png differ
diff --git a/png/draw-io.png b/png/draw-io.png
index 20348a14..165a74a6 100644
Binary files a/png/draw-io.png and b/png/draw-io.png differ
diff --git a/png/draw.png b/png/draw.png
deleted file mode 100644
index 20348a14..00000000
Binary files a/png/draw.png and /dev/null differ
diff --git a/png/draytek.png b/png/draytek.png
index 9f6ecdb2..c2b85e4d 100644
Binary files a/png/draytek.png and b/png/draytek.png differ
diff --git a/png/drone.png b/png/drone.png
deleted file mode 100644
index e5807833..00000000
Binary files a/png/drone.png and /dev/null differ
diff --git a/png/dropbox.png b/png/dropbox.png
new file mode 100644
index 00000000..2248879d
Binary files /dev/null and b/png/dropbox.png differ
diff --git a/png/dropout-light.png b/png/dropout-light.png
new file mode 100644
index 00000000..fb1ea704
Binary files /dev/null and b/png/dropout-light.png differ
diff --git a/png/dropout.png b/png/dropout.png
new file mode 100644
index 00000000..f4c1364c
Binary files /dev/null and b/png/dropout.png differ
diff --git a/png/droppy-dark.png b/png/droppy-dark.png
new file mode 100644
index 00000000..4705719f
Binary files /dev/null and b/png/droppy-dark.png differ
diff --git a/png/droppy.png b/png/droppy.png
index 72afa21c..ced3b6e7 100644
Binary files a/png/droppy.png and b/png/droppy.png differ
diff --git a/png/dub-light.png b/png/dub-light.png
new file mode 100644
index 00000000..181e6e25
Binary files /dev/null and b/png/dub-light.png differ
diff --git a/png/dub.png b/png/dub.png
new file mode 100644
index 00000000..1bc4433d
Binary files /dev/null and b/png/dub.png differ
diff --git a/png/duckdns-light.png b/png/duckdns-light.png
new file mode 100644
index 00000000..1abcb9e6
Binary files /dev/null and b/png/duckdns-light.png differ
diff --git a/png/duckdns.png b/png/duckdns.png
index b25e922d..cdeb759f 100644
Binary files a/png/duckdns.png and b/png/duckdns.png differ
diff --git a/png/duckduckgo.png b/png/duckduckgo.png
index ff494ffe..2d9025ff 100644
Binary files a/png/duckduckgo.png and b/png/duckduckgo.png differ
diff --git a/png/duo.png b/png/duo.png
index cff538d2..d921191b 100644
Binary files a/png/duo.png and b/png/duo.png differ
diff --git a/png/duplicacy.png b/png/duplicacy.png
deleted file mode 100644
index 718491c5..00000000
Binary files a/png/duplicacy.png and /dev/null differ
diff --git a/png/duplicati.png b/png/duplicati.png
index fa5ef33f..7ea23017 100644
Binary files a/png/duplicati.png and b/png/duplicati.png differ
diff --git a/png/easy-gate-light.png b/png/easy-gate-light.png
index 22335b87..f015a2a1 100644
Binary files a/png/easy-gate-light.png and b/png/easy-gate-light.png differ
diff --git a/png/easy-gate.png b/png/easy-gate.png
index 4793bf3c..35234994 100644
Binary files a/png/easy-gate.png and b/png/easy-gate.png differ
diff --git a/png/ebay.png b/png/ebay.png
index 746399bd..a2af5da1 100644
Binary files a/png/ebay.png and b/png/ebay.png differ
diff --git a/png/eblocker.png b/png/eblocker.png
index 20523eaf..d2c71b49 100644
Binary files a/png/eblocker.png and b/png/eblocker.png differ
diff --git a/png/eclipse-mosquitto.png b/png/eclipse-mosquitto.png
deleted file mode 100644
index d5df267b..00000000
Binary files a/png/eclipse-mosquitto.png and /dev/null differ
diff --git a/png/edge-dev.png b/png/edge-dev.png
index e0cc5882..e8b2a300 100644
Binary files a/png/edge-dev.png and b/png/edge-dev.png differ
diff --git a/png/edge.png b/png/edge.png
index 60660f8d..f2867061 100644
Binary files a/png/edge.png and b/png/edge.png differ
diff --git a/png/edgeos-light.png b/png/edgeos-light.png
deleted file mode 100644
index 4ab4c9af..00000000
Binary files a/png/edgeos-light.png and /dev/null differ
diff --git a/png/edgeos.png b/png/edgeos.png
deleted file mode 100644
index a689fd4d..00000000
Binary files a/png/edgeos.png and /dev/null differ
diff --git a/png/elastic-beats.png b/png/elastic-beats.png
index f688578c..ef58541e 100644
Binary files a/png/elastic-beats.png and b/png/elastic-beats.png differ
diff --git a/png/elastic-kibana.png b/png/elastic-kibana.png
index 658569e8..36ee9ca7 100644
Binary files a/png/elastic-kibana.png and b/png/elastic-kibana.png differ
diff --git a/png/elastic-logstash.png b/png/elastic-logstash.png
index c0285cc0..a42eab76 100644
Binary files a/png/elastic-logstash.png and b/png/elastic-logstash.png differ
diff --git a/png/elastic.png b/png/elastic.png
index 2c3160ad..d18d3b35 100644
Binary files a/png/elastic.png and b/png/elastic.png differ
diff --git a/png/elasticsearch.png b/png/elasticsearch.png
index 2c3160ad..d18d3b35 100644
Binary files a/png/elasticsearch.png and b/png/elasticsearch.png differ
diff --git a/png/electron.png b/png/electron.png
index f0ee6422..1880262f 100644
Binary files a/png/electron.png and b/png/electron.png differ
diff --git a/png/electronic-arts.png b/png/electronic-arts.png
new file mode 100644
index 00000000..4aa127c9
Binary files /dev/null and b/png/electronic-arts.png differ
diff --git a/png/element.png b/png/element.png
index af61ec93..7e60d327 100644
Binary files a/png/element.png and b/png/element.png differ
diff --git a/png/eleventy-light.png b/png/eleventy-light.png
new file mode 100644
index 00000000..78c64e43
Binary files /dev/null and b/png/eleventy-light.png differ
diff --git a/png/eleventy.png b/png/eleventy.png
new file mode 100644
index 00000000..d2ad4f1e
Binary files /dev/null and b/png/eleventy.png differ
diff --git a/png/elysian.png b/png/elysian.png
new file mode 100644
index 00000000..e69382d3
Binary files /dev/null and b/png/elysian.png differ
diff --git a/png/emacs.png b/png/emacs.png
index b48f4000..f0f86595 100644
Binary files a/png/emacs.png and b/png/emacs.png differ
diff --git a/png/emby.png b/png/emby.png
index 34065491..ad7a8cd9 100644
Binary files a/png/emby.png and b/png/emby.png differ
diff --git a/png/embystat.png b/png/embystat.png
deleted file mode 100644
index 5a9a8e72..00000000
Binary files a/png/embystat.png and /dev/null differ
diff --git a/png/emq-light.png b/png/emq-light.png
index 339091e5..5a13757d 100644
Binary files a/png/emq-light.png and b/png/emq-light.png differ
diff --git a/png/emq.png b/png/emq.png
index 31724045..36fd33ba 100644
Binary files a/png/emq.png and b/png/emq.png differ
diff --git a/png/emqx.png b/png/emqx.png
index d1b67ac9..222496d9 100644
Binary files a/png/emqx.png and b/png/emqx.png differ
diff --git a/png/emulatorjs.png b/png/emulatorjs.png
index 21764117..f9f71a78 100644
Binary files a/png/emulatorjs.png and b/png/emulatorjs.png differ
diff --git a/png/enbizcard.png b/png/enbizcard.png
index 087ea3c6..dc18a978 100644
Binary files a/png/enbizcard.png and b/png/enbizcard.png differ
diff --git a/png/enclosed-light.png b/png/enclosed-light.png
new file mode 100644
index 00000000..9a05cef7
Binary files /dev/null and b/png/enclosed-light.png differ
diff --git a/png/enclosed.png b/png/enclosed.png
new file mode 100644
index 00000000..01f79384
Binary files /dev/null and b/png/enclosed.png differ
diff --git a/png/endless-light.png b/png/endless-light.png
new file mode 100644
index 00000000..875afa37
Binary files /dev/null and b/png/endless-light.png differ
diff --git a/png/endless.png b/png/endless.png
new file mode 100644
index 00000000..2b86d356
Binary files /dev/null and b/png/endless.png differ
diff --git a/png/endurain.png b/png/endurain.png
new file mode 100644
index 00000000..1827f22c
Binary files /dev/null and b/png/endurain.png differ
diff --git a/png/epic-games-light.png b/png/epic-games-light.png
new file mode 100644
index 00000000..5fd7085e
Binary files /dev/null and b/png/epic-games-light.png differ
diff --git a/png/epic-games.png b/png/epic-games.png
new file mode 100644
index 00000000..6642d8c6
Binary files /dev/null and b/png/epic-games.png differ
diff --git a/png/epson-iprint.png b/png/epson-iprint.png
deleted file mode 100644
index 1e1f050e..00000000
Binary files a/png/epson-iprint.png and /dev/null differ
diff --git a/png/ersatztv.png b/png/ersatztv.png
deleted file mode 100644
index ed7fc902..00000000
Binary files a/png/ersatztv.png and /dev/null differ
diff --git a/png/erste-george.png b/png/erste-george.png
index 68cb2c18..22345728 100644
Binary files a/png/erste-george.png and b/png/erste-george.png differ
diff --git a/png/erste.png b/png/erste.png
index adbb5767..9e59cb4b 100644
Binary files a/png/erste.png and b/png/erste.png differ
diff --git a/png/esphome-alt-light.png b/png/esphome-alt-light.png
new file mode 100644
index 00000000..44765adf
Binary files /dev/null and b/png/esphome-alt-light.png differ
diff --git a/png/esphome-alt.png b/png/esphome-alt.png
index e0589d73..ff109185 100644
Binary files a/png/esphome-alt.png and b/png/esphome-alt.png differ
diff --git a/png/esphome-light.png b/png/esphome-light.png
new file mode 100644
index 00000000..2938fb0b
Binary files /dev/null and b/png/esphome-light.png differ
diff --git a/png/esphome.png b/png/esphome.png
index 373bd1c1..96e2e1a4 100644
Binary files a/png/esphome.png and b/png/esphome.png differ
diff --git a/png/espressif.png b/png/espressif.png
index 503f87b7..cac26815 100644
Binary files a/png/espressif.png and b/png/espressif.png differ
diff --git a/png/etcd.png b/png/etcd.png
index 1b21d964..6bcd5d6f 100644
Binary files a/png/etcd.png and b/png/etcd.png differ
diff --git a/png/etesync.png b/png/etesync.png
index b5aa2a14..8c656996 100644
Binary files a/png/etesync.png and b/png/etesync.png differ
diff --git a/png/ethereum.png b/png/ethereum.png
index 78e72524..3ae76497 100644
Binary files a/png/ethereum.png and b/png/ethereum.png differ
diff --git a/png/etherpad.png b/png/etherpad.png
index 7b1fbcc4..89e914de 100644
Binary files a/png/etherpad.png and b/png/etherpad.png differ
diff --git a/png/evcc.png b/png/evcc.png
new file mode 100644
index 00000000..51d7c387
Binary files /dev/null and b/png/evcc.png differ
diff --git a/png/evebox.png b/png/evebox.png
deleted file mode 100644
index b95b491b..00000000
Binary files a/png/evebox.png and /dev/null differ
diff --git a/png/eweka.png b/png/eweka.png
deleted file mode 100644
index ec49957c..00000000
Binary files a/png/eweka.png and /dev/null differ
diff --git a/png/excalidraw-light.png b/png/excalidraw-light.png
deleted file mode 100644
index f472d7f6..00000000
Binary files a/png/excalidraw-light.png and /dev/null differ
diff --git a/png/excalidraw.png b/png/excalidraw.png
index 58b29dd8..aa999142 100644
Binary files a/png/excalidraw.png and b/png/excalidraw.png differ
diff --git a/png/f-droid.png b/png/f-droid.png
index 8e7b3eef..ad6332fe 100644
Binary files a/png/f-droid.png and b/png/f-droid.png differ
diff --git a/png/f5-networks.png b/png/f5-networks.png
deleted file mode 100644
index 894fd493..00000000
Binary files a/png/f5-networks.png and /dev/null differ
diff --git a/png/facebook-messenger.png b/png/facebook-messenger.png
index 46abcd01..63085cb1 100644
Binary files a/png/facebook-messenger.png and b/png/facebook-messenger.png differ
diff --git a/png/facebook.png b/png/facebook.png
index d57c0ec4..19d4d09f 100644
Binary files a/png/facebook.png and b/png/facebook.png differ
diff --git a/png/falcon-christmas.png b/png/falcon-christmas.png
deleted file mode 100644
index c5041387..00000000
Binary files a/png/falcon-christmas.png and /dev/null differ
diff --git a/png/falcon-player.png b/png/falcon-player.png
deleted file mode 100644
index c5041387..00000000
Binary files a/png/falcon-player.png and /dev/null differ
diff --git a/png/fast-com-light.png b/png/fast-com-light.png
index 052ed32b..0b85af0a 100644
Binary files a/png/fast-com-light.png and b/png/fast-com-light.png differ
diff --git a/png/fast-com.png b/png/fast-com.png
index a576bba9..132c212f 100644
Binary files a/png/fast-com.png and b/png/fast-com.png differ
diff --git a/png/fasten-health.png b/png/fasten-health.png
new file mode 100644
index 00000000..57e12b91
Binary files /dev/null and b/png/fasten-health.png differ
diff --git a/png/fastmail.png b/png/fastmail.png
index 8d7f61b3..d0e64580 100644
Binary files a/png/fastmail.png and b/png/fastmail.png differ
diff --git a/png/fedora-alt.png b/png/fedora-alt.png
index 31b36353..38ac85b0 100644
Binary files a/png/fedora-alt.png and b/png/fedora-alt.png differ
diff --git a/png/fedora.png b/png/fedora.png
index 80de32b7..bac7e263 100644
Binary files a/png/fedora.png and b/png/fedora.png differ
diff --git a/png/feedbase-light.png b/png/feedbase-light.png
new file mode 100644
index 00000000..4a130bfe
Binary files /dev/null and b/png/feedbase-light.png differ
diff --git a/png/feedbase.png b/png/feedbase.png
new file mode 100644
index 00000000..016586e9
Binary files /dev/null and b/png/feedbase.png differ
diff --git a/png/feedbin-light.png b/png/feedbin-light.png
new file mode 100644
index 00000000..41f1759b
Binary files /dev/null and b/png/feedbin-light.png differ
diff --git a/png/feedbin.png b/png/feedbin.png
new file mode 100644
index 00000000..9d2ddaa4
Binary files /dev/null and b/png/feedbin.png differ
diff --git a/png/feedly.png b/png/feedly.png
index 3146ec96..9ea59e93 100644
Binary files a/png/feedly.png and b/png/feedly.png differ
diff --git a/png/feedlynx-light.png b/png/feedlynx-light.png
new file mode 100644
index 00000000..24c3df63
Binary files /dev/null and b/png/feedlynx-light.png differ
diff --git a/png/feedlynx.png b/png/feedlynx.png
new file mode 100644
index 00000000..7c24c930
Binary files /dev/null and b/png/feedlynx.png differ
diff --git a/png/feishin.png b/png/feishin.png
deleted file mode 100644
index 5fe967eb..00000000
Binary files a/png/feishin.png and /dev/null differ
diff --git a/png/fenrus-light.png b/png/fenrus-light.png
deleted file mode 100644
index 793ff210..00000000
Binary files a/png/fenrus-light.png and /dev/null differ
diff --git a/png/fenrus.png b/png/fenrus.png
index e19bb116..692f7f33 100644
Binary files a/png/fenrus.png and b/png/fenrus.png differ
diff --git a/png/ferdi.png b/png/ferdi.png
deleted file mode 100644
index 8f230f97..00000000
Binary files a/png/ferdi.png and /dev/null differ
diff --git a/png/ferdium.png b/png/ferdium.png
index 225833bc..9fdbac49 100644
Binary files a/png/ferdium.png and b/png/ferdium.png differ
diff --git a/png/fermentrack.png b/png/fermentrack.png
deleted file mode 100644
index 972f1f34..00000000
Binary files a/png/fermentrack.png and /dev/null differ
diff --git a/png/ferretdb-white.png b/png/ferretdb-white.png
deleted file mode 100644
index 12103976..00000000
Binary files a/png/ferretdb-white.png and /dev/null differ
diff --git a/png/ferretdb.png b/png/ferretdb.png
index b5060d01..e07eb889 100644
Binary files a/png/ferretdb.png and b/png/ferretdb.png differ
diff --git a/png/fider.png b/png/fider.png
new file mode 100644
index 00000000..c0412e8d
Binary files /dev/null and b/png/fider.png differ
diff --git a/png/filebot.png b/png/filebot.png
index ff91e12c..c41a49ce 100644
Binary files a/png/filebot.png and b/png/filebot.png differ
diff --git a/png/filebrowser.png b/png/filebrowser.png
index 7e54287d..0c612702 100644
Binary files a/png/filebrowser.png and b/png/filebrowser.png differ
diff --git a/png/filecloud-light.png b/png/filecloud-light.png
deleted file mode 100644
index ed343a92..00000000
Binary files a/png/filecloud-light.png and /dev/null differ
diff --git a/png/filecloud.png b/png/filecloud.png
index 64e5c2b7..7505165f 100644
Binary files a/png/filecloud.png and b/png/filecloud.png differ
diff --git a/png/fileflows.png b/png/fileflows.png
index a3b64f03..632464a7 100644
Binary files a/png/fileflows.png and b/png/fileflows.png differ
diff --git a/png/filegator.png b/png/filegator.png
index 2b06e2ae..9ea1584d 100644
Binary files a/png/filegator.png and b/png/filegator.png differ
diff --git a/png/filepizza.png b/png/filepizza.png
deleted file mode 100644
index 7fe6305d..00000000
Binary files a/png/filepizza.png and /dev/null differ
diff --git a/png/filerun.png b/png/filerun.png
index 6362493c..a2db5199 100644
Binary files a/png/filerun.png and b/png/filerun.png differ
diff --git a/png/files.png b/png/files.png
index af38d9af..172bff2d 100644
Binary files a/png/files.png and b/png/files.png differ
diff --git a/png/filestash.png b/png/filestash.png
new file mode 100644
index 00000000..0d3c9ca3
Binary files /dev/null and b/png/filestash.png differ
diff --git a/png/filezilla.png b/png/filezilla.png
index b88e9c49..63a51e2c 100644
Binary files a/png/filezilla.png and b/png/filezilla.png differ
diff --git a/png/finamp-dark.png b/png/finamp-dark.png
deleted file mode 100644
index 9ab431fb..00000000
Binary files a/png/finamp-dark.png and /dev/null differ
diff --git a/png/finamp-light.png b/png/finamp-light.png
deleted file mode 100644
index 765fee5a..00000000
Binary files a/png/finamp-light.png and /dev/null differ
diff --git a/png/finamp.png b/png/finamp.png
index 4ce991fa..c137641c 100644
Binary files a/png/finamp.png and b/png/finamp.png differ
diff --git a/png/findroid-dark.png b/png/findroid-dark.png
deleted file mode 100644
index 6f14224a..00000000
Binary files a/png/findroid-dark.png and /dev/null differ
diff --git a/png/findroid-light.png b/png/findroid-light.png
deleted file mode 100644
index 7b712e25..00000000
Binary files a/png/findroid-light.png and /dev/null differ
diff --git a/png/findroid.png b/png/findroid.png
index ecf04c8a..d2df7f65 100644
Binary files a/png/findroid.png and b/png/findroid.png differ
diff --git a/png/fios-light.png b/png/fios-light.png
index f6185fee..ffc1786d 100644
Binary files a/png/fios-light.png and b/png/fios-light.png differ
diff --git a/png/fios.png b/png/fios.png
index 5111ebac..39d354c5 100644
Binary files a/png/fios.png and b/png/fios.png differ
diff --git a/png/firebase.png b/png/firebase.png
index 79ca47c1..7c317758 100644
Binary files a/png/firebase.png and b/png/firebase.png differ
diff --git a/png/firefly-iii.png b/png/firefly-iii.png
new file mode 100644
index 00000000..6abbae50
Binary files /dev/null and b/png/firefly-iii.png differ
diff --git a/png/firefly.png b/png/firefly.png
index 51f89a2b..6abbae50 100644
Binary files a/png/firefly.png and b/png/firefly.png differ
diff --git a/png/firefox-beta.png b/png/firefox-beta.png
index 629fdf5a..c8060d9c 100644
Binary files a/png/firefox-beta.png and b/png/firefox-beta.png differ
diff --git a/png/firefox-developer-edition.png b/png/firefox-developer-edition.png
index a580550f..07b07e9a 100644
Binary files a/png/firefox-developer-edition.png and b/png/firefox-developer-edition.png differ
diff --git a/png/firefox-lite.png b/png/firefox-lite.png
index ddef7761..550bf84b 100644
Binary files a/png/firefox-lite.png and b/png/firefox-lite.png differ
diff --git a/png/firefox-nightly.png b/png/firefox-nightly.png
index 8b73982e..d255189f 100644
Binary files a/png/firefox-nightly.png and b/png/firefox-nightly.png differ
diff --git a/png/firefox-reality.png b/png/firefox-reality.png
index a548e40f..2d3b2060 100644
Binary files a/png/firefox-reality.png and b/png/firefox-reality.png differ
diff --git a/png/firefox-send.png b/png/firefox-send.png
index e57083f3..e957f668 100644
Binary files a/png/firefox-send.png and b/png/firefox-send.png differ
diff --git a/png/firefox.png b/png/firefox.png
index 6d182b99..d22ad177 100644
Binary files a/png/firefox.png and b/png/firefox.png differ
diff --git a/png/fireshare.png b/png/fireshare.png
deleted file mode 100644
index 14a1438b..00000000
Binary files a/png/fireshare.png and /dev/null differ
diff --git a/png/firewalla.png b/png/firewalla.png
index 3814f116..d8139aeb 100644
Binary files a/png/firewalla.png and b/png/firewalla.png differ
diff --git a/png/fittrackee.png b/png/fittrackee.png
new file mode 100644
index 00000000..78664344
Binary files /dev/null and b/png/fittrackee.png differ
diff --git a/png/fladder.png b/png/fladder.png
new file mode 100644
index 00000000..9196fef9
Binary files /dev/null and b/png/fladder.png differ
diff --git a/png/flame.png b/png/flame.png
deleted file mode 100644
index 473084e6..00000000
Binary files a/png/flame.png and /dev/null differ
diff --git a/png/flaresolverr.png b/png/flaresolverr.png
index 26d75d23..999fe4d7 100644
Binary files a/png/flaresolverr.png and b/png/flaresolverr.png differ
diff --git a/png/flarum.png b/png/flarum.png
index 10c06d4d..589086fb 100644
Binary files a/png/flarum.png and b/png/flarum.png differ
diff --git a/png/flat-notes.png b/png/flat-notes.png
deleted file mode 100644
index 7f81fb80..00000000
Binary files a/png/flat-notes.png and /dev/null differ
diff --git a/png/flathub.png b/png/flathub.png
index bced00ee..401ac095 100644
Binary files a/png/flathub.png and b/png/flathub.png differ
diff --git a/png/flatnotes.png b/png/flatnotes.png
new file mode 100644
index 00000000..e299130f
Binary files /dev/null and b/png/flatnotes.png differ
diff --git a/png/flatpak.png b/png/flatpak.png
index 76a983e4..b00f389a 100644
Binary files a/png/flatpak.png and b/png/flatpak.png differ
diff --git a/png/flexget.png b/png/flexget.png
deleted file mode 100644
index b3d66544..00000000
Binary files a/png/flexget.png and /dev/null differ
diff --git a/png/flightaware.png b/png/flightaware.png
deleted file mode 100644
index f1e87c24..00000000
Binary files a/png/flightaware.png and /dev/null differ
diff --git a/png/flightradar24-light.png b/png/flightradar24-light.png
new file mode 100644
index 00000000..156f1ec4
Binary files /dev/null and b/png/flightradar24-light.png differ
diff --git a/png/flightradar24.png b/png/flightradar24.png
index 1f49b89c..6e37f8b3 100644
Binary files a/png/flightradar24.png and b/png/flightradar24.png differ
diff --git a/png/flogo.png b/png/flogo.png
deleted file mode 100644
index 399ceaf2..00000000
Binary files a/png/flogo.png and /dev/null differ
diff --git a/png/flood.png b/png/flood.png
index 3e9dfc80..87af5f3a 100644
Binary files a/png/flood.png and b/png/flood.png differ
diff --git a/png/fluffychat-dark.png b/png/fluffychat-dark.png
new file mode 100644
index 00000000..3804c21b
Binary files /dev/null and b/png/fluffychat-dark.png differ
diff --git a/png/fluffychat.png b/png/fluffychat.png
index c602438a..b8a030ed 100644
Binary files a/png/fluffychat.png and b/png/fluffychat.png differ
diff --git a/png/fluidd.png b/png/fluidd.png
index 1f27e48d..aa0cbd85 100644
Binary files a/png/fluidd.png and b/png/fluidd.png differ
diff --git a/png/flux-cd.png b/png/flux-cd.png
index 702ddd29..da23de31 100644
Binary files a/png/flux-cd.png and b/png/flux-cd.png differ
diff --git a/png/fly-io.png b/png/fly-io.png
index 7654348b..99ae257a 100644
Binary files a/png/fly-io.png and b/png/fly-io.png differ
diff --git a/png/focalboard.png b/png/focalboard.png
index 6736b67f..3348ff1d 100644
Binary files a/png/focalboard.png and b/png/focalboard.png differ
diff --git a/png/foldingathome.png b/png/foldingathome.png
index 4df07476..7fa1b235 100644
Binary files a/png/foldingathome.png and b/png/foldingathome.png differ
diff --git a/png/fontawesome.png b/png/fontawesome.png
index bb847675..0fe9fc5a 100644
Binary files a/png/fontawesome.png and b/png/fontawesome.png differ
diff --git a/png/forgejo.png b/png/forgejo.png
index 387b27f9..e5598b92 100644
Binary files a/png/forgejo.png and b/png/forgejo.png differ
diff --git a/png/forte-light.png b/png/forte-light.png
new file mode 100644
index 00000000..08422df1
Binary files /dev/null and b/png/forte-light.png differ
diff --git a/png/forte.png b/png/forte.png
new file mode 100644
index 00000000..1c1a6842
Binary files /dev/null and b/png/forte.png differ
diff --git a/png/fortinet.png b/png/fortinet.png
index ca9f7546..09af2e01 100644
Binary files a/png/fortinet.png and b/png/fortinet.png differ
diff --git a/png/foscam.png b/png/foscam.png
deleted file mode 100644
index 1b68b0a9..00000000
Binary files a/png/foscam.png and /dev/null differ
diff --git a/png/fossil.png b/png/fossil.png
index 927d5659..b710c277 100644
Binary files a/png/fossil.png and b/png/fossil.png differ
diff --git a/png/foundry-vtt.png b/png/foundry-vtt.png
deleted file mode 100644
index 11795fe3..00000000
Binary files a/png/foundry-vtt.png and /dev/null differ
diff --git a/png/franz.png b/png/franz.png
index 1e35ec60..142e889e 100644
Binary files a/png/franz.png and b/png/franz.png differ
diff --git a/png/freebox-delta.png b/png/freebox-delta.png
deleted file mode 100644
index 94e24374..00000000
Binary files a/png/freebox-delta.png and /dev/null differ
diff --git a/png/freebox-pop.png b/png/freebox-pop.png
deleted file mode 100644
index e2a4b96f..00000000
Binary files a/png/freebox-pop.png and /dev/null differ
diff --git a/png/freebox-revolution.png b/png/freebox-revolution.png
deleted file mode 100644
index bc65b7fd..00000000
Binary files a/png/freebox-revolution.png and /dev/null differ
diff --git a/png/freedombox.png b/png/freedombox.png
index 6b26efcc..d56ac4a7 100644
Binary files a/png/freedombox.png and b/png/freedombox.png differ
diff --git a/png/freeipa.png b/png/freeipa.png
index 947278be..489e4d1a 100644
Binary files a/png/freeipa.png and b/png/freeipa.png differ
diff --git a/png/freenas-light.png b/png/freenas-light.png
deleted file mode 100644
index 49e93428..00000000
Binary files a/png/freenas-light.png and /dev/null differ
diff --git a/png/freenas.png b/png/freenas.png
index 51ee445f..6e412a39 100644
Binary files a/png/freenas.png and b/png/freenas.png differ
diff --git a/png/freenom.png b/png/freenom.png
index 75cade91..8c58ddeb 100644
Binary files a/png/freenom.png and b/png/freenom.png differ
diff --git a/png/freepbx.png b/png/freepbx.png
index 3932e620..a5e4e34f 100644
Binary files a/png/freepbx.png and b/png/freepbx.png differ
diff --git a/png/freescout.png b/png/freescout.png
deleted file mode 100644
index 27cb8bb5..00000000
Binary files a/png/freescout.png and /dev/null differ
diff --git a/png/freshping-dark.png b/png/freshping-dark.png
new file mode 100644
index 00000000..9848c0dc
Binary files /dev/null and b/png/freshping-dark.png differ
diff --git a/png/freshping.png b/png/freshping.png
index 6efff533..ec5da460 100644
Binary files a/png/freshping.png and b/png/freshping.png differ
diff --git a/png/freshrss.png b/png/freshrss.png
index 97ad00a8..b6039741 100644
Binary files a/png/freshrss.png and b/png/freshrss.png differ
diff --git a/png/friendica.png b/png/friendica.png
index a5bd117d..94d6db32 100644
Binary files a/png/friendica.png and b/png/friendica.png differ
diff --git a/png/frigate-light.png b/png/frigate-light.png
index 43e1bc81..820f87ad 100644
Binary files a/png/frigate-light.png and b/png/frigate-light.png differ
diff --git a/png/frigate.png b/png/frigate.png
index ee206eff..a9bd6dc5 100644
Binary files a/png/frigate.png and b/png/frigate.png differ
diff --git a/png/fritzbox-light.png b/png/fritzbox-light.png
new file mode 100644
index 00000000..6bf59fa7
Binary files /dev/null and b/png/fritzbox-light.png differ
diff --git a/png/fritzbox.png b/png/fritzbox.png
new file mode 100644
index 00000000..c13a2c7e
Binary files /dev/null and b/png/fritzbox.png differ
diff --git a/png/fronius.png b/png/fronius.png
index c30465e5..d67aaa0c 100644
Binary files a/png/fronius.png and b/png/fronius.png differ
diff --git a/png/fulcio.png b/png/fulcio.png
index 68734e08..f27396ec 100644
Binary files a/png/fulcio.png and b/png/fulcio.png differ
diff --git a/png/funkwhale-light.png b/png/funkwhale-light.png
new file mode 100644
index 00000000..e028e42a
Binary files /dev/null and b/png/funkwhale-light.png differ
diff --git a/png/funkwhale.png b/png/funkwhale.png
index 1ea296f7..479d26d8 100644
Binary files a/png/funkwhale.png and b/png/funkwhale.png differ
diff --git a/png/fusionauth-light.png b/png/fusionauth-light.png
deleted file mode 100644
index 1a0c402c..00000000
Binary files a/png/fusionauth-light.png and /dev/null differ
diff --git a/png/fusionauth.png b/png/fusionauth.png
index e3726ef9..b8a3cf8b 100644
Binary files a/png/fusionauth.png and b/png/fusionauth.png differ
diff --git a/png/fusionpbx.png b/png/fusionpbx.png
deleted file mode 100644
index e655183e..00000000
Binary files a/png/fusionpbx.png and /dev/null differ
diff --git a/png/gamevault.png b/png/gamevault.png
deleted file mode 100644
index a4c5b764..00000000
Binary files a/png/gamevault.png and /dev/null differ
diff --git a/png/gameyfin-light.png b/png/gameyfin-light.png
deleted file mode 100644
index 2b9a9fb6..00000000
Binary files a/png/gameyfin-light.png and /dev/null differ
diff --git a/png/gameyfin.png b/png/gameyfin.png
deleted file mode 100644
index 3ca8b5b0..00000000
Binary files a/png/gameyfin.png and /dev/null differ
diff --git a/png/gaps.png b/png/gaps.png
deleted file mode 100644
index 57ed1ee9..00000000
Binary files a/png/gaps.png and /dev/null differ
diff --git a/png/garage.png b/png/garage.png
new file mode 100644
index 00000000..80712f49
Binary files /dev/null and b/png/garage.png differ
diff --git a/png/gaseous.png b/png/gaseous.png
deleted file mode 100644
index 5f8eaba8..00000000
Binary files a/png/gaseous.png and /dev/null differ
diff --git a/png/gatsby.png b/png/gatsby.png
index 4aa7b0b4..834edbec 100644
Binary files a/png/gatsby.png and b/png/gatsby.png differ
diff --git a/png/gatus.png b/png/gatus.png
index 27a09d4a..e55e8b2c 100644
Binary files a/png/gatus.png and b/png/gatus.png differ
diff --git a/png/gboard.png b/png/gboard.png
index 1570cab3..e1c2d9d1 100644
Binary files a/png/gboard.png and b/png/gboard.png differ
diff --git a/png/geckoview.png b/png/geckoview.png
index 25e621f1..86f6a270 100644
Binary files a/png/geckoview.png and b/png/geckoview.png differ
diff --git a/png/gentoo-linux.png b/png/gentoo-linux.png
new file mode 100644
index 00000000..712bab0c
Binary files /dev/null and b/png/gentoo-linux.png differ
diff --git a/png/gentoo.png b/png/gentoo.png
deleted file mode 100644
index f03bb1eb..00000000
Binary files a/png/gentoo.png and /dev/null differ
diff --git a/png/gerbera.png b/png/gerbera.png
index 7509fc99..627e5c4c 100644
Binary files a/png/gerbera.png and b/png/gerbera.png differ
diff --git a/png/get-iplayer.png b/png/get-iplayer.png
index 24a68f64..fdfab748 100644
Binary files a/png/get-iplayer.png and b/png/get-iplayer.png differ
diff --git a/png/ghost-light.png b/png/ghost-light.png
deleted file mode 100644
index 3c687df3..00000000
Binary files a/png/ghost-light.png and /dev/null differ
diff --git a/png/ghost.png b/png/ghost.png
deleted file mode 100644
index 47fc59a8..00000000
Binary files a/png/ghost.png and /dev/null differ
diff --git a/png/ghostfolio.png b/png/ghostfolio.png
index c054b3d7..f19f518e 100644
Binary files a/png/ghostfolio.png and b/png/ghostfolio.png differ
diff --git a/png/gigaset.png b/png/gigaset.png
index 6835eedf..5a1719ee 100644
Binary files a/png/gigaset.png and b/png/gigaset.png differ
diff --git a/png/gimp.png b/png/gimp.png
new file mode 100644
index 00000000..78e3b054
Binary files /dev/null and b/png/gimp.png differ
diff --git a/png/git.png b/png/git.png
index 07dc0bc0..9f72f860 100644
Binary files a/png/git.png and b/png/git.png differ
diff --git a/png/gitbook.png b/png/gitbook.png
index f35c9905..bb486697 100644
Binary files a/png/gitbook.png and b/png/gitbook.png differ
diff --git a/png/gitea.png b/png/gitea.png
index a27a3120..e9807920 100644
Binary files a/png/gitea.png and b/png/gitea.png differ
diff --git a/png/gitee.png b/png/gitee.png
index e2c20d84..9b0c4616 100644
Binary files a/png/gitee.png and b/png/gitee.png differ
diff --git a/png/github-light.png b/png/github-light.png
index 2c951a05..d4df6ebf 100644
Binary files a/png/github-light.png and b/png/github-light.png differ
diff --git a/png/github.png b/png/github.png
index 1fc4c80f..9e0db4c4 100644
Binary files a/png/github.png and b/png/github.png differ
diff --git a/png/gitlab.png b/png/gitlab.png
index de26ffd3..c733b4ce 100644
Binary files a/png/gitlab.png and b/png/gitlab.png differ
diff --git a/png/gitsign.png b/png/gitsign.png
index 24a8c792..9f7717ed 100644
Binary files a/png/gitsign.png and b/png/gitsign.png differ
diff --git a/png/gladys-assistant.png b/png/gladys-assistant.png
index 190579c4..7032bffb 100644
Binary files a/png/gladys-assistant.png and b/png/gladys-assistant.png differ
diff --git a/png/glance-light.png b/png/glance-light.png
new file mode 100644
index 00000000..bdae33c0
Binary files /dev/null and b/png/glance-light.png differ
diff --git a/png/glance.png b/png/glance.png
new file mode 100644
index 00000000..2757cd84
Binary files /dev/null and b/png/glance.png differ
diff --git a/png/glances-light.png b/png/glances-light.png
index fe7bac89..55540a90 100644
Binary files a/png/glances-light.png and b/png/glances-light.png differ
diff --git a/png/glances.png b/png/glances.png
index e6b1e4e1..695bd7c4 100644
Binary files a/png/glances.png and b/png/glances.png differ
diff --git a/png/glpi.png b/png/glpi.png
index 54a073e7..2af1c3da 100644
Binary files a/png/glpi.png and b/png/glpi.png differ
diff --git a/png/gluetun.png b/png/gluetun.png
index fe4b3110..c785372a 100644
Binary files a/png/gluetun.png and b/png/gluetun.png differ
diff --git a/png/gmail.png b/png/gmail.png
index f5e64c87..4d226601 100644
Binary files a/png/gmail.png and b/png/gmail.png differ
diff --git a/png/go.png b/png/go.png
index f4e846c2..a1fef74c 100644
Binary files a/png/go.png and b/png/go.png differ
diff --git a/png/go2rtc-alt.png b/png/go2rtc-alt.png
deleted file mode 100644
index 709b38f0..00000000
Binary files a/png/go2rtc-alt.png and /dev/null differ
diff --git a/png/go2rtc.png b/png/go2rtc.png
deleted file mode 100644
index 2223626b..00000000
Binary files a/png/go2rtc.png and /dev/null differ
diff --git a/png/goaccess-light.png b/png/goaccess-light.png
new file mode 100644
index 00000000..0dbf1ace
Binary files /dev/null and b/png/goaccess-light.png differ
diff --git a/png/goaccess.png b/png/goaccess.png
index 3049be16..b79c5e39 100644
Binary files a/png/goaccess.png and b/png/goaccess.png differ
diff --git a/png/godaddy-alt.png b/png/godaddy-alt.png
index f23911e8..8f02eea4 100644
Binary files a/png/godaddy-alt.png and b/png/godaddy-alt.png differ
diff --git a/png/godaddy.png b/png/godaddy.png
index 68d112e9..1ecdb461 100644
Binary files a/png/godaddy.png and b/png/godaddy.png differ
diff --git a/png/gogs.png b/png/gogs.png
deleted file mode 100644
index 28e35265..00000000
Binary files a/png/gogs.png and /dev/null differ
diff --git a/png/gollum.png b/png/gollum.png
index ed01c954..2c723634 100644
Binary files a/png/gollum.png and b/png/gollum.png differ
diff --git a/png/gonic.png b/png/gonic.png
deleted file mode 100644
index ff5a2752..00000000
Binary files a/png/gonic.png and /dev/null differ
diff --git a/png/goodreads.png b/png/goodreads.png
index c92dc217..f4ce97f2 100644
Binary files a/png/goodreads.png and b/png/goodreads.png differ
diff --git a/png/google-admin.png b/png/google-admin.png
index 33205e2f..079d5bb8 100644
Binary files a/png/google-admin.png and b/png/google-admin.png differ
diff --git a/png/google-admob.png b/png/google-admob.png
index 24371874..14d985ad 100644
Binary files a/png/google-admob.png and b/png/google-admob.png differ
diff --git a/png/google-alerts.png b/png/google-alerts.png
index 9a509e46..c6d8d01d 100644
Binary files a/png/google-alerts.png and b/png/google-alerts.png differ
diff --git a/png/google-analytics.png b/png/google-analytics.png
index a31f5db9..331a5bc4 100644
Binary files a/png/google-analytics.png and b/png/google-analytics.png differ
diff --git a/png/google-assistant.png b/png/google-assistant.png
index 41b9dfbb..2962774f 100644
Binary files a/png/google-assistant.png and b/png/google-assistant.png differ
diff --git a/png/google-calendar.png b/png/google-calendar.png
index e3b4822b..89a2f5e7 100644
Binary files a/png/google-calendar.png and b/png/google-calendar.png differ
diff --git a/png/google-chat.png b/png/google-chat.png
index 3fe6a39f..1c95daaf 100644
Binary files a/png/google-chat.png and b/png/google-chat.png differ
diff --git a/png/google-chrome.png b/png/google-chrome.png
new file mode 100644
index 00000000..95236af8
Binary files /dev/null and b/png/google-chrome.png differ
diff --git a/png/google-classroom.png b/png/google-classroom.png
index 995ae9f3..7af7dfd2 100644
Binary files a/png/google-classroom.png and b/png/google-classroom.png differ
diff --git a/png/google-cloud-platform.png b/png/google-cloud-platform.png
index 3f9e7db4..f7c3508b 100644
Binary files a/png/google-cloud-platform.png and b/png/google-cloud-platform.png differ
diff --git a/png/google-cloud-print.png b/png/google-cloud-print.png
index 799f8afd..f13cc0f3 100644
Binary files a/png/google-cloud-print.png and b/png/google-cloud-print.png differ
diff --git a/png/google-compute-engine.png b/png/google-compute-engine.png
index 3efec7db..bb9492a6 100644
Binary files a/png/google-compute-engine.png and b/png/google-compute-engine.png differ
diff --git a/png/google-contacts.png b/png/google-contacts.png
index 7c50f167..98885adc 100644
Binary files a/png/google-contacts.png and b/png/google-contacts.png differ
diff --git a/png/google-docs.png b/png/google-docs.png
index 26e69050..3171614c 100644
Binary files a/png/google-docs.png and b/png/google-docs.png differ
diff --git a/png/google-domains.png b/png/google-domains.png
index fbc51e5b..c689d128 100644
Binary files a/png/google-domains.png and b/png/google-domains.png differ
diff --git a/png/google-drive.png b/png/google-drive.png
index af1e5607..1957c726 100644
Binary files a/png/google-drive.png and b/png/google-drive.png differ
diff --git a/png/google-earth.png b/png/google-earth.png
index 70396a20..7b1e2bcf 100644
Binary files a/png/google-earth.png and b/png/google-earth.png differ
diff --git a/png/google-fi.png b/png/google-fi.png
index 1eedd967..febd6a84 100644
Binary files a/png/google-fi.png and b/png/google-fi.png differ
diff --git a/png/google-fit.png b/png/google-fit.png
index 0cdfc435..0b8faa40 100644
Binary files a/png/google-fit.png and b/png/google-fit.png differ
diff --git a/png/google-fonts.png b/png/google-fonts.png
index 51e5173a..df380c1e 100644
Binary files a/png/google-fonts.png and b/png/google-fonts.png differ
diff --git a/png/google-forms.png b/png/google-forms.png
index 488050c9..95949200 100644
Binary files a/png/google-forms.png and b/png/google-forms.png differ
diff --git a/png/google-gemini.png b/png/google-gemini.png
index 369cb669..68196eaf 100644
Binary files a/png/google-gemini.png and b/png/google-gemini.png differ
diff --git a/png/google-home.png b/png/google-home.png
index 109d0659..86b6eedf 100644
Binary files a/png/google-home.png and b/png/google-home.png differ
diff --git a/png/google-keep.png b/png/google-keep.png
index 63322e42..95d17547 100644
Binary files a/png/google-keep.png and b/png/google-keep.png differ
diff --git a/png/google-lens.png b/png/google-lens.png
index 64f0974e..d4e780c2 100644
Binary files a/png/google-lens.png and b/png/google-lens.png differ
diff --git a/png/google-maps.png b/png/google-maps.png
index 88e0fdf6..35aa24ef 100644
Binary files a/png/google-maps.png and b/png/google-maps.png differ
diff --git a/png/google-meet.png b/png/google-meet.png
index ac1557fa..96a3a79c 100644
Binary files a/png/google-meet.png and b/png/google-meet.png differ
diff --git a/png/google-messages.png b/png/google-messages.png
index 975beedc..c8d93217 100644
Binary files a/png/google-messages.png and b/png/google-messages.png differ
diff --git a/png/google-news.png b/png/google-news.png
index 30d5b7a7..05f647c6 100644
Binary files a/png/google-news.png and b/png/google-news.png differ
diff --git a/png/google-one.png b/png/google-one.png
index 0b692602..ac36f4ca 100644
Binary files a/png/google-one.png and b/png/google-one.png differ
diff --git a/png/google-pay.png b/png/google-pay.png
index d42b1e47..15a89291 100644
Binary files a/png/google-pay.png and b/png/google-pay.png differ
diff --git a/png/google-photos.png b/png/google-photos.png
index 34a06a39..8b8c642a 100644
Binary files a/png/google-photos.png and b/png/google-photos.png differ
diff --git a/png/google-play-books.png b/png/google-play-books.png
index f16c2fe6..2dee68db 100644
Binary files a/png/google-play-books.png and b/png/google-play-books.png differ
diff --git a/png/google-play-games.png b/png/google-play-games.png
index 732c2db2..87ac9f2d 100644
Binary files a/png/google-play-games.png and b/png/google-play-games.png differ
diff --git a/png/google-play.png b/png/google-play.png
index 9d82be10..fbf30338 100644
Binary files a/png/google-play.png and b/png/google-play.png differ
diff --git a/png/google-podcasts.png b/png/google-podcasts.png
index 087f5498..d7004607 100644
Binary files a/png/google-podcasts.png and b/png/google-podcasts.png differ
diff --git a/png/google-scholar.png b/png/google-scholar.png
index a326849e..5ce7018f 100644
Binary files a/png/google-scholar.png and b/png/google-scholar.png differ
diff --git a/png/google-search-console.png b/png/google-search-console.png
index 258b405e..5df869b0 100644
Binary files a/png/google-search-console.png and b/png/google-search-console.png differ
diff --git a/png/google-sheets.png b/png/google-sheets.png
index 9566453d..3111b2ce 100644
Binary files a/png/google-sheets.png and b/png/google-sheets.png differ
diff --git a/png/google-shopping.png b/png/google-shopping.png
index 9175c951..320bb37d 100644
Binary files a/png/google-shopping.png and b/png/google-shopping.png differ
diff --git a/png/google-sites.png b/png/google-sites.png
index e484c160..a9d3457a 100644
Binary files a/png/google-sites.png and b/png/google-sites.png differ
diff --git a/png/google-slides.png b/png/google-slides.png
index ff9ac476..025f7f22 100644
Binary files a/png/google-slides.png and b/png/google-slides.png differ
diff --git a/png/google-street-view.png b/png/google-street-view.png
index 9b7a58fb..c0250488 100644
Binary files a/png/google-street-view.png and b/png/google-street-view.png differ
diff --git a/png/google-tag-manager.png b/png/google-tag-manager.png
new file mode 100644
index 00000000..8dd2d242
Binary files /dev/null and b/png/google-tag-manager.png differ
diff --git a/png/google-translate.png b/png/google-translate.png
index 3ec034ce..36e75257 100644
Binary files a/png/google-translate.png and b/png/google-translate.png differ
diff --git a/png/google-tv.png b/png/google-tv.png
index 8ab58319..a95c452d 100644
Binary files a/png/google-tv.png and b/png/google-tv.png differ
diff --git a/png/google-voice.png b/png/google-voice.png
index 98048a0a..c3b2503e 100644
Binary files a/png/google-voice.png and b/png/google-voice.png differ
diff --git a/png/google-wallet.png b/png/google-wallet.png
index 2c10ef2d..98552289 100644
Binary files a/png/google-wallet.png and b/png/google-wallet.png differ
diff --git a/png/google-wifi.png b/png/google-wifi.png
index e624945a..67b247ac 100644
Binary files a/png/google-wifi.png and b/png/google-wifi.png differ
diff --git a/png/google.png b/png/google.png
index 3b8b06c4..7fb3250a 100644
Binary files a/png/google.png and b/png/google.png differ
diff --git a/png/gotify.png b/png/gotify.png
index aa4549ca..7817178b 100644
Binary files a/png/gotify.png and b/png/gotify.png differ
diff --git a/png/gotosocial.png b/png/gotosocial.png
new file mode 100644
index 00000000..cc364aeb
Binary files /dev/null and b/png/gotosocial.png differ
diff --git a/png/gpt4free.png b/png/gpt4free.png
index ae601c93..9101f89b 100644
Binary files a/png/gpt4free.png and b/png/gpt4free.png differ
diff --git a/png/grafana.png b/png/grafana.png
index 78b2f8cc..38daba3f 100644
Binary files a/png/grafana.png and b/png/grafana.png differ
diff --git a/png/gramps.png b/png/gramps.png
index 49365daa..73c8c355 100644
Binary files a/png/gramps.png and b/png/gramps.png differ
diff --git a/png/grandstream.png b/png/grandstream.png
index 1dbaa2c2..c0ebe52e 100644
Binary files a/png/grandstream.png and b/png/grandstream.png differ
diff --git a/png/grav-light.png b/png/grav-light.png
index 4f4f6f93..f04bda28 100644
Binary files a/png/grav-light.png and b/png/grav-light.png differ
diff --git a/png/grav.png b/png/grav.png
index 8ca64a4c..a33ee7fe 100644
Binary files a/png/grav.png and b/png/grav.png differ
diff --git a/png/graylog.png b/png/graylog.png
index f29da6f6..c0e6ccbd 100644
Binary files a/png/graylog.png and b/png/graylog.png differ
diff --git a/png/greenbone-light.png b/png/greenbone-light.png
new file mode 100644
index 00000000..9ce83276
Binary files /dev/null and b/png/greenbone-light.png differ
diff --git a/png/greenbone.png b/png/greenbone.png
index 30a8f9b5..e9d6850d 100644
Binary files a/png/greenbone.png and b/png/greenbone.png differ
diff --git a/png/grimoire.png b/png/grimoire.png
new file mode 100644
index 00000000..66527740
Binary files /dev/null and b/png/grimoire.png differ
diff --git a/png/grist.png b/png/grist.png
index e5bdcf6d..2a1c40ad 100644
Binary files a/png/grist.png and b/png/grist.png differ
diff --git a/png/grocy.png b/png/grocy.png
index b89e9c6c..1ac44320 100644
Binary files a/png/grocy.png and b/png/grocy.png differ
diff --git a/png/grype.png b/png/grype.png
deleted file mode 100644
index 01bbb22e..00000000
Binary files a/png/grype.png and /dev/null differ
diff --git a/png/guacamole-light.png b/png/guacamole-light.png
index 083c9769..0b2d6350 100644
Binary files a/png/guacamole-light.png and b/png/guacamole-light.png differ
diff --git a/png/guacamole.png b/png/guacamole.png
index 59f3d8bd..97c472a8 100644
Binary files a/png/guacamole.png and b/png/guacamole.png differ
diff --git a/png/hacker-news.png b/png/hacker-news.png
new file mode 100644
index 00000000..8af6ce4a
Binary files /dev/null and b/png/hacker-news.png differ
diff --git a/png/hammond-light.png b/png/hammond-light.png
new file mode 100644
index 00000000..b79cb3a5
Binary files /dev/null and b/png/hammond-light.png differ
diff --git a/png/hammond.png b/png/hammond.png
index a021c62c..047e1b7b 100644
Binary files a/png/hammond.png and b/png/hammond.png differ
diff --git a/png/handbrake.png b/png/handbrake.png
index 725ceb94..a63a0695 100644
Binary files a/png/handbrake.png and b/png/handbrake.png differ
diff --git a/png/haproxy.png b/png/haproxy.png
index e094d0d6..cac78c73 100644
Binary files a/png/haproxy.png and b/png/haproxy.png differ
diff --git a/png/haptic-light.png b/png/haptic-light.png
new file mode 100644
index 00000000..e57d89b1
Binary files /dev/null and b/png/haptic-light.png differ
diff --git a/png/haptic.png b/png/haptic.png
new file mode 100644
index 00000000..14701f93
Binary files /dev/null and b/png/haptic.png differ
diff --git a/png/harbor.png b/png/harbor.png
index 10cd7221..f91bbec9 100644
Binary files a/png/harbor.png and b/png/harbor.png differ
diff --git a/png/hard-forum.png b/png/hard-forum.png
deleted file mode 100644
index 84a4e811..00000000
Binary files a/png/hard-forum.png and /dev/null differ
diff --git a/png/harvester.png b/png/harvester.png
index db1e5373..155490ec 100644
Binary files a/png/harvester.png and b/png/harvester.png differ
diff --git a/png/hashicorp-boundary.png b/png/hashicorp-boundary.png
new file mode 100644
index 00000000..beb59d2c
Binary files /dev/null and b/png/hashicorp-boundary.png differ
diff --git a/png/hashicorp-consul.png b/png/hashicorp-consul.png
new file mode 100644
index 00000000..3f9b54c5
Binary files /dev/null and b/png/hashicorp-consul.png differ
diff --git a/png/hashicorp-nomad.png b/png/hashicorp-nomad.png
new file mode 100644
index 00000000..e22c61f9
Binary files /dev/null and b/png/hashicorp-nomad.png differ
diff --git a/png/hashicorp-packer.png b/png/hashicorp-packer.png
new file mode 100644
index 00000000..ff85568c
Binary files /dev/null and b/png/hashicorp-packer.png differ
diff --git a/png/hashicorp-terraform.png b/png/hashicorp-terraform.png
new file mode 100644
index 00000000..1f5abae4
Binary files /dev/null and b/png/hashicorp-terraform.png differ
diff --git a/png/hashicorp-vagrant.png b/png/hashicorp-vagrant.png
new file mode 100644
index 00000000..bc4840ea
Binary files /dev/null and b/png/hashicorp-vagrant.png differ
diff --git a/png/hashicorp-vault.png b/png/hashicorp-vault.png
new file mode 100644
index 00000000..316f0762
Binary files /dev/null and b/png/hashicorp-vault.png differ
diff --git a/png/hashicorp-waypoint.png b/png/hashicorp-waypoint.png
new file mode 100644
index 00000000..a2b0ed6e
Binary files /dev/null and b/png/hashicorp-waypoint.png differ
diff --git a/png/hastypaste.png b/png/hastypaste.png
index ebf1648e..2772f57b 100644
Binary files a/png/hastypaste.png and b/png/hastypaste.png differ
diff --git a/png/hasura.png b/png/hasura.png
index d2297bab..27bc41b3 100644
Binary files a/png/hasura.png and b/png/hasura.png differ
diff --git a/png/hatsh-light.png b/png/hatsh-light.png
index 3c47a869..2322978e 100644
Binary files a/png/hatsh-light.png and b/png/hatsh-light.png differ
diff --git a/png/hatsh.png b/png/hatsh.png
index 185255e5..055cbe4f 100644
Binary files a/png/hatsh.png and b/png/hatsh.png differ
diff --git a/png/hbo-light.png b/png/hbo-light.png
new file mode 100644
index 00000000..302f2963
Binary files /dev/null and b/png/hbo-light.png differ
diff --git a/png/hbo.png b/png/hbo.png
new file mode 100644
index 00000000..869cab53
Binary files /dev/null and b/png/hbo.png differ
diff --git a/png/hdhomerun-light.png b/png/hdhomerun-light.png
new file mode 100644
index 00000000..c598bbd2
Binary files /dev/null and b/png/hdhomerun-light.png differ
diff --git a/png/hdhomerun.png b/png/hdhomerun.png
index a05f6979..b1adedb5 100644
Binary files a/png/hdhomerun.png and b/png/hdhomerun.png differ
diff --git a/png/headphones.png b/png/headphones.png
deleted file mode 100644
index 34b7910d..00000000
Binary files a/png/headphones.png and /dev/null differ
diff --git a/png/headscale.png b/png/headscale.png
new file mode 100644
index 00000000..04921a51
Binary files /dev/null and b/png/headscale.png differ
diff --git a/png/healthchecks-v2.png b/png/healthchecks-v2.png
deleted file mode 100644
index 2e07785b..00000000
Binary files a/png/healthchecks-v2.png and /dev/null differ
diff --git a/png/healthchecks.png b/png/healthchecks.png
index c5927594..a4c5b821 100644
Binary files a/png/healthchecks.png and b/png/healthchecks.png differ
diff --git a/png/hedgedoc.png b/png/hedgedoc.png
index ad542b1c..29b9d43e 100644
Binary files a/png/hedgedoc.png and b/png/hedgedoc.png differ
diff --git a/png/heimdall-light.png b/png/heimdall-light.png
index c12f45b8..bbab58c3 100644
Binary files a/png/heimdall-light.png and b/png/heimdall-light.png differ
diff --git a/png/heimdall.png b/png/heimdall.png
index ec1e3f4e..e1dbc374 100644
Binary files a/png/heimdall.png and b/png/heimdall.png differ
diff --git a/png/helium-token.png b/png/helium-token.png
index 01b87496..5cf2ce40 100644
Binary files a/png/helium-token.png and b/png/helium-token.png differ
diff --git a/png/helm.png b/png/helm.png
index 8b94bf78..a171eb3d 100644
Binary files a/png/helm.png and b/png/helm.png differ
diff --git a/png/helper-scripts.png b/png/helper-scripts.png
deleted file mode 100644
index 3e2e23c8..00000000
Binary files a/png/helper-scripts.png and /dev/null differ
diff --git a/png/hetzner.png b/png/hetzner.png
index e3e6d2b4..cef9979f 100644
Binary files a/png/hetzner.png and b/png/hetzner.png differ
diff --git a/png/hexo.png b/png/hexo.png
index 2373f650..ed921a9d 100644
Binary files a/png/hexo.png and b/png/hexo.png differ
diff --git a/png/heyform.png b/png/heyform.png
new file mode 100644
index 00000000..78fa896d
Binary files /dev/null and b/png/heyform.png differ
diff --git a/png/hifiberry.png b/png/hifiberry.png
index b98ebbe3..1db85957 100644
Binary files a/png/hifiberry.png and b/png/hifiberry.png differ
diff --git a/png/hikvision.png b/png/hikvision.png
index e32dfa2a..f4490e1c 100644
Binary files a/png/hikvision.png and b/png/hikvision.png differ
diff --git a/png/hilook.png b/png/hilook.png
index 730db83e..2e6e4e5e 100644
Binary files a/png/hilook.png and b/png/hilook.png differ
diff --git a/png/hivedav.png b/png/hivedav.png
new file mode 100644
index 00000000..07bff33d
Binary files /dev/null and b/png/hivedav.png differ
diff --git a/png/hoarder-light.png b/png/hoarder-light.png
index f88da89a..3a19c310 100644
Binary files a/png/hoarder-light.png and b/png/hoarder-light.png differ
diff --git a/png/hoarder.png b/png/hoarder.png
index 0dcd165b..78d466ec 100644
Binary files a/png/hoarder.png and b/png/hoarder.png differ
diff --git a/png/hollo-light.png b/png/hollo-light.png
new file mode 100644
index 00000000..84774c02
Binary files /dev/null and b/png/hollo-light.png differ
diff --git a/png/hollo.png b/png/hollo.png
new file mode 100644
index 00000000..8336bb07
Binary files /dev/null and b/png/hollo.png differ
diff --git a/png/homarr.png b/png/homarr.png
index 69a7207b..c8685770 100644
Binary files a/png/homarr.png and b/png/homarr.png differ
diff --git a/png/home-assistant-alt.png b/png/home-assistant-alt.png
index 5a790e96..2b3cd3b2 100644
Binary files a/png/home-assistant-alt.png and b/png/home-assistant-alt.png differ
diff --git a/png/home-assistant-light.png b/png/home-assistant-light.png
deleted file mode 100644
index c1c02c0e..00000000
Binary files a/png/home-assistant-light.png and /dev/null differ
diff --git a/png/home-assistant.png b/png/home-assistant.png
index 27426e49..5b9ec835 100644
Binary files a/png/home-assistant.png and b/png/home-assistant.png differ
diff --git a/png/homebox-light.png b/png/homebox-light.png
new file mode 100644
index 00000000..4093dc87
Binary files /dev/null and b/png/homebox-light.png differ
diff --git a/png/homebox.png b/png/homebox.png
index 00f96992..57088ef5 100644
Binary files a/png/homebox.png and b/png/homebox.png differ
diff --git a/png/homebridge.png b/png/homebridge.png
index f4b6c952..3f4c79ac 100644
Binary files a/png/homebridge.png and b/png/homebridge.png differ
diff --git a/png/homepage.png b/png/homepage.png
deleted file mode 100644
index 7ce16afa..00000000
Binary files a/png/homepage.png and /dev/null differ
diff --git a/png/homer.png b/png/homer.png
index a0d752a0..746cc777 100644
Binary files a/png/homer.png and b/png/homer.png differ
diff --git a/png/homeseer.png b/png/homeseer.png
deleted file mode 100644
index 12b6af8a..00000000
Binary files a/png/homeseer.png and /dev/null differ
diff --git a/png/homey.png b/png/homey.png
index 0050ea51..52376591 100644
Binary files a/png/homey.png and b/png/homey.png differ
diff --git a/png/honeygain.png b/png/honeygain.png
deleted file mode 100644
index 119482f6..00000000
Binary files a/png/honeygain.png and /dev/null differ
diff --git a/png/hoobs.png b/png/hoobs.png
index ad99cbc1..1d5f37f0 100644
Binary files a/png/hoobs.png and b/png/hoobs.png differ
diff --git a/png/hoppscotch.png b/png/hoppscotch.png
index 4755c30c..e67505c4 100644
Binary files a/png/hoppscotch.png and b/png/hoppscotch.png differ
diff --git a/png/hortusfox.png b/png/hortusfox.png
deleted file mode 100644
index b0b825de..00000000
Binary files a/png/hortusfox.png and /dev/null differ
diff --git a/png/hostinger.png b/png/hostinger.png
index 475d9fcc..aba1629a 100644
Binary files a/png/hostinger.png and b/png/hostinger.png differ
diff --git a/png/hotio.png b/png/hotio.png
index 1a234545..70d930a4 100644
Binary files a/png/hotio.png and b/png/hotio.png differ
diff --git a/png/hp.png b/png/hp.png
index 5e92f501..3e0b49a2 100644
Binary files a/png/hp.png and b/png/hp.png differ
diff --git a/png/html-light.png b/png/html-light.png
new file mode 100644
index 00000000..8477d8bc
Binary files /dev/null and b/png/html-light.png differ
diff --git a/png/html.png b/png/html.png
index 8369a79e..e8715a65 100644
Binary files a/png/html.png and b/png/html.png differ
diff --git a/png/huawei.png b/png/huawei.png
index baaf6842..7835597b 100644
Binary files a/png/huawei.png and b/png/huawei.png differ
diff --git a/png/hubitat.png b/png/hubitat.png
index 3dfb3e0c..a3d0f2f1 100644
Binary files a/png/hubitat.png and b/png/hubitat.png differ
diff --git a/png/hubzilla.png b/png/hubzilla.png
new file mode 100644
index 00000000..a0d0fa4f
Binary files /dev/null and b/png/hubzilla.png differ
diff --git a/png/hugging-face.png b/png/hugging-face.png
index 4c492297..fa3b12ef 100644
Binary files a/png/hugging-face.png and b/png/hugging-face.png differ
diff --git a/png/huginn.png b/png/huginn.png
index 5a8e43b3..a9499588 100644
Binary files a/png/huginn.png and b/png/huginn.png differ
diff --git a/png/hugo.png b/png/hugo.png
index 852255d4..423bb161 100644
Binary files a/png/hugo.png and b/png/hugo.png differ
diff --git a/png/hulu.png b/png/hulu.png
new file mode 100644
index 00000000..a7552d01
Binary files /dev/null and b/png/hulu.png differ
diff --git a/png/humhub.png b/png/humhub.png
index 1c7aca47..76560b9a 100644
Binary files a/png/humhub.png and b/png/humhub.png differ
diff --git a/png/hydra.png b/png/hydra.png
index 796c8203..23664596 100644
Binary files a/png/hydra.png and b/png/hydra.png differ
diff --git a/png/hyperion.png b/png/hyperion.png
deleted file mode 100644
index de1be8bb..00000000
Binary files a/png/hyperion.png and /dev/null differ
diff --git a/png/hyperpipe-light.png b/png/hyperpipe-light.png
new file mode 100644
index 00000000..eca26631
Binary files /dev/null and b/png/hyperpipe-light.png differ
diff --git a/png/hyperpipe.png b/png/hyperpipe.png
new file mode 100644
index 00000000..9813604e
Binary files /dev/null and b/png/hyperpipe.png differ
diff --git a/png/i2p-light.png b/png/i2p-light.png
index ccd11af7..fc9ee71d 100644
Binary files a/png/i2p-light.png and b/png/i2p-light.png differ
diff --git a/png/i2p.png b/png/i2p.png
index 7a8f3cef..ddf3db67 100644
Binary files a/png/i2p.png and b/png/i2p.png differ
diff --git a/png/i2pd.png b/png/i2pd.png
index 9bd28820..b8a8f8b4 100644
Binary files a/png/i2pd.png and b/png/i2pd.png differ
diff --git a/png/icecast.png b/png/icecast.png
index ec3a2fb0..abd58fe4 100644
Binary files a/png/icecast.png and b/png/icecast.png differ
diff --git a/png/icinga-light.png b/png/icinga-light.png
new file mode 100644
index 00000000..3c7b9167
Binary files /dev/null and b/png/icinga-light.png differ
diff --git a/png/icinga.png b/png/icinga.png
index 21a37e1f..8afada2f 100644
Binary files a/png/icinga.png and b/png/icinga.png differ
diff --git a/png/idrac.png b/png/idrac.png
index 61f8ec1a..e6230cb7 100644
Binary files a/png/idrac.png and b/png/idrac.png differ
diff --git a/png/ihatemoney.png b/png/ihatemoney.png
deleted file mode 100644
index 748f67af..00000000
Binary files a/png/ihatemoney.png and /dev/null differ
diff --git a/png/ilo.png b/png/ilo.png
index 5e92f501..3e0b49a2 100644
Binary files a/png/ilo.png and b/png/ilo.png differ
diff --git a/png/immich-frame-light.png b/png/immich-frame-light.png
new file mode 100644
index 00000000..f304f416
Binary files /dev/null and b/png/immich-frame-light.png differ
diff --git a/png/immich-frame.png b/png/immich-frame.png
new file mode 100644
index 00000000..7fa53baf
Binary files /dev/null and b/png/immich-frame.png differ
diff --git a/png/immich-kiosk-light.png b/png/immich-kiosk-light.png
new file mode 100644
index 00000000..d3359dbd
Binary files /dev/null and b/png/immich-kiosk-light.png differ
diff --git a/png/immich-kiosk.png b/png/immich-kiosk.png
new file mode 100644
index 00000000..c7833974
Binary files /dev/null and b/png/immich-kiosk.png differ
diff --git a/png/immich.png b/png/immich.png
index 655265cf..f287c441 100644
Binary files a/png/immich.png and b/png/immich.png differ
diff --git a/png/influxdb.png b/png/influxdb.png
index 8d709bd8..3da665c1 100644
Binary files a/png/influxdb.png and b/png/influxdb.png differ
diff --git a/png/infoblox.png b/png/infoblox.png
index 58b36434..18752a03 100644
Binary files a/png/infoblox.png and b/png/infoblox.png differ
diff --git a/png/inoreader.png b/png/inoreader.png
new file mode 100644
index 00000000..57d9d6c5
Binary files /dev/null and b/png/inoreader.png differ
diff --git a/png/insanelymac.png b/png/insanelymac.png
deleted file mode 100644
index e7268cec..00000000
Binary files a/png/insanelymac.png and /dev/null differ
diff --git a/png/instagram.png b/png/instagram.png
index 7ec1fc2c..1231d15d 100644
Binary files a/png/instagram.png and b/png/instagram.png differ
diff --git a/png/inventree.png b/png/inventree.png
index 2c8ab4f2..0703c1e6 100644
Binary files a/png/inventree.png and b/png/inventree.png differ
diff --git a/png/invidious.png b/png/invidious.png
index 8759a81e..91b375e0 100644
Binary files a/png/invidious.png and b/png/invidious.png differ
diff --git a/png/invisioncommunity.png b/png/invisioncommunity.png
index 432bced4..526f2173 100644
Binary files a/png/invisioncommunity.png and b/png/invisioncommunity.png differ
diff --git a/png/invoice-ninja-light.png b/png/invoice-ninja-light.png
new file mode 100644
index 00000000..113337e7
Binary files /dev/null and b/png/invoice-ninja-light.png differ
diff --git a/png/invoice-ninja.png b/png/invoice-ninja.png
new file mode 100644
index 00000000..23469cc6
Binary files /dev/null and b/png/invoice-ninja.png differ
diff --git a/png/invoiceninja-light.png b/png/invoiceninja-light.png
deleted file mode 100644
index 2462c827..00000000
Binary files a/png/invoiceninja-light.png and /dev/null differ
diff --git a/png/invoiceninja.png b/png/invoiceninja.png
deleted file mode 100644
index a0e3c0e5..00000000
Binary files a/png/invoiceninja.png and /dev/null differ
diff --git a/png/invoke-ai.png b/png/invoke-ai.png
index 0b886de0..f509fd19 100644
Binary files a/png/invoke-ai.png and b/png/invoke-ai.png differ
diff --git a/png/iobroker.png b/png/iobroker.png
index 2e82779e..011f1e25 100644
Binary files a/png/iobroker.png and b/png/iobroker.png differ
diff --git a/png/ionos-light.png b/png/ionos-light.png
deleted file mode 100644
index 828e429f..00000000
Binary files a/png/ionos-light.png and /dev/null differ
diff --git a/png/ionos.png b/png/ionos.png
index 2df5611d..7754804c 100644
Binary files a/png/ionos.png and b/png/ionos.png differ
diff --git a/png/ipboard.png b/png/ipboard.png
index 432bced4..526f2173 100644
Binary files a/png/ipboard.png and b/png/ipboard.png differ
diff --git a/png/ipcamtalk.png b/png/ipcamtalk.png
deleted file mode 100644
index 83417d43..00000000
Binary files a/png/ipcamtalk.png and /dev/null differ
diff --git a/png/ipfs-light.png b/png/ipfs-light.png
new file mode 100644
index 00000000..936bc87d
Binary files /dev/null and b/png/ipfs-light.png differ
diff --git a/png/ipfs.png b/png/ipfs.png
index b4d4f547..700db68f 100644
Binary files a/png/ipfs.png and b/png/ipfs.png differ
diff --git a/png/irc.png b/png/irc.png
deleted file mode 100644
index 517d61bd..00000000
Binary files a/png/irc.png and /dev/null differ
diff --git a/png/iredmail.png b/png/iredmail.png
deleted file mode 100644
index 528c9265..00000000
Binary files a/png/iredmail.png and /dev/null differ
diff --git a/png/ispconfig.png b/png/ispconfig.png
index 78dd241e..6536f30c 100644
Binary files a/png/ispconfig.png and b/png/ispconfig.png differ
diff --git a/png/ispy.png b/png/ispy.png
deleted file mode 100644
index 12ef5110..00000000
Binary files a/png/ispy.png and /dev/null differ
diff --git a/png/it-tools-light.png b/png/it-tools-light.png
index 3fceaafb..169799ca 100644
Binary files a/png/it-tools-light.png and b/png/it-tools-light.png differ
diff --git a/png/it-tools.png b/png/it-tools.png
index 2cd951f8..b605627c 100644
Binary files a/png/it-tools.png and b/png/it-tools.png differ
diff --git a/png/jackett-light.png b/png/jackett-light.png
index 49e2d04f..28ba207a 100644
Binary files a/png/jackett-light.png and b/png/jackett-light.png differ
diff --git a/png/jackett.png b/png/jackett.png
index 75a4b5d3..70607ede 100644
Binary files a/png/jackett.png and b/png/jackett.png differ
diff --git a/png/jaeger.png b/png/jaeger.png
index fa54aade..b1bcc2a2 100644
Binary files a/png/jaeger.png and b/png/jaeger.png differ
diff --git a/png/jamstack.png b/png/jamstack.png
index 50ae3ed5..9f076ede 100644
Binary files a/png/jamstack.png and b/png/jamstack.png differ
diff --git a/png/java.png b/png/java.png
index 946d1b5c..db765bef 100644
Binary files a/png/java.png and b/png/java.png differ
diff --git a/png/javascript-light.png b/png/javascript-light.png
new file mode 100644
index 00000000..92455b60
Binary files /dev/null and b/png/javascript-light.png differ
diff --git a/png/javascript.png b/png/javascript.png
index 380eb208..f86b29bd 100644
Binary files a/png/javascript.png and b/png/javascript.png differ
diff --git a/png/jdownloader.png b/png/jdownloader.png
deleted file mode 100644
index 5c90cf76..00000000
Binary files a/png/jdownloader.png and /dev/null differ
diff --git a/png/jdownloader2.png b/png/jdownloader2.png
deleted file mode 100644
index 5c90cf76..00000000
Binary files a/png/jdownloader2.png and /dev/null differ
diff --git a/png/jeedom.png b/png/jeedom.png
index dff459bf..0be9cc82 100644
Binary files a/png/jeedom.png and b/png/jeedom.png differ
diff --git a/png/jekyll.png b/png/jekyll.png
index c8626e7a..10daa41e 100644
Binary files a/png/jekyll.png and b/png/jekyll.png differ
diff --git a/png/jellyfin-vue.png b/png/jellyfin-vue.png
deleted file mode 100644
index 71fbd057..00000000
Binary files a/png/jellyfin-vue.png and /dev/null differ
diff --git a/png/jellyfin.png b/png/jellyfin.png
index c4a62d5c..f900a138 100644
Binary files a/png/jellyfin.png and b/png/jellyfin.png differ
diff --git a/png/jellyseerr.png b/png/jellyseerr.png
index 6bda23de..cfe4abac 100644
Binary files a/png/jellyseerr.png and b/png/jellyseerr.png differ
diff --git a/png/jellystat-light.png b/png/jellystat-light.png
deleted file mode 100644
index 139303ac..00000000
Binary files a/png/jellystat-light.png and /dev/null differ
diff --git a/png/jellystat.png b/png/jellystat.png
index 5cac1800..2cbadd7e 100644
Binary files a/png/jellystat.png and b/png/jellystat.png differ
diff --git a/png/jelu.png b/png/jelu.png
index bbc0ce06..c681f1cf 100644
Binary files a/png/jelu.png and b/png/jelu.png differ
diff --git a/png/jenkins.png b/png/jenkins.png
index aa090e6a..ff3fab73 100644
Binary files a/png/jenkins.png and b/png/jenkins.png differ
diff --git a/png/jetbrains-fleet.png b/png/jetbrains-fleet.png
deleted file mode 100644
index 856689b5..00000000
Binary files a/png/jetbrains-fleet.png and /dev/null differ
diff --git a/png/jetbrains-youtrack.png b/png/jetbrains-youtrack.png
index 37adee2e..c8131574 100644
Binary files a/png/jetbrains-youtrack.png and b/png/jetbrains-youtrack.png differ
diff --git a/png/jio.png b/png/jio.png
index cb6208ed..c48cdf07 100644
Binary files a/png/jio.png and b/png/jio.png differ
diff --git a/png/jira.png b/png/jira.png
index 6afcb136..dcba43b5 100644
Binary files a/png/jira.png and b/png/jira.png differ
diff --git a/png/jitsi-meet.png b/png/jitsi-meet.png
index ab7e203a..5063cac3 100644
Binary files a/png/jitsi-meet.png and b/png/jitsi-meet.png differ
diff --git a/png/jitsi.png b/png/jitsi.png
index 496f81e0..0dc4400d 100644
Binary files a/png/jitsi.png and b/png/jitsi.png differ
diff --git a/png/joal.png b/png/joal.png
deleted file mode 100644
index 18bf7605..00000000
Binary files a/png/joal.png and /dev/null differ
diff --git a/png/joomla.png b/png/joomla.png
index 0fd5c762..2549a384 100644
Binary files a/png/joomla.png and b/png/joomla.png differ
diff --git a/png/joplin.png b/png/joplin.png
index 1ec38101..2cbadd7e 100644
Binary files a/png/joplin.png and b/png/joplin.png differ
diff --git a/png/julia.png b/png/julia.png
index 211de472..ca233b68 100644
Binary files a/png/julia.png and b/png/julia.png differ
diff --git a/png/jupyter.png b/png/jupyter.png
index 5bb7d778..21ab5566 100644
Binary files a/png/jupyter.png and b/png/jupyter.png differ
diff --git a/png/jwt-io-light.png b/png/jwt-io-light.png
new file mode 100644
index 00000000..26b1d22c
Binary files /dev/null and b/png/jwt-io-light.png differ
diff --git a/png/jwt-io.png b/png/jwt-io.png
new file mode 100644
index 00000000..19373fc2
Binary files /dev/null and b/png/jwt-io.png differ
diff --git a/png/kagi.png b/png/kagi.png
index 0eb3e583..e26cfaaa 100644
Binary files a/png/kagi.png and b/png/kagi.png differ
diff --git a/png/kaizoku.png b/png/kaizoku.png
deleted file mode 100644
index dc1770ca..00000000
Binary files a/png/kaizoku.png and /dev/null differ
diff --git a/png/kamatera.png b/png/kamatera.png
index 4a77c782..ed435f9b 100644
Binary files a/png/kamatera.png and b/png/kamatera.png differ
diff --git a/png/kanboard-light.png b/png/kanboard-light.png
new file mode 100644
index 00000000..fa2ca3f6
Binary files /dev/null and b/png/kanboard-light.png differ
diff --git a/png/kanboard.png b/png/kanboard.png
new file mode 100644
index 00000000..59178990
Binary files /dev/null and b/png/kanboard.png differ
diff --git a/png/kanidm.png b/png/kanidm.png
new file mode 100644
index 00000000..c0337cdc
Binary files /dev/null and b/png/kanidm.png differ
diff --git a/png/kapacitor.png b/png/kapacitor.png
deleted file mode 100644
index c1e97001..00000000
Binary files a/png/kapacitor.png and /dev/null differ
diff --git a/png/kapowarr.png b/png/kapowarr.png
index fb84a8da..5c8206cd 100644
Binary files a/png/kapowarr.png and b/png/kapowarr.png differ
diff --git a/png/kasm-workspaces.png b/png/kasm-workspaces.png
index d255e1d3..3db4e9c9 100644
Binary files a/png/kasm-workspaces.png and b/png/kasm-workspaces.png differ
diff --git a/png/kasm.png b/png/kasm.png
index d255e1d3..3db4e9c9 100644
Binary files a/png/kasm.png and b/png/kasm.png differ
diff --git a/png/kasten-k10.png b/png/kasten-k10.png
index 03db11bf..9439133f 100644
Binary files a/png/kasten-k10.png and b/png/kasten-k10.png differ
diff --git a/png/kaufland.png b/png/kaufland.png
index da290c50..05c37dbb 100644
Binary files a/png/kaufland.png and b/png/kaufland.png differ
diff --git a/png/kavita.png b/png/kavita.png
index 6ea448d2..ef8a34cb 100644
Binary files a/png/kavita.png and b/png/kavita.png differ
diff --git a/png/kbin-light.png b/png/kbin-light.png
deleted file mode 100644
index 83892057..00000000
Binary files a/png/kbin-light.png and /dev/null differ
diff --git a/png/kbin.png b/png/kbin.png
index 65ec8be5..67686d8d 100644
Binary files a/png/kbin.png and b/png/kbin.png differ
diff --git a/png/keenetic-alt.png b/png/keenetic-alt.png
new file mode 100644
index 00000000..347e8621
Binary files /dev/null and b/png/keenetic-alt.png differ
diff --git a/png/keenetic-new.png b/png/keenetic-new.png
deleted file mode 100644
index 0225b123..00000000
Binary files a/png/keenetic-new.png and /dev/null differ
diff --git a/png/keenetic.png b/png/keenetic.png
index 6237d21b..2d675a0a 100644
Binary files a/png/keenetic.png and b/png/keenetic.png differ
diff --git a/png/keepassxc.png b/png/keepassxc.png
new file mode 100644
index 00000000..0167e753
Binary files /dev/null and b/png/keepassxc.png differ
diff --git a/png/keila.png b/png/keila.png
index 69effc41..1c76813d 100644
Binary files a/png/keila.png and b/png/keila.png differ
diff --git a/png/kerberos.png b/png/kerberos.png
index d8cd2a40..45b90ba8 100644
Binary files a/png/kerberos.png and b/png/kerberos.png differ
diff --git a/png/kestra.png b/png/kestra.png
index 1ac4b38c..03b1ba95 100644
Binary files a/png/kestra.png and b/png/kestra.png differ
diff --git a/png/keycloak.png b/png/keycloak.png
index c8bf3fe8..38a86e31 100644
Binary files a/png/keycloak.png and b/png/keycloak.png differ
diff --git a/png/keyoxide-alt.png b/png/keyoxide-alt.png
index c9af2b47..c0a39ccf 100644
Binary files a/png/keyoxide-alt.png and b/png/keyoxide-alt.png differ
diff --git a/png/keyoxide.png b/png/keyoxide.png
index 8071562a..d13afb87 100644
Binary files a/png/keyoxide.png and b/png/keyoxide.png differ
diff --git a/png/kibana.png b/png/kibana.png
index 658569e8..36ee9ca7 100644
Binary files a/png/kibana.png and b/png/kibana.png differ
diff --git a/png/kick-light.png b/png/kick-light.png
new file mode 100644
index 00000000..6c20fef3
Binary files /dev/null and b/png/kick-light.png differ
diff --git a/png/kick.png b/png/kick.png
index 6e6410b8..13abf23e 100644
Binary files a/png/kick.png and b/png/kick.png differ
diff --git a/png/kimai.png b/png/kimai.png
index a320fedd..b0d9ffb1 100644
Binary files a/png/kimai.png and b/png/kimai.png differ
diff --git a/png/kinto.png b/png/kinto.png
index a7e3eee9..c181a2e3 100644
Binary files a/png/kinto.png and b/png/kinto.png differ
diff --git a/png/kitana.png b/png/kitana.png
index cdd8323d..bd0139c9 100644
Binary files a/png/kitana.png and b/png/kitana.png differ
diff --git a/png/kitchenowl.png b/png/kitchenowl.png
index 5a666edb..810d0402 100644
Binary files a/png/kitchenowl.png and b/png/kitchenowl.png differ
diff --git a/png/kiwix-light.png b/png/kiwix-light.png
index e310fb94..24641086 100644
Binary files a/png/kiwix-light.png and b/png/kiwix-light.png differ
diff --git a/png/kiwix.png b/png/kiwix.png
index c6f87954..5827dda8 100644
Binary files a/png/kiwix.png and b/png/kiwix.png differ
diff --git a/png/klipper.png b/png/klipper.png
index 1331b048..4133caad 100644
Binary files a/png/klipper.png and b/png/klipper.png differ
diff --git a/png/ko-fi.png b/png/ko-fi.png
index 12e06a99..c8e7b59f 100644
Binary files a/png/ko-fi.png and b/png/ko-fi.png differ
diff --git a/png/kodi.png b/png/kodi.png
index 0b860002..8015bd00 100644
Binary files a/png/kodi.png and b/png/kodi.png differ
diff --git a/png/koel.png b/png/koel.png
index 78611564..660fa854 100644
Binary files a/png/koel.png and b/png/koel.png differ
diff --git a/png/koillection-light.png b/png/koillection-light.png
new file mode 100644
index 00000000..2880152a
Binary files /dev/null and b/png/koillection-light.png differ
diff --git a/png/koillection.png b/png/koillection.png
index 5bb8023d..26e9ff34 100644
Binary files a/png/koillection.png and b/png/koillection.png differ
diff --git a/png/komga.png b/png/komga.png
index d853224d..0145cffc 100644
Binary files a/png/komga.png and b/png/komga.png differ
diff --git a/png/kontoj.png b/png/kontoj.png
new file mode 100644
index 00000000..e6ee81af
Binary files /dev/null and b/png/kontoj.png differ
diff --git a/png/kopia.png b/png/kopia.png
index fc430caf..7a5a2c88 100644
Binary files a/png/kopia.png and b/png/kopia.png differ
diff --git a/png/kotlin.png b/png/kotlin.png
index 29c12085..cc7b41d1 100644
Binary files a/png/kotlin.png and b/png/kotlin.png differ
diff --git a/png/kpn.png b/png/kpn.png
index e26a2a1a..4aa098b5 100644
Binary files a/png/kpn.png and b/png/kpn.png differ
diff --git a/png/krakend.png b/png/krakend.png
new file mode 100644
index 00000000..20a2f8d9
Binary files /dev/null and b/png/krakend.png differ
diff --git a/png/krusader.png b/png/krusader.png
index 48fd236e..feb4bbc4 100644
Binary files a/png/krusader.png and b/png/krusader.png differ
diff --git a/png/kubernetes-dashboard.png b/png/kubernetes-dashboard.png
index bf488876..d21de2d1 100644
Binary files a/png/kubernetes-dashboard.png and b/png/kubernetes-dashboard.png differ
diff --git a/png/kubernetes.png b/png/kubernetes.png
index bf488876..d21de2d1 100644
Binary files a/png/kubernetes.png and b/png/kubernetes.png differ
diff --git a/png/kutt.png b/png/kutt.png
index 740b331d..178c9c3e 100644
Binary files a/png/kutt.png and b/png/kutt.png differ
diff --git a/png/kyoo.png b/png/kyoo.png
new file mode 100644
index 00000000..f44721ad
Binary files /dev/null and b/png/kyoo.png differ
diff --git a/png/lancache.png b/png/lancache.png
deleted file mode 100644
index 8d8b6fa2..00000000
Binary files a/png/lancache.png and /dev/null differ
diff --git a/png/lancommander-light.png b/png/lancommander-light.png
new file mode 100644
index 00000000..b122606e
Binary files /dev/null and b/png/lancommander-light.png differ
diff --git a/png/lancommander.png b/png/lancommander.png
new file mode 100644
index 00000000..4522bfc6
Binary files /dev/null and b/png/lancommander.png differ
diff --git a/png/lanraragi.png b/png/lanraragi.png
deleted file mode 100644
index cc6d8830..00000000
Binary files a/png/lanraragi.png and /dev/null differ
diff --git a/png/lark.png b/png/lark.png
index 8c7865ef..d5174a08 100644
Binary files a/png/lark.png and b/png/lark.png differ
diff --git a/png/lastpass.png b/png/lastpass.png
new file mode 100644
index 00000000..410b48a1
Binary files /dev/null and b/png/lastpass.png differ
diff --git a/png/lazylibrarian.png b/png/lazylibrarian.png
deleted file mode 100644
index e504fa1b..00000000
Binary files a/png/lazylibrarian.png and /dev/null differ
diff --git a/png/leanote.png b/png/leanote.png
index d1b38374..1615691a 100644
Binary files a/png/leanote.png and b/png/leanote.png differ
diff --git a/png/leantime.png b/png/leantime.png
index 9673b4f4..460752be 100644
Binary files a/png/leantime.png and b/png/leantime.png differ
diff --git a/png/lemmy-light.png b/png/lemmy-light.png
index d87143d9..598066e6 100644
Binary files a/png/lemmy-light.png and b/png/lemmy-light.png differ
diff --git a/png/lemmy.png b/png/lemmy.png
index afa47f17..e36aeeaf 100644
Binary files a/png/lemmy.png and b/png/lemmy.png differ
diff --git a/png/lemonldap-ng.png b/png/lemonldap-ng.png
deleted file mode 100644
index dbf27180..00000000
Binary files a/png/lemonldap-ng.png and /dev/null differ
diff --git a/png/lets-encrypt.png b/png/lets-encrypt.png
index 43c9a789..637e1d34 100644
Binary files a/png/lets-encrypt.png and b/png/lets-encrypt.png differ
diff --git a/png/libreddit-light.png b/png/libreddit-light.png
new file mode 100644
index 00000000..4ea6fbfe
Binary files /dev/null and b/png/libreddit-light.png differ
diff --git a/png/libreddit.png b/png/libreddit.png
index e42ed44b..b6665ba1 100644
Binary files a/png/libreddit.png and b/png/libreddit.png differ
diff --git a/png/libremdb.png b/png/libremdb.png
deleted file mode 100644
index 831ecd69..00000000
Binary files a/png/libremdb.png and /dev/null differ
diff --git a/png/librenms-light.png b/png/librenms-light.png
deleted file mode 100644
index c2a1bb16..00000000
Binary files a/png/librenms-light.png and /dev/null differ
diff --git a/png/librenms.png b/png/librenms.png
index 6c72502c..7414e03f 100644
Binary files a/png/librenms.png and b/png/librenms.png differ
diff --git a/png/libreoffice-light.png b/png/libreoffice-light.png
new file mode 100644
index 00000000..6f85f460
Binary files /dev/null and b/png/libreoffice-light.png differ
diff --git a/png/libreoffice.png b/png/libreoffice.png
index 551676a5..02eadf83 100644
Binary files a/png/libreoffice.png and b/png/libreoffice.png differ
diff --git a/png/librephotos-light.png b/png/librephotos-light.png
deleted file mode 100644
index d81407f1..00000000
Binary files a/png/librephotos-light.png and /dev/null differ
diff --git a/png/librephotos.png b/png/librephotos.png
deleted file mode 100644
index 3b837c16..00000000
Binary files a/png/librephotos.png and /dev/null differ
diff --git a/png/librespeed-light.png b/png/librespeed-light.png
new file mode 100644
index 00000000..cb087cdf
Binary files /dev/null and b/png/librespeed-light.png differ
diff --git a/png/librespeed.png b/png/librespeed.png
index ea06dfb2..257d8ad6 100644
Binary files a/png/librespeed.png and b/png/librespeed.png differ
diff --git a/png/librewolf.png b/png/librewolf.png
new file mode 100644
index 00000000..6f209662
Binary files /dev/null and b/png/librewolf.png differ
diff --git a/png/librex.png b/png/librex.png
deleted file mode 100644
index 88a1cabd..00000000
Binary files a/png/librex.png and /dev/null differ
diff --git a/png/librey.png b/png/librey.png
deleted file mode 100644
index 6f01a080..00000000
Binary files a/png/librey.png and /dev/null differ
diff --git a/png/librum.png b/png/librum.png
new file mode 100644
index 00000000..485e7beb
Binary files /dev/null and b/png/librum.png differ
diff --git a/png/lidarr.png b/png/lidarr.png
index 3ec663b7..43f9827a 100644
Binary files a/png/lidarr.png and b/png/lidarr.png differ
diff --git a/png/lidl.png b/png/lidl.png
index 96d73fda..66d336cb 100644
Binary files a/png/lidl.png and b/png/lidl.png differ
diff --git a/png/lightning-terminal.png b/png/lightning-terminal.png
deleted file mode 100644
index e89dc8db..00000000
Binary files a/png/lightning-terminal.png and /dev/null differ
diff --git a/png/lighttpd.png b/png/lighttpd.png
index 605ed0be..93480761 100644
Binary files a/png/lighttpd.png and b/png/lighttpd.png differ
diff --git a/png/limesurvey.png b/png/limesurvey.png
new file mode 100644
index 00000000..d0335ef6
Binary files /dev/null and b/png/limesurvey.png differ
diff --git a/png/linguacafe.png b/png/linguacafe.png
new file mode 100644
index 00000000..49660002
Binary files /dev/null and b/png/linguacafe.png differ
diff --git a/png/linkace.png b/png/linkace.png
index f2d96c7d..0eab6e2d 100644
Binary files a/png/linkace.png and b/png/linkace.png differ
diff --git a/png/linkding.png b/png/linkding.png
index 2614c02b..f1e3e1e5 100644
Binary files a/png/linkding.png and b/png/linkding.png differ
diff --git a/png/linkedin.png b/png/linkedin.png
index 1d2bdfc3..99c78704 100644
Binary files a/png/linkedin.png and b/png/linkedin.png differ
diff --git a/png/linkstack.png b/png/linkstack.png
index 0d1af417..b332eb8d 100644
Binary files a/png/linkstack.png and b/png/linkstack.png differ
diff --git a/png/linksys.png b/png/linksys.png
deleted file mode 100644
index 048fea3a..00000000
Binary files a/png/linksys.png and /dev/null differ
diff --git a/png/linkwarden-light.png b/png/linkwarden-light.png
deleted file mode 100644
index ccfd2f69..00000000
Binary files a/png/linkwarden-light.png and /dev/null differ
diff --git a/png/linkwarden.png b/png/linkwarden.png
deleted file mode 100644
index a40400b7..00000000
Binary files a/png/linkwarden.png and /dev/null differ
diff --git a/png/linode.png b/png/linode.png
index 5a8dd83f..59d8ab29 100644
Binary files a/png/linode.png and b/png/linode.png differ
diff --git a/png/linux-mint.png b/png/linux-mint.png
index 2164fafd..9fc2983d 100644
Binary files a/png/linux-mint.png and b/png/linux-mint.png differ
diff --git a/png/linux.png b/png/linux.png
new file mode 100644
index 00000000..c74fec48
Binary files /dev/null and b/png/linux.png differ
diff --git a/png/linuxgsm.png b/png/linuxgsm.png
new file mode 100644
index 00000000..0e285502
Binary files /dev/null and b/png/linuxgsm.png differ
diff --git a/png/linuxserver-io.png b/png/linuxserver-io.png
index fae551e9..7747f77c 100644
Binary files a/png/linuxserver-io.png and b/png/linuxserver-io.png differ
diff --git a/png/liremdb.png b/png/liremdb.png
new file mode 100644
index 00000000..f06004e5
Binary files /dev/null and b/png/liremdb.png differ
diff --git a/png/listmonk.png b/png/listmonk.png
index f21d4ae2..b1023732 100644
Binary files a/png/listmonk.png and b/png/listmonk.png differ
diff --git a/png/littlelink-custom.png b/png/littlelink-custom.png
index 0c4632ec..50194e66 100644
Binary files a/png/littlelink-custom.png and b/png/littlelink-custom.png differ
diff --git a/png/lnbits.png b/png/lnbits.png
index a17bb246..d6257906 100644
Binary files a/png/lnbits.png and b/png/lnbits.png differ
diff --git a/png/lobe-chat.png b/png/lobe-chat.png
deleted file mode 100644
index 01623f18..00000000
Binary files a/png/lobe-chat.png and /dev/null differ
diff --git a/png/locals-light.png b/png/locals-light.png
index 3881ef72..28b2ee50 100644
Binary files a/png/locals-light.png and b/png/locals-light.png differ
diff --git a/png/locals.png b/png/locals.png
index 107cd532..25434837 100644
Binary files a/png/locals.png and b/png/locals.png differ
diff --git a/png/lodestone.png b/png/lodestone.png
new file mode 100644
index 00000000..5a941c08
Binary files /dev/null and b/png/lodestone.png differ
diff --git a/png/logitech-gaming.png b/png/logitech-gaming.png
index 836fed63..e3f3a3a0 100644
Binary files a/png/logitech-gaming.png and b/png/logitech-gaming.png differ
diff --git a/png/logitech-legacy-light.png b/png/logitech-legacy-light.png
deleted file mode 100644
index 2455e213..00000000
Binary files a/png/logitech-legacy-light.png and /dev/null differ
diff --git a/png/logitech-legacy.png b/png/logitech-legacy.png
index 9847cff4..b40ef525 100644
Binary files a/png/logitech-legacy.png and b/png/logitech-legacy.png differ
diff --git a/png/logitech-light.png b/png/logitech-light.png
index 77ff2e3e..6b85d553 100644
Binary files a/png/logitech-light.png and b/png/logitech-light.png differ
diff --git a/png/logitech.png b/png/logitech.png
index 5528b323..b1d0d6ea 100644
Binary files a/png/logitech.png and b/png/logitech.png differ
diff --git a/png/logseq.png b/png/logseq.png
new file mode 100644
index 00000000..beead736
Binary files /dev/null and b/png/logseq.png differ
diff --git a/png/logstash.png b/png/logstash.png
index c0285cc0..a42eab76 100644
Binary files a/png/logstash.png and b/png/logstash.png differ
diff --git a/png/logto.png b/png/logto.png
new file mode 100644
index 00000000..ebb9931b
Binary files /dev/null and b/png/logto.png differ
diff --git a/png/loki.png b/png/loki.png
index 9ebe1342..5c512ee3 100644
Binary files a/png/loki.png and b/png/loki.png differ
diff --git a/png/longhorn.png b/png/longhorn.png
index 43fc534e..ebf813c6 100644
Binary files a/png/longhorn.png and b/png/longhorn.png differ
diff --git a/png/lsio.png b/png/lsio.png
deleted file mode 100644
index fae551e9..00000000
Binary files a/png/lsio.png and /dev/null differ
diff --git a/png/lua.png b/png/lua.png
index b69f73b0..d7ebc4a4 100644
Binary files a/png/lua.png and b/png/lua.png differ
diff --git a/png/lubelogger.png b/png/lubelogger.png
deleted file mode 100644
index d9210f49..00000000
Binary files a/png/lubelogger.png and /dev/null differ
diff --git a/png/lunasea.png b/png/lunasea.png
new file mode 100644
index 00000000..86563178
Binary files /dev/null and b/png/lunasea.png differ
diff --git a/png/lychee.png b/png/lychee.png
deleted file mode 100644
index aab2206e..00000000
Binary files a/png/lychee.png and /dev/null differ
diff --git a/png/lynx-light.png b/png/lynx-light.png
new file mode 100644
index 00000000..bc9ad3e7
Binary files /dev/null and b/png/lynx-light.png differ
diff --git a/png/lynx.png b/png/lynx.png
index c17fba08..233afe61 100644
Binary files a/png/lynx.png and b/png/lynx.png differ
diff --git a/png/mail-in-a-box.png b/png/mail-in-a-box.png
new file mode 100644
index 00000000..93d247a8
Binary files /dev/null and b/png/mail-in-a-box.png differ
diff --git a/png/mailchimp-light.png b/png/mailchimp-light.png
new file mode 100644
index 00000000..c082c234
Binary files /dev/null and b/png/mailchimp-light.png differ
diff --git a/png/mailchimp.png b/png/mailchimp.png
new file mode 100644
index 00000000..8e056bf4
Binary files /dev/null and b/png/mailchimp.png differ
diff --git a/png/mailcow.png b/png/mailcow.png
index 289901d2..fc1e0f2b 100644
Binary files a/png/mailcow.png and b/png/mailcow.png differ
diff --git a/png/mailcowsogo.png b/png/mailcowsogo.png
deleted file mode 100644
index 01096789..00000000
Binary files a/png/mailcowsogo.png and /dev/null differ
diff --git a/png/mailfence.png b/png/mailfence.png
index 1c82e7d7..08511a6e 100644
Binary files a/png/mailfence.png and b/png/mailfence.png differ
diff --git a/png/mailgun.png b/png/mailgun.png
new file mode 100644
index 00000000..5b98d514
Binary files /dev/null and b/png/mailgun.png differ
diff --git a/png/mailhog.png b/png/mailhog.png
deleted file mode 100644
index 4b703f14..00000000
Binary files a/png/mailhog.png and /dev/null differ
diff --git a/png/mailinabox.png b/png/mailinabox.png
deleted file mode 100644
index f127eac3..00000000
Binary files a/png/mailinabox.png and /dev/null differ
diff --git a/png/mailjet.png b/png/mailjet.png
new file mode 100644
index 00000000..5d7ae42b
Binary files /dev/null and b/png/mailjet.png differ
diff --git a/png/mailu.png b/png/mailu.png
deleted file mode 100644
index 2f667eff..00000000
Binary files a/png/mailu.png and /dev/null differ
diff --git a/png/mainsail.png b/png/mainsail.png
index 00b8b92d..c951390e 100644
Binary files a/png/mainsail.png and b/png/mainsail.png differ
diff --git a/png/maintainerr.png b/png/maintainerr.png
index 7a96a973..32c1bd51 100644
Binary files a/png/maintainerr.png and b/png/maintainerr.png differ
diff --git a/png/mak.png b/png/mak.png
deleted file mode 100644
index fd43faf2..00000000
Binary files a/png/mak.png and /dev/null differ
diff --git a/png/makemkv.png b/png/makemkv.png
deleted file mode 100644
index 47e3f463..00000000
Binary files a/png/makemkv.png and /dev/null differ
diff --git a/png/maloja.png b/png/maloja.png
deleted file mode 100644
index 07e7ff18..00000000
Binary files a/png/maloja.png and /dev/null differ
diff --git a/png/mango.png b/png/mango.png
deleted file mode 100644
index c8dcbd4c..00000000
Binary files a/png/mango.png and /dev/null differ
diff --git a/png/manjaro-linux.png b/png/manjaro-linux.png
index 5051a77e..3b7e46ed 100644
Binary files a/png/manjaro-linux.png and b/png/manjaro-linux.png differ
diff --git a/png/mantisbt.png b/png/mantisbt.png
deleted file mode 100644
index f5f6ac22..00000000
Binary files a/png/mantisbt.png and /dev/null differ
diff --git a/png/manyfold.png b/png/manyfold.png
index 868f6ae3..bc3342a2 100644
Binary files a/png/manyfold.png and b/png/manyfold.png differ
diff --git a/png/maptiler.png b/png/maptiler.png
index e6f10867..879f3cb7 100644
Binary files a/png/maptiler.png and b/png/maptiler.png differ
diff --git a/png/marginalia.png b/png/marginalia.png
deleted file mode 100644
index adffebc3..00000000
Binary files a/png/marginalia.png and /dev/null differ
diff --git a/png/mariadb.png b/png/mariadb.png
index d76fcee2..7f9140c1 100644
Binary files a/png/mariadb.png and b/png/mariadb.png differ
diff --git a/png/mastodon.png b/png/mastodon.png
index 748c8538..0ec0a137 100644
Binary files a/png/mastodon.png and b/png/mastodon.png differ
diff --git a/png/matomo.png b/png/matomo.png
index b80d74a3..60ddf9aa 100644
Binary files a/png/matomo.png and b/png/matomo.png differ
diff --git a/png/matrix-light.png b/png/matrix-light.png
index 1c889ae8..18c35d83 100644
Binary files a/png/matrix-light.png and b/png/matrix-light.png differ
diff --git a/png/matrix-synapse-light.png b/png/matrix-synapse-light.png
index dc355e69..0a422aa8 100644
Binary files a/png/matrix-synapse-light.png and b/png/matrix-synapse-light.png differ
diff --git a/png/matrix-synapse.png b/png/matrix-synapse.png
index f6aea99a..d7e261ac 100644
Binary files a/png/matrix-synapse.png and b/png/matrix-synapse.png differ
diff --git a/png/matrix.png b/png/matrix.png
index ad1bd95d..abe24517 100644
Binary files a/png/matrix.png and b/png/matrix.png differ
diff --git a/png/mattermost.png b/png/mattermost.png
index 8d0dac47..22d5bc21 100644
Binary files a/png/mattermost.png and b/png/mattermost.png differ
diff --git a/png/mautic-light.png b/png/mautic-light.png
deleted file mode 100644
index ad4ad56c..00000000
Binary files a/png/mautic-light.png and /dev/null differ
diff --git a/png/mautic.png b/png/mautic.png
index 2d396058..be6858fb 100644
Binary files a/png/mautic.png and b/png/mautic.png differ
diff --git a/png/max.png b/png/max.png
new file mode 100644
index 00000000..52ea935b
Binary files /dev/null and b/png/max.png differ
diff --git a/png/mayan-edms-light.png b/png/mayan-edms-light.png
new file mode 100644
index 00000000..2d7d4c3f
Binary files /dev/null and b/png/mayan-edms-light.png differ
diff --git a/png/mayan-edms.png b/png/mayan-edms.png
index efd6298f..51e639bb 100644
Binary files a/png/mayan-edms.png and b/png/mayan-edms.png differ
diff --git a/png/mayan-light.png b/png/mayan-light.png
deleted file mode 100644
index 71c9eea7..00000000
Binary files a/png/mayan-light.png and /dev/null differ
diff --git a/png/maybe.png b/png/maybe.png
new file mode 100644
index 00000000..3f80d038
Binary files /dev/null and b/png/maybe.png differ
diff --git a/png/mbin.png b/png/mbin.png
new file mode 100644
index 00000000..51badbc3
Binary files /dev/null and b/png/mbin.png differ
diff --git a/png/mcmyadmin.png b/png/mcmyadmin.png
deleted file mode 100644
index 01f45fa1..00000000
Binary files a/png/mcmyadmin.png and /dev/null differ
diff --git a/png/mealie.png b/png/mealie.png
index 6a67beb4..1dacb245 100644
Binary files a/png/mealie.png and b/png/mealie.png differ
diff --git a/png/medama.png b/png/medama.png
new file mode 100644
index 00000000..977aa4f8
Binary files /dev/null and b/png/medama.png differ
diff --git a/png/mediathekview.png b/png/mediathekview.png
index 47db9aaf..dcc234e1 100644
Binary files a/png/mediathekview.png and b/png/mediathekview.png differ
diff --git a/png/mediawiki.png b/png/mediawiki.png
index df3d96e6..434b4bcc 100644
Binary files a/png/mediawiki.png and b/png/mediawiki.png differ
diff --git a/png/mediux.png b/png/mediux.png
new file mode 100644
index 00000000..4bce9d54
Binary files /dev/null and b/png/mediux.png differ
diff --git a/png/medusa-light.png b/png/medusa-light.png
new file mode 100644
index 00000000..8696b562
Binary files /dev/null and b/png/medusa-light.png differ
diff --git a/png/medusa.png b/png/medusa.png
index 563ee61e..bcd5ce6d 100644
Binary files a/png/medusa.png and b/png/medusa.png differ
diff --git a/png/mega-nz-dark.png b/png/mega-nz-dark.png
new file mode 100644
index 00000000..ca74bd03
Binary files /dev/null and b/png/mega-nz-dark.png differ
diff --git a/png/mega-nz.png b/png/mega-nz.png
index e977c456..003793e5 100644
Binary files a/png/mega-nz.png and b/png/mega-nz.png differ
diff --git a/png/meilisearch.png b/png/meilisearch.png
new file mode 100644
index 00000000..24493116
Binary files /dev/null and b/png/meilisearch.png differ
diff --git a/png/memories-light.png b/png/memories-light.png
new file mode 100644
index 00000000..1197fd17
Binary files /dev/null and b/png/memories-light.png differ
diff --git a/png/memories.png b/png/memories.png
new file mode 100644
index 00000000..d697a5f5
Binary files /dev/null and b/png/memories.png differ
diff --git a/png/memos.png b/png/memos.png
deleted file mode 100644
index a48b6214..00000000
Binary files a/png/memos.png and /dev/null differ
diff --git a/png/mempool.png b/png/mempool.png
deleted file mode 100644
index 80066021..00000000
Binary files a/png/mempool.png and /dev/null differ
diff --git a/png/meraki.png b/png/meraki.png
index a62baa16..e582eb7e 100644
Binary files a/png/meraki.png and b/png/meraki.png differ
diff --git a/png/mercusys.png b/png/mercusys.png
index 10698725..77ec2b4f 100644
Binary files a/png/mercusys.png and b/png/mercusys.png differ
diff --git a/png/mergeable-dark.png b/png/mergeable-dark.png
new file mode 100644
index 00000000..2db2efb6
Binary files /dev/null and b/png/mergeable-dark.png differ
diff --git a/png/mergeable.png b/png/mergeable.png
new file mode 100644
index 00000000..446a2af4
Binary files /dev/null and b/png/mergeable.png differ
diff --git a/png/meshcentral.png b/png/meshcentral.png
deleted file mode 100644
index 0c3a7a37..00000000
Binary files a/png/meshcentral.png and /dev/null differ
diff --git a/png/meshping-light.png b/png/meshping-light.png
new file mode 100644
index 00000000..1c897cba
Binary files /dev/null and b/png/meshping-light.png differ
diff --git a/png/meshping.png b/png/meshping.png
new file mode 100644
index 00000000..f1a5819f
Binary files /dev/null and b/png/meshping.png differ
diff --git a/png/meshtastic.png b/png/meshtastic.png
index e5b2f40e..80c4c831 100644
Binary files a/png/meshtastic.png and b/png/meshtastic.png differ
diff --git a/png/meta.png b/png/meta.png
index 7219e5c1..62807125 100644
Binary files a/png/meta.png and b/png/meta.png differ
diff --git a/png/metabase.png b/png/metabase.png
index 8249656f..3f3496b9 100644
Binary files a/png/metabase.png and b/png/metabase.png differ
diff --git a/png/metube.png b/png/metube.png
index af28c27e..baf30d20 100644
Binary files a/png/metube.png and b/png/metube.png differ
diff --git a/png/microbin.png b/png/microbin.png
deleted file mode 100644
index 83852035..00000000
Binary files a/png/microbin.png and /dev/null differ
diff --git a/png/microsoft-365-admin-center.png b/png/microsoft-365-admin-center.png
new file mode 100644
index 00000000..e0809491
Binary files /dev/null and b/png/microsoft-365-admin-center.png differ
diff --git a/png/microsoft-365.png b/png/microsoft-365.png
new file mode 100644
index 00000000..62a0f06b
Binary files /dev/null and b/png/microsoft-365.png differ
diff --git a/png/microsoft-access.png b/png/microsoft-access.png
new file mode 100644
index 00000000..a6a76a1b
Binary files /dev/null and b/png/microsoft-access.png differ
diff --git a/png/microsoft-azure.png b/png/microsoft-azure.png
index 717154f9..3a1e8974 100644
Binary files a/png/microsoft-azure.png and b/png/microsoft-azure.png differ
diff --git a/png/microsoft-bing.png b/png/microsoft-bing.png
new file mode 100644
index 00000000..e71794df
Binary files /dev/null and b/png/microsoft-bing.png differ
diff --git a/png/microsoft-copilot.png b/png/microsoft-copilot.png
index e4d48a33..3b79b4ca 100644
Binary files a/png/microsoft-copilot.png and b/png/microsoft-copilot.png differ
diff --git a/png/microsoft-edge.png b/png/microsoft-edge.png
new file mode 100644
index 00000000..fc8429db
Binary files /dev/null and b/png/microsoft-edge.png differ
diff --git a/png/microsoft-excel.png b/png/microsoft-excel.png
new file mode 100644
index 00000000..4e8e2ad5
Binary files /dev/null and b/png/microsoft-excel.png differ
diff --git a/png/microsoft-exchange.png b/png/microsoft-exchange.png
index ea5c5cdf..7c69f465 100644
Binary files a/png/microsoft-exchange.png and b/png/microsoft-exchange.png differ
diff --git a/png/microsoft-office.png b/png/microsoft-office.png
index 33516d92..0d77c8f2 100644
Binary files a/png/microsoft-office.png and b/png/microsoft-office.png differ
diff --git a/png/microsoft-onedrive.png b/png/microsoft-onedrive.png
new file mode 100644
index 00000000..6186ca74
Binary files /dev/null and b/png/microsoft-onedrive.png differ
diff --git a/png/microsoft-onenote.png b/png/microsoft-onenote.png
new file mode 100644
index 00000000..71297e88
Binary files /dev/null and b/png/microsoft-onenote.png differ
diff --git a/png/microsoft-outlook.png b/png/microsoft-outlook.png
new file mode 100644
index 00000000..8f11d3bc
Binary files /dev/null and b/png/microsoft-outlook.png differ
diff --git a/png/microsoft-powerpoint.png b/png/microsoft-powerpoint.png
new file mode 100644
index 00000000..67512464
Binary files /dev/null and b/png/microsoft-powerpoint.png differ
diff --git a/png/microsoft-sharepoint.png b/png/microsoft-sharepoint.png
index d0090008..c6271aae 100644
Binary files a/png/microsoft-sharepoint.png and b/png/microsoft-sharepoint.png differ
diff --git a/png/microsoft-sql-server-light.png b/png/microsoft-sql-server-light.png
new file mode 100644
index 00000000..c789c687
Binary files /dev/null and b/png/microsoft-sql-server-light.png differ
diff --git a/png/microsoft-sql-server.png b/png/microsoft-sql-server.png
index a8d38af5..ce2a4724 100644
Binary files a/png/microsoft-sql-server.png and b/png/microsoft-sql-server.png differ
diff --git a/png/microsoft-teams.png b/png/microsoft-teams.png
index bbc69d95..330190dd 100644
Binary files a/png/microsoft-teams.png and b/png/microsoft-teams.png differ
diff --git a/png/microsoft-to-do.png b/png/microsoft-to-do.png
new file mode 100644
index 00000000..ab6e374f
Binary files /dev/null and b/png/microsoft-to-do.png differ
diff --git a/png/microsoft-todo.png b/png/microsoft-todo.png
deleted file mode 100644
index 3455bf22..00000000
Binary files a/png/microsoft-todo.png and /dev/null differ
diff --git a/png/microsoft-windows.png b/png/microsoft-windows.png
new file mode 100644
index 00000000..78d65586
Binary files /dev/null and b/png/microsoft-windows.png differ
diff --git a/png/microsoft-word.png b/png/microsoft-word.png
new file mode 100644
index 00000000..8878f2e0
Binary files /dev/null and b/png/microsoft-word.png differ
diff --git a/png/microsoft.png b/png/microsoft.png
index 80074d90..7c07ab3d 100644
Binary files a/png/microsoft.png and b/png/microsoft.png differ
diff --git a/png/microsoft365-admin-center.png b/png/microsoft365-admin-center.png
deleted file mode 100644
index 7a3c44fc..00000000
Binary files a/png/microsoft365-admin-center.png and /dev/null differ
diff --git a/png/midjourney-light.png b/png/midjourney-light.png
deleted file mode 100644
index 94159e85..00000000
Binary files a/png/midjourney-light.png and /dev/null differ
diff --git a/png/midjourney.png b/png/midjourney.png
deleted file mode 100644
index ca6c7cdf..00000000
Binary files a/png/midjourney.png and /dev/null differ
diff --git a/png/mikrotik-light.png b/png/mikrotik-light.png
new file mode 100644
index 00000000..71df894c
Binary files /dev/null and b/png/mikrotik-light.png differ
diff --git a/png/mikrotik.png b/png/mikrotik.png
index e550ade1..6f7d1abe 100644
Binary files a/png/mikrotik.png and b/png/mikrotik.png differ
diff --git a/png/minecraft.png b/png/minecraft.png
index 196cf16d..7ae2bb64 100644
Binary files a/png/minecraft.png and b/png/minecraft.png differ
diff --git a/png/mineos.png b/png/mineos.png
deleted file mode 100644
index e6d343d8..00000000
Binary files a/png/mineos.png and /dev/null differ
diff --git a/png/miniflux-light.png b/png/miniflux-light.png
index a19be00b..dfb05dc8 100644
Binary files a/png/miniflux-light.png and b/png/miniflux-light.png differ
diff --git a/png/miniflux.png b/png/miniflux.png
index 3cfa9fd1..4af00d9a 100644
Binary files a/png/miniflux.png and b/png/miniflux.png differ
diff --git a/png/minimserver.png b/png/minimserver.png
deleted file mode 100644
index c9b72c17..00000000
Binary files a/png/minimserver.png and /dev/null differ
diff --git a/png/minio-light.png b/png/minio-light.png
index 10bcb35e..12e26d34 100644
Binary files a/png/minio-light.png and b/png/minio-light.png differ
diff --git a/png/minio.png b/png/minio.png
index 902099fd..c294cee4 100644
Binary files a/png/minio.png and b/png/minio.png differ
diff --git a/png/misp.png b/png/misp.png
deleted file mode 100644
index 3752c959..00000000
Binary files a/png/misp.png and /dev/null differ
diff --git a/png/misskey-light.png b/png/misskey-light.png
new file mode 100644
index 00000000..bdf139aa
Binary files /dev/null and b/png/misskey-light.png differ
diff --git a/png/misskey.png b/png/misskey.png
new file mode 100644
index 00000000..d71a49fe
Binary files /dev/null and b/png/misskey.png differ
diff --git a/png/mitra.png b/png/mitra.png
new file mode 100644
index 00000000..f3cfc7d6
Binary files /dev/null and b/png/mitra.png differ
diff --git a/png/mixpost.png b/png/mixpost.png
new file mode 100644
index 00000000..6ae5accd
Binary files /dev/null and b/png/mixpost.png differ
diff --git a/png/mkdocs-light.png b/png/mkdocs-light.png
new file mode 100644
index 00000000..aedb3357
Binary files /dev/null and b/png/mkdocs-light.png differ
diff --git a/png/mkdocs.png b/png/mkdocs.png
index 8ad061e3..06f7927a 100644
Binary files a/png/mkdocs.png and b/png/mkdocs.png differ
diff --git a/png/mkvtoolnix.png b/png/mkvtoolnix.png
deleted file mode 100644
index e74cce7f..00000000
Binary files a/png/mkvtoolnix.png and /dev/null differ
diff --git a/png/mobaxterm.png b/png/mobaxterm.png
deleted file mode 100644
index 9da4040e..00000000
Binary files a/png/mobaxterm.png and /dev/null differ
diff --git a/png/mobilizon.png b/png/mobilizon.png
new file mode 100644
index 00000000..b7bd19f1
Binary files /dev/null and b/png/mobilizon.png differ
diff --git a/png/mobotix-light.png b/png/mobotix-light.png
new file mode 100644
index 00000000..34aed9ff
Binary files /dev/null and b/png/mobotix-light.png differ
diff --git a/png/mobotix.png b/png/mobotix.png
index eb57bd50..cd0500dc 100644
Binary files a/png/mobotix.png and b/png/mobotix.png differ
diff --git a/png/modrinth.png b/png/modrinth.png
index b9064ea7..1b7ea9bc 100644
Binary files a/png/modrinth.png and b/png/modrinth.png differ
diff --git a/png/mojeek.png b/png/mojeek.png
index 71be2516..aee52d01 100644
Binary files a/png/mojeek.png and b/png/mojeek.png differ
diff --git a/png/molecule.png b/png/molecule.png
deleted file mode 100644
index 39578483..00000000
Binary files a/png/molecule.png and /dev/null differ
diff --git a/png/monero.png b/png/monero.png
index 1b9d76a2..f31eed10 100644
Binary files a/png/monero.png and b/png/monero.png differ
diff --git a/png/mongodb.png b/png/mongodb.png
index ad580016..10d8565d 100644
Binary files a/png/mongodb.png and b/png/mongodb.png differ
diff --git a/png/monica-light.png b/png/monica-light.png
new file mode 100644
index 00000000..4cc7ab5f
Binary files /dev/null and b/png/monica-light.png differ
diff --git a/png/monica.png b/png/monica.png
index 7b69f609..1dc40ff6 100644
Binary files a/png/monica.png and b/png/monica.png differ
diff --git a/png/monit.png b/png/monit.png
deleted file mode 100644
index 1aa76585..00000000
Binary files a/png/monit.png and /dev/null differ
diff --git a/png/moodle-light.png b/png/moodle-light.png
new file mode 100644
index 00000000..8376a9fe
Binary files /dev/null and b/png/moodle-light.png differ
diff --git a/png/moodle.png b/png/moodle.png
index b747f288..b40ae78f 100644
Binary files a/png/moodle.png and b/png/moodle.png differ
diff --git a/png/morphos.png b/png/morphos.png
new file mode 100644
index 00000000..7ff3868b
Binary files /dev/null and b/png/morphos.png differ
diff --git a/png/mosquitto.png b/png/mosquitto.png
new file mode 100644
index 00000000..8e7de2b6
Binary files /dev/null and b/png/mosquitto.png differ
diff --git a/png/motioneye-dark.png b/png/motioneye-dark.png
new file mode 100644
index 00000000..5b6520ce
Binary files /dev/null and b/png/motioneye-dark.png differ
diff --git a/png/motioneye.png b/png/motioneye.png
index c80c85ff..06afaade 100644
Binary files a/png/motioneye.png and b/png/motioneye.png differ
diff --git a/png/mpm.png b/png/mpm.png
deleted file mode 100644
index e56bd83d..00000000
Binary files a/png/mpm.png and /dev/null differ
diff --git a/png/mqtt.png b/png/mqtt.png
index ac703e91..73a6908d 100644
Binary files a/png/mqtt.png and b/png/mqtt.png differ
diff --git a/png/mstream.png b/png/mstream.png
index 27e46f1b..90263b09 100644
Binary files a/png/mstream.png and b/png/mstream.png differ
diff --git a/png/mullvad-browser.png b/png/mullvad-browser.png
index dafb3301..b9b5b586 100644
Binary files a/png/mullvad-browser.png and b/png/mullvad-browser.png differ
diff --git a/png/mullvad-vpn.png b/png/mullvad-vpn.png
new file mode 100644
index 00000000..5b0a168f
Binary files /dev/null and b/png/mullvad-vpn.png differ
diff --git a/png/mullvad.png b/png/mullvad.png
index ea3a0b0d..c9f36fbe 100644
Binary files a/png/mullvad.png and b/png/mullvad.png differ
diff --git a/png/multi-scrobbler.png b/png/multi-scrobbler.png
index aa9ed2cd..bbec9278 100644
Binary files a/png/multi-scrobbler.png and b/png/multi-scrobbler.png differ
diff --git a/png/mumble-light.png b/png/mumble-light.png
new file mode 100644
index 00000000..5e28da20
Binary files /dev/null and b/png/mumble-light.png differ
diff --git a/png/mumble.png b/png/mumble.png
index 7aa08dab..20754455 100644
Binary files a/png/mumble.png and b/png/mumble.png differ
diff --git a/png/music-assistant-light.png b/png/music-assistant-light.png
new file mode 100644
index 00000000..e3d0371e
Binary files /dev/null and b/png/music-assistant-light.png differ
diff --git a/png/music-assistant.png b/png/music-assistant.png
new file mode 100644
index 00000000..9d275037
Binary files /dev/null and b/png/music-assistant.png differ
diff --git a/png/musicbrainz.png b/png/musicbrainz.png
index 91f3eedb..55155a96 100644
Binary files a/png/musicbrainz.png and b/png/musicbrainz.png differ
diff --git a/png/myheats-light.png b/png/myheats-light.png
new file mode 100644
index 00000000..2bb3d428
Binary files /dev/null and b/png/myheats-light.png differ
diff --git a/png/myheats.png b/png/myheats.png
new file mode 100644
index 00000000..48b61b73
Binary files /dev/null and b/png/myheats.png differ
diff --git a/png/mylar.png b/png/mylar.png
deleted file mode 100644
index b0a391ef..00000000
Binary files a/png/mylar.png and /dev/null differ
diff --git a/png/myspeed.png b/png/myspeed.png
index 38cc2059..d565e180 100644
Binary files a/png/myspeed.png and b/png/myspeed.png differ
diff --git a/png/mysql.png b/png/mysql.png
index 9b6b3e4f..64313adf 100644
Binary files a/png/mysql.png and b/png/mysql.png differ
diff --git a/png/n8n.png b/png/n8n.png
index afa09f66..6e0c23bf 100644
Binary files a/png/n8n.png and b/png/n8n.png differ
diff --git a/png/nagios.png b/png/nagios.png
index f599bddc..f6e4d25a 100644
Binary files a/png/nagios.png and b/png/nagios.png differ
diff --git a/png/nasa.png b/png/nasa.png
new file mode 100644
index 00000000..3c2ed298
Binary files /dev/null and b/png/nasa.png differ
diff --git a/png/nautical-backup.png b/png/nautical-backup.png
deleted file mode 100644
index 062ffc09..00000000
Binary files a/png/nautical-backup.png and /dev/null differ
diff --git a/png/navidrome-light.png b/png/navidrome-light.png
new file mode 100644
index 00000000..4c41a81c
Binary files /dev/null and b/png/navidrome-light.png differ
diff --git a/png/navidrome.png b/png/navidrome.png
index 72b40bbb..9cef38c9 100644
Binary files a/png/navidrome.png and b/png/navidrome.png differ
diff --git a/png/ncore.png b/png/ncore.png
deleted file mode 100644
index 010b1c5c..00000000
Binary files a/png/ncore.png and /dev/null differ
diff --git a/png/neko-light.png b/png/neko-light.png
index 16605e74..35c022e1 100644
Binary files a/png/neko-light.png and b/png/neko-light.png differ
diff --git a/png/neko.png b/png/neko.png
index 0cad7e97..c40bc35e 100644
Binary files a/png/neko.png and b/png/neko.png differ
diff --git a/png/neo4j.png b/png/neo4j.png
index aefa1e6c..7936b913 100644
Binary files a/png/neo4j.png and b/png/neo4j.png differ
diff --git a/png/neocities.png b/png/neocities.png
index 8023dcaf..a5c282a9 100644
Binary files a/png/neocities.png and b/png/neocities.png differ
diff --git a/png/neodb.png b/png/neodb.png
new file mode 100644
index 00000000..0acb7008
Binary files /dev/null and b/png/neodb.png differ
diff --git a/png/neonlink.png b/png/neonlink.png
index 6146324e..e91ada78 100644
Binary files a/png/neonlink.png and b/png/neonlink.png differ
diff --git a/png/netalertx-light.png b/png/netalertx-light.png
new file mode 100644
index 00000000..168bf714
Binary files /dev/null and b/png/netalertx-light.png differ
diff --git a/png/netalertx.png b/png/netalertx.png
index e7be926c..4009f13f 100644
Binary files a/png/netalertx.png and b/png/netalertx.png differ
diff --git a/png/netapp-light.png b/png/netapp-light.png
index 48fc6e5b..cfdfdc24 100644
Binary files a/png/netapp-light.png and b/png/netapp-light.png differ
diff --git a/png/netapp.png b/png/netapp.png
index 59ccb2e7..4b8232fe 100644
Binary files a/png/netapp.png and b/png/netapp.png differ
diff --git a/png/netatmo.png b/png/netatmo.png
index d5c524e3..25b16ed8 100644
Binary files a/png/netatmo.png and b/png/netatmo.png differ
diff --git a/png/netbird.png b/png/netbird.png
index 262b0552..cb27c152 100644
Binary files a/png/netbird.png and b/png/netbird.png differ
diff --git a/png/netboot.png b/png/netboot.png
index 0c334374..cf726e8b 100644
Binary files a/png/netboot.png and b/png/netboot.png differ
diff --git a/png/netbox.png b/png/netbox.png
index f395fe29..e3926c32 100644
Binary files a/png/netbox.png and b/png/netbox.png differ
diff --git a/png/netcam-studio.png b/png/netcam-studio.png
deleted file mode 100644
index 83f15e1c..00000000
Binary files a/png/netcam-studio.png and /dev/null differ
diff --git a/png/netdata.png b/png/netdata.png
index 80078cee..5f2404f4 100644
Binary files a/png/netdata.png and b/png/netdata.png differ
diff --git a/png/netflix.png b/png/netflix.png
index 304a8332..66708b0e 100644
Binary files a/png/netflix.png and b/png/netflix.png differ
diff --git a/png/netgear-light.png b/png/netgear-light.png
new file mode 100644
index 00000000..ed7d2004
Binary files /dev/null and b/png/netgear-light.png differ
diff --git a/png/netgear-orbi.png b/png/netgear-orbi.png
deleted file mode 100644
index f5cf205d..00000000
Binary files a/png/netgear-orbi.png and /dev/null differ
diff --git a/png/netgear.png b/png/netgear.png
index d42d2fda..5ee50dd6 100644
Binary files a/png/netgear.png and b/png/netgear.png differ
diff --git a/png/netlify.png b/png/netlify.png
index abed3953..d3121f1a 100644
Binary files a/png/netlify.png and b/png/netlify.png differ
diff --git a/png/netmaker.png b/png/netmaker.png
deleted file mode 100644
index 06dfb975..00000000
Binary files a/png/netmaker.png and /dev/null differ
diff --git a/png/netsurf-light.png b/png/netsurf-light.png
new file mode 100644
index 00000000..1dc74d2a
Binary files /dev/null and b/png/netsurf-light.png differ
diff --git a/png/netsurf.png b/png/netsurf.png
index 1c438e8e..48efd85e 100644
Binary files a/png/netsurf.png and b/png/netsurf.png differ
diff --git a/png/network-ups-tools.png b/png/network-ups-tools.png
old mode 100755
new mode 100644
index ebdcd2cd..0a6cebe1
Binary files a/png/network-ups-tools.png and b/png/network-ups-tools.png differ
diff --git a/png/network-weathermap.png b/png/network-weathermap.png
deleted file mode 100644
index 401b873c..00000000
Binary files a/png/network-weathermap.png and /dev/null differ
diff --git a/png/newegg.png b/png/newegg.png
index 5aafca76..395f4fa3 100644
Binary files a/png/newegg.png and b/png/newegg.png differ
diff --git a/png/newsblur.png b/png/newsblur.png
index 49234c0d..4207a43b 100644
Binary files a/png/newsblur.png and b/png/newsblur.png differ
diff --git a/png/nextcloud-blue.png b/png/nextcloud-blue.png
index 98b0d904..b4c2777a 100644
Binary files a/png/nextcloud-blue.png and b/png/nextcloud-blue.png differ
diff --git a/png/nextcloud-calendar.png b/png/nextcloud-calendar.png
index eb8ab62a..4a009644 100644
Binary files a/png/nextcloud-calendar.png and b/png/nextcloud-calendar.png differ
diff --git a/png/nextcloud-contacts.png b/png/nextcloud-contacts.png
index 574fc04d..518d3c87 100644
Binary files a/png/nextcloud-contacts.png and b/png/nextcloud-contacts.png differ
diff --git a/png/nextcloud-cookbook.png b/png/nextcloud-cookbook.png
index cd320f35..1cbefc9c 100644
Binary files a/png/nextcloud-cookbook.png and b/png/nextcloud-cookbook.png differ
diff --git a/png/nextcloud-cospend.png b/png/nextcloud-cospend.png
index e777d6b5..124e3d50 100644
Binary files a/png/nextcloud-cospend.png and b/png/nextcloud-cospend.png differ
diff --git a/png/nextcloud-deck.png b/png/nextcloud-deck.png
index d0febe2f..b50dfc97 100644
Binary files a/png/nextcloud-deck.png and b/png/nextcloud-deck.png differ
diff --git a/png/nextcloud-files.png b/png/nextcloud-files.png
index 163d5bc4..63f48e53 100644
Binary files a/png/nextcloud-files.png and b/png/nextcloud-files.png differ
diff --git a/png/nextcloud-ncdownloader.png b/png/nextcloud-ncdownloader.png
index b8f76249..71c08623 100644
Binary files a/png/nextcloud-ncdownloader.png and b/png/nextcloud-ncdownloader.png differ
diff --git a/png/nextcloud-news.png b/png/nextcloud-news.png
index ab71cda1..7bc95962 100644
Binary files a/png/nextcloud-news.png and b/png/nextcloud-news.png differ
diff --git a/png/nextcloud-notes.png b/png/nextcloud-notes.png
index 66e3c048..2ec51b8e 100644
Binary files a/png/nextcloud-notes.png and b/png/nextcloud-notes.png differ
diff --git a/png/nextcloud-photos.png b/png/nextcloud-photos.png
index 8b04309a..5ad44819 100644
Binary files a/png/nextcloud-photos.png and b/png/nextcloud-photos.png differ
diff --git a/png/nextcloud-social.png b/png/nextcloud-social.png
new file mode 100644
index 00000000..ce7036b2
Binary files /dev/null and b/png/nextcloud-social.png differ
diff --git a/png/nextcloud-tables.png b/png/nextcloud-tables.png
new file mode 100644
index 00000000..df928d0e
Binary files /dev/null and b/png/nextcloud-tables.png differ
diff --git a/png/nextcloud-talk.png b/png/nextcloud-talk.png
deleted file mode 100644
index 8456e27c..00000000
Binary files a/png/nextcloud-talk.png and /dev/null differ
diff --git a/png/nextcloud-tasks.png b/png/nextcloud-tasks.png
index 177204c1..86e1c40e 100644
Binary files a/png/nextcloud-tasks.png and b/png/nextcloud-tasks.png differ
diff --git a/png/nextcloud-timemanager.png b/png/nextcloud-timemanager.png
index 25fe3fab..76876010 100644
Binary files a/png/nextcloud-timemanager.png and b/png/nextcloud-timemanager.png differ
diff --git a/png/nextcloud-white.png b/png/nextcloud-white.png
index ea63e338..83ab62b4 100644
Binary files a/png/nextcloud-white.png and b/png/nextcloud-white.png differ
diff --git a/png/nextcloud.png b/png/nextcloud.png
index 7adc9c83..70987521 100644
Binary files a/png/nextcloud.png and b/png/nextcloud.png differ
diff --git a/png/nextcloudpi.png b/png/nextcloudpi.png
new file mode 100644
index 00000000..28099c3f
Binary files /dev/null and b/png/nextcloudpi.png differ
diff --git a/png/nextdns.png b/png/nextdns.png
index a3db99c5..d7be7496 100644
Binary files a/png/nextdns.png and b/png/nextdns.png differ
diff --git a/png/nexterm.png b/png/nexterm.png
new file mode 100644
index 00000000..0974d0de
Binary files /dev/null and b/png/nexterm.png differ
diff --git a/png/nextjs-light.png b/png/nextjs-light.png
new file mode 100644
index 00000000..6fd3b79d
Binary files /dev/null and b/png/nextjs-light.png differ
diff --git a/png/nextjs.png b/png/nextjs.png
index fdc26757..00770f7e 100644
Binary files a/png/nextjs.png and b/png/nextjs.png differ
diff --git a/png/nextpvr.png b/png/nextpvr.png
deleted file mode 100644
index 7afc497a..00000000
Binary files a/png/nextpvr.png and /dev/null differ
diff --git a/png/nginx-proxy-manager.png b/png/nginx-proxy-manager.png
index 95dad95e..df445851 100644
Binary files a/png/nginx-proxy-manager.png and b/png/nginx-proxy-manager.png differ
diff --git a/png/nginx.png b/png/nginx.png
index 639fe197..9a2f06d7 100644
Binary files a/png/nginx.png and b/png/nginx.png differ
diff --git a/png/nicotine-plus.png b/png/nicotine-plus.png
index b3999160..79049d64 100644
Binary files a/png/nicotine-plus.png and b/png/nicotine-plus.png differ
diff --git a/png/nightscout-light.png b/png/nightscout-light.png
index a2ae9222..bdd3e0f2 100644
Binary files a/png/nightscout-light.png and b/png/nightscout-light.png differ
diff --git a/png/nightscout.png b/png/nightscout.png
index 8951e599..b4b4217f 100644
Binary files a/png/nightscout.png and b/png/nightscout.png differ
diff --git a/png/nintendo-switch.png b/png/nintendo-switch.png
new file mode 100644
index 00000000..feed58be
Binary files /dev/null and b/png/nintendo-switch.png differ
diff --git a/png/nitter.png b/png/nitter.png
index c04a90e3..bdbcc3ff 100644
Binary files a/png/nitter.png and b/png/nitter.png differ
diff --git a/png/nixos.png b/png/nixos.png
new file mode 100644
index 00000000..2ab507c0
Binary files /dev/null and b/png/nixos.png differ
diff --git a/png/nocobase-light.png b/png/nocobase-light.png
deleted file mode 100644
index cababa8c..00000000
Binary files a/png/nocobase-light.png and /dev/null differ
diff --git a/png/nocobase.png b/png/nocobase.png
deleted file mode 100644
index 1ae46135..00000000
Binary files a/png/nocobase.png and /dev/null differ
diff --git a/png/nocodb.png b/png/nocodb.png
index 62fe4210..2960f561 100644
Binary files a/png/nocodb.png and b/png/nocodb.png differ
diff --git a/png/node-red.png b/png/node-red.png
index 3b77a8ad..b78c9cd4 100644
Binary files a/png/node-red.png and b/png/node-red.png differ
diff --git a/png/nodebb.png b/png/nodebb.png
new file mode 100644
index 00000000..3bbf6669
Binary files /dev/null and b/png/nodebb.png differ
diff --git a/png/nodejs-alt.png b/png/nodejs-alt.png
index 2462d310..69c491b1 100644
Binary files a/png/nodejs-alt.png and b/png/nodejs-alt.png differ
diff --git a/png/nodejs.png b/png/nodejs.png
index e8a2c343..897bf87d 100644
Binary files a/png/nodejs.png and b/png/nodejs.png differ
diff --git a/png/nomad.png b/png/nomad.png
index 37b289de..7cf6a001 100644
Binary files a/png/nomad.png and b/png/nomad.png differ
diff --git a/png/nomie.png b/png/nomie.png
index 0c7abf6e..a4def597 100644
Binary files a/png/nomie.png and b/png/nomie.png differ
diff --git a/png/nordvpn.png b/png/nordvpn.png
index 245a96b0..89e44bcc 100644
Binary files a/png/nordvpn.png and b/png/nordvpn.png differ
diff --git a/png/note-mark.png b/png/note-mark.png
new file mode 100644
index 00000000..cfc4c975
Binary files /dev/null and b/png/note-mark.png differ
diff --git a/png/notesnook-light.png b/png/notesnook-light.png
index c0d10d1c..b3a716af 100644
Binary files a/png/notesnook-light.png and b/png/notesnook-light.png differ
diff --git a/png/notesnook.png b/png/notesnook.png
index 977ee27c..f17e84f8 100644
Binary files a/png/notesnook.png and b/png/notesnook.png differ
diff --git a/png/notifiarr.png b/png/notifiarr.png
deleted file mode 100644
index ffdccd3b..00000000
Binary files a/png/notifiarr.png and /dev/null differ
diff --git a/png/notion-light.png b/png/notion-light.png
index a447c5a6..5045f839 100644
Binary files a/png/notion-light.png and b/png/notion-light.png differ
diff --git a/png/notion.png b/png/notion.png
index 84f319be..43498f6e 100644
Binary files a/png/notion.png and b/png/notion.png differ
diff --git a/png/nowshowing.png b/png/nowshowing.png
deleted file mode 100644
index 4a75e2dd..00000000
Binary files a/png/nowshowing.png and /dev/null differ
diff --git a/png/ntfy-light.png b/png/ntfy-light.png
deleted file mode 100644
index 9d6ddc56..00000000
Binary files a/png/ntfy-light.png and /dev/null differ
diff --git a/png/ntfy.png b/png/ntfy.png
index fd7760af..97ed31c0 100644
Binary files a/png/ntfy.png and b/png/ntfy.png differ
diff --git a/png/ntop.png b/png/ntop.png
deleted file mode 100644
index bd4c64d0..00000000
Binary files a/png/ntop.png and /dev/null differ
diff --git a/png/ntopng.png b/png/ntopng.png
deleted file mode 100644
index c7bc8a50..00000000
Binary files a/png/ntopng.png and /dev/null differ
diff --git a/png/nut.png b/png/nut.png
old mode 100755
new mode 100644
index ebdcd2cd..7f718e62
Binary files a/png/nut.png and b/png/nut.png differ
diff --git a/png/nvidia.png b/png/nvidia.png
new file mode 100644
index 00000000..00efea0d
Binary files /dev/null and b/png/nvidia.png differ
diff --git a/png/nxfilter.png b/png/nxfilter.png
deleted file mode 100644
index 457ed9d7..00000000
Binary files a/png/nxfilter.png and /dev/null differ
diff --git a/png/nxlog.png b/png/nxlog.png
deleted file mode 100644
index f6894416..00000000
Binary files a/png/nxlog.png and /dev/null differ
diff --git a/png/nzbget.png b/png/nzbget.png
deleted file mode 100644
index faedd800..00000000
Binary files a/png/nzbget.png and /dev/null differ
diff --git a/png/nzbhydra.png b/png/nzbhydra.png
deleted file mode 100644
index 3ae78c6b..00000000
Binary files a/png/nzbhydra.png and /dev/null differ
diff --git a/png/nzbhydra2-light.png b/png/nzbhydra2-light.png
index b9a7c5ae..7e6ed4c8 100644
Binary files a/png/nzbhydra2-light.png and b/png/nzbhydra2-light.png differ
diff --git a/png/nzbhydra2.png b/png/nzbhydra2.png
index 6dcb263f..172c55a5 100644
Binary files a/png/nzbhydra2.png and b/png/nzbhydra2.png differ
diff --git a/png/obico.png b/png/obico.png
index 2064a46b..56abf1a3 100644
Binary files a/png/obico.png and b/png/obico.png differ
diff --git a/png/obitalk.png b/png/obitalk.png
deleted file mode 100644
index 787061ed..00000000
Binary files a/png/obitalk.png and /dev/null differ
diff --git a/png/observium.png b/png/observium.png
deleted file mode 100644
index cb426d95..00000000
Binary files a/png/observium.png and /dev/null differ
diff --git a/png/observo-ai.png b/png/observo-ai.png
deleted file mode 100644
index 8e7bafef..00000000
Binary files a/png/observo-ai.png and /dev/null differ
diff --git a/png/obsidian.png b/png/obsidian.png
index 6ac8fac1..37468bdf 100644
Binary files a/png/obsidian.png and b/png/obsidian.png differ
diff --git a/png/obtainium.png b/png/obtainium.png
new file mode 100644
index 00000000..b7fe6fa7
Binary files /dev/null and b/png/obtainium.png differ
diff --git a/png/octoeverywhere.png b/png/octoeverywhere.png
deleted file mode 100644
index 717cdecc..00000000
Binary files a/png/octoeverywhere.png and /dev/null differ
diff --git a/png/octoprint.png b/png/octoprint.png
index 623365fa..d7ccf93f 100644
Binary files a/png/octoprint.png and b/png/octoprint.png differ
diff --git a/png/oculus-light.png b/png/oculus-light.png
index 13ec079e..71fce1ca 100644
Binary files a/png/oculus-light.png and b/png/oculus-light.png differ
diff --git a/png/oculus.png b/png/oculus.png
index d9ce3a04..4dfd305c 100644
Binary files a/png/oculus.png and b/png/oculus.png differ
diff --git a/png/odoo.png b/png/odoo.png
index dc02b27c..50d02698 100644
Binary files a/png/odoo.png and b/png/odoo.png differ
diff --git a/png/office-365.png b/png/office-365.png
index b719ed30..f3c41e4e 100644
Binary files a/png/office-365.png and b/png/office-365.png differ
diff --git a/png/olivetin-light.png b/png/olivetin-light.png
new file mode 100644
index 00000000..2cd0cdfd
Binary files /dev/null and b/png/olivetin-light.png differ
diff --git a/png/olivetin.png b/png/olivetin.png
index 4ef39910..8aeafd38 100644
Binary files a/png/olivetin.png and b/png/olivetin.png differ
diff --git a/png/ollama.png b/png/ollama.png
index bc469071..f7525ddb 100644
Binary files a/png/ollama.png and b/png/ollama.png differ
diff --git a/png/omada.png b/png/omada.png
index 93ed26a1..6ae4ea58 100644
Binary files a/png/omada.png and b/png/omada.png differ
diff --git a/png/ombi.png b/png/ombi.png
index 50857c94..d034489c 100644
Binary files a/png/ombi.png and b/png/ombi.png differ
diff --git a/png/omnidb.png b/png/omnidb.png
index afa4d125..7e5ddd01 100644
Binary files a/png/omnidb.png and b/png/omnidb.png differ
diff --git a/png/omnivore.png b/png/omnivore.png
new file mode 100644
index 00000000..2b9bb628
Binary files /dev/null and b/png/omnivore.png differ
diff --git a/png/onedev-light.png b/png/onedev-light.png
index 5b79523f..4d6f0d36 100644
Binary files a/png/onedev-light.png and b/png/onedev-light.png differ
diff --git a/png/onedev.png b/png/onedev.png
index ea6fb045..d5d5cf8c 100644
Binary files a/png/onedev.png and b/png/onedev.png differ
diff --git a/png/oneuptime-light.png b/png/oneuptime-light.png
new file mode 100644
index 00000000..1c236156
Binary files /dev/null and b/png/oneuptime-light.png differ
diff --git a/png/oneuptime.png b/png/oneuptime.png
new file mode 100644
index 00000000..83bd0902
Binary files /dev/null and b/png/oneuptime.png differ
diff --git a/png/onlyoffice.png b/png/onlyoffice.png
index eba4f00c..6de4c135 100644
Binary files a/png/onlyoffice.png and b/png/onlyoffice.png differ
diff --git a/png/open-resume.png b/png/open-resume.png
index 3028c9b0..a9f2617b 100644
Binary files a/png/open-resume.png and b/png/open-resume.png differ
diff --git a/png/open-source-initiative.png b/png/open-source-initiative.png
new file mode 100644
index 00000000..92a35e16
Binary files /dev/null and b/png/open-source-initiative.png differ
diff --git a/png/open-webui-light.png b/png/open-webui-light.png
deleted file mode 100644
index 6afdd3ac..00000000
Binary files a/png/open-webui-light.png and /dev/null differ
diff --git a/png/open-webui.png b/png/open-webui.png
deleted file mode 100644
index 4ec052fe..00000000
Binary files a/png/open-webui.png and /dev/null differ
diff --git a/png/openai-light.png b/png/openai-light.png
index 65e7a58e..7eefbf1d 100644
Binary files a/png/openai-light.png and b/png/openai-light.png differ
diff --git a/png/openai.png b/png/openai.png
index bbff3092..f31043a8 100644
Binary files a/png/openai.png and b/png/openai.png differ
diff --git a/png/openchangelog-light.png b/png/openchangelog-light.png
new file mode 100644
index 00000000..54526190
Binary files /dev/null and b/png/openchangelog-light.png differ
diff --git a/png/openchangelog.png b/png/openchangelog.png
new file mode 100644
index 00000000..99e1f830
Binary files /dev/null and b/png/openchangelog.png differ
diff --git a/png/openeats-light.png b/png/openeats-light.png
new file mode 100644
index 00000000..16b0b26d
Binary files /dev/null and b/png/openeats-light.png differ
diff --git a/png/openeats.png b/png/openeats.png
index 30fb1867..0bef255d 100644
Binary files a/png/openeats.png and b/png/openeats.png differ
diff --git a/png/openemr-light.png b/png/openemr-light.png
new file mode 100644
index 00000000..ae7ee2bb
Binary files /dev/null and b/png/openemr-light.png differ
diff --git a/png/openemr.png b/png/openemr.png
new file mode 100644
index 00000000..e02c132b
Binary files /dev/null and b/png/openemr.png differ
diff --git a/png/opengarage.png b/png/opengarage.png
deleted file mode 100644
index 9f87cc3a..00000000
Binary files a/png/opengarage.png and /dev/null differ
diff --git a/png/opengist-light.png b/png/opengist-light.png
index 91a8dcf3..ff33e675 100644
Binary files a/png/opengist-light.png and b/png/opengist-light.png differ
diff --git a/png/opengist.png b/png/opengist.png
index daec6d22..413ae61e 100644
Binary files a/png/opengist.png and b/png/opengist.png differ
diff --git a/png/openhab.png b/png/openhab.png
index 35b278a5..107528bf 100644
Binary files a/png/openhab.png and b/png/openhab.png differ
diff --git a/png/openldap.png b/png/openldap.png
new file mode 100644
index 00000000..6186080a
Binary files /dev/null and b/png/openldap.png differ
diff --git a/png/openmaptiles.png b/png/openmaptiles.png
deleted file mode 100644
index 8756f5d8..00000000
Binary files a/png/openmaptiles.png and /dev/null differ
diff --git a/png/openmediavault.png b/png/openmediavault.png
index 707d4175..f13949d7 100644
Binary files a/png/openmediavault.png and b/png/openmediavault.png differ
diff --git a/png/openoffice.png b/png/openoffice.png
index f1b680e7..c8feb075 100644
Binary files a/png/openoffice.png and b/png/openoffice.png differ
diff --git a/png/openpanel-light.png b/png/openpanel-light.png
new file mode 100644
index 00000000..851839f9
Binary files /dev/null and b/png/openpanel-light.png differ
diff --git a/png/openpanel.png b/png/openpanel.png
new file mode 100644
index 00000000..cf7b31b7
Binary files /dev/null and b/png/openpanel.png differ
diff --git a/png/openproject.png b/png/openproject.png
index ad8bcb02..04e66c15 100644
Binary files a/png/openproject.png and b/png/openproject.png differ
diff --git a/png/openreads.png b/png/openreads.png
new file mode 100644
index 00000000..2a7d7462
Binary files /dev/null and b/png/openreads.png differ
diff --git a/png/opensearch.png b/png/opensearch.png
index dc3d0a2e..c2593df5 100644
Binary files a/png/opensearch.png and b/png/opensearch.png differ
diff --git a/png/openspeedtest.png b/png/openspeedtest.png
index 88800045..7db42644 100644
Binary files a/png/openspeedtest.png and b/png/openspeedtest.png differ
diff --git a/png/opensprinkler.png b/png/opensprinkler.png
deleted file mode 100644
index 551ab229..00000000
Binary files a/png/opensprinkler.png and /dev/null differ
diff --git a/png/openstack.png b/png/openstack.png
index cd463d62..154768b6 100644
Binary files a/png/openstack.png and b/png/openstack.png differ
diff --git a/png/openstreetmap.png b/png/openstreetmap.png
index dd46f68f..3e81b6e8 100644
Binary files a/png/openstreetmap.png and b/png/openstreetmap.png differ
diff --git a/png/opensuse.png b/png/opensuse.png
index 74a8148d..678ad280 100644
Binary files a/png/opensuse.png and b/png/opensuse.png differ
diff --git a/png/opentalk.png b/png/opentalk.png
new file mode 100644
index 00000000..f5ba40e3
Binary files /dev/null and b/png/opentalk.png differ
diff --git a/png/opentofu.png b/png/opentofu.png
new file mode 100644
index 00000000..b85d3567
Binary files /dev/null and b/png/opentofu.png differ
diff --git a/png/openvas.png b/png/openvas.png
index a3705fa9..e9d6850d 100644
Binary files a/png/openvas.png and b/png/openvas.png differ
diff --git a/png/openvpn.png b/png/openvpn.png
index f4efac59..5ba690f5 100644
Binary files a/png/openvpn.png and b/png/openvpn.png differ
diff --git a/png/openwrt.png b/png/openwrt.png
index 247ecc49..3700f1ff 100644
Binary files a/png/openwrt.png and b/png/openwrt.png differ
diff --git a/png/opera-beta.png b/png/opera-beta.png
deleted file mode 100644
index cf871683..00000000
Binary files a/png/opera-beta.png and /dev/null differ
diff --git a/png/opera-developer.png b/png/opera-developer.png
deleted file mode 100644
index 8d5eda58..00000000
Binary files a/png/opera-developer.png and /dev/null differ
diff --git a/png/opera-mini-beta.png b/png/opera-mini-beta.png
deleted file mode 100644
index c3fc28fa..00000000
Binary files a/png/opera-mini-beta.png and /dev/null differ
diff --git a/png/opera-mini.png b/png/opera-mini.png
deleted file mode 100644
index b59f8777..00000000
Binary files a/png/opera-mini.png and /dev/null differ
diff --git a/png/opera-neon.png b/png/opera-neon.png
deleted file mode 100644
index c53dff62..00000000
Binary files a/png/opera-neon.png and /dev/null differ
diff --git a/png/opera-touch.png b/png/opera-touch.png
index 75a06939..ecc9d9ae 100644
Binary files a/png/opera-touch.png and b/png/opera-touch.png differ
diff --git a/png/opera.png b/png/opera.png
index 01c03bbb..480e9ff1 100644
Binary files a/png/opera.png and b/png/opera.png differ
diff --git a/png/opnform.png b/png/opnform.png
new file mode 100644
index 00000000..4333a8ee
Binary files /dev/null and b/png/opnform.png differ
diff --git a/png/opnsense.png b/png/opnsense.png
index 18b295b0..ff5028b2 100644
Binary files a/png/opnsense.png and b/png/opnsense.png differ
diff --git a/png/oracle-cloud.png b/png/oracle-cloud.png
index c1d84a2a..9cac576c 100644
Binary files a/png/oracle-cloud.png and b/png/oracle-cloud.png differ
diff --git a/png/oracle.png b/png/oracle.png
index c1d84a2a..9cac576c 100644
Binary files a/png/oracle.png and b/png/oracle.png differ
diff --git a/png/orange.png b/png/orange.png
index 066dfa6c..f0f18960 100644
Binary files a/png/orange.png and b/png/orange.png differ
diff --git a/png/orcaslicer.png b/png/orcaslicer.png
deleted file mode 100644
index 2ae399e4..00000000
Binary files a/png/orcaslicer.png and /dev/null differ
diff --git a/png/organizr.png b/png/organizr.png
deleted file mode 100644
index a757ccd0..00000000
Binary files a/png/organizr.png and /dev/null differ
diff --git a/png/origin.png b/png/origin.png
index 2f49eaa9..8081bfc2 100644
Binary files a/png/origin.png and b/png/origin.png differ
diff --git a/png/oscarr-light.png b/png/oscarr-light.png
index 5f4d8be1..cd8cac39 100644
Binary files a/png/oscarr-light.png and b/png/oscarr-light.png differ
diff --git a/png/oscarr.png b/png/oscarr.png
index 8d1aa03c..2f6dbcc8 100644
Binary files a/png/oscarr.png and b/png/oscarr.png differ
diff --git a/png/osticket.png b/png/osticket.png
index 6a8499ba..4173c7a3 100644
Binary files a/png/osticket.png and b/png/osticket.png differ
diff --git a/png/outline-light.png b/png/outline-light.png
new file mode 100644
index 00000000..06b20df9
Binary files /dev/null and b/png/outline-light.png differ
diff --git a/png/outline.png b/png/outline.png
index 9800808f..187afc8e 100644
Binary files a/png/outline.png and b/png/outline.png differ
diff --git a/png/overclockers.png b/png/overclockers.png
deleted file mode 100644
index c7c84712..00000000
Binary files a/png/overclockers.png and /dev/null differ
diff --git a/png/overleaf.png b/png/overleaf.png
index 09df7052..cdcca434 100644
Binary files a/png/overleaf.png and b/png/overleaf.png differ
diff --git a/png/overseerr.png b/png/overseerr.png
index a847d270..2f4f1b58 100644
Binary files a/png/overseerr.png and b/png/overseerr.png differ
diff --git a/png/ovh.png b/png/ovh.png
index 40db686e..6fa4b2af 100644
Binary files a/png/ovh.png and b/png/ovh.png differ
diff --git a/png/ovirt-light.png b/png/ovirt-light.png
new file mode 100644
index 00000000..bba531f6
Binary files /dev/null and b/png/ovirt-light.png differ
diff --git a/png/ovirt.png b/png/ovirt.png
index 8a231ea6..ba4128f5 100644
Binary files a/png/ovirt.png and b/png/ovirt.png differ
diff --git a/png/owasp-zap.png b/png/owasp-zap.png
deleted file mode 100644
index c5b02f9d..00000000
Binary files a/png/owasp-zap.png and /dev/null differ
diff --git a/png/owncast.png b/png/owncast.png
new file mode 100644
index 00000000..b7b5b572
Binary files /dev/null and b/png/owncast.png differ
diff --git a/png/owncloud.png b/png/owncloud.png
index 2696558b..e9ff9bf1 100644
Binary files a/png/owncloud.png and b/png/owncloud.png differ
diff --git a/png/ownphotos-light.png b/png/ownphotos-light.png
deleted file mode 100644
index 033dd1a3..00000000
Binary files a/png/ownphotos-light.png and /dev/null differ
diff --git a/png/ownphotos.png b/png/ownphotos.png
deleted file mode 100644
index 988d5944..00000000
Binary files a/png/ownphotos.png and /dev/null differ
diff --git a/png/owntone.png b/png/owntone.png
index 79a09bd7..ae57fba8 100644
Binary files a/png/owntone.png and b/png/owntone.png differ
diff --git a/png/owntracks.png b/png/owntracks.png
index a1864fbe..0ed77307 100644
Binary files a/png/owntracks.png and b/png/owntracks.png differ
diff --git a/png/oxker-light.png b/png/oxker-light.png
new file mode 100644
index 00000000..82772975
Binary files /dev/null and b/png/oxker-light.png differ
diff --git a/png/oxker.png b/png/oxker.png
new file mode 100644
index 00000000..19130367
Binary files /dev/null and b/png/oxker.png differ
diff --git a/png/p1ib.png b/png/p1ib.png
index 92d4391a..0f555953 100644
Binary files a/png/p1ib.png and b/png/p1ib.png differ
diff --git a/png/pagerduty.png b/png/pagerduty.png
index fd7b44c5..532f612e 100644
Binary files a/png/pagerduty.png and b/png/pagerduty.png differ
diff --git a/png/pairdrop.png b/png/pairdrop.png
deleted file mode 100644
index 2f90a4a8..00000000
Binary files a/png/pairdrop.png and /dev/null differ
diff --git a/png/palemoon.png b/png/palemoon.png
index dc8828ac..7049c9e3 100644
Binary files a/png/palemoon.png and b/png/palemoon.png differ
diff --git a/png/palo-alto.png b/png/palo-alto.png
index 650ff047..12550d52 100644
Binary files a/png/palo-alto.png and b/png/palo-alto.png differ
diff --git a/png/paperless-ng.png b/png/paperless-ng.png
index ecb9283a..ec53cae1 100644
Binary files a/png/paperless-ng.png and b/png/paperless-ng.png differ
diff --git a/png/paperless-ngx.png b/png/paperless-ngx.png
index ecb9283a..eb2da354 100644
Binary files a/png/paperless-ngx.png and b/png/paperless-ngx.png differ
diff --git a/png/paperless.png b/png/paperless.png
index 5705d3c4..a40f795c 100644
Binary files a/png/paperless.png and b/png/paperless.png differ
diff --git a/png/papermark-light.png b/png/papermark-light.png
new file mode 100644
index 00000000..af2f6b1b
Binary files /dev/null and b/png/papermark-light.png differ
diff --git a/png/papermark.png b/png/papermark.png
new file mode 100644
index 00000000..1ad101b0
Binary files /dev/null and b/png/papermark.png differ
diff --git a/png/papermerge-light.png b/png/papermerge-light.png
new file mode 100644
index 00000000..3671cd85
Binary files /dev/null and b/png/papermerge-light.png differ
diff --git a/png/papermerge.png b/png/papermerge.png
index 1933a350..286a595e 100644
Binary files a/png/papermerge.png and b/png/papermerge.png differ
diff --git a/png/parseable.png b/png/parseable.png
new file mode 100644
index 00000000..3ecf1ce1
Binary files /dev/null and b/png/parseable.png differ
diff --git a/png/part-db-light.png b/png/part-db-light.png
index 175df9b5..4f8a810b 100644
Binary files a/png/part-db-light.png and b/png/part-db-light.png differ
diff --git a/png/part-db.png b/png/part-db.png
index 97bebba1..4d9350f2 100644
Binary files a/png/part-db.png and b/png/part-db.png differ
diff --git a/png/partkeepr.png b/png/partkeepr.png
index 655b172b..6fab29be 100644
Binary files a/png/partkeepr.png and b/png/partkeepr.png differ
diff --git a/png/passbolt.png b/png/passbolt.png
index 155e05db..806d8e80 100644
Binary files a/png/passbolt.png and b/png/passbolt.png differ
diff --git a/png/passwordpusher-light.png b/png/passwordpusher-light.png
deleted file mode 100644
index 79c6d29d..00000000
Binary files a/png/passwordpusher-light.png and /dev/null differ
diff --git a/png/passwordpusher.png b/png/passwordpusher.png
deleted file mode 100644
index 89b8bc33..00000000
Binary files a/png/passwordpusher.png and /dev/null differ
diff --git a/png/passwork.png b/png/passwork.png
index 6bcc701b..113df0f3 100644
Binary files a/png/passwork.png and b/png/passwork.png differ
diff --git a/png/pastatool-light.png b/png/pastatool-light.png
deleted file mode 100644
index 49b16c0e..00000000
Binary files a/png/pastatool-light.png and /dev/null differ
diff --git a/png/pastatool.png b/png/pastatool.png
deleted file mode 100644
index ccc1db24..00000000
Binary files a/png/pastatool.png and /dev/null differ
diff --git a/png/pastebin-dark.png b/png/pastebin-dark.png
new file mode 100644
index 00000000..75b1d1ec
Binary files /dev/null and b/png/pastebin-dark.png differ
diff --git a/png/pastebin.png b/png/pastebin.png
index 7d494d81..2d815438 100644
Binary files a/png/pastebin.png and b/png/pastebin.png differ
diff --git a/png/pastey.png b/png/pastey.png
deleted file mode 100644
index db4ab970..00000000
Binary files a/png/pastey.png and /dev/null differ
diff --git a/png/patreon-light.png b/png/patreon-light.png
new file mode 100644
index 00000000..12dcc472
Binary files /dev/null and b/png/patreon-light.png differ
diff --git a/png/patreon-white.png b/png/patreon-white.png
deleted file mode 100644
index 5f475f59..00000000
Binary files a/png/patreon-white.png and /dev/null differ
diff --git a/png/patreon.png b/png/patreon.png
index 32b6e146..24f76652 100644
Binary files a/png/patreon.png and b/png/patreon.png differ
diff --git a/png/payload-light.png b/png/payload-light.png
new file mode 100644
index 00000000..e9d14282
Binary files /dev/null and b/png/payload-light.png differ
diff --git a/png/payload.png b/png/payload.png
new file mode 100644
index 00000000..a7c0913b
Binary files /dev/null and b/png/payload.png differ
diff --git a/png/paypal.png b/png/paypal.png
index a64e8ff3..f4e711d4 100644
Binary files a/png/paypal.png and b/png/paypal.png differ
diff --git a/png/pdfding-light.png b/png/pdfding-light.png
new file mode 100644
index 00000000..8a7d0c14
Binary files /dev/null and b/png/pdfding-light.png differ
diff --git a/png/pdfding.png b/png/pdfding.png
new file mode 100644
index 00000000..279028e1
Binary files /dev/null and b/png/pdfding.png differ
diff --git a/png/peacock-light.png b/png/peacock-light.png
new file mode 100644
index 00000000..977f2183
Binary files /dev/null and b/png/peacock-light.png differ
diff --git a/png/peacock.png b/png/peacock.png
new file mode 100644
index 00000000..9a15c29b
Binary files /dev/null and b/png/peacock.png differ
diff --git a/png/peanut-light.png b/png/peanut-light.png
new file mode 100644
index 00000000..caead99d
Binary files /dev/null and b/png/peanut-light.png differ
diff --git a/png/peanut.png b/png/peanut.png
index f484e9ad..d4dc910d 100644
Binary files a/png/peanut.png and b/png/peanut.png differ
diff --git a/png/peertube.png b/png/peertube.png
index df699299..d30d30ba 100644
Binary files a/png/peertube.png and b/png/peertube.png differ
diff --git a/png/pelican-panel.png b/png/pelican-panel.png
new file mode 100644
index 00000000..ff006c33
Binary files /dev/null and b/png/pelican-panel.png differ
diff --git a/png/penpot-light.png b/png/penpot-light.png
index 1ac4b162..247a09e6 100644
Binary files a/png/penpot-light.png and b/png/penpot-light.png differ
diff --git a/png/penpot.png b/png/penpot.png
index 5b596232..715c3e94 100644
Binary files a/png/penpot.png and b/png/penpot.png differ
diff --git a/png/peppermint.png b/png/peppermint.png
new file mode 100644
index 00000000..c5a433fb
Binary files /dev/null and b/png/peppermint.png differ
diff --git a/png/pepperminty-wiki.png b/png/pepperminty-wiki.png
new file mode 100644
index 00000000..8817d622
Binary files /dev/null and b/png/pepperminty-wiki.png differ
diff --git a/png/perlite.png b/png/perlite.png
index 7c754fe6..70895318 100644
Binary files a/png/perlite.png and b/png/perlite.png differ
diff --git a/png/petio.png b/png/petio.png
deleted file mode 100644
index 50fca22c..00000000
Binary files a/png/petio.png and /dev/null differ
diff --git a/png/pfsense-light.png b/png/pfsense-light.png
new file mode 100644
index 00000000..8ab4e533
Binary files /dev/null and b/png/pfsense-light.png differ
diff --git a/png/pfsense.png b/png/pfsense.png
index 819a2847..7f084ef4 100644
Binary files a/png/pfsense.png and b/png/pfsense.png differ
diff --git a/png/pg-back-web.png b/png/pg-back-web.png
new file mode 100644
index 00000000..664f167e
Binary files /dev/null and b/png/pg-back-web.png differ
diff --git a/png/pgadmin.png b/png/pgadmin.png
index a42f574f..18b8bdf8 100644
Binary files a/png/pgadmin.png and b/png/pgadmin.png differ
diff --git a/png/phanpy.png b/png/phanpy.png
new file mode 100644
index 00000000..81ea2347
Binary files /dev/null and b/png/phanpy.png differ
diff --git a/png/phantombot.png b/png/phantombot.png
deleted file mode 100644
index 9c35938c..00000000
Binary files a/png/phantombot.png and /dev/null differ
diff --git a/png/phoneinfoga-light.png b/png/phoneinfoga-light.png
index f7981d04..295bb3bd 100644
Binary files a/png/phoneinfoga-light.png and b/png/phoneinfoga-light.png differ
diff --git a/png/phoneinfoga.png b/png/phoneinfoga.png
index 7d983f21..5e340648 100644
Binary files a/png/phoneinfoga.png and b/png/phoneinfoga.png differ
diff --git a/png/phorge-light.png b/png/phorge-light.png
new file mode 100644
index 00000000..d47a60bb
Binary files /dev/null and b/png/phorge-light.png differ
diff --git a/png/phorge.png b/png/phorge.png
new file mode 100644
index 00000000..870e4e19
Binary files /dev/null and b/png/phorge.png differ
diff --git a/png/phoscon-light.png b/png/phoscon-light.png
index 96877b68..8cdd8d7b 100644
Binary files a/png/phoscon-light.png and b/png/phoscon-light.png differ
diff --git a/png/phoscon.png b/png/phoscon.png
index 5b1abfdf..ae83c373 100644
Binary files a/png/phoscon.png and b/png/phoscon.png differ
diff --git a/png/photonix-light.png b/png/photonix-light.png
index c37eaaf5..d02c4418 100644
Binary files a/png/photonix-light.png and b/png/photonix-light.png differ
diff --git a/png/photonix.png b/png/photonix.png
index 0b15b945..f2ae5bf1 100644
Binary files a/png/photonix.png and b/png/photonix.png differ
diff --git a/png/photopea.png b/png/photopea.png
new file mode 100644
index 00000000..cbc40a0e
Binary files /dev/null and b/png/photopea.png differ
diff --git a/png/photoprism-light.png b/png/photoprism-light.png
new file mode 100644
index 00000000..58d418e5
Binary files /dev/null and b/png/photoprism-light.png differ
diff --git a/png/photoprism.png b/png/photoprism.png
index b3545893..9061f02c 100644
Binary files a/png/photoprism.png and b/png/photoprism.png differ
diff --git a/png/photostructure-dark.png b/png/photostructure-dark.png
new file mode 100644
index 00000000..20210a1d
Binary files /dev/null and b/png/photostructure-dark.png differ
diff --git a/png/photostructure.png b/png/photostructure.png
index 8dedee91..7afbf2b4 100644
Binary files a/png/photostructure.png and b/png/photostructure.png differ
diff --git a/png/photoview.png b/png/photoview.png
index 5b20fb1c..51c4a412 100644
Binary files a/png/photoview.png and b/png/photoview.png differ
diff --git a/png/php-light.png b/png/php-light.png
new file mode 100644
index 00000000..9c808499
Binary files /dev/null and b/png/php-light.png differ
diff --git a/png/php.png b/png/php.png
index 78103952..0a01522d 100644
Binary files a/png/php.png and b/png/php.png differ
diff --git a/png/phpipam.png b/png/phpipam.png
deleted file mode 100644
index 38bf098f..00000000
Binary files a/png/phpipam.png and /dev/null differ
diff --git a/png/phpldapadmin.png b/png/phpldapadmin.png
deleted file mode 100644
index 22b7f511..00000000
Binary files a/png/phpldapadmin.png and /dev/null differ
diff --git a/png/phpmyadmin.png b/png/phpmyadmin.png
index 6cef98e8..5131ab40 100644
Binary files a/png/phpmyadmin.png and b/png/phpmyadmin.png differ
diff --git a/png/pi-alert.png b/png/pi-alert.png
deleted file mode 100644
index b98a0f0e..00000000
Binary files a/png/pi-alert.png and /dev/null differ
diff --git a/png/pi-hole-unbound.png b/png/pi-hole-unbound.png
deleted file mode 100644
index 7c79324e..00000000
Binary files a/png/pi-hole-unbound.png and /dev/null differ
diff --git a/png/pi-hole.png b/png/pi-hole.png
index de1dd7da..71813f52 100644
Binary files a/png/pi-hole.png and b/png/pi-hole.png differ
diff --git a/png/pia.png b/png/pia.png
index 0636bd29..e1b03163 100644
Binary files a/png/pia.png and b/png/pia.png differ
diff --git a/png/piaware.png b/png/piaware.png
deleted file mode 100644
index f1e87c24..00000000
Binary files a/png/piaware.png and /dev/null differ
diff --git a/png/picsur-light.png b/png/picsur-light.png
new file mode 100644
index 00000000..d26b543e
Binary files /dev/null and b/png/picsur-light.png differ
diff --git a/png/picsur.png b/png/picsur.png
index 530bd0c1..34f4000f 100644
Binary files a/png/picsur.png and b/png/picsur.png differ
diff --git a/png/pigallery2-light.png b/png/pigallery2-light.png
deleted file mode 100644
index a39b7b03..00000000
Binary files a/png/pigallery2-light.png and /dev/null differ
diff --git a/png/pigallery2.png b/png/pigallery2.png
index 3e1abb7c..a8501e39 100644
Binary files a/png/pigallery2.png and b/png/pigallery2.png differ
diff --git a/png/pikapods.png b/png/pikapods.png
new file mode 100644
index 00000000..d7439b95
Binary files /dev/null and b/png/pikapods.png differ
diff --git a/png/pikvm-light.png b/png/pikvm-light.png
deleted file mode 100644
index 0ec04fb5..00000000
Binary files a/png/pikvm-light.png and /dev/null differ
diff --git a/png/pikvm.png b/png/pikvm.png
deleted file mode 100644
index 19053da3..00000000
Binary files a/png/pikvm.png and /dev/null differ
diff --git a/png/pinchflat.png b/png/pinchflat.png
deleted file mode 100644
index 84d404e7..00000000
Binary files a/png/pinchflat.png and /dev/null differ
diff --git a/png/pingdom-light.png b/png/pingdom-light.png
new file mode 100644
index 00000000..f43c352b
Binary files /dev/null and b/png/pingdom-light.png differ
diff --git a/png/pingdom.png b/png/pingdom.png
index b1322671..857acf70 100644
Binary files a/png/pingdom.png and b/png/pingdom.png differ
diff --git a/png/pingvin-dark.png b/png/pingvin-dark.png
new file mode 100644
index 00000000..1480cf24
Binary files /dev/null and b/png/pingvin-dark.png differ
diff --git a/png/pingvin-share-dark.png b/png/pingvin-share-dark.png
new file mode 100644
index 00000000..1480cf24
Binary files /dev/null and b/png/pingvin-share-dark.png differ
diff --git a/png/pingvin-share.png b/png/pingvin-share.png
index ef497fc1..0a057fdc 100644
Binary files a/png/pingvin-share.png and b/png/pingvin-share.png differ
diff --git a/png/pingvin.png b/png/pingvin.png
index ef497fc1..93d91f8e 100644
Binary files a/png/pingvin.png and b/png/pingvin.png differ
diff --git a/png/pinkary.png b/png/pinkary.png
new file mode 100644
index 00000000..e5c819a3
Binary files /dev/null and b/png/pinkary.png differ
diff --git a/png/pinry.png b/png/pinry.png
deleted file mode 100644
index adbcc285..00000000
Binary files a/png/pinry.png and /dev/null differ
diff --git a/png/pinterest.png b/png/pinterest.png
index 5d2e9b12..6889f180 100644
Binary files a/png/pinterest.png and b/png/pinterest.png differ
diff --git a/png/pioneer-light.png b/png/pioneer-light.png
index deac7d34..ccc6a978 100644
Binary files a/png/pioneer-light.png and b/png/pioneer-light.png differ
diff --git a/png/pioneer.png b/png/pioneer.png
index 4fba6f93..22fe474d 100644
Binary files a/png/pioneer.png and b/png/pioneer.png differ
diff --git a/png/piped.png b/png/piped.png
new file mode 100644
index 00000000..55ffb52a
Binary files /dev/null and b/png/piped.png differ
diff --git a/png/pirate-proxy.png b/png/pirate-proxy.png
index bd74a9e1..71df7a29 100644
Binary files a/png/pirate-proxy.png and b/png/pirate-proxy.png differ
diff --git a/png/pivpn.png b/png/pivpn.png
deleted file mode 100644
index b52d602a..00000000
Binary files a/png/pivpn.png and /dev/null differ
diff --git a/png/piwigo.png b/png/piwigo.png
index fcfebad9..c10d3ba4 100644
Binary files a/png/piwigo.png and b/png/piwigo.png differ
diff --git a/png/pixelfed.png b/png/pixelfed.png
index 5e3d2245..ea4be692 100644
Binary files a/png/pixelfed.png and b/png/pixelfed.png differ
diff --git a/png/plane.png b/png/plane.png
new file mode 100644
index 00000000..c730bee9
Binary files /dev/null and b/png/plane.png differ
diff --git a/png/planka-dark.png b/png/planka-dark.png
new file mode 100644
index 00000000..3f1e95bd
Binary files /dev/null and b/png/planka-dark.png differ
diff --git a/png/planka.png b/png/planka.png
index 8d852387..06c5d2c5 100644
Binary files a/png/planka.png and b/png/planka.png differ
diff --git a/png/plant-it.png b/png/plant-it.png
deleted file mode 100644
index 943bb3f7..00000000
Binary files a/png/plant-it.png and /dev/null differ
diff --git a/png/plausible.png b/png/plausible.png
index ea79012a..c6e4e7d5 100644
Binary files a/png/plausible.png and b/png/plausible.png differ
diff --git a/png/playstation.png b/png/playstation.png
new file mode 100644
index 00000000..72eaf1bc
Binary files /dev/null and b/png/playstation.png differ
diff --git a/png/pleroma.png b/png/pleroma.png
index 4fee27b4..a6f57857 100644
Binary files a/png/pleroma.png and b/png/pleroma.png differ
diff --git a/png/plesk-light.png b/png/plesk-light.png
deleted file mode 100644
index e616d8fb..00000000
Binary files a/png/plesk-light.png and /dev/null differ
diff --git a/png/plesk.png b/png/plesk.png
index ecf3448e..f4f24955 100644
Binary files a/png/plesk.png and b/png/plesk.png differ
diff --git a/png/plex-alt-light.png b/png/plex-alt-light.png
index 6a25bc02..c9fd5fa1 100644
Binary files a/png/plex-alt-light.png and b/png/plex-alt-light.png differ
diff --git a/png/plex-alt.png b/png/plex-alt.png
index 73a14a63..48ace9ab 100644
Binary files a/png/plex-alt.png and b/png/plex-alt.png differ
diff --git a/png/plex-light.png b/png/plex-light.png
new file mode 100644
index 00000000..fa7b3294
Binary files /dev/null and b/png/plex-light.png differ
diff --git a/png/plex-meta-manager-light.png b/png/plex-meta-manager-light.png
deleted file mode 100644
index 68d06f0a..00000000
Binary files a/png/plex-meta-manager-light.png and /dev/null differ
diff --git a/png/plex-meta-manager.png b/png/plex-meta-manager.png
deleted file mode 100644
index 9e1823d3..00000000
Binary files a/png/plex-meta-manager.png and /dev/null differ
diff --git a/png/plex-rewind.png b/png/plex-rewind.png
new file mode 100644
index 00000000..f42e7dd0
Binary files /dev/null and b/png/plex-rewind.png differ
diff --git a/png/plex.png b/png/plex.png
index e7af890a..d1c4398c 100644
Binary files a/png/plex.png and b/png/plex.png differ
diff --git a/png/plexdrive.png b/png/plexdrive.png
deleted file mode 100644
index cada67a2..00000000
Binary files a/png/plexdrive.png and /dev/null differ
diff --git a/png/plexrequests-light.png b/png/plexrequests-light.png
new file mode 100644
index 00000000..de5b9da5
Binary files /dev/null and b/png/plexrequests-light.png differ
diff --git a/png/plexrequests.png b/png/plexrequests.png
index 5d0061c3..c2057a37 100644
Binary files a/png/plexrequests.png and b/png/plexrequests.png differ
diff --git a/png/plexripper.png b/png/plexripper.png
deleted file mode 100644
index 869e33b9..00000000
Binary files a/png/plexripper.png and /dev/null differ
diff --git a/png/plume.png b/png/plume.png
index 415ce04b..b792acca 100644
Binary files a/png/plume.png and b/png/plume.png differ
diff --git a/png/pocket-casts-dark.png b/png/pocket-casts-dark.png
new file mode 100644
index 00000000..46c680d7
Binary files /dev/null and b/png/pocket-casts-dark.png differ
diff --git a/png/pocket-casts.png b/png/pocket-casts.png
new file mode 100644
index 00000000..268ad5c7
Binary files /dev/null and b/png/pocket-casts.png differ
diff --git a/png/pocket-id-light.png b/png/pocket-id-light.png
new file mode 100644
index 00000000..80b72f64
Binary files /dev/null and b/png/pocket-id-light.png differ
diff --git a/png/pocket-id.png b/png/pocket-id.png
new file mode 100644
index 00000000..050aef29
Binary files /dev/null and b/png/pocket-id.png differ
diff --git a/png/pocketbase-dark.png b/png/pocketbase-dark.png
new file mode 100644
index 00000000..da0a824e
Binary files /dev/null and b/png/pocketbase-dark.png differ
diff --git a/png/pocketbase.png b/png/pocketbase.png
index 8ff709f4..551c5d1a 100644
Binary files a/png/pocketbase.png and b/png/pocketbase.png differ
diff --git a/png/podfetch-light.png b/png/podfetch-light.png
new file mode 100644
index 00000000..6f206390
Binary files /dev/null and b/png/podfetch-light.png differ
diff --git a/png/podfetch.png b/png/podfetch.png
new file mode 100644
index 00000000..9a8998a6
Binary files /dev/null and b/png/podfetch.png differ
diff --git a/png/podgrab.png b/png/podgrab.png
deleted file mode 100644
index 2111598f..00000000
Binary files a/png/podgrab.png and /dev/null differ
diff --git a/png/podify.png b/png/podify.png
index 84494e5c..bb7946dd 100644
Binary files a/png/podify.png and b/png/podify.png differ
diff --git a/png/podman.png b/png/podman.png
new file mode 100644
index 00000000..825824e5
Binary files /dev/null and b/png/podman.png differ
diff --git a/png/podnapisi.png b/png/podnapisi.png
deleted file mode 100644
index 0c6afee0..00000000
Binary files a/png/podnapisi.png and /dev/null differ
diff --git a/png/policycontroller.png b/png/policycontroller.png
index 2b996c32..1b92896f 100644
Binary files a/png/policycontroller.png and b/png/policycontroller.png differ
diff --git a/png/poly.png b/png/poly.png
index e2db72ba..ac39430f 100644
Binary files a/png/poly.png and b/png/poly.png differ
diff --git a/png/polywork.png b/png/polywork.png
index aee0b49a..b5d84493 100644
Binary files a/png/polywork.png and b/png/polywork.png differ
diff --git a/png/porkbun.png b/png/porkbun.png
deleted file mode 100644
index 4a07de34..00000000
Binary files a/png/porkbun.png and /dev/null differ
diff --git a/png/portainer-alt.png b/png/portainer-alt.png
deleted file mode 100644
index e336a781..00000000
Binary files a/png/portainer-alt.png and /dev/null differ
diff --git a/png/portainer.png b/png/portainer.png
index a3a7e092..bc7619f4 100644
Binary files a/png/portainer.png and b/png/portainer.png differ
diff --git a/png/portus.png b/png/portus.png
index afb3a5af..8a843fec 100644
Binary files a/png/portus.png and b/png/portus.png differ
diff --git a/png/postal.png b/png/postal.png
new file mode 100644
index 00000000..b83234c1
Binary files /dev/null and b/png/postal.png differ
diff --git a/png/poste.png b/png/poste.png
index 9d6e13b2..578ee55a 100644
Binary files a/png/poste.png and b/png/poste.png differ
diff --git a/png/postgres.png b/png/postgres.png
index a42f574f..18b8bdf8 100644
Binary files a/png/postgres.png and b/png/postgres.png differ
diff --git a/png/postgresql.png b/png/postgresql.png
new file mode 100644
index 00000000..dc711e02
Binary files /dev/null and b/png/postgresql.png differ
diff --git a/png/posthog-light.png b/png/posthog-light.png
new file mode 100644
index 00000000..1069fab8
Binary files /dev/null and b/png/posthog-light.png differ
diff --git a/png/posthog.png b/png/posthog.png
new file mode 100644
index 00000000..7f0bae7e
Binary files /dev/null and b/png/posthog.png differ
diff --git a/png/postiz-dark.png b/png/postiz-dark.png
new file mode 100644
index 00000000..623a1414
Binary files /dev/null and b/png/postiz-dark.png differ
diff --git a/png/postiz.png b/png/postiz.png
new file mode 100644
index 00000000..ce25ed4c
Binary files /dev/null and b/png/postiz.png differ
diff --git a/png/powerbi.png b/png/powerbi.png
index 96a9813b..8df33541 100644
Binary files a/png/powerbi.png and b/png/powerbi.png differ
diff --git a/png/powerdns.png b/png/powerdns.png
index 9303f607..7327d426 100644
Binary files a/png/powerdns.png and b/png/powerdns.png differ
diff --git a/png/powerpanel.png b/png/powerpanel.png
deleted file mode 100644
index dfe193aa..00000000
Binary files a/png/powerpanel.png and /dev/null differ
diff --git a/png/premium-mobile.png b/png/premium-mobile.png
deleted file mode 100644
index a7e650f6..00000000
Binary files a/png/premium-mobile.png and /dev/null differ
diff --git a/png/prime-video-light.png b/png/prime-video-light.png
index aaa52c6f..350d37ba 100644
Binary files a/png/prime-video-light.png and b/png/prime-video-light.png differ
diff --git a/png/prime-video.png b/png/prime-video.png
index d05dfed1..10e0a654 100644
Binary files a/png/prime-video.png and b/png/prime-video.png differ
diff --git a/png/printer.png b/png/printer.png
index 65e67a66..63f30fe4 100644
Binary files a/png/printer.png and b/png/printer.png differ
diff --git a/png/pritunl.png b/png/pritunl.png
index 451793b8..1622c088 100644
Binary files a/png/pritunl.png and b/png/pritunl.png differ
diff --git a/png/privacyidea.png b/png/privacyidea.png
index 2da59876..94bdbec1 100644
Binary files a/png/privacyidea.png and b/png/privacyidea.png differ
diff --git a/png/private-internet-access.png b/png/private-internet-access.png
index 0636bd29..38b1e269 100644
Binary files a/png/private-internet-access.png and b/png/private-internet-access.png differ
diff --git a/png/privatebin.png b/png/privatebin.png
index fe7c6e63..ae3d2605 100644
Binary files a/png/privatebin.png and b/png/privatebin.png differ
diff --git a/png/projectsend.png b/png/projectsend.png
index 115085af..9937c0b7 100644
Binary files a/png/projectsend.png and b/png/projectsend.png differ
diff --git a/png/prometheus.png b/png/prometheus.png
index c83eebda..dab3b500 100644
Binary files a/png/prometheus.png and b/png/prometheus.png differ
diff --git a/png/proton-calendar.png b/png/proton-calendar.png
index 7878c1ca..2f028180 100644
Binary files a/png/proton-calendar.png and b/png/proton-calendar.png differ
diff --git a/png/proton-drive.png b/png/proton-drive.png
index 75c4cb33..99fd2605 100644
Binary files a/png/proton-drive.png and b/png/proton-drive.png differ
diff --git a/png/proton-mail.png b/png/proton-mail.png
index 773e79ec..2a95a338 100644
Binary files a/png/proton-mail.png and b/png/proton-mail.png differ
diff --git a/png/proton-pass.png b/png/proton-pass.png
index 7e17c3a4..912b3c12 100644
Binary files a/png/proton-pass.png and b/png/proton-pass.png differ
diff --git a/png/proton-vpn.png b/png/proton-vpn.png
index 3b22b1eb..20b40515 100644
Binary files a/png/proton-vpn.png and b/png/proton-vpn.png differ
diff --git a/png/prowlarr.png b/png/prowlarr.png
index 0b84dea6..00af5d95 100644
Binary files a/png/prowlarr.png and b/png/prowlarr.png differ
diff --git a/png/proxmox-light.png b/png/proxmox-light.png
index 69411c59..4d55ab66 100644
Binary files a/png/proxmox-light.png and b/png/proxmox-light.png differ
diff --git a/png/proxmox.png b/png/proxmox.png
index 211fa0fa..5a2853b8 100644
Binary files a/png/proxmox.png and b/png/proxmox.png differ
diff --git a/png/prtg.png b/png/prtg.png
index 41cb5bd4..dbd2f6dc 100644
Binary files a/png/prtg.png and b/png/prtg.png differ
diff --git a/png/prusa-research-light.png b/png/prusa-research-light.png
deleted file mode 100644
index c54ab6ef..00000000
Binary files a/png/prusa-research-light.png and /dev/null differ
diff --git a/png/prusa-research.png b/png/prusa-research.png
index bd66f15c..d839b28b 100644
Binary files a/png/prusa-research.png and b/png/prusa-research.png differ
diff --git a/png/psitransfer.png b/png/psitransfer.png
deleted file mode 100644
index a765f6f4..00000000
Binary files a/png/psitransfer.png and /dev/null differ
diff --git a/png/pterodactyl.png b/png/pterodactyl.png
index a5addb87..2ac289f5 100644
Binary files a/png/pterodactyl.png and b/png/pterodactyl.png differ
diff --git a/png/pufferpanel.png b/png/pufferpanel.png
index 6df0f11b..b689398d 100644
Binary files a/png/pufferpanel.png and b/png/pufferpanel.png differ
diff --git a/png/purelymail.png b/png/purelymail.png
index 3b0b1474..70374261 100644
Binary files a/png/purelymail.png and b/png/purelymail.png differ
diff --git a/png/pushfish.png b/png/pushfish.png
index 243d3a64..1dd6a3e6 100644
Binary files a/png/pushfish.png and b/png/pushfish.png differ
diff --git a/png/pushover.png b/png/pushover.png
index 2383f6ca..dab9bf0d 100644
Binary files a/png/pushover.png and b/png/pushover.png differ
diff --git a/png/putty.png b/png/putty.png
index 70dc9a9f..87e7dd2b 100644
Binary files a/png/putty.png and b/png/putty.png differ
diff --git a/png/pve-helper-scripts.png b/png/pve-helper-scripts.png
deleted file mode 100644
index 3e2e23c8..00000000
Binary files a/png/pve-helper-scripts.png and /dev/null differ
diff --git a/png/pwndrop-light.png b/png/pwndrop-light.png
deleted file mode 100644
index da62dc61..00000000
Binary files a/png/pwndrop-light.png and /dev/null differ
diff --git a/png/pwndrop.png b/png/pwndrop.png
deleted file mode 100644
index dc726238..00000000
Binary files a/png/pwndrop.png and /dev/null differ
diff --git a/png/pwpush-light.png b/png/pwpush-light.png
deleted file mode 100644
index 79c6d29d..00000000
Binary files a/png/pwpush-light.png and /dev/null differ
diff --git a/png/pwpush.png b/png/pwpush.png
deleted file mode 100644
index 89b8bc33..00000000
Binary files a/png/pwpush.png and /dev/null differ
diff --git a/png/pydio.png b/png/pydio.png
index 0b13cf50..34f637f7 100644
Binary files a/png/pydio.png and b/png/pydio.png differ
diff --git a/png/pyload.png b/png/pyload.png
index e9600334..22d26c07 100644
Binary files a/png/pyload.png and b/png/pyload.png differ
diff --git a/png/python.png b/png/python.png
index a20dc86b..ca002ef1 100644
Binary files a/png/python.png and b/png/python.png differ
diff --git a/png/qbittorrent.png b/png/qbittorrent.png
index da45342c..b880e9c0 100644
Binary files a/png/qbittorrent.png and b/png/qbittorrent.png differ
diff --git a/png/qdirstat.png b/png/qdirstat.png
index 176cfc7f..8b40bac9 100644
Binary files a/png/qdirstat.png and b/png/qdirstat.png differ
diff --git a/png/qinglong.png b/png/qinglong.png
index 2455dd35..d6534d15 100644
Binary files a/png/qinglong.png and b/png/qinglong.png differ
diff --git a/png/qnap-alt.png b/png/qnap-alt.png
deleted file mode 100644
index 499aed97..00000000
Binary files a/png/qnap-alt.png and /dev/null differ
diff --git a/png/qnap.png b/png/qnap.png
index d4a13914..2fb6b22f 100644
Binary files a/png/qnap.png and b/png/qnap.png differ
diff --git a/png/quant-ux.png b/png/quant-ux.png
deleted file mode 100644
index 8c349999..00000000
Binary files a/png/quant-ux.png and /dev/null differ
diff --git a/png/questdb.png b/png/questdb.png
index 727a0fd6..79301c5c 100644
Binary files a/png/questdb.png and b/png/questdb.png differ
diff --git a/png/quetre.png b/png/quetre.png
index 62d491c9..00bdc280 100644
Binary files a/png/quetre.png and b/png/quetre.png differ
diff --git a/png/quickwit.png b/png/quickwit.png
new file mode 100644
index 00000000..69646091
Binary files /dev/null and b/png/quickwit.png differ
diff --git a/png/qutebrowser.png b/png/qutebrowser.png
index c049d725..893e096b 100644
Binary files a/png/qutebrowser.png and b/png/qutebrowser.png differ
diff --git a/png/r.png b/png/r.png
index e3789730..e89d7377 100644
Binary files a/png/r.png and b/png/r.png differ
diff --git a/png/rabbitmq.png b/png/rabbitmq.png
index ba87e7b7..f5350347 100644
Binary files a/png/rabbitmq.png and b/png/rabbitmq.png differ
diff --git a/png/radarr-light.png b/png/radarr-light.png
deleted file mode 100644
index 3a584c65..00000000
Binary files a/png/radarr-light.png and /dev/null differ
diff --git a/png/radarr.png b/png/radarr.png
index 604d8ff3..417f77fb 100644
Binary files a/png/radarr.png and b/png/radarr.png differ
diff --git a/png/radicale.png b/png/radicale.png
index a0341522..0d8b45d5 100644
Binary files a/png/radicale.png and b/png/radicale.png differ
diff --git a/png/rainloop-light.png b/png/rainloop-light.png
deleted file mode 100644
index 73d62d6a..00000000
Binary files a/png/rainloop-light.png and /dev/null differ
diff --git a/png/rainloop.png b/png/rainloop.png
index 215a273d..4d92d021 100644
Binary files a/png/rainloop.png and b/png/rainloop.png differ
diff --git a/png/rallly.png b/png/rallly.png
index 15f279df..9a3d89a8 100644
Binary files a/png/rallly.png and b/png/rallly.png differ
diff --git a/png/rancher.png b/png/rancher.png
index 4515d6c0..f4c64592 100644
Binary files a/png/rancher.png and b/png/rancher.png differ
diff --git a/png/raneto.png b/png/raneto.png
deleted file mode 100644
index 0758f367..00000000
Binary files a/png/raneto.png and /dev/null differ
diff --git a/png/raritan-light.png b/png/raritan-light.png
deleted file mode 100644
index f4c29508..00000000
Binary files a/png/raritan-light.png and /dev/null differ
diff --git a/png/raritan.png b/png/raritan.png
deleted file mode 100644
index 683ab420..00000000
Binary files a/png/raritan.png and /dev/null differ
diff --git a/png/raspberry-pi-light.png b/png/raspberry-pi-light.png
new file mode 100644
index 00000000..166b3ea1
Binary files /dev/null and b/png/raspberry-pi-light.png differ
diff --git a/png/raspberry-pi.png b/png/raspberry-pi.png
new file mode 100644
index 00000000..28d6979d
Binary files /dev/null and b/png/raspberry-pi.png differ
diff --git a/png/raspberrymatic.png b/png/raspberrymatic.png
deleted file mode 100644
index c9e367d8..00000000
Binary files a/png/raspberrymatic.png and /dev/null differ
diff --git a/png/raspberrypi.png b/png/raspberrypi.png
deleted file mode 100644
index 7996cc45..00000000
Binary files a/png/raspberrypi.png and /dev/null differ
diff --git a/png/rathole.png b/png/rathole.png
deleted file mode 100644
index 25744ff9..00000000
Binary files a/png/rathole.png and /dev/null differ
diff --git a/png/rclone.png b/png/rclone.png
index 90df575c..9ee52518 100644
Binary files a/png/rclone.png and b/png/rclone.png differ
diff --git a/png/rdt-client.png b/png/rdt-client.png
index b164a378..7a4d978c 100644
Binary files a/png/rdt-client.png and b/png/rdt-client.png differ
diff --git a/png/reactive-resume-light.png b/png/reactive-resume-light.png
new file mode 100644
index 00000000..a9db1bfa
Binary files /dev/null and b/png/reactive-resume-light.png differ
diff --git a/png/reactive-resume.png b/png/reactive-resume.png
index 70ba2ee8..20d127d3 100644
Binary files a/png/reactive-resume.png and b/png/reactive-resume.png differ
diff --git a/png/readarr.png b/png/readarr.png
index 9bccfeee..4335bee4 100644
Binary files a/png/readarr.png and b/png/readarr.png differ
diff --git a/png/readeck.png b/png/readeck.png
index ee635132..a9ff749b 100644
Binary files a/png/readeck.png and b/png/readeck.png differ
diff --git a/png/readthedocs-light.png b/png/readthedocs-light.png
index 5a950385..bc9f485a 100644
Binary files a/png/readthedocs-light.png and b/png/readthedocs-light.png differ
diff --git a/png/readthedocs.png b/png/readthedocs.png
index b2ce3637..df8fd812 100644
Binary files a/png/readthedocs.png and b/png/readthedocs.png differ
diff --git a/png/real-debrid.png b/png/real-debrid.png
index b164a378..7a4d978c 100644
Binary files a/png/real-debrid.png and b/png/real-debrid.png differ
diff --git a/png/realhosting.png b/png/realhosting.png
deleted file mode 100644
index 6f2d9eb9..00000000
Binary files a/png/realhosting.png and /dev/null differ
diff --git a/png/recalbox.png b/png/recalbox.png
index 5d1703fd..ae3ee3d3 100644
Binary files a/png/recalbox.png and b/png/recalbox.png differ
diff --git a/png/receipt-wrangler.png b/png/receipt-wrangler.png
new file mode 100644
index 00000000..71096e1d
Binary files /dev/null and b/png/receipt-wrangler.png differ
diff --git a/png/recipesage.png b/png/recipesage.png
index 4d7e1869..e0b3b015 100644
Binary files a/png/recipesage.png and b/png/recipesage.png differ
diff --git a/png/recipya.png b/png/recipya.png
deleted file mode 100644
index 2bd04e25..00000000
Binary files a/png/recipya.png and /dev/null differ
diff --git a/png/reddit.png b/png/reddit.png
index 455876db..39945e3e 100644
Binary files a/png/reddit.png and b/png/reddit.png differ
diff --git a/png/redict.png b/png/redict.png
new file mode 100644
index 00000000..5bc064cb
Binary files /dev/null and b/png/redict.png differ
diff --git a/png/redis.png b/png/redis.png
index cdf3273f..306dae14 100644
Binary files a/png/redis.png and b/png/redis.png differ
diff --git a/png/redlib-light.png b/png/redlib-light.png
new file mode 100644
index 00000000..741c4b4b
Binary files /dev/null and b/png/redlib-light.png differ
diff --git a/png/redlib.png b/png/redlib.png
new file mode 100644
index 00000000..32223aa6
Binary files /dev/null and b/png/redlib.png differ
diff --git a/png/rekor.png b/png/rekor.png
index b71ffe2b..d2834222 100644
Binary files a/png/rekor.png and b/png/rekor.png differ
diff --git a/png/remmina.png b/png/remmina.png
index ed6cc474..2741cde5 100644
Binary files a/png/remmina.png and b/png/remmina.png differ
diff --git a/png/remotely.png b/png/remotely.png
deleted file mode 100644
index 4c5a4e99..00000000
Binary files a/png/remotely.png and /dev/null differ
diff --git a/png/reolink.png b/png/reolink.png
new file mode 100644
index 00000000..d16814f2
Binary files /dev/null and b/png/reolink.png differ
diff --git a/png/requestly.png b/png/requestly.png
index e48c6d67..b36869c9 100644
Binary files a/png/requestly.png and b/png/requestly.png differ
diff --git a/png/requestrr.png b/png/requestrr.png
index caf255e6..7bbad815 100644
Binary files a/png/requestrr.png and b/png/requestrr.png differ
diff --git a/png/resiliosync-light.png b/png/resiliosync-light.png
new file mode 100644
index 00000000..0b26c073
Binary files /dev/null and b/png/resiliosync-light.png differ
diff --git a/png/resiliosync.png b/png/resiliosync.png
index 9e7b28f8..07611f70 100644
Binary files a/png/resiliosync.png and b/png/resiliosync.png differ
diff --git a/png/restic.png b/png/restic.png
deleted file mode 100644
index 951e1938..00000000
Binary files a/png/restic.png and /dev/null differ
diff --git a/png/restreamer.png b/png/restreamer.png
new file mode 100644
index 00000000..aa450316
Binary files /dev/null and b/png/restreamer.png differ
diff --git a/png/revolt-light.png b/png/revolt-light.png
new file mode 100644
index 00000000..68867421
Binary files /dev/null and b/png/revolt-light.png differ
diff --git a/png/revolt.png b/png/revolt.png
new file mode 100644
index 00000000..89764803
Binary files /dev/null and b/png/revolt.png differ
diff --git a/png/rhasspy-dark.png b/png/rhasspy-dark.png
new file mode 100644
index 00000000..d7bba13a
Binary files /dev/null and b/png/rhasspy-dark.png differ
diff --git a/png/rhasspy-light.png b/png/rhasspy-light.png
deleted file mode 100644
index bd3cbef8..00000000
Binary files a/png/rhasspy-light.png and /dev/null differ
diff --git a/png/rhasspy.png b/png/rhasspy.png
index af00f6d0..e7242f2e 100644
Binary files a/png/rhasspy.png and b/png/rhasspy.png differ
diff --git a/png/rhodecode.png b/png/rhodecode.png
index 5a95270e..e7fcc06a 100644
Binary files a/png/rhodecode.png and b/png/rhodecode.png differ
diff --git a/png/richy.png b/png/richy.png
new file mode 100644
index 00000000..00292b3a
Binary files /dev/null and b/png/richy.png differ
diff --git a/png/rimgo-light.png b/png/rimgo-light.png
index 3daac3e5..09de8b5f 100644
Binary files a/png/rimgo-light.png and b/png/rimgo-light.png differ
diff --git a/png/rimgo.png b/png/rimgo.png
index ed4b0e9b..d79a4625 100644
Binary files a/png/rimgo.png and b/png/rimgo.png differ
diff --git a/png/riot.png b/png/riot.png
index eb28d2bd..33903fa4 100644
Binary files a/png/riot.png and b/png/riot.png differ
diff --git a/png/riverside-fm-light.png b/png/riverside-fm-light.png
new file mode 100644
index 00000000..be0b4997
Binary files /dev/null and b/png/riverside-fm-light.png differ
diff --git a/png/riverside-fm.png b/png/riverside-fm.png
new file mode 100644
index 00000000..5f6d66e0
Binary files /dev/null and b/png/riverside-fm.png differ
diff --git a/png/rocket-chat.png b/png/rocket-chat.png
new file mode 100644
index 00000000..c743e38d
Binary files /dev/null and b/png/rocket-chat.png differ
diff --git a/png/rocketchat.png b/png/rocketchat.png
deleted file mode 100644
index af17c388..00000000
Binary files a/png/rocketchat.png and /dev/null differ
diff --git a/png/rocky-linux.png b/png/rocky-linux.png
index 531547da..efbf8bf1 100644
Binary files a/png/rocky-linux.png and b/png/rocky-linux.png differ
diff --git a/png/romm.png b/png/romm.png
index c1a75123..a19168c0 100644
Binary files a/png/romm.png and b/png/romm.png differ
diff --git a/png/rompya.png b/png/rompya.png
deleted file mode 100644
index 3b2af499..00000000
Binary files a/png/rompya.png and /dev/null differ
diff --git a/png/rook.png b/png/rook.png
index 168d6d0f..fd7637c2 100644
Binary files a/png/rook.png and b/png/rook.png differ
diff --git a/png/roundcube.png b/png/roundcube.png
index 0a2f3cd0..f001ef64 100644
Binary files a/png/roundcube.png and b/png/roundcube.png differ
diff --git a/png/router.png b/png/router.png
index 1ea6ec98..3dd3454a 100644
Binary files a/png/router.png and b/png/router.png differ
diff --git a/png/rpi-monitor.png b/png/rpi-monitor.png
deleted file mode 100644
index 1e9c9c19..00000000
Binary files a/png/rpi-monitor.png and /dev/null differ
diff --git a/png/rport.png b/png/rport.png
index 480467b8..d510d2cf 100644
Binary files a/png/rport.png and b/png/rport.png differ
diff --git a/png/rspamd.png b/png/rspamd.png
deleted file mode 100644
index eab4c375..00000000
Binary files a/png/rspamd.png and /dev/null differ
diff --git a/png/rss-bridge.png b/png/rss-bridge.png
index b02760a1..3e36fd4d 100644
Binary files a/png/rss-bridge.png and b/png/rss-bridge.png differ
diff --git a/png/rss-translator.png b/png/rss-translator.png
new file mode 100644
index 00000000..87e2c1df
Binary files /dev/null and b/png/rss-translator.png differ
diff --git a/png/rsshub.png b/png/rsshub.png
deleted file mode 100644
index 15ba763d..00000000
Binary files a/png/rsshub.png and /dev/null differ
diff --git a/png/rstudio.png b/png/rstudio.png
index 6df81335..a1811174 100644
Binary files a/png/rstudio.png and b/png/rstudio.png differ
diff --git a/png/rstudioserver.png b/png/rstudioserver.png
index 6df81335..a1811174 100644
Binary files a/png/rstudioserver.png and b/png/rstudioserver.png differ
diff --git a/png/ruby.png b/png/ruby.png
index ecf48b26..faf4d750 100644
Binary files a/png/ruby.png and b/png/ruby.png differ
diff --git a/png/rumble.png b/png/rumble.png
index d28430a2..cc6c3e7b 100644
Binary files a/png/rumble.png and b/png/rumble.png differ
diff --git a/png/rundeck.png b/png/rundeck.png
index c94c9ae2..ef9738d8 100644
Binary files a/png/rundeck.png and b/png/rundeck.png differ
diff --git a/png/runeaudio.png b/png/runeaudio.png
deleted file mode 100644
index 4d69f3e0..00000000
Binary files a/png/runeaudio.png and /dev/null differ
diff --git a/png/runonflux.png b/png/runonflux.png
index 66d3ff79..23c92f58 100644
Binary files a/png/runonflux.png and b/png/runonflux.png differ
diff --git a/png/runson-light.png b/png/runson-light.png
new file mode 100644
index 00000000..d223df78
Binary files /dev/null and b/png/runson-light.png differ
diff --git a/png/runson.png b/png/runson.png
new file mode 100644
index 00000000..afa870d4
Binary files /dev/null and b/png/runson.png differ
diff --git a/png/rust.png b/png/rust.png
index be85d158..460d4153 100644
Binary files a/png/rust.png and b/png/rust.png differ
diff --git a/png/rustdesk.png b/png/rustdesk.png
index 805a0228..4225d231 100644
Binary files a/png/rustdesk.png and b/png/rustdesk.png differ
diff --git a/png/rutorrent.png b/png/rutorrent.png
index 40d4a4ec..fecdf6fd 100644
Binary files a/png/rutorrent.png and b/png/rutorrent.png differ
diff --git a/png/ryot-light.png b/png/ryot-light.png
index cf880387..a71e26e2 100644
Binary files a/png/ryot-light.png and b/png/ryot-light.png differ
diff --git a/png/ryot.png b/png/ryot.png
index 8f03b124..f2abbfba 100644
Binary files a/png/ryot.png and b/png/ryot.png differ
diff --git a/png/sabnzbd-alt.png b/png/sabnzbd-alt.png
deleted file mode 100644
index b2628690..00000000
Binary files a/png/sabnzbd-alt.png and /dev/null differ
diff --git a/png/sabnzbd-light.png b/png/sabnzbd-light.png
new file mode 100644
index 00000000..93533b05
Binary files /dev/null and b/png/sabnzbd-light.png differ
diff --git a/png/sabnzbd.png b/png/sabnzbd.png
index c77a304d..94808f59 100644
Binary files a/png/sabnzbd.png and b/png/sabnzbd.png differ
diff --git a/png/safari-ios.png b/png/safari-ios.png
index 9701da69..77133a54 100644
Binary files a/png/safari-ios.png and b/png/safari-ios.png differ
diff --git a/png/safari.png b/png/safari.png
index 0a049e25..77133a54 100644
Binary files a/png/safari.png and b/png/safari.png differ
diff --git a/png/sagemcom.png b/png/sagemcom.png
deleted file mode 100644
index cc33686a..00000000
Binary files a/png/sagemcom.png and /dev/null differ
diff --git a/png/salad.png b/png/salad.png
deleted file mode 100644
index 6316a70e..00000000
Binary files a/png/salad.png and /dev/null differ
diff --git a/png/saltcorn.png b/png/saltcorn.png
new file mode 100644
index 00000000..3a7ade3b
Binary files /dev/null and b/png/saltcorn.png differ
diff --git a/png/samsung-internet.png b/png/samsung-internet.png
index 0c77c7ac..307c81b0 100644
Binary files a/png/samsung-internet.png and b/png/samsung-internet.png differ
diff --git a/png/sandstorm.png b/png/sandstorm.png
index 8337659f..b317dce7 100644
Binary files a/png/sandstorm.png and b/png/sandstorm.png differ
diff --git a/png/scanservjs.png b/png/scanservjs.png
deleted file mode 100644
index 75afdb4c..00000000
Binary files a/png/scanservjs.png and /dev/null differ
diff --git a/png/schneider.png b/png/schneider.png
deleted file mode 100644
index d08011fc..00000000
Binary files a/png/schneider.png and /dev/null differ
diff --git a/png/screenconnect.png b/png/screenconnect.png
index 3b98850d..ebd67a2d 100644
Binary files a/png/screenconnect.png and b/png/screenconnect.png differ
diff --git a/png/scrutiny-light.png b/png/scrutiny-light.png
index 8d0f4850..eaf0ab0d 100644
Binary files a/png/scrutiny-light.png and b/png/scrutiny-light.png differ
diff --git a/png/scrutiny.png b/png/scrutiny.png
index 9b8f5e58..32e01250 100644
Binary files a/png/scrutiny.png and b/png/scrutiny.png differ
diff --git a/png/scrypted.png b/png/scrypted.png
deleted file mode 100644
index 45e4659f..00000000
Binary files a/png/scrypted.png and /dev/null differ
diff --git a/png/seafile.png b/png/seafile.png
index d4445192..9e91e1eb 100644
Binary files a/png/seafile.png and b/png/seafile.png differ
diff --git a/png/searx-light.png b/png/searx-light.png
deleted file mode 100644
index ee51e197..00000000
Binary files a/png/searx-light.png and /dev/null differ
diff --git a/png/searx.png b/png/searx.png
index b59eb728..fb5a3556 100644
Binary files a/png/searx.png and b/png/searx.png differ
diff --git a/png/searxng.png b/png/searxng.png
index b7d60049..13b4e57b 100644
Binary files a/png/searxng.png and b/png/searxng.png differ
diff --git a/png/secureai-tools-light.png b/png/secureai-tools-light.png
new file mode 100644
index 00000000..66d9e4dd
Binary files /dev/null and b/png/secureai-tools-light.png differ
diff --git a/png/secureai-tools.png b/png/secureai-tools.png
new file mode 100644
index 00000000..02da451d
Binary files /dev/null and b/png/secureai-tools.png differ
diff --git a/png/seelf.png b/png/seelf.png
new file mode 100644
index 00000000..c5c175a4
Binary files /dev/null and b/png/seelf.png differ
diff --git a/png/self-hosted-gateway.png b/png/self-hosted-gateway.png
new file mode 100644
index 00000000..d7e6798c
Binary files /dev/null and b/png/self-hosted-gateway.png differ
diff --git a/png/selfh-st-light.png b/png/selfh-st-light.png
new file mode 100644
index 00000000..992a38ca
Binary files /dev/null and b/png/selfh-st-light.png differ
diff --git a/png/selfh-st.png b/png/selfh-st.png
new file mode 100644
index 00000000..93d0040b
Binary files /dev/null and b/png/selfh-st.png differ
diff --git a/png/selfhosted-light.png b/png/selfhosted-light.png
deleted file mode 100644
index 682ff3e1..00000000
Binary files a/png/selfhosted-light.png and /dev/null differ
diff --git a/png/selfhosted.png b/png/selfhosted.png
deleted file mode 100644
index e64a9778..00000000
Binary files a/png/selfhosted.png and /dev/null differ
diff --git a/png/semaphore-dark.png b/png/semaphore-dark.png
new file mode 100644
index 00000000..a50c2727
Binary files /dev/null and b/png/semaphore-dark.png differ
diff --git a/png/semaphore.png b/png/semaphore.png
index 13f87cca..5ec2cb62 100644
Binary files a/png/semaphore.png and b/png/semaphore.png differ
diff --git a/png/send.png b/png/send.png
index 150d5997..11626f54 100644
Binary files a/png/send.png and b/png/send.png differ
diff --git a/png/sendgrid.png b/png/sendgrid.png
new file mode 100644
index 00000000..f2038efc
Binary files /dev/null and b/png/sendgrid.png differ
diff --git a/png/sendinblue.png b/png/sendinblue.png
index cc98b788..a5c50beb 100644
Binary files a/png/sendinblue.png and b/png/sendinblue.png differ
diff --git a/png/sensu.png b/png/sensu.png
index ff46b02e..8595ec13 100644
Binary files a/png/sensu.png and b/png/sensu.png differ
diff --git a/png/sentry-light.png b/png/sentry-light.png
new file mode 100644
index 00000000..69012fef
Binary files /dev/null and b/png/sentry-light.png differ
diff --git a/png/sentry.png b/png/sentry.png
index 2a44ab3e..58dbdfb8 100644
Binary files a/png/sentry.png and b/png/sentry.png differ
diff --git a/png/seq.png b/png/seq.png
deleted file mode 100644
index fdc058d2..00000000
Binary files a/png/seq.png and /dev/null differ
diff --git a/png/serpbear.png b/png/serpbear.png
deleted file mode 100644
index e8a0438f..00000000
Binary files a/png/serpbear.png and /dev/null differ
diff --git a/png/servarr-light.png b/png/servarr-light.png
index 1be60698..899bf979 100644
Binary files a/png/servarr-light.png and b/png/servarr-light.png differ
diff --git a/png/servarr.png b/png/servarr.png
index be289933..86167b43 100644
Binary files a/png/servarr.png and b/png/servarr.png differ
diff --git a/png/serviio-light.png b/png/serviio-light.png
new file mode 100644
index 00000000..1df26be6
Binary files /dev/null and b/png/serviio-light.png differ
diff --git a/png/serviio.png b/png/serviio.png
index e45bfa66..2fb0de81 100644
Binary files a/png/serviio.png and b/png/serviio.png differ
diff --git a/png/session.png b/png/session.png
index c7820a68..59e0b611 100644
Binary files a/png/session.png and b/png/session.png differ
diff --git a/png/sftpgo.png b/png/sftpgo.png
deleted file mode 100644
index e1537af2..00000000
Binary files a/png/sftpgo.png and /dev/null differ
diff --git a/png/shaarli.png b/png/shaarli.png
index 979f5f6c..f01abe57 100644
Binary files a/png/shaarli.png and b/png/shaarli.png differ
diff --git a/png/shell-light.png b/png/shell-light.png
index 03ec0184..e0924293 100644
Binary files a/png/shell-light.png and b/png/shell-light.png differ
diff --git a/png/shell-tips-light.png b/png/shell-tips-light.png
index f5c8d81e..59efcc4d 100644
Binary files a/png/shell-tips-light.png and b/png/shell-tips-light.png differ
diff --git a/png/shell-tips.png b/png/shell-tips.png
index 5f932f5b..96420fbb 100644
Binary files a/png/shell-tips.png and b/png/shell-tips.png differ
diff --git a/png/shell.png b/png/shell.png
index 3a535a17..406a7fd3 100644
Binary files a/png/shell.png and b/png/shell.png differ
diff --git a/png/shellhub.png b/png/shellhub.png
index 3868a771..a3fefdee 100644
Binary files a/png/shellhub.png and b/png/shellhub.png differ
diff --git a/png/shellngn.png b/png/shellngn.png
index 43bc55a0..b1aeba2c 100644
Binary files a/png/shellngn.png and b/png/shellngn.png differ
diff --git a/png/shelly.png b/png/shelly.png
index 36fac689..176094fa 100644
Binary files a/png/shelly.png and b/png/shelly.png differ
diff --git a/png/shinobi.png b/png/shinobi.png
deleted file mode 100644
index 4ad55191..00000000
Binary files a/png/shinobi.png and /dev/null differ
diff --git a/png/shiori.png b/png/shiori.png
index 4431f602..66bd47a7 100644
Binary files a/png/shiori.png and b/png/shiori.png differ
diff --git a/png/shlink.png b/png/shlink.png
index 743efa07..1ca17f52 100644
Binary files a/png/shlink.png and b/png/shlink.png differ
diff --git a/png/shoko-server.png b/png/shoko-server.png
new file mode 100644
index 00000000..f00fed96
Binary files /dev/null and b/png/shoko-server.png differ
diff --git a/png/shoko.png b/png/shoko.png
index 136f09b5..9edbaad0 100644
Binary files a/png/shoko.png and b/png/shoko.png differ
diff --git a/png/shopify.png b/png/shopify.png
new file mode 100644
index 00000000..d898c099
Binary files /dev/null and b/png/shopify.png differ
diff --git a/png/sickbeard.png b/png/sickbeard.png
index c213b55e..0a3c969e 100644
Binary files a/png/sickbeard.png and b/png/sickbeard.png differ
diff --git a/png/sickchill.png b/png/sickchill.png
deleted file mode 100644
index ce4f796c..00000000
Binary files a/png/sickchill.png and /dev/null differ
diff --git a/png/sickgear.png b/png/sickgear.png
deleted file mode 100644
index ab405b12..00000000
Binary files a/png/sickgear.png and /dev/null differ
diff --git a/png/signal-transparent.png b/png/signal-transparent.png
deleted file mode 100644
index a11025b6..00000000
Binary files a/png/signal-transparent.png and /dev/null differ
diff --git a/png/signal.png b/png/signal.png
index d279a728..2b6a8876 100644
Binary files a/png/signal.png and b/png/signal.png differ
diff --git a/png/sigstore.png b/png/sigstore.png
index d941af0b..b1ba1f30 100644
Binary files a/png/sigstore.png and b/png/sigstore.png differ
diff --git a/png/silverbullet.png b/png/silverbullet.png
deleted file mode 100644
index 866f4c09..00000000
Binary files a/png/silverbullet.png and /dev/null differ
diff --git a/png/simplelogin.png b/png/simplelogin.png
index a9dd0ee3..7118aa85 100644
Binary files a/png/simplelogin.png and b/png/simplelogin.png differ
diff --git a/png/simplex-chat.png b/png/simplex-chat.png
new file mode 100644
index 00000000..82d83c3b
Binary files /dev/null and b/png/simplex-chat.png differ
diff --git a/png/sinusbot.png b/png/sinusbot.png
index af297523..9068cb5c 100644
Binary files a/png/sinusbot.png and b/png/sinusbot.png differ
diff --git a/png/siyuan.png b/png/siyuan.png
index 90e1d3f0..22aa8588 100644
Binary files a/png/siyuan.png and b/png/siyuan.png differ
diff --git a/png/skylink-fibernet.png b/png/skylink-fibernet.png
deleted file mode 100644
index fee5a9ea..00000000
Binary files a/png/skylink-fibernet.png and /dev/null differ
diff --git a/png/skype.png b/png/skype.png
index a2a92e5f..2a55daf7 100644
Binary files a/png/skype.png and b/png/skype.png differ
diff --git a/png/slaanesh.png b/png/slaanesh.png
deleted file mode 100644
index 4ad34304..00000000
Binary files a/png/slaanesh.png and /dev/null differ
diff --git a/png/slack.png b/png/slack.png
index 4e00728c..341404ef 100644
Binary files a/png/slack.png and b/png/slack.png differ
diff --git a/png/slash-light.png b/png/slash-light.png
new file mode 100644
index 00000000..411b030e
Binary files /dev/null and b/png/slash-light.png differ
diff --git a/png/slash.png b/png/slash.png
new file mode 100644
index 00000000..4a1db43c
Binary files /dev/null and b/png/slash.png differ
diff --git a/png/slice.png b/png/slice.png
index 8ab1d559..8c79ca0b 100644
Binary files a/png/slice.png and b/png/slice.png differ
diff --git a/png/slidev.png b/png/slidev.png
index 4a8a68d8..db963b38 100644
Binary files a/png/slidev.png and b/png/slidev.png differ
diff --git a/png/slink-light.png b/png/slink-light.png
deleted file mode 100644
index c14ff235..00000000
Binary files a/png/slink-light.png and /dev/null differ
diff --git a/png/slink.png b/png/slink.png
deleted file mode 100644
index 34a59a43..00000000
Binary files a/png/slink.png and /dev/null differ
diff --git a/png/slskd.png b/png/slskd.png
index 9b279226..e146a259 100644
Binary files a/png/slskd.png and b/png/slskd.png differ
diff --git a/png/smartfox.png b/png/smartfox.png
index 6ef59b37..d3d8dc2a 100644
Binary files a/png/smartfox.png and b/png/smartfox.png differ
diff --git a/png/smokeping.png b/png/smokeping.png
deleted file mode 100644
index b28cc4c3..00000000
Binary files a/png/smokeping.png and /dev/null differ
diff --git a/png/snapcast-alt-light.png b/png/snapcast-alt-light.png
deleted file mode 100644
index 53f8f160..00000000
Binary files a/png/snapcast-alt-light.png and /dev/null differ
diff --git a/png/snapcast-alt.png b/png/snapcast-alt.png
deleted file mode 100644
index f3bf4c7b..00000000
Binary files a/png/snapcast-alt.png and /dev/null differ
diff --git a/png/snapcast.png b/png/snapcast.png
index 4fff812e..cab94fe8 100644
Binary files a/png/snapcast.png and b/png/snapcast.png differ
diff --git a/png/snapchat-dark.png b/png/snapchat-dark.png
new file mode 100644
index 00000000..d05df596
Binary files /dev/null and b/png/snapchat-dark.png differ
diff --git a/png/snapchat.png b/png/snapchat.png
index 6eeaca10..25bf1e30 100644
Binary files a/png/snapchat.png and b/png/snapchat.png differ
diff --git a/png/snapdrop.png b/png/snapdrop.png
index 640ed1e9..96639b43 100644
Binary files a/png/snapdrop.png and b/png/snapdrop.png differ
diff --git a/png/snappymail-light.png b/png/snappymail-light.png
index 61fb2de4..13284a9a 100644
Binary files a/png/snappymail-light.png and b/png/snappymail-light.png differ
diff --git a/png/snappymail.png b/png/snappymail.png
index a7a740ca..2d3fb1b0 100644
Binary files a/png/snappymail.png and b/png/snappymail.png differ
diff --git a/png/snibox.png b/png/snibox.png
deleted file mode 100644
index 33f4f4cd..00000000
Binary files a/png/snibox.png and /dev/null differ
diff --git a/png/snikket.png b/png/snikket.png
new file mode 100644
index 00000000..1607b673
Binary files /dev/null and b/png/snikket.png differ
diff --git a/png/snipe-it.png b/png/snipe-it.png
deleted file mode 100644
index fd21a753..00000000
Binary files a/png/snipe-it.png and /dev/null differ
diff --git a/png/snippetbox.png b/png/snippetbox.png
deleted file mode 100644
index 2b266019..00000000
Binary files a/png/snippetbox.png and /dev/null differ
diff --git a/png/socialhome.png b/png/socialhome.png
new file mode 100644
index 00000000..19e4292b
Binary files /dev/null and b/png/socialhome.png differ
diff --git a/png/sogo.png b/png/sogo.png
index e0f41e41..fe45e874 100644
Binary files a/png/sogo.png and b/png/sogo.png differ
diff --git a/png/solid-invoice.png b/png/solid-invoice.png
deleted file mode 100644
index 1e063485..00000000
Binary files a/png/solid-invoice.png and /dev/null differ
diff --git a/png/solidtime-light.png b/png/solidtime-light.png
new file mode 100644
index 00000000..6a53dc51
Binary files /dev/null and b/png/solidtime-light.png differ
diff --git a/png/solidtime.png b/png/solidtime.png
new file mode 100644
index 00000000..9f315864
Binary files /dev/null and b/png/solidtime.png differ
diff --git a/png/sonarqube.png b/png/sonarqube.png
index 3157dc0c..0d1ada19 100644
Binary files a/png/sonarqube.png and b/png/sonarqube.png differ
diff --git a/png/sonarr-dark.png b/png/sonarr-dark.png
new file mode 100644
index 00000000..1b7efef6
Binary files /dev/null and b/png/sonarr-dark.png differ
diff --git a/png/sonarr.png b/png/sonarr.png
index 245d5514..34a1c455 100644
Binary files a/png/sonarr.png and b/png/sonarr.png differ
diff --git a/png/sonatype-repository-light.png b/png/sonatype-repository-light.png
deleted file mode 100644
index 096b6896..00000000
Binary files a/png/sonatype-repository-light.png and /dev/null differ
diff --git a/png/sonatype-repository.png b/png/sonatype-repository.png
deleted file mode 100644
index c435841a..00000000
Binary files a/png/sonatype-repository.png and /dev/null differ
diff --git a/png/sophos-dark.png b/png/sophos-dark.png
new file mode 100644
index 00000000..55f8238e
Binary files /dev/null and b/png/sophos-dark.png differ
diff --git a/png/sophos.png b/png/sophos.png
index 52a51b8c..07db1bba 100644
Binary files a/png/sophos.png and b/png/sophos.png differ
diff --git a/png/soulseek.png b/png/soulseek.png
deleted file mode 100644
index a82410e0..00000000
Binary files a/png/soulseek.png and /dev/null differ
diff --git a/png/sourcegraph.png b/png/sourcegraph.png
index 07b8dc73..a57b3b00 100644
Binary files a/png/sourcegraph.png and b/png/sourcegraph.png differ
diff --git a/png/spamassassin.png b/png/spamassassin.png
index fa2d762b..77317d69 100644
Binary files a/png/spamassassin.png and b/png/spamassassin.png differ
diff --git a/png/sparkleshare.png b/png/sparkleshare.png
index c57257af..9bed9ace 100644
Binary files a/png/sparkleshare.png and b/png/sparkleshare.png differ
diff --git a/png/specifically-clementines.png b/png/specifically-clementines.png
new file mode 100644
index 00000000..0344e56c
Binary files /dev/null and b/png/specifically-clementines.png differ
diff --git a/png/specter-desktop.png b/png/specter-desktop.png
deleted file mode 100644
index 5ed217fe..00000000
Binary files a/png/specter-desktop.png and /dev/null differ
diff --git a/png/speedtest-tracker-old.png b/png/speedtest-tracker-old.png
deleted file mode 100644
index 15c6ca5b..00000000
Binary files a/png/speedtest-tracker-old.png and /dev/null differ
diff --git a/png/speedtest-tracker.png b/png/speedtest-tracker.png
deleted file mode 100644
index 0a992472..00000000
Binary files a/png/speedtest-tracker.png and /dev/null differ
diff --git a/png/sphinx-doc.png b/png/sphinx-doc.png
index a44bec3b..c3ac6375 100644
Binary files a/png/sphinx-doc.png and b/png/sphinx-doc.png differ
diff --git a/png/sphinx-relay.png b/png/sphinx-relay.png
index dcd4a893..6817c808 100644
Binary files a/png/sphinx-relay.png and b/png/sphinx-relay.png differ
diff --git a/png/sphinx.png b/png/sphinx.png
index a44bec3b..c3ac6375 100644
Binary files a/png/sphinx.png and b/png/sphinx.png differ
diff --git a/png/spiderfoot.png b/png/spiderfoot.png
deleted file mode 100644
index a83cb84c..00000000
Binary files a/png/spiderfoot.png and /dev/null differ
diff --git a/png/splunk.png b/png/splunk.png
index a39ab0d8..07dce0f0 100644
Binary files a/png/splunk.png and b/png/splunk.png differ
diff --git a/png/spoolman.png b/png/spoolman.png
index c5fd461b..fa3dded5 100644
Binary files a/png/spoolman.png and b/png/spoolman.png differ
diff --git a/png/spotify.png b/png/spotify.png
index 0c843eeb..362f42ae 100644
Binary files a/png/spotify.png and b/png/spotify.png differ
diff --git a/png/spotnet.png b/png/spotnet.png
deleted file mode 100644
index a68bde89..00000000
Binary files a/png/spotnet.png and /dev/null differ
diff --git a/png/sqlitebrowser.png b/png/sqlitebrowser.png
index 9ea9a466..ad9b00f3 100644
Binary files a/png/sqlitebrowser.png and b/png/sqlitebrowser.png differ
diff --git a/png/squeezebox-server.png b/png/squeezebox-server.png
deleted file mode 100644
index d91de0cf..00000000
Binary files a/png/squeezebox-server.png and /dev/null differ
diff --git a/png/squidex.png b/png/squidex.png
index 02dcb621..6a8ee717 100644
Binary files a/png/squidex.png and b/png/squidex.png differ
diff --git a/png/squirrel-servers-manager.png b/png/squirrel-servers-manager.png
new file mode 100644
index 00000000..85522724
Binary files /dev/null and b/png/squirrel-servers-manager.png differ
diff --git a/png/sshwifty.png b/png/sshwifty.png
index ff34b455..279d92a4 100644
Binary files a/png/sshwifty.png and b/png/sshwifty.png differ
diff --git a/png/stalwart-mail-server.png b/png/stalwart-mail-server.png
new file mode 100644
index 00000000..6f0fc795
Binary files /dev/null and b/png/stalwart-mail-server.png differ
diff --git a/png/stalwart.png b/png/stalwart.png
index d00d6846..01edc192 100644
Binary files a/png/stalwart.png and b/png/stalwart.png differ
diff --git a/png/standard-notes.png b/png/standard-notes.png
new file mode 100644
index 00000000..d285b627
Binary files /dev/null and b/png/standard-notes.png differ
diff --git a/png/startpage.png b/png/startpage.png
index 782a2eb0..fb5a5329 100644
Binary files a/png/startpage.png and b/png/startpage.png differ
diff --git a/png/stash.png b/png/stash.png
index 17b6d2cc..2974470d 100644
Binary files a/png/stash.png and b/png/stash.png differ
diff --git a/png/statping-ng.png b/png/statping-ng.png
deleted file mode 100644
index a886a1c2..00000000
Binary files a/png/statping-ng.png and /dev/null differ
diff --git a/png/statping.png b/png/statping.png
deleted file mode 100644
index a886a1c2..00000000
Binary files a/png/statping.png and /dev/null differ
diff --git a/png/stb-proxy.png b/png/stb-proxy.png
index 1d981c73..1b1afadf 100644
Binary files a/png/stb-proxy.png and b/png/stb-proxy.png differ
diff --git a/png/steam.png b/png/steam.png
index 2e4cd8ce..1d5043e9 100644
Binary files a/png/steam.png and b/png/steam.png differ
diff --git a/png/step-ca.png b/png/step-ca.png
new file mode 100644
index 00000000..6b2e4841
Binary files /dev/null and b/png/step-ca.png differ
diff --git a/png/stirling-pdf.png b/png/stirling-pdf.png
index e9985994..8f853a6d 100644
Binary files a/png/stirling-pdf.png and b/png/stirling-pdf.png differ
diff --git a/png/storj.png b/png/storj.png
index 74e7ffad..7b617870 100644
Binary files a/png/storj.png and b/png/storj.png differ
diff --git a/png/storm.png b/png/storm.png
index 97b1572f..e1a4a43b 100644
Binary files a/png/storm.png and b/png/storm.png differ
diff --git a/png/stormkit.png b/png/stormkit.png
new file mode 100644
index 00000000..0dcc7c9f
Binary files /dev/null and b/png/stormkit.png differ
diff --git a/png/strapi.png b/png/strapi.png
index ccc5c3dd..8575fc59 100644
Binary files a/png/strapi.png and b/png/strapi.png differ
diff --git a/png/streama.png b/png/streama.png
deleted file mode 100644
index 63c44269..00000000
Binary files a/png/streama.png and /dev/null differ
diff --git a/png/stremio.png b/png/stremio.png
index 5ffa239e..ea01c090 100644
Binary files a/png/stremio.png and b/png/stremio.png differ
diff --git a/png/stump-alt.png b/png/stump-alt.png
index df4fddcc..6e5bba4e 100644
Binary files a/png/stump-alt.png and b/png/stump-alt.png differ
diff --git a/png/stump.png b/png/stump.png
index 31822b15..84f42c14 100644
Binary files a/png/stump.png and b/png/stump.png differ
diff --git a/png/subatic.png b/png/subatic.png
new file mode 100644
index 00000000..8ad92c2f
Binary files /dev/null and b/png/subatic.png differ
diff --git a/png/substreamer.png b/png/substreamer.png
deleted file mode 100644
index 95b1696d..00000000
Binary files a/png/substreamer.png and /dev/null differ
diff --git a/png/sunshine.png b/png/sunshine.png
index 4be6170e..e4b416b8 100644
Binary files a/png/sunshine.png and b/png/sunshine.png differ
diff --git a/png/supabase.png b/png/supabase.png
new file mode 100644
index 00000000..1e425dde
Binary files /dev/null and b/png/supabase.png differ
diff --git a/png/supermicro.png b/png/supermicro.png
index 529ed662..eb14ab1f 100644
Binary files a/png/supermicro.png and b/png/supermicro.png differ
diff --git a/png/surveymonkey.png b/png/surveymonkey.png
new file mode 100644
index 00000000..6a857249
Binary files /dev/null and b/png/surveymonkey.png differ
diff --git a/png/swarmpit.png b/png/swarmpit.png
index 6ccf29a2..896cc861 100644
Binary files a/png/swarmpit.png and b/png/swarmpit.png differ
diff --git a/png/swift.png b/png/swift.png
index f805626a..fae7cd80 100644
Binary files a/png/swift.png and b/png/swift.png differ
diff --git a/png/swizzin.png b/png/swizzin.png
deleted file mode 100644
index 5ba06bdf..00000000
Binary files a/png/swizzin.png and /dev/null differ
diff --git a/png/syft.png b/png/syft.png
deleted file mode 100644
index f4fa4e58..00000000
Binary files a/png/syft.png and /dev/null differ
diff --git a/png/symmetricom-light.png b/png/symmetricom-light.png
index 9ef7d71a..3a843a20 100644
Binary files a/png/symmetricom-light.png and b/png/symmetricom-light.png differ
diff --git a/png/symmetricom.png b/png/symmetricom.png
index bfdabcb8..68e5778c 100644
Binary files a/png/symmetricom.png and b/png/symmetricom.png differ
diff --git a/png/sympa.png b/png/sympa.png
deleted file mode 100644
index 58f3fb98..00000000
Binary files a/png/sympa.png and /dev/null differ
diff --git a/png/synapse-light.png b/png/synapse-light.png
new file mode 100644
index 00000000..26d88ff7
Binary files /dev/null and b/png/synapse-light.png differ
diff --git a/png/synapse.png b/png/synapse.png
new file mode 100644
index 00000000..5ad3b9a3
Binary files /dev/null and b/png/synapse.png differ
diff --git a/png/syncany.png b/png/syncany.png
deleted file mode 100644
index 9aaadcdc..00000000
Binary files a/png/syncany.png and /dev/null differ
diff --git a/png/synclounge-light.png b/png/synclounge-light.png
deleted file mode 100644
index 1b504a3c..00000000
Binary files a/png/synclounge-light.png and /dev/null differ
diff --git a/png/synclounge.png b/png/synclounge.png
deleted file mode 100644
index b9999c2f..00000000
Binary files a/png/synclounge.png and /dev/null differ
diff --git a/png/syncthing-dark.png b/png/syncthing-dark.png
new file mode 100644
index 00000000..aa620064
Binary files /dev/null and b/png/syncthing-dark.png differ
diff --git a/png/syncthing.png b/png/syncthing.png
index e397aef6..80e71b91 100644
Binary files a/png/syncthing.png and b/png/syncthing.png differ
diff --git a/png/synology-audio-station.png b/png/synology-audio-station.png
deleted file mode 100644
index 3a965af3..00000000
Binary files a/png/synology-audio-station.png and /dev/null differ
diff --git a/png/synology-calendar.png b/png/synology-calendar.png
deleted file mode 100644
index 5db8499f..00000000
Binary files a/png/synology-calendar.png and /dev/null differ
diff --git a/png/synology-chat.png b/png/synology-chat.png
deleted file mode 100644
index 25c5c615..00000000
Binary files a/png/synology-chat.png and /dev/null differ
diff --git a/png/synology-cloud-sync.png b/png/synology-cloud-sync.png
deleted file mode 100644
index 2e58e93a..00000000
Binary files a/png/synology-cloud-sync.png and /dev/null differ
diff --git a/png/synology-contacts.png b/png/synology-contacts.png
deleted file mode 100644
index 66d2b32d..00000000
Binary files a/png/synology-contacts.png and /dev/null differ
diff --git a/png/synology-document-viewer.png b/png/synology-document-viewer.png
deleted file mode 100644
index d2e272dc..00000000
Binary files a/png/synology-document-viewer.png and /dev/null differ
diff --git a/png/synology-download-station.png b/png/synology-download-station.png
deleted file mode 100644
index a4a995f5..00000000
Binary files a/png/synology-download-station.png and /dev/null differ
diff --git a/png/synology-drive-server.png b/png/synology-drive-server.png
deleted file mode 100644
index e0304ff7..00000000
Binary files a/png/synology-drive-server.png and /dev/null differ
diff --git a/png/synology-drive.png b/png/synology-drive.png
deleted file mode 100644
index e0304ff7..00000000
Binary files a/png/synology-drive.png and /dev/null differ
diff --git a/png/synology-dsm.png b/png/synology-dsm.png
index 2ffe3b6e..a6d81faa 100644
Binary files a/png/synology-dsm.png and b/png/synology-dsm.png differ
diff --git a/png/synology-file-station.png b/png/synology-file-station.png
deleted file mode 100644
index 32a7bede..00000000
Binary files a/png/synology-file-station.png and /dev/null differ
diff --git a/png/synology-light.png b/png/synology-light.png
new file mode 100644
index 00000000..4530a53a
Binary files /dev/null and b/png/synology-light.png differ
diff --git a/png/synology-mail-plus.png b/png/synology-mail-plus.png
deleted file mode 100644
index 081addd3..00000000
Binary files a/png/synology-mail-plus.png and /dev/null differ
diff --git a/png/synology-mail-station.png b/png/synology-mail-station.png
deleted file mode 100644
index 2c496023..00000000
Binary files a/png/synology-mail-station.png and /dev/null differ
diff --git a/png/synology-note-station.png b/png/synology-note-station.png
deleted file mode 100644
index a7111376..00000000
Binary files a/png/synology-note-station.png and /dev/null differ
diff --git a/png/synology-office.png b/png/synology-office.png
deleted file mode 100644
index 59955f22..00000000
Binary files a/png/synology-office.png and /dev/null differ
diff --git a/png/synology-pdfviewer.png b/png/synology-pdfviewer.png
deleted file mode 100644
index d2e272dc..00000000
Binary files a/png/synology-pdfviewer.png and /dev/null differ
diff --git a/png/synology-photo-station.png b/png/synology-photo-station.png
deleted file mode 100644
index 9dd5e904..00000000
Binary files a/png/synology-photo-station.png and /dev/null differ
diff --git a/png/synology-photos.png b/png/synology-photos.png
deleted file mode 100644
index a4579d3e..00000000
Binary files a/png/synology-photos.png and /dev/null differ
diff --git a/png/synology-surveillance-station.png b/png/synology-surveillance-station.png
deleted file mode 100644
index 0358966e..00000000
Binary files a/png/synology-surveillance-station.png and /dev/null differ
diff --git a/png/synology-text-editor.png b/png/synology-text-editor.png
deleted file mode 100644
index 6f877842..00000000
Binary files a/png/synology-text-editor.png and /dev/null differ
diff --git a/png/synology-video-station.png b/png/synology-video-station.png
deleted file mode 100644
index dd2f50a0..00000000
Binary files a/png/synology-video-station.png and /dev/null differ
diff --git a/png/synology-webstation.png b/png/synology-webstation.png
deleted file mode 100644
index 186e7c07..00000000
Binary files a/png/synology-webstation.png and /dev/null differ
diff --git a/png/synology.png b/png/synology.png
index 7619d0f4..42987b40 100644
Binary files a/png/synology.png and b/png/synology.png differ
diff --git a/png/sysreptor.png b/png/sysreptor.png
index 726f565b..0b1b95a2 100644
Binary files a/png/sysreptor.png and b/png/sysreptor.png differ
diff --git a/png/tabula.png b/png/tabula.png
index b3af9ec7..a8c8a0dc 100644
Binary files a/png/tabula.png and b/png/tabula.png differ
diff --git a/png/tacticalrmm.png b/png/tacticalrmm.png
index 049858f3..7bed60ac 100644
Binary files a/png/tacticalrmm.png and b/png/tacticalrmm.png differ
diff --git a/png/taiga.png b/png/taiga.png
index 9e22ce9d..b973862d 100644
Binary files a/png/taiga.png and b/png/taiga.png differ
diff --git a/png/tailscale-light.png b/png/tailscale-light.png
index 980ac874..63af31f7 100644
Binary files a/png/tailscale-light.png and b/png/tailscale-light.png differ
diff --git a/png/tailscale.png b/png/tailscale.png
index a2353c75..e707e3bc 100644
Binary files a/png/tailscale.png and b/png/tailscale.png differ
diff --git a/png/talos.png b/png/talos.png
index 4dc84ea5..16a2f223 100644
Binary files a/png/talos.png and b/png/talos.png differ
diff --git a/png/tandoor-recipes.png b/png/tandoor-recipes.png
new file mode 100644
index 00000000..15890d35
Binary files /dev/null and b/png/tandoor-recipes.png differ
diff --git a/png/tandoor.png b/png/tandoor.png
deleted file mode 100644
index 60bdaad7..00000000
Binary files a/png/tandoor.png and /dev/null differ
diff --git a/png/tandoorrecipes.png b/png/tandoorrecipes.png
deleted file mode 100644
index 60bdaad7..00000000
Binary files a/png/tandoorrecipes.png and /dev/null differ
diff --git a/png/tangerine-ui.png b/png/tangerine-ui.png
new file mode 100644
index 00000000..412e1328
Binary files /dev/null and b/png/tangerine-ui.png differ
diff --git a/png/tanoshi.png b/png/tanoshi.png
deleted file mode 100644
index b0ca574c..00000000
Binary files a/png/tanoshi.png and /dev/null differ
diff --git a/png/tar1090.png b/png/tar1090.png
deleted file mode 100644
index c21fd821..00000000
Binary files a/png/tar1090.png and /dev/null differ
diff --git a/png/taskcafe.png b/png/taskcafe.png
index fc7762b0..888f45bc 100644
Binary files a/png/taskcafe.png and b/png/taskcafe.png differ
diff --git a/png/tasmoadmin.png b/png/tasmoadmin.png
deleted file mode 100644
index eed9b643..00000000
Binary files a/png/tasmoadmin.png and /dev/null differ
diff --git a/png/tasmota-light.png b/png/tasmota-light.png
index 6d7c500e..f6060a89 100644
Binary files a/png/tasmota-light.png and b/png/tasmota-light.png differ
diff --git a/png/tasmota.png b/png/tasmota.png
index 0321890c..f55e3469 100644
Binary files a/png/tasmota.png and b/png/tasmota.png differ
diff --git a/png/tautulli.png b/png/tautulli.png
index c8a84c13..8e98645b 100644
Binary files a/png/tautulli.png and b/png/tautulli.png differ
diff --git a/png/tdarr.png b/png/tdarr.png
deleted file mode 100644
index b507192c..00000000
Binary files a/png/tdarr.png and /dev/null differ
diff --git a/png/teamcity-light.png b/png/teamcity-light.png
new file mode 100644
index 00000000..b365dc17
Binary files /dev/null and b/png/teamcity-light.png differ
diff --git a/png/teamcity.png b/png/teamcity.png
index ad59d0d4..5e2e6458 100644
Binary files a/png/teamcity.png and b/png/teamcity.png differ
diff --git a/png/teamspeak.png b/png/teamspeak.png
index 9cc027fe..513e815b 100644
Binary files a/png/teamspeak.png and b/png/teamspeak.png differ
diff --git a/png/technitium.png b/png/technitium.png
deleted file mode 100644
index 09d325f7..00000000
Binary files a/png/technitium.png and /dev/null differ
diff --git a/png/teedy.png b/png/teedy.png
deleted file mode 100644
index 9cbc395c..00000000
Binary files a/png/teedy.png and /dev/null differ
diff --git a/png/telegraf.png b/png/telegraf.png
index c609ca1f..b19eb4f9 100644
Binary files a/png/telegraf.png and b/png/telegraf.png differ
diff --git a/png/telegram.png b/png/telegram.png
index c0db5118..9afb603c 100644
Binary files a/png/telegram.png and b/png/telegram.png differ
diff --git a/png/telekom.png b/png/telekom.png
index 26eed82b..1c8f94ed 100644
Binary files a/png/telekom.png and b/png/telekom.png differ
diff --git a/png/teleport.png b/png/teleport.png
index b128b6f2..f86c405f 100644
Binary files a/png/teleport.png and b/png/teleport.png differ
diff --git a/png/tenda.png b/png/tenda.png
index 8628ac51..8b779d21 100644
Binary files a/png/tenda.png and b/png/tenda.png differ
diff --git a/png/terminal.png b/png/terminal.png
index f1ffe015..83cc5694 100644
Binary files a/png/terminal.png and b/png/terminal.png differ
diff --git a/png/terraform.png b/png/terraform.png
index 1842872f..9f3a3812 100644
Binary files a/png/terraform.png and b/png/terraform.png differ
diff --git a/png/teslamate-light.png b/png/teslamate-light.png
new file mode 100644
index 00000000..9bd20d06
Binary files /dev/null and b/png/teslamate-light.png differ
diff --git a/png/teslamate.png b/png/teslamate.png
index 48711858..78ed5c78 100644
Binary files a/png/teslamate.png and b/png/teslamate.png differ
diff --git a/png/thanos.png b/png/thanos.png
index ad7b2a39..450002b4 100644
Binary files a/png/thanos.png and b/png/thanos.png differ
diff --git a/png/the-pirate-bay.png b/png/the-pirate-bay.png
index bd74a9e1..749cddfb 100644
Binary files a/png/the-pirate-bay.png and b/png/the-pirate-bay.png differ
diff --git a/png/the-proxy-bay.png b/png/the-proxy-bay.png
index bd74a9e1..749cddfb 100644
Binary files a/png/the-proxy-bay.png and b/png/the-proxy-bay.png differ
diff --git a/png/theia-light.png b/png/theia-light.png
index b28c0c06..8f6bc6b4 100644
Binary files a/png/theia-light.png and b/png/theia-light.png differ
diff --git a/png/theia.png b/png/theia.png
index 0fcad4d8..31bc602a 100644
Binary files a/png/theia.png and b/png/theia.png differ
diff --git a/png/thelounge.png b/png/thelounge.png
index fee5edfa..f33a3c5a 100644
Binary files a/png/thelounge.png and b/png/thelounge.png differ
diff --git a/png/themepark.png b/png/themepark.png
deleted file mode 100644
index 74d23123..00000000
Binary files a/png/themepark.png and /dev/null differ
diff --git a/png/theodinproject.png b/png/theodinproject.png
index 4de0012a..15df7e4f 100644
Binary files a/png/theodinproject.png and b/png/theodinproject.png differ
diff --git a/png/thingsboard.png b/png/thingsboard.png
index bc4ba6fe..9fe3371f 100644
Binary files a/png/thingsboard.png and b/png/thingsboard.png differ
diff --git a/png/threads-light.png b/png/threads-light.png
new file mode 100644
index 00000000..2b652e9a
Binary files /dev/null and b/png/threads-light.png differ
diff --git a/png/threads.png b/png/threads.png
new file mode 100644
index 00000000..5e64f497
Binary files /dev/null and b/png/threads.png differ
diff --git a/png/thunderbird.png b/png/thunderbird.png
index eb982041..1c0d9c67 100644
Binary files a/png/thunderbird.png and b/png/thunderbird.png differ
diff --git a/png/thunderhub-light.png b/png/thunderhub-light.png
deleted file mode 100644
index 0efd60f5..00000000
Binary files a/png/thunderhub-light.png and /dev/null differ
diff --git a/png/thunderhub.png b/png/thunderhub.png
deleted file mode 100644
index cd30b007..00000000
Binary files a/png/thunderhub.png and /dev/null differ
diff --git a/png/tianji-light.png b/png/tianji-light.png
new file mode 100644
index 00000000..f3430685
Binary files /dev/null and b/png/tianji-light.png differ
diff --git a/png/tianji.png b/png/tianji.png
new file mode 100644
index 00000000..ccb5815c
Binary files /dev/null and b/png/tianji.png differ
diff --git a/png/tiddlywiki-light.png b/png/tiddlywiki-light.png
new file mode 100644
index 00000000..60bcd77f
Binary files /dev/null and b/png/tiddlywiki-light.png differ
diff --git a/png/tiddlywiki.png b/png/tiddlywiki.png
new file mode 100644
index 00000000..849c36de
Binary files /dev/null and b/png/tiddlywiki.png differ
diff --git a/png/tiktok-light.png b/png/tiktok-light.png
index 440155fe..852d0a10 100644
Binary files a/png/tiktok-light.png and b/png/tiktok-light.png differ
diff --git a/png/tiktok.png b/png/tiktok.png
index bcd446de..a4b2bc3c 100644
Binary files a/png/tiktok.png and b/png/tiktok.png differ
diff --git a/png/timemachines-light.png b/png/timemachines-light.png
deleted file mode 100644
index aab19b31..00000000
Binary files a/png/timemachines-light.png and /dev/null differ
diff --git a/png/timemachines.png b/png/timemachines.png
deleted file mode 100644
index 738e3bb6..00000000
Binary files a/png/timemachines.png and /dev/null differ
diff --git a/png/timetagger-light.png b/png/timetagger-light.png
index 5d4b3d52..0f6d7b8b 100644
Binary files a/png/timetagger-light.png and b/png/timetagger-light.png differ
diff --git a/png/timetagger.png b/png/timetagger.png
index c61e4e94..76492725 100644
Binary files a/png/timetagger.png and b/png/timetagger.png differ
diff --git a/png/tinypilot.png b/png/tinypilot.png
deleted file mode 100644
index 87bb2533..00000000
Binary files a/png/tinypilot.png and /dev/null differ
diff --git a/png/tinytinyrss.png b/png/tinytinyrss.png
deleted file mode 100644
index 1b22e446..00000000
Binary files a/png/tinytinyrss.png and /dev/null differ
diff --git a/png/tipi.png b/png/tipi.png
deleted file mode 100644
index 3183f823..00000000
Binary files a/png/tipi.png and /dev/null differ
diff --git a/png/tmdb.png b/png/tmdb.png
new file mode 100644
index 00000000..aafadc8b
Binary files /dev/null and b/png/tmdb.png differ
diff --git a/png/todoist-dark.png b/png/todoist-dark.png
new file mode 100644
index 00000000..5a411469
Binary files /dev/null and b/png/todoist-dark.png differ
diff --git a/png/todoist.png b/png/todoist.png
index 3685387a..8d95da9a 100644
Binary files a/png/todoist.png and b/png/todoist.png differ
diff --git a/png/tolgee.png b/png/tolgee.png
index 020cd6a4..c626dff2 100644
Binary files a/png/tolgee.png and b/png/tolgee.png differ
diff --git a/png/tooljet-dark.png b/png/tooljet-dark.png
new file mode 100644
index 00000000..9c4cef69
Binary files /dev/null and b/png/tooljet-dark.png differ
diff --git a/png/tooljet.png b/png/tooljet.png
index 40eaf198..79230548 100644
Binary files a/png/tooljet.png and b/png/tooljet.png differ
diff --git a/png/tor.png b/png/tor.png
deleted file mode 100644
index 8faa84c3..00000000
Binary files a/png/tor.png and /dev/null differ
diff --git a/png/torrserver.png b/png/torrserver.png
deleted file mode 100644
index 5a2d9e2e..00000000
Binary files a/png/torrserver.png and /dev/null differ
diff --git a/png/touitomamout.png b/png/touitomamout.png
new file mode 100644
index 00000000..fa4b73e0
Binary files /dev/null and b/png/touitomamout.png differ
diff --git a/png/tp-link.png b/png/tp-link.png
index 10875f4e..6c17d8e1 100644
Binary files a/png/tp-link.png and b/png/tp-link.png differ
diff --git a/png/tpdb.png b/png/tpdb.png
new file mode 100644
index 00000000..0d598679
Binary files /dev/null and b/png/tpdb.png differ
diff --git a/png/traccar-dark.png b/png/traccar-dark.png
new file mode 100644
index 00000000..5d6910cb
Binary files /dev/null and b/png/traccar-dark.png differ
diff --git a/png/traccar.png b/png/traccar.png
index 8910a5c4..e0949b35 100644
Binary files a/png/traccar.png and b/png/traccar.png differ
diff --git a/png/traefik-proxy.png b/png/traefik-proxy.png
index 0baf5d28..f0f8111e 100644
Binary files a/png/traefik-proxy.png and b/png/traefik-proxy.png differ
diff --git a/png/traefik.png b/png/traefik.png
index 7e068f29..fea7ebad 100644
Binary files a/png/traefik.png and b/png/traefik.png differ
diff --git a/png/traggo.png b/png/traggo.png
index 2cd83533..7d8760e7 100644
Binary files a/png/traggo.png and b/png/traggo.png differ
diff --git a/png/trakt.png b/png/trakt.png
index d2af8b0e..76db257e 100644
Binary files a/png/trakt.png and b/png/trakt.png differ
diff --git a/png/transmission.png b/png/transmission.png
index 3b821ae9..1c5fd92b 100644
Binary files a/png/transmission.png and b/png/transmission.png differ
diff --git a/png/trash-guides.png b/png/trash-guides.png
deleted file mode 100644
index 8b90714e..00000000
Binary files a/png/trash-guides.png and /dev/null differ
diff --git a/png/trilium.png b/png/trilium.png
index 13a54c25..27c8bcf3 100644
Binary files a/png/trilium.png and b/png/trilium.png differ
diff --git a/png/triliumnext.png b/png/triliumnext.png
new file mode 100644
index 00000000..c0ab67ed
Binary files /dev/null and b/png/triliumnext.png differ
diff --git a/png/trivy.png b/png/trivy.png
deleted file mode 100644
index a1b4925b..00000000
Binary files a/png/trivy.png and /dev/null differ
diff --git a/png/troddit.png b/png/troddit.png
deleted file mode 100644
index 6373b0ec..00000000
Binary files a/png/troddit.png and /dev/null differ
diff --git a/png/trudesk.png b/png/trudesk.png
deleted file mode 100644
index 1f530989..00000000
Binary files a/png/trudesk.png and /dev/null differ
diff --git a/png/truenas-core.png b/png/truenas-core.png
index 586c67cd..adc3246c 100644
Binary files a/png/truenas-core.png and b/png/truenas-core.png differ
diff --git a/png/truenas-enterprise.png b/png/truenas-enterprise.png
deleted file mode 100644
index 47645668..00000000
Binary files a/png/truenas-enterprise.png and /dev/null differ
diff --git a/png/truenas-scale.png b/png/truenas-scale.png
index f38942c5..79d10a0c 100644
Binary files a/png/truenas-scale.png and b/png/truenas-scale.png differ
diff --git a/png/truenas.png b/png/truenas.png
index 586c67cd..2baf6674 100644
Binary files a/png/truenas.png and b/png/truenas.png differ
diff --git a/png/tube-archivist-light.png b/png/tube-archivist-light.png
deleted file mode 100644
index 9008943a..00000000
Binary files a/png/tube-archivist-light.png and /dev/null differ
diff --git a/png/tube-archivist.png b/png/tube-archivist.png
deleted file mode 100644
index 9c84ead7..00000000
Binary files a/png/tube-archivist.png and /dev/null differ
diff --git a/png/tubesync-light.png b/png/tubesync-light.png
new file mode 100644
index 00000000..41496eb4
Binary files /dev/null and b/png/tubesync-light.png differ
diff --git a/png/tubesync.png b/png/tubesync.png
index 56a00ddd..9188cd6d 100644
Binary files a/png/tubesync.png and b/png/tubesync.png differ
diff --git a/png/tumblr.png b/png/tumblr.png
new file mode 100644
index 00000000..88f38353
Binary files /dev/null and b/png/tumblr.png differ
diff --git a/png/turbopack-light.png b/png/turbopack-light.png
index 293ccd14..e0e5f286 100644
Binary files a/png/turbopack-light.png and b/png/turbopack-light.png differ
diff --git a/png/turbopack.png b/png/turbopack.png
index 4ab7cf1b..78ee0ac1 100644
Binary files a/png/turbopack.png and b/png/turbopack.png differ
diff --git a/png/tux.png b/png/tux.png
index 87c66a03..ef8322b0 100644
Binary files a/png/tux.png and b/png/tux.png differ
diff --git a/png/tvdb.png b/png/tvdb.png
new file mode 100644
index 00000000..ec1b17a0
Binary files /dev/null and b/png/tvdb.png differ
diff --git a/png/tvheadend.png b/png/tvheadend.png
index 10ed9dc5..27266fb3 100644
Binary files a/png/tvheadend.png and b/png/tvheadend.png differ
diff --git a/png/tvp-vod.png b/png/tvp-vod.png
deleted file mode 100644
index ec4f55e6..00000000
Binary files a/png/tvp-vod.png and /dev/null differ
diff --git a/png/twingate-light.png b/png/twingate-light.png
index 372c2127..5c3c4441 100644
Binary files a/png/twingate-light.png and b/png/twingate-light.png differ
diff --git a/png/twingate.png b/png/twingate.png
index 1628f108..220efe1d 100644
Binary files a/png/twingate.png and b/png/twingate.png differ
diff --git a/png/twitch.png b/png/twitch.png
index fb5503f0..39fabac0 100644
Binary files a/png/twitch.png and b/png/twitch.png differ
diff --git a/png/twitter.png b/png/twitter.png
index 2be176b1..7269c7c5 100644
Binary files a/png/twitter.png and b/png/twitter.png differ
diff --git a/png/typemill-light.png b/png/typemill-light.png
new file mode 100644
index 00000000..5dbf5a9d
Binary files /dev/null and b/png/typemill-light.png differ
diff --git a/png/typemill.png b/png/typemill.png
new file mode 100644
index 00000000..8a386981
Binary files /dev/null and b/png/typemill.png differ
diff --git a/png/typescript.png b/png/typescript.png
index 6a72efbe..3c3cc6fb 100644
Binary files a/png/typescript.png and b/png/typescript.png differ
diff --git a/png/typo3.png b/png/typo3.png
index 43b4f097..b371a26a 100644
Binary files a/png/typo3.png and b/png/typo3.png differ
diff --git a/png/ubiquiti-networks.png b/png/ubiquiti-networks.png
index 820c55f3..2cbf30c0 100644
Binary files a/png/ubiquiti-networks.png and b/png/ubiquiti-networks.png differ
diff --git a/png/ubiquiti-unifi.png b/png/ubiquiti-unifi.png
new file mode 100644
index 00000000..2115c951
Binary files /dev/null and b/png/ubiquiti-unifi.png differ
diff --git a/png/ubiquiti.png b/png/ubiquiti.png
index 820c55f3..2cbf30c0 100644
Binary files a/png/ubiquiti.png and b/png/ubiquiti.png differ
diff --git a/png/ubooquity.png b/png/ubooquity.png
deleted file mode 100644
index cf37a875..00000000
Binary files a/png/ubooquity.png and /dev/null differ
diff --git a/png/ubuntu-alt.png b/png/ubuntu-alt.png
deleted file mode 100644
index ff16e477..00000000
Binary files a/png/ubuntu-alt.png and /dev/null differ
diff --git a/png/ubuntu-linux-alt.png b/png/ubuntu-linux-alt.png
new file mode 100644
index 00000000..9b398048
Binary files /dev/null and b/png/ubuntu-linux-alt.png differ
diff --git a/png/ubuntu-linux.png b/png/ubuntu-linux.png
new file mode 100644
index 00000000..2e94b94e
Binary files /dev/null and b/png/ubuntu-linux.png differ
diff --git a/png/ubuntu.png b/png/ubuntu.png
deleted file mode 100644
index 7e4a4192..00000000
Binary files a/png/ubuntu.png and /dev/null differ
diff --git a/png/uc-browser.png b/png/uc-browser.png
index 27e6d260..a0c5a9d1 100644
Binary files a/png/uc-browser.png and b/png/uc-browser.png differ
diff --git a/png/udemy-light.png b/png/udemy-light.png
new file mode 100644
index 00000000..dda997e4
Binary files /dev/null and b/png/udemy-light.png differ
diff --git a/png/udemy.png b/png/udemy.png
index ee0d30f1..a6a0bdce 100644
Binary files a/png/udemy.png and b/png/udemy.png differ
diff --git a/png/ultimate-guitar-light.png b/png/ultimate-guitar-light.png
new file mode 100644
index 00000000..2e24aa68
Binary files /dev/null and b/png/ultimate-guitar-light.png differ
diff --git a/png/ultimate-guitar.png b/png/ultimate-guitar.png
index 16fbd4a3..1cd5a954 100644
Binary files a/png/ultimate-guitar.png and b/png/ultimate-guitar.png differ
diff --git a/png/umami-analytics-light.png b/png/umami-analytics-light.png
deleted file mode 100644
index 541211d3..00000000
Binary files a/png/umami-analytics-light.png and /dev/null differ
diff --git a/png/umami-analytics.png b/png/umami-analytics.png
deleted file mode 100644
index 0ad03e0d..00000000
Binary files a/png/umami-analytics.png and /dev/null differ
diff --git a/png/umami-light.png b/png/umami-light.png
index 541211d3..c590d1aa 100644
Binary files a/png/umami-light.png and b/png/umami-light.png differ
diff --git a/png/umami.png b/png/umami.png
index 0ad03e0d..aff8b4e0 100644
Binary files a/png/umami.png and b/png/umami.png differ
diff --git a/png/umbrel.png b/png/umbrel.png
index 76390667..652970d5 100644
Binary files a/png/umbrel.png and b/png/umbrel.png differ
diff --git a/png/unbound.png b/png/unbound.png
index c400007c..fa2d24a6 100644
Binary files a/png/unbound.png and b/png/unbound.png differ
diff --git a/png/undb.png b/png/undb.png
new file mode 100644
index 00000000..063f5379
Binary files /dev/null and b/png/undb.png differ
diff --git a/png/unifi-controller.png b/png/unifi-controller.png
deleted file mode 100644
index 35b046ab..00000000
Binary files a/png/unifi-controller.png and /dev/null differ
diff --git a/png/unifi-dark.png b/png/unifi-dark.png
new file mode 100644
index 00000000..4896f941
Binary files /dev/null and b/png/unifi-dark.png differ
diff --git a/png/unifi-protect.png b/png/unifi-protect.png
deleted file mode 100644
index 0af359ab..00000000
Binary files a/png/unifi-protect.png and /dev/null differ
diff --git a/png/unifi-voucher-site.png b/png/unifi-voucher-site.png
new file mode 100644
index 00000000..2a48e0b7
Binary files /dev/null and b/png/unifi-voucher-site.png differ
diff --git a/png/unifi.png b/png/unifi.png
index 820c55f3..2cbf30c0 100644
Binary files a/png/unifi.png and b/png/unifi.png differ
diff --git a/png/unimus.png b/png/unimus.png
index 9badfd7d..2a47eaf3 100644
Binary files a/png/unimus.png and b/png/unimus.png differ
diff --git a/png/universal-media-server.png b/png/universal-media-server.png
deleted file mode 100644
index 301d1ff8..00000000
Binary files a/png/universal-media-server.png and /dev/null differ
diff --git a/png/unmanic.png b/png/unmanic.png
deleted file mode 100644
index 2288c8b3..00000000
Binary files a/png/unmanic.png and /dev/null differ
diff --git a/png/unraid-alt.png b/png/unraid-alt.png
deleted file mode 100644
index d72a2b00..00000000
Binary files a/png/unraid-alt.png and /dev/null differ
diff --git a/png/unraid.png b/png/unraid.png
index 44e6d324..f0e88fec 100644
Binary files a/png/unraid.png and b/png/unraid.png differ
diff --git a/png/untangle.png b/png/untangle.png
index e6756610..8befa069 100644
Binary files a/png/untangle.png and b/png/untangle.png differ
diff --git a/png/updog.png b/png/updog.png
deleted file mode 100644
index 22fdd211..00000000
Binary files a/png/updog.png and /dev/null differ
diff --git a/png/ups.png b/png/ups.png
index 3ce7a7eb..6e6f52f3 100644
Binary files a/png/ups.png and b/png/ups.png differ
diff --git a/png/upsnap.png b/png/upsnap.png
index c1746b84..a56b9659 100644
Binary files a/png/upsnap.png and b/png/upsnap.png differ
diff --git a/png/uptime-kuma.png b/png/uptime-kuma.png
index e526620f..7f22bb91 100644
Binary files a/png/uptime-kuma.png and b/png/uptime-kuma.png differ
diff --git a/png/urbackup-server.png b/png/urbackup-server.png
deleted file mode 100644
index 40458c81..00000000
Binary files a/png/urbackup-server.png and /dev/null differ
diff --git a/png/urbackup.png b/png/urbackup.png
deleted file mode 100644
index 40458c81..00000000
Binary files a/png/urbackup.png and /dev/null differ
diff --git a/png/valetudo.png b/png/valetudo.png
index 1fa0979b..761982ae 100644
Binary files a/png/valetudo.png and b/png/valetudo.png differ
diff --git a/png/valkey.png b/png/valkey.png
new file mode 100644
index 00000000..62f83641
Binary files /dev/null and b/png/valkey.png differ
diff --git a/png/vault-light.png b/png/vault-light.png
index a02c7ef0..30e4eadf 100644
Binary files a/png/vault-light.png and b/png/vault-light.png differ
diff --git a/png/vault.png b/png/vault.png
index 6d86c3b9..22dfbbe7 100644
Binary files a/png/vault.png and b/png/vault.png differ
diff --git a/png/vaultwarden-light.png b/png/vaultwarden-light.png
index a6fe5523..75772a60 100644
Binary files a/png/vaultwarden-light.png and b/png/vaultwarden-light.png differ
diff --git a/png/vaultwarden.png b/png/vaultwarden.png
index 5dd08118..3116c81b 100644
Binary files a/png/vaultwarden.png and b/png/vaultwarden.png differ
diff --git a/png/vector.png b/png/vector.png
new file mode 100644
index 00000000..82d0a844
Binary files /dev/null and b/png/vector.png differ
diff --git a/png/veeam.png b/png/veeam.png
index 66dbf673..a3bb2356 100644
Binary files a/png/veeam.png and b/png/veeam.png differ
diff --git a/png/vercel-light.png b/png/vercel-light.png
index 7e28f7e2..aac87a6b 100644
Binary files a/png/vercel-light.png and b/png/vercel-light.png differ
diff --git a/png/vercel.png b/png/vercel.png
index 2092843e..54f24b57 100644
Binary files a/png/vercel.png and b/png/vercel.png differ
diff --git a/png/verizon.png b/png/verizon.png
index 82c120c5..9d8447fc 100644
Binary files a/png/verizon.png and b/png/verizon.png differ
diff --git a/png/vi.png b/png/vi.png
index 94f330ad..4a66fa49 100644
Binary files a/png/vi.png and b/png/vi.png differ
diff --git a/png/victoriametrics-light.png b/png/victoriametrics-light.png
new file mode 100644
index 00000000..84e4d792
Binary files /dev/null and b/png/victoriametrics-light.png differ
diff --git a/png/victoriametrics.png b/png/victoriametrics.png
new file mode 100644
index 00000000..3b8b8981
Binary files /dev/null and b/png/victoriametrics.png differ
diff --git a/png/vidzy.png b/png/vidzy.png
new file mode 100644
index 00000000..5ec280cd
Binary files /dev/null and b/png/vidzy.png differ
diff --git a/png/viewtube.png b/png/viewtube.png
index ededb47d..555a54e5 100644
Binary files a/png/viewtube.png and b/png/viewtube.png differ
diff --git a/png/vikunja.png b/png/vikunja.png
index 10e33212..977cb22f 100644
Binary files a/png/vikunja.png and b/png/vikunja.png differ
diff --git a/png/virgin-media.png b/png/virgin-media.png
index 67d67087..68712312 100644
Binary files a/png/virgin-media.png and b/png/virgin-media.png differ
diff --git a/png/virtualmin.png b/png/virtualmin.png
index 4b39d841..e7696e27 100644
Binary files a/png/virtualmin.png and b/png/virtualmin.png differ
diff --git a/png/virtualradarserver.png b/png/virtualradarserver.png
deleted file mode 100644
index f73d79c7..00000000
Binary files a/png/virtualradarserver.png and /dev/null differ
diff --git a/png/viseron-light.png b/png/viseron-light.png
new file mode 100644
index 00000000..11fbeb78
Binary files /dev/null and b/png/viseron-light.png differ
diff --git a/png/viseron.png b/png/viseron.png
index c9409749..f3431d21 100644
Binary files a/png/viseron.png and b/png/viseron.png differ
diff --git a/png/visual-studio-code.png b/png/visual-studio-code.png
new file mode 100644
index 00000000..38eb2725
Binary files /dev/null and b/png/visual-studio-code.png differ
diff --git a/png/vivaldi.png b/png/vivaldi.png
index 5ea51c96..13db2414 100644
Binary files a/png/vivaldi.png and b/png/vivaldi.png differ
diff --git a/png/vmware-esxi.png b/png/vmware-esxi.png
index 3b5f9605..fe959b34 100644
Binary files a/png/vmware-esxi.png and b/png/vmware-esxi.png differ
diff --git a/png/vmware-horizon.png b/png/vmware-horizon.png
deleted file mode 100644
index 3e7b8705..00000000
Binary files a/png/vmware-horizon.png and /dev/null differ
diff --git a/png/vmware-vcenter.png b/png/vmware-vcenter.png
deleted file mode 100644
index 3c9052ce..00000000
Binary files a/png/vmware-vcenter.png and /dev/null differ
diff --git a/png/vmware-workstation.png b/png/vmware-workstation.png
index 35af6e35..ff067821 100644
Binary files a/png/vmware-workstation.png and b/png/vmware-workstation.png differ
diff --git a/png/vmware.png b/png/vmware.png
index cdd3f59c..adfe554e 100644
Binary files a/png/vmware.png and b/png/vmware.png differ
diff --git a/png/voilib.png b/png/voilib.png
new file mode 100644
index 00000000..8b4cb2f2
Binary files /dev/null and b/png/voilib.png differ
diff --git a/png/voip-info.png b/png/voip-info.png
deleted file mode 100644
index 5cba51cf..00000000
Binary files a/png/voip-info.png and /dev/null differ
diff --git a/png/voip-ms.png b/png/voip-ms.png
index 6b7ff9e2..9a893ec2 100644
Binary files a/png/voip-ms.png and b/png/voip-ms.png differ
diff --git a/png/voltaserve-light.png b/png/voltaserve-light.png
new file mode 100644
index 00000000..275aa2a1
Binary files /dev/null and b/png/voltaserve-light.png differ
diff --git a/png/voltaserve.png b/png/voltaserve.png
new file mode 100644
index 00000000..434b2c05
Binary files /dev/null and b/png/voltaserve.png differ
diff --git a/png/volumio-light.png b/png/volumio-light.png
index 8032cd9f..78b4a5fa 100644
Binary files a/png/volumio-light.png and b/png/volumio-light.png differ
diff --git a/png/volumio.png b/png/volumio.png
index ad2e6784..903d2c75 100644
Binary files a/png/volumio.png and b/png/volumio.png differ
diff --git a/png/voron.png b/png/voron.png
index f415627e..ef26d019 100644
Binary files a/png/voron.png and b/png/voron.png differ
diff --git a/png/vscode.png b/png/vscode.png
index af38c2d3..c19e791f 100644
Binary files a/png/vscode.png and b/png/vscode.png differ
diff --git a/png/vuetorrent.png b/png/vuetorrent.png
new file mode 100644
index 00000000..5c0bafe1
Binary files /dev/null and b/png/vuetorrent.png differ
diff --git a/png/vultr.png b/png/vultr.png
index a0e982b5..21e27a1d 100644
Binary files a/png/vultr.png and b/png/vultr.png differ
diff --git a/png/vuplus.png b/png/vuplus.png
deleted file mode 100644
index 311fbe04..00000000
Binary files a/png/vuplus.png and /dev/null differ
diff --git a/png/wakapi.png b/png/wakapi.png
index 96886819..14bc5541 100644
Binary files a/png/wakapi.png and b/png/wakapi.png differ
diff --git a/png/wakatime-light.png b/png/wakatime-light.png
index e5320628..bdeed60c 100644
Binary files a/png/wakatime-light.png and b/png/wakatime-light.png differ
diff --git a/png/wakatime.png b/png/wakatime.png
index 9aea1b23..3ad04dc8 100644
Binary files a/png/wakatime.png and b/png/wakatime.png differ
diff --git a/png/wallabag-light.png b/png/wallabag-light.png
new file mode 100644
index 00000000..438a7f12
Binary files /dev/null and b/png/wallabag-light.png differ
diff --git a/png/wallabag.png b/png/wallabag.png
index 4835d027..a083f2bd 100644
Binary files a/png/wallabag.png and b/png/wallabag.png differ
diff --git a/png/wallos.png b/png/wallos.png
deleted file mode 100644
index ee2335fe..00000000
Binary files a/png/wallos.png and /dev/null differ
diff --git a/png/wanderer-light.png b/png/wanderer-light.png
new file mode 100644
index 00000000..48489c73
Binary files /dev/null and b/png/wanderer-light.png differ
diff --git a/png/wanderer.png b/png/wanderer.png
new file mode 100644
index 00000000..213fbd03
Binary files /dev/null and b/png/wanderer.png differ
diff --git a/png/wanikani.png b/png/wanikani.png
deleted file mode 100644
index d0fb8286..00000000
Binary files a/png/wanikani.png and /dev/null differ
diff --git a/png/ward.png b/png/ward.png
deleted file mode 100644
index 68ecfbbb..00000000
Binary files a/png/ward.png and /dev/null differ
diff --git a/png/warpgate.png b/png/warpgate.png
index 5c3895c5..3e425263 100644
Binary files a/png/warpgate.png and b/png/warpgate.png differ
diff --git a/png/watcharr-light.png b/png/watcharr-light.png
new file mode 100644
index 00000000..b30ba9e8
Binary files /dev/null and b/png/watcharr-light.png differ
diff --git a/png/watcharr.png b/png/watcharr.png
index cdd4dad5..700351f8 100644
Binary files a/png/watcharr.png and b/png/watcharr.png differ
diff --git a/png/watcher.png b/png/watcher.png
deleted file mode 100644
index 9c99c99c..00000000
Binary files a/png/watcher.png and /dev/null differ
diff --git a/png/watchtower.png b/png/watchtower.png
index acc25e78..2cbadd7e 100644
Binary files a/png/watchtower.png and b/png/watchtower.png differ
diff --git a/png/watchyourlan.png b/png/watchyourlan.png
deleted file mode 100644
index fd73e8d6..00000000
Binary files a/png/watchyourlan.png and /dev/null differ
diff --git a/png/waze.png b/png/waze.png
index cdd47677..b7ed5e51 100644
Binary files a/png/waze.png and b/png/waze.png differ
diff --git a/png/wazuh-opaque.png b/png/wazuh-opaque.png
deleted file mode 100644
index 7029b3b3..00000000
Binary files a/png/wazuh-opaque.png and /dev/null differ
diff --git a/png/wazuh.png b/png/wazuh.png
index e595652d..ef448001 100644
Binary files a/png/wazuh.png and b/png/wazuh.png differ
diff --git a/png/wbo.png b/png/wbo.png
deleted file mode 100644
index 2982d14d..00000000
Binary files a/png/wbo.png and /dev/null differ
diff --git a/png/web-check-dark.png b/png/web-check-dark.png
new file mode 100644
index 00000000..f4fe9e32
Binary files /dev/null and b/png/web-check-dark.png differ
diff --git a/png/web-check-light.png b/png/web-check-light.png
deleted file mode 100644
index 498c1ed5..00000000
Binary files a/png/web-check-light.png and /dev/null differ
diff --git a/png/web-check.png b/png/web-check.png
index f5d0157d..ca4b1203 100644
Binary files a/png/web-check.png and b/png/web-check.png differ
diff --git a/png/web-whisper.png b/png/web-whisper.png
deleted file mode 100644
index 92f271a9..00000000
Binary files a/png/web-whisper.png and /dev/null differ
diff --git a/png/webdav.png b/png/webdav.png
deleted file mode 100644
index 5a62b09a..00000000
Binary files a/png/webdav.png and /dev/null differ
diff --git a/png/webhook.png b/png/webhook.png
index aaf6efb4..7b3ca9f3 100644
Binary files a/png/webhook.png and b/png/webhook.png differ
diff --git a/png/webhookd.png b/png/webhookd.png
index 495cc05f..b3f64a45 100644
Binary files a/png/webhookd.png and b/png/webhookd.png differ
diff --git a/png/webkit.png b/png/webkit.png
index f9939e0d..1e229a98 100644
Binary files a/png/webkit.png and b/png/webkit.png differ
diff --git a/png/webmin.png b/png/webmin.png
index 956a0540..98167365 100644
Binary files a/png/webmin.png and b/png/webmin.png differ
diff --git a/png/webssh-light.jpg b/png/webssh-light.jpg
deleted file mode 100644
index 8257ff9d..00000000
Binary files a/png/webssh-light.jpg and /dev/null differ
diff --git a/png/webssh.jpg b/png/webssh.jpg
deleted file mode 100644
index 31b3a8e1..00000000
Binary files a/png/webssh.jpg and /dev/null differ
diff --git a/png/webtools.png b/png/webtools.png
deleted file mode 100644
index 25f6527d..00000000
Binary files a/png/webtools.png and /dev/null differ
diff --git a/png/webtop.png b/png/webtop.png
deleted file mode 100644
index ebb34e69..00000000
Binary files a/png/webtop.png and /dev/null differ
diff --git a/png/webtorrent.png b/png/webtorrent.png
index f8d833a7..5a7c2866 100644
Binary files a/png/webtorrent.png and b/png/webtorrent.png differ
diff --git a/png/webtrees.png b/png/webtrees.png
index c7789f7c..dd67b93f 100644
Binary files a/png/webtrees.png and b/png/webtrees.png differ
diff --git a/png/wekan.png b/png/wekan.png
index 9c9cb40e..e5c92d02 100644
Binary files a/png/wekan.png and b/png/wekan.png differ
diff --git a/png/wetty.png b/png/wetty.png
deleted file mode 100644
index 5a04e7b1..00000000
Binary files a/png/wetty.png and /dev/null differ
diff --git a/png/wg-gen-web-light.png b/png/wg-gen-web-light.png
deleted file mode 100644
index f0c17f8b..00000000
Binary files a/png/wg-gen-web-light.png and /dev/null differ
diff --git a/png/wg-gen-web.png b/png/wg-gen-web.png
deleted file mode 100644
index e76da21f..00000000
Binary files a/png/wg-gen-web.png and /dev/null differ
diff --git a/png/wger.png b/png/wger.png
index 2bc1928d..123ec30d 100644
Binary files a/png/wger.png and b/png/wger.png differ
diff --git a/png/whats-up-docker-light.png b/png/whats-up-docker-light.png
index 1315e239..03c07861 100644
Binary files a/png/whats-up-docker-light.png and b/png/whats-up-docker-light.png differ
diff --git a/png/whats-up-docker.png b/png/whats-up-docker.png
index db538b48..fc361dfa 100644
Binary files a/png/whats-up-docker.png and b/png/whats-up-docker.png differ
diff --git a/png/whatsapp.png b/png/whatsapp.png
index 65e34885..3fb64de5 100644
Binary files a/png/whatsapp.png and b/png/whatsapp.png differ
diff --git a/png/whisparr.png b/png/whisparr.png
index f45bdbb3..960474a3 100644
Binary files a/png/whisparr.png and b/png/whisparr.png differ
diff --git a/png/whodb.png b/png/whodb.png
deleted file mode 100644
index c9e8d3c0..00000000
Binary files a/png/whodb.png and /dev/null differ
diff --git a/png/whoogle.png b/png/whoogle.png
deleted file mode 100644
index 0a041766..00000000
Binary files a/png/whoogle.png and /dev/null differ
diff --git a/png/whooglesearch.png b/png/whooglesearch.png
deleted file mode 100644
index 0a041766..00000000
Binary files a/png/whooglesearch.png and /dev/null differ
diff --git a/png/wifiman.png b/png/wifiman.png
deleted file mode 100644
index e775caa6..00000000
Binary files a/png/wifiman.png and /dev/null differ
diff --git a/png/wiki-text.png b/png/wiki-text.png
deleted file mode 100644
index 22e6aebe..00000000
Binary files a/png/wiki-text.png and /dev/null differ
diff --git a/png/wikidocs.png b/png/wikidocs.png
new file mode 100644
index 00000000..2a8e203a
Binary files /dev/null and b/png/wikidocs.png differ
diff --git a/png/wikijs-alt.png b/png/wikijs-alt.png
new file mode 100644
index 00000000..fef39d90
Binary files /dev/null and b/png/wikijs-alt.png differ
diff --git a/png/wikijs-full.png b/png/wikijs-full.png
deleted file mode 100644
index 9093c77f..00000000
Binary files a/png/wikijs-full.png and /dev/null differ
diff --git a/png/wikijs.png b/png/wikijs.png
index 7f41b123..6f1e9101 100644
Binary files a/png/wikijs.png and b/png/wikijs.png differ
diff --git a/png/wikipedia-light.png b/png/wikipedia-light.png
new file mode 100644
index 00000000..da78b01a
Binary files /dev/null and b/png/wikipedia-light.png differ
diff --git a/png/wikipedia.png b/png/wikipedia.png
new file mode 100644
index 00000000..f3967e61
Binary files /dev/null and b/png/wikipedia.png differ
diff --git a/png/willow.png b/png/willow.png
new file mode 100644
index 00000000..f053f3f1
Binary files /dev/null and b/png/willow.png differ
diff --git a/png/windmill.png b/png/windmill.png
index 7fe3cabf..888a063c 100644
Binary files a/png/windmill.png and b/png/windmill.png differ
diff --git a/png/windows-10.png b/png/windows-10.png
index 3a90a041..5be067f8 100644
Binary files a/png/windows-10.png and b/png/windows-10.png differ
diff --git a/png/windows-11.png b/png/windows-11.png
deleted file mode 100644
index e82db298..00000000
Binary files a/png/windows-11.png and /dev/null differ
diff --git a/png/windows-7.png b/png/windows-7.png
deleted file mode 100644
index eb1c98de..00000000
Binary files a/png/windows-7.png and /dev/null differ
diff --git a/png/windows-95-light.png b/png/windows-95-light.png
new file mode 100644
index 00000000..249eac20
Binary files /dev/null and b/png/windows-95-light.png differ
diff --git a/png/windows-95.png b/png/windows-95.png
index da206506..33085b9c 100644
Binary files a/png/windows-95.png and b/png/windows-95.png differ
diff --git a/png/windows-98.png b/png/windows-98.png
deleted file mode 100644
index f84e0669..00000000
Binary files a/png/windows-98.png and /dev/null differ
diff --git a/png/windows-admin-center.jpg b/png/windows-admin-center.jpg
deleted file mode 100644
index f80e3c9d..00000000
Binary files a/png/windows-admin-center.jpg and /dev/null differ
diff --git a/png/windows-retro-light.png b/png/windows-retro-light.png
new file mode 100644
index 00000000..d7806694
Binary files /dev/null and b/png/windows-retro-light.png differ
diff --git a/png/windows-retro.png b/png/windows-retro.png
new file mode 100644
index 00000000..4a6dc653
Binary files /dev/null and b/png/windows-retro.png differ
diff --git a/png/windows-vista.png b/png/windows-vista.png
deleted file mode 100644
index 01cadf76..00000000
Binary files a/png/windows-vista.png and /dev/null differ
diff --git a/png/windows-xp.png b/png/windows-xp.png
deleted file mode 100644
index bf2e6f0b..00000000
Binary files a/png/windows-xp.png and /dev/null differ
diff --git a/png/wireguard.png b/png/wireguard.png
index b8181d66..e35d9ede 100644
Binary files a/png/wireguard.png and b/png/wireguard.png differ
diff --git a/png/wireshark.png b/png/wireshark.png
deleted file mode 100644
index a0fb14f1..00000000
Binary files a/png/wireshark.png and /dev/null differ
diff --git a/png/wizarr.png b/png/wizarr.png
index 841afd02..ea688f63 100644
Binary files a/png/wizarr.png and b/png/wizarr.png differ
diff --git a/png/wled.png b/png/wled.png
deleted file mode 100644
index 79b956fd..00000000
Binary files a/png/wled.png and /dev/null differ
diff --git a/png/wolfi-light.png b/png/wolfi-light.png
index db2842c1..62452fff 100644
Binary files a/png/wolfi-light.png and b/png/wolfi-light.png differ
diff --git a/png/wolfi.png b/png/wolfi.png
index e18d9e8e..892cbc22 100644
Binary files a/png/wolfi.png and b/png/wolfi.png differ
diff --git a/png/woocommerce.png b/png/woocommerce.png
new file mode 100644
index 00000000..9b1d1bc4
Binary files /dev/null and b/png/woocommerce.png differ
diff --git a/png/woodpecker-ci-light.png b/png/woodpecker-ci-light.png
deleted file mode 100644
index 560ea206..00000000
Binary files a/png/woodpecker-ci-light.png and /dev/null differ
diff --git a/png/woodpecker-ci.png b/png/woodpecker-ci.png
index 51fcc8e8..a2c6cde0 100644
Binary files a/png/woodpecker-ci.png and b/png/woodpecker-ci.png differ
diff --git a/png/wordpress-light.png b/png/wordpress-light.png
deleted file mode 100644
index dcedc8c4..00000000
Binary files a/png/wordpress-light.png and /dev/null differ
diff --git a/png/wordpress.png b/png/wordpress.png
index 4b84ac31..0eeb2b90 100644
Binary files a/png/wordpress.png and b/png/wordpress.png differ
diff --git a/png/workadventure.png b/png/workadventure.png
deleted file mode 100644
index 97e61765..00000000
Binary files a/png/workadventure.png and /dev/null differ
diff --git a/png/worklenz.png b/png/worklenz.png
new file mode 100644
index 00000000..11d57ac7
Binary files /dev/null and b/png/worklenz.png differ
diff --git a/png/wotdle-light.png b/png/wotdle-light.png
index 82c11270..4972212c 100644
Binary files a/png/wotdle-light.png and b/png/wotdle-light.png differ
diff --git a/png/wotdle.png b/png/wotdle.png
index 898190af..0a3448d9 100644
Binary files a/png/wotdle.png and b/png/wotdle.png differ
diff --git a/png/wownero.png b/png/wownero.png
index e3ddaf57..2f6315f1 100644
Binary files a/png/wownero.png and b/png/wownero.png differ
diff --git a/png/writefreely-light.png b/png/writefreely-light.png
new file mode 100644
index 00000000..246b0ff0
Binary files /dev/null and b/png/writefreely-light.png differ
diff --git a/png/writefreely.png b/png/writefreely.png
index 169917ca..2fef5061 100644
Binary files a/png/writefreely.png and b/png/writefreely.png differ
diff --git a/png/wud-light.png b/png/wud-light.png
deleted file mode 100644
index 1315e239..00000000
Binary files a/png/wud-light.png and /dev/null differ
diff --git a/png/wud.png b/png/wud.png
deleted file mode 100644
index db538b48..00000000
Binary files a/png/wud.png and /dev/null differ
diff --git a/png/x-light.png b/png/x-light.png
index e36ec8c6..99131def 100644
Binary files a/png/x-light.png and b/png/x-light.png differ
diff --git a/png/x.png b/png/x.png
index 2465fefd..b466a62e 100644
Binary files a/png/x.png and b/png/x.png differ
diff --git a/png/xbackbone.png b/png/xbackbone.png
index 9f7fe4d8..91628c05 100644
Binary files a/png/xbackbone.png and b/png/xbackbone.png differ
diff --git a/png/xbox-game-pass.png b/png/xbox-game-pass.png
new file mode 100644
index 00000000..631c282b
Binary files /dev/null and b/png/xbox-game-pass.png differ
diff --git a/png/xbox.png b/png/xbox.png
new file mode 100644
index 00000000..60990a85
Binary files /dev/null and b/png/xbox.png differ
diff --git a/png/xbrowsersync.png b/png/xbrowsersync.png
index 0e226fa9..3f044053 100644
Binary files a/png/xbrowsersync.png and b/png/xbrowsersync.png differ
diff --git a/png/xcp-ng.png b/png/xcp-ng.png
deleted file mode 100644
index 1a217ba4..00000000
Binary files a/png/xcp-ng.png and /dev/null differ
diff --git a/png/xen-orchestra.png b/png/xen-orchestra.png
deleted file mode 100644
index 949d1444..00000000
Binary files a/png/xen-orchestra.png and /dev/null differ
diff --git a/png/xigmanas.png b/png/xigmanas.png
deleted file mode 100644
index 7874f038..00000000
Binary files a/png/xigmanas.png and /dev/null differ
diff --git a/png/xmr.png b/png/xmr.png
index 1b9d76a2..f31eed10 100644
Binary files a/png/xmr.png and b/png/xmr.png differ
diff --git a/png/xmrig.png b/png/xmrig.png
index 25bb3575..99a70fb3 100644
Binary files a/png/xmrig.png and b/png/xmrig.png differ
diff --git a/png/xpipe.png b/png/xpipe.png
new file mode 100644
index 00000000..a72c518d
Binary files /dev/null and b/png/xpipe.png differ
diff --git a/png/xteve.png b/png/xteve.png
deleted file mode 100644
index d8df8ee9..00000000
Binary files a/png/xteve.png and /dev/null differ
diff --git a/png/xwiki.png b/png/xwiki.png
index 103ef019..3ac78c4e 100644
Binary files a/png/xwiki.png and b/png/xwiki.png differ
diff --git a/png/yaade.png b/png/yaade.png
deleted file mode 100644
index 03644182..00000000
Binary files a/png/yaade.png and /dev/null differ
diff --git a/png/yacht-light.png b/png/yacht-light.png
deleted file mode 100644
index f5c9353c..00000000
Binary files a/png/yacht-light.png and /dev/null differ
diff --git a/png/yacht.png b/png/yacht.png
index ad7df056..988e84aa 100644
Binary files a/png/yacht.png and b/png/yacht.png differ
diff --git a/png/yahoo-mail.png b/png/yahoo-mail.png
deleted file mode 100644
index bc1588ee..00000000
Binary files a/png/yahoo-mail.png and /dev/null differ
diff --git a/png/yahoo.png b/png/yahoo.png
index 7b2fe7e0..986369ac 100644
Binary files a/png/yahoo.png and b/png/yahoo.png differ
diff --git a/png/yamtrack-light.png b/png/yamtrack-light.png
new file mode 100644
index 00000000..1261d99a
Binary files /dev/null and b/png/yamtrack-light.png differ
diff --git a/png/yamtrack.png b/png/yamtrack.png
new file mode 100644
index 00000000..3d5c145d
Binary files /dev/null and b/png/yamtrack.png differ
diff --git a/png/yandex.png b/png/yandex.png
index 2100d617..2bc85b8b 100644
Binary files a/png/yandex.png and b/png/yandex.png differ
diff --git a/png/yarn-social.png b/png/yarn-social.png
deleted file mode 100644
index c342a5de..00000000
Binary files a/png/yarn-social.png and /dev/null differ
diff --git a/png/yarr-light.png b/png/yarr-light.png
new file mode 100644
index 00000000..8afdcdc7
Binary files /dev/null and b/png/yarr-light.png differ
diff --git a/png/yarr.png b/png/yarr.png
new file mode 100644
index 00000000..e71f4391
Binary files /dev/null and b/png/yarr.png differ
diff --git a/png/ycombinator-dark.png b/png/ycombinator-dark.png
new file mode 100644
index 00000000..38a3f81e
Binary files /dev/null and b/png/ycombinator-dark.png differ
diff --git a/png/ycombinator.png b/png/ycombinator.png
index a94c91da..19d2f8c4 100644
Binary files a/png/ycombinator.png and b/png/ycombinator.png differ
diff --git a/png/ymarks.png b/png/ymarks.png
deleted file mode 100644
index 8d4d3a21..00000000
Binary files a/png/ymarks.png and /dev/null differ
diff --git a/png/ynab.png b/png/ynab.png
index f4c02340..60643310 100644
Binary files a/png/ynab.png and b/png/ynab.png differ
diff --git a/png/your-spotify.png b/png/your-spotify.png
index 63cefbc4..09919be3 100644
Binary files a/png/your-spotify.png and b/png/your-spotify.png differ
diff --git a/png/yourls.png b/png/yourls.png
index 6cbc43a4..612cab1a 100644
Binary files a/png/yourls.png and b/png/yourls.png differ
diff --git a/png/youtube-dl.png b/png/youtube-dl.png
new file mode 100644
index 00000000..faa259e1
Binary files /dev/null and b/png/youtube-dl.png differ
diff --git a/png/youtube-kids.png b/png/youtube-kids.png
index 997157db..803315a4 100644
Binary files a/png/youtube-kids.png and b/png/youtube-kids.png differ
diff --git a/png/youtube-music.png b/png/youtube-music.png
index ef5fcd43..cded7449 100644
Binary files a/png/youtube-music.png and b/png/youtube-music.png differ
diff --git a/png/youtube.png b/png/youtube.png
index 46468604..46ed4ca7 100644
Binary files a/png/youtube.png and b/png/youtube.png differ
diff --git a/png/youtubedl.png b/png/youtubedl.png
deleted file mode 100644
index 8055104b..00000000
Binary files a/png/youtubedl.png and /dev/null differ
diff --git a/png/yts.png b/png/yts.png
index ade05d18..b6e31f43 100644
Binary files a/png/yts.png and b/png/yts.png differ
diff --git a/png/yuno-host-light.png b/png/yuno-host-light.png
new file mode 100644
index 00000000..9440db5c
Binary files /dev/null and b/png/yuno-host-light.png differ
diff --git a/png/yunohost-light.png b/png/yunohost-light.png
deleted file mode 100644
index 32caab8c..00000000
Binary files a/png/yunohost-light.png and /dev/null differ
diff --git a/png/yunohost.png b/png/yunohost.png
index 05aad0cc..a2fc09e2 100644
Binary files a/png/yunohost.png and b/png/yunohost.png differ
diff --git a/png/z-wave-js-ui.png b/png/z-wave-js-ui.png
new file mode 100644
index 00000000..83292caa
Binary files /dev/null and b/png/z-wave-js-ui.png differ
diff --git a/png/zabbix.png b/png/zabbix.png
index 112bee5a..d16dc5a2 100644
Binary files a/png/zabbix.png and b/png/zabbix.png differ
diff --git a/png/zabka.png b/png/zabka.png
index b83ecb7a..f97ab738 100644
Binary files a/png/zabka.png and b/png/zabka.png differ
diff --git a/png/zammad.png b/png/zammad.png
index a1268b58..3f6305f8 100644
Binary files a/png/zammad.png and b/png/zammad.png differ
diff --git a/png/zendesk.png b/png/zendesk.png
index ae4e4c58..e6de457e 100644
Binary files a/png/zendesk.png and b/png/zendesk.png differ
diff --git a/png/zerotier-light.png b/png/zerotier-light.png
new file mode 100644
index 00000000..37701058
Binary files /dev/null and b/png/zerotier-light.png differ
diff --git a/png/zerotier.png b/png/zerotier.png
index 26d79c97..dd180d15 100644
Binary files a/png/zerotier.png and b/png/zerotier.png differ
diff --git a/png/zigbee2mqtt-light.png b/png/zigbee2mqtt-light.png
new file mode 100644
index 00000000..ee2e2e12
Binary files /dev/null and b/png/zigbee2mqtt-light.png differ
diff --git a/png/zigbee2mqtt.png b/png/zigbee2mqtt.png
index d72d7c04..51fa650d 100644
Binary files a/png/zigbee2mqtt.png and b/png/zigbee2mqtt.png differ
diff --git a/png/zipcaptions.png b/png/zipcaptions.png
new file mode 100644
index 00000000..145c64cd
Binary files /dev/null and b/png/zipcaptions.png differ
diff --git a/png/zipline-light.png b/png/zipline-light.png
index c7fee2f1..72a4394f 100644
Binary files a/png/zipline-light.png and b/png/zipline-light.png differ
diff --git a/png/zipline.png b/png/zipline.png
index abd88497..4829ca81 100644
Binary files a/png/zipline.png and b/png/zipline.png differ
diff --git a/png/zitadel-light.png b/png/zitadel-light.png
index 715a79fc..b114a0a5 100644
Binary files a/png/zitadel-light.png and b/png/zitadel-light.png differ
diff --git a/png/zitadel.png b/png/zitadel.png
index cb77a39d..737c756f 100644
Binary files a/png/zitadel.png and b/png/zitadel.png differ
diff --git a/png/znc.png b/png/znc.png
deleted file mode 100644
index 53cdb09e..00000000
Binary files a/png/znc.png and /dev/null differ
diff --git a/png/zohomail.png b/png/zohomail.png
index 489664f2..db9a379b 100644
Binary files a/png/zohomail.png and b/png/zohomail.png differ
diff --git a/png/zoneminder.png b/png/zoneminder.png
deleted file mode 100644
index 4022e8f9..00000000
Binary files a/png/zoneminder.png and /dev/null differ
diff --git a/png/zoom-alt.png b/png/zoom-alt.png
index fc3bbf21..c226676c 100644
Binary files a/png/zoom-alt.png and b/png/zoom-alt.png differ
diff --git a/png/zoom.png b/png/zoom.png
index 85a31aca..622db52e 100644
Binary files a/png/zoom.png and b/png/zoom.png differ
diff --git a/png/zoraxy.png b/png/zoraxy.png
index cc2f4042..af55270d 100644
Binary files a/png/zoraxy.png and b/png/zoraxy.png differ
diff --git a/png/zulip.png b/png/zulip.png
index 60d01b75..dcdae3fb 100644
Binary files a/png/zulip.png and b/png/zulip.png differ
diff --git a/png/zwavejs2mqtt.png b/png/zwavejs2mqtt.png
deleted file mode 100644
index 20f3e399..00000000
Binary files a/png/zwavejs2mqtt.png and /dev/null differ
diff --git a/png/zyxel-communications-light.png b/png/zyxel-communications-light.png
new file mode 100644
index 00000000..8c756749
Binary files /dev/null and b/png/zyxel-communications-light.png differ
diff --git a/png/zyxel-communications.png b/png/zyxel-communications.png
index 3d2683e3..b70d7506 100644
Binary files a/png/zyxel-communications.png and b/png/zyxel-communications.png differ
diff --git a/png/zyxel-networks-light.png b/png/zyxel-networks-light.png
new file mode 100644
index 00000000..1547811f
Binary files /dev/null and b/png/zyxel-networks-light.png differ
diff --git a/png/zyxel-networks.png b/png/zyxel-networks.png
index 87820000..ac055380 100644
Binary files a/png/zyxel-networks.png and b/png/zyxel-networks.png differ
diff --git a/svg/2fauth-light.svg b/svg/2fauth-light.svg
index 14b879db..a9cecfb4 100644
--- a/svg/2fauth-light.svg
+++ b/svg/2fauth-light.svg
@@ -1,8 +1,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/2fauth.svg b/svg/2fauth.svg
old mode 100644
new mode 100755
index f725f75e..22aeeb98
--- a/svg/2fauth.svg
+++ b/svg/2fauth.svg
@@ -1,8 +1,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/activepieces.svg b/svg/activepieces.svg
new file mode 100755
index 00000000..bd23abcd
--- /dev/null
+++ b/svg/activepieces.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/actual-budget.svg b/svg/actual-budget.svg
new file mode 100755
index 00000000..f8b08dc8
--- /dev/null
+++ b/svg/actual-budget.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/adguard-home.svg b/svg/adguard-home.svg
old mode 100644
new mode 100755
index 0e4e3274..f115c5c2
--- a/svg/adguard-home.svg
+++ b/svg/adguard-home.svg
@@ -1 +1,26 @@
-logo@2x Created with Sketch.
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/adm.svg b/svg/adm.svg
deleted file mode 100644
index 8e529000..00000000
--- a/svg/adm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/adminer.svg b/svg/adminer.svg
new file mode 100755
index 00000000..9cc5e1a2
--- /dev/null
+++ b/svg/adminer.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/adventure-log.svg b/svg/adventure-log.svg
new file mode 100755
index 00000000..e643c464
--- /dev/null
+++ b/svg/adventure-log.svg
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/adventurelog.svg b/svg/adventurelog.svg
deleted file mode 100644
index d4d69318..00000000
--- a/svg/adventurelog.svg
+++ /dev/null
@@ -1,314 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/svg/affine-light.svg b/svg/affine-light.svg
new file mode 100644
index 00000000..c12e89db
--- /dev/null
+++ b/svg/affine-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/affine.svg b/svg/affine.svg
new file mode 100755
index 00000000..7f3fe621
--- /dev/null
+++ b/svg/affine.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/airsonic.svg b/svg/airsonic.svg
index 1809d681..e4c59c3d 100644
--- a/svg/airsonic.svg
+++ b/svg/airsonic.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/airtable.svg b/svg/airtable.svg
new file mode 100755
index 00000000..f2feda02
--- /dev/null
+++ b/svg/airtable.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/akkoma-light.svg b/svg/akkoma-light.svg
new file mode 100644
index 00000000..0b0fb9f8
--- /dev/null
+++ b/svg/akkoma-light.svg
@@ -0,0 +1,7 @@
+
+ Akkoma logo [2 color]
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/akkoma.svg b/svg/akkoma.svg
new file mode 100755
index 00000000..a182563b
--- /dev/null
+++ b/svg/akkoma.svg
@@ -0,0 +1,7 @@
+
+ Akkoma logo [2 color]
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/albert-heijn.svg b/svg/albert-heijn.svg
index 5f3e7d8c..8ae0d3ab 100644
--- a/svg/albert-heijn.svg
+++ b/svg/albert-heijn.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/aliexpress.svg b/svg/aliexpress.svg
index 82c7b9a6..76536d4f 100644
--- a/svg/aliexpress.svg
+++ b/svg/aliexpress.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/alist.svg b/svg/alist.svg
old mode 100644
new mode 100755
index 37d5fdcd..23fcea63
--- a/svg/alist.svg
+++ b/svg/alist.svg
@@ -1,10 +1,33 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/alma.svg b/svg/alma-linux.svg
similarity index 100%
rename from svg/alma.svg
rename to svg/alma-linux.svg
diff --git a/svg/alpine-linux.svg b/svg/alpine-linux.svg
new file mode 100644
index 00000000..b664f16f
--- /dev/null
+++ b/svg/alpine-linux.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alpine.svg b/svg/alpine.svg
deleted file mode 100644
index 9414b3d0..00000000
--- a/svg/alpine.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/amazon-light.svg b/svg/amazon-light.svg
new file mode 100644
index 00000000..22c00a63
--- /dev/null
+++ b/svg/amazon-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/amazon-prime.svg b/svg/amazon-prime.svg
new file mode 100755
index 00000000..375f0c5c
--- /dev/null
+++ b/svg/amazon-prime.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/amazon-web-services-light.svg b/svg/amazon-web-services-light.svg
new file mode 100644
index 00000000..b9774740
--- /dev/null
+++ b/svg/amazon-web-services-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/amazon-web-services.svg b/svg/amazon-web-services.svg
new file mode 100644
index 00000000..9093499e
--- /dev/null
+++ b/svg/amazon-web-services.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/amazon.svg b/svg/amazon.svg
old mode 100644
new mode 100755
index 77a47d39..17d4e6fb
--- a/svg/amazon.svg
+++ b/svg/amazon.svg
@@ -1 +1,31 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/amd-light.svg b/svg/amd-light.svg
index f21a04c2..95394f8c 100644
--- a/svg/amd-light.svg
+++ b/svg/amd-light.svg
@@ -1 +1,5 @@
-AMD_Logo-svg
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/amd.svg b/svg/amd.svg
old mode 100644
new mode 100755
index 9b034731..db371c99
--- a/svg/amd.svg
+++ b/svg/amd.svg
@@ -1 +1,10 @@
-AMD_Logo-svg
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/svg/ami-alt.svg b/svg/ami-alt.svg
deleted file mode 100644
index 10c3f006..00000000
--- a/svg/ami-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/android-auto-dark.svg b/svg/android-auto-dark.svg
new file mode 100644
index 00000000..996ccec7
--- /dev/null
+++ b/svg/android-auto-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/android.svg b/svg/android.svg
old mode 100644
new mode 100755
index ef4fe935..47abc3b1
--- a/svg/android.svg
+++ b/svg/android.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/anonaddy.svg b/svg/anonaddy.svg
new file mode 100755
index 00000000..84872116
--- /dev/null
+++ b/svg/anonaddy.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ansible-light.svg b/svg/ansible-light.svg
new file mode 100644
index 00000000..a29ea43c
--- /dev/null
+++ b/svg/ansible-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ansible.svg b/svg/ansible.svg
old mode 100644
new mode 100755
index 7ecca37a..5e9f6ade
--- a/svg/ansible.svg
+++ b/svg/ansible.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/anything-llm-dark.svg b/svg/anything-llm-dark.svg
deleted file mode 100644
index fb820f2c..00000000
--- a/svg/anything-llm-dark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/anything-llm-light.svg b/svg/anything-llm-light.svg
deleted file mode 100644
index 11febe6f..00000000
--- a/svg/anything-llm-light.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/apache-answer.svg b/svg/apache-answer.svg
new file mode 100755
index 00000000..cfc911a3
--- /dev/null
+++ b/svg/apache-answer.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/svg/apache-druid.svg b/svg/apache-druid.svg
index 5c3a25f6..a46c29f7 100644
--- a/svg/apache-druid.svg
+++ b/svg/apache-druid.svg
@@ -1 +1 @@
-Apache Druid icon
\ No newline at end of file
+Apache Druid icon
\ No newline at end of file
diff --git a/svg/apache-subversion.svg b/svg/apache-subversion.svg
index 11979bb5..d0b89ad1 100644
--- a/svg/apache-subversion.svg
+++ b/svg/apache-subversion.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/apache-tomcat-light.svg b/svg/apache-tomcat-light.svg
new file mode 100644
index 00000000..3424bb60
--- /dev/null
+++ b/svg/apache-tomcat-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apache-tomcat.svg b/svg/apache-tomcat.svg
index dc75244d..12eed506 100644
--- a/svg/apache-tomcat.svg
+++ b/svg/apache-tomcat.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/apache.svg b/svg/apache.svg
index 14377891..06d8b87f 100644
--- a/svg/apache.svg
+++ b/svg/apache.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/app-store.svg b/svg/app-store.svg
index 4cbb8896..5fb7a095 100644
--- a/svg/app-store.svg
+++ b/svg/app-store.svg
@@ -1,5 +1,4 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/apple-alt.svg b/svg/apple-alt.svg
index 9ea590a4..405684e6 100644
--- a/svg/apple-alt.svg
+++ b/svg/apple-alt.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/apple-light.svg b/svg/apple-light.svg
new file mode 100644
index 00000000..ce61b7e6
--- /dev/null
+++ b/svg/apple-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/apple-music.svg b/svg/apple-music.svg
new file mode 100755
index 00000000..9e96ac84
--- /dev/null
+++ b/svg/apple-music.svg
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/apple-tv-plus-light.svg b/svg/apple-tv-plus-light.svg
new file mode 100644
index 00000000..c5890a42
--- /dev/null
+++ b/svg/apple-tv-plus-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/apple-tv-plus.svg b/svg/apple-tv-plus.svg
new file mode 100755
index 00000000..a7b60ca9
--- /dev/null
+++ b/svg/apple-tv-plus.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/apple.svg b/svg/apple.svg
old mode 100644
new mode 100755
index d1f49ed8..5a222eba
--- a/svg/apple.svg
+++ b/svg/apple.svg
@@ -1 +1,5 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/appwrite.svg b/svg/appwrite.svg
new file mode 100755
index 00000000..c537337d
--- /dev/null
+++ b/svg/appwrite.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ara-records-ansible.svg b/svg/ara-records-ansible.svg
new file mode 100755
index 00000000..805972cf
--- /dev/null
+++ b/svg/ara-records-ansible.svg
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/arch-linux.svg b/svg/arch-linux.svg
new file mode 100755
index 00000000..9296a3c1
--- /dev/null
+++ b/svg/arch-linux.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
diff --git a/svg/arch.svg b/svg/arch.svg
deleted file mode 100644
index 68f758ef..00000000
--- a/svg/arch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/argo-cd.svg b/svg/argo-cd.svg
new file mode 100644
index 00000000..1f9441f9
--- /dev/null
+++ b/svg/argo-cd.svg
@@ -0,0 +1 @@
+cloudevents-icon-color
\ No newline at end of file
diff --git a/svg/argocd.svg b/svg/argocd.svg
deleted file mode 100644
index 1d069718..00000000
--- a/svg/argocd.svg
+++ /dev/null
@@ -1 +0,0 @@
-cloudevents-icon-color
\ No newline at end of file
diff --git a/svg/arm.svg b/svg/arm.svg
index 1bf1280b..0b2d4aa2 100644
--- a/svg/arm.svg
+++ b/svg/arm.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/artifacthub.svg b/svg/artifacthub.svg
index da3f3512..39e6d588 100644
--- a/svg/artifacthub.svg
+++ b/svg/artifacthub.svg
@@ -1 +1 @@
-
+
\ No newline at end of file
diff --git a/svg/aruba.svg b/svg/aruba.svg
index 28d94217..387af7dd 100644
--- a/svg/aruba.svg
+++ b/svg/aruba.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/asana.svg b/svg/asana.svg
index 3d3c7c7a..871f1919 100644
--- a/svg/asana.svg
+++ b/svg/asana.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/asciinema.svg b/svg/asciinema.svg
old mode 100644
new mode 100755
index 9d8e61c3..e6a92704
--- a/svg/asciinema.svg
+++ b/svg/asciinema.svg
@@ -1 +1,24 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/astuto-light.svg b/svg/astuto-light.svg
new file mode 100644
index 00000000..4bd47122
--- /dev/null
+++ b/svg/astuto-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/astuto.svg b/svg/astuto.svg
new file mode 100755
index 00000000..b24b98f3
--- /dev/null
+++ b/svg/astuto.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/asus-rog.svg b/svg/asus-rog.svg
index 7dbe8291..237e95ac 100644
--- a/svg/asus-rog.svg
+++ b/svg/asus-rog.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/asustor-data-master.svg b/svg/asustor-data-master.svg
deleted file mode 100644
index 8e529000..00000000
--- a/svg/asustor-data-master.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/atlassian-bamboo.svg b/svg/atlassian-bamboo.svg
index b035b1e9..3ffcc1d7 100644
--- a/svg/atlassian-bamboo.svg
+++ b/svg/atlassian-bamboo.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/atlassian-opsgenie.svg b/svg/atlassian-opsgenie.svg
index d3ace718..529f2e63 100644
--- a/svg/atlassian-opsgenie.svg
+++ b/svg/atlassian-opsgenie.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/atuin-light.svg b/svg/atuin-light.svg
new file mode 100644
index 00000000..772e43a3
--- /dev/null
+++ b/svg/atuin-light.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/atuin.svg b/svg/atuin.svg
new file mode 100755
index 00000000..569a8cb1
--- /dev/null
+++ b/svg/atuin.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/audacity.svg b/svg/audacity.svg
index fd1156c2..76c07ced 100644
--- a/svg/audacity.svg
+++ b/svg/audacity.svg
@@ -1 +1,41 @@
-
\ No newline at end of file
+
+
+
+
+ image/svg+xml
+
+
+
+
+
+ Audacity development team
+
+
+
+
+ Aaron Spike
+
+
+ 2009-06-14
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/audiobookshelf.svg b/svg/audiobookshelf.svg
old mode 100644
new mode 100755
index 6e84fda4..7094a828
--- a/svg/audiobookshelf.svg
+++ b/svg/audiobookshelf.svg
@@ -1 +1,38 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/authelia.svg b/svg/authelia.svg
old mode 100644
new mode 100755
index 20be3fff..a0cc3f5f
--- a/svg/authelia.svg
+++ b/svg/authelia.svg
@@ -1 +1,68 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/authentik.svg b/svg/authentik.svg
new file mode 100755
index 00000000..dfb70ab8
--- /dev/null
+++ b/svg/authentik.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/authman.svg b/svg/authman.svg
new file mode 100755
index 00000000..64aaac4e
--- /dev/null
+++ b/svg/authman.svg
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/autobrr.svg b/svg/autobrr.svg
old mode 100644
new mode 100755
index 66e4cf07..bf5c53b0
--- a/svg/autobrr.svg
+++ b/svg/autobrr.svg
@@ -1 +1,5 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/automad-light.svg b/svg/automad-light.svg
new file mode 100644
index 00000000..af4fc239
--- /dev/null
+++ b/svg/automad-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/automad.svg b/svg/automad.svg
new file mode 100755
index 00000000..feb96788
--- /dev/null
+++ b/svg/automad.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/avm-fritzbox-light.svg b/svg/avm-fritzbox-light.svg
new file mode 100644
index 00000000..031019bd
--- /dev/null
+++ b/svg/avm-fritzbox-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/avm-fritzbox.svg b/svg/avm-fritzbox.svg
new file mode 100644
index 00000000..3053f14e
--- /dev/null
+++ b/svg/avm-fritzbox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/avmfritzbox.svg b/svg/avmfritzbox.svg
deleted file mode 100644
index e44e9322..00000000
--- a/svg/avmfritzbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/aws-light.svg b/svg/aws-light.svg
new file mode 100644
index 00000000..b9774740
--- /dev/null
+++ b/svg/aws-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/aws.svg b/svg/aws.svg
index 8a4747f0..9093499e 100644
--- a/svg/aws.svg
+++ b/svg/aws.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/azuracast.svg b/svg/azuracast.svg
old mode 100644
new mode 100755
index 5da9936d..a13221a9
--- a/svg/azuracast.svg
+++ b/svg/azuracast.svg
@@ -1 +1,65 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/azure-container-instances.svg b/svg/azure-container-instances.svg
index 28e406dc..cbdd12ed 100644
--- a/svg/azure-container-instances.svg
+++ b/svg/azure-container-instances.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/azure-container-service.svg b/svg/azure-container-service.svg
index d4567270..ae38b3b9 100644
--- a/svg/azure-container-service.svg
+++ b/svg/azure-container-service.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/azure-devops.svg b/svg/azure-devops.svg
index 7bca7ec3..2d041b31 100644
--- a/svg/azure-devops.svg
+++ b/svg/azure-devops.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/azure-dns.svg b/svg/azure-dns.svg
index 8a35556e..52bd2eda 100644
--- a/svg/azure-dns.svg
+++ b/svg/azure-dns.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/backblaze.svg b/svg/backblaze.svg
old mode 100644
new mode 100755
index 9b9432df..d1380b8b
--- a/svg/backblaze.svg
+++ b/svg/backblaze.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/backrest-light.svg b/svg/backrest-light.svg
new file mode 100644
index 00000000..53ecac10
--- /dev/null
+++ b/svg/backrest-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/backrest.svg b/svg/backrest.svg
new file mode 100755
index 00000000..68da363c
--- /dev/null
+++ b/svg/backrest.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bar-assistant.svg b/svg/bar-assistant.svg
old mode 100644
new mode 100755
index 32f2a442..0e30e104
--- a/svg/bar-assistant.svg
+++ b/svg/bar-assistant.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/baserow.svg b/svg/baserow.svg
old mode 100644
new mode 100755
index c556f6c5..a750b56e
--- a/svg/baserow.svg
+++ b/svg/baserow.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/bazarr-dark.svg b/svg/bazarr-dark.svg
new file mode 100644
index 00000000..5383894a
--- /dev/null
+++ b/svg/bazarr-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beaver-habit-tracker-light.svg b/svg/beaver-habit-tracker-light.svg
new file mode 100644
index 00000000..80831282
--- /dev/null
+++ b/svg/beaver-habit-tracker-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/beaver-habit-tracker.svg b/svg/beaver-habit-tracker.svg
new file mode 100755
index 00000000..c5774557
--- /dev/null
+++ b/svg/beaver-habit-tracker.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/beef-light.svg b/svg/beef-light.svg
new file mode 100644
index 00000000..3933842d
--- /dev/null
+++ b/svg/beef-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beef.svg b/svg/beef.svg
index e997f9e2..e746b995 100644
--- a/svg/beef.svg
+++ b/svg/beef.svg
@@ -1 +1 @@
-
+
\ No newline at end of file
diff --git a/svg/beszel-light.svg b/svg/beszel-light.svg
new file mode 100644
index 00000000..3e894931
--- /dev/null
+++ b/svg/beszel-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/beszel.svg b/svg/beszel.svg
new file mode 100755
index 00000000..d213147d
--- /dev/null
+++ b/svg/beszel.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/biblioreads-light.svg b/svg/biblioreads-light.svg
new file mode 100644
index 00000000..fb545fa4
--- /dev/null
+++ b/svg/biblioreads-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/biblioreads.svg b/svg/biblioreads.svg
new file mode 100755
index 00000000..efd7d1ed
--- /dev/null
+++ b/svg/biblioreads.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bigcapital.svg b/svg/bigcapital.svg
new file mode 100755
index 00000000..c3d10fbd
--- /dev/null
+++ b/svg/bigcapital.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bitbucket.svg b/svg/bitbucket.svg
new file mode 100755
index 00000000..f9f83811
--- /dev/null
+++ b/svg/bitbucket.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bitwarden.svg b/svg/bitwarden.svg
old mode 100644
new mode 100755
index 171c6534..afc8f0bc
--- a/svg/bitwarden.svg
+++ b/svg/bitwarden.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/svg/blocky.svg b/svg/blocky.svg
new file mode 100755
index 00000000..c54984df
--- /dev/null
+++ b/svg/blocky.svg
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bluesky.svg b/svg/bluesky.svg
new file mode 100755
index 00000000..913f2302
--- /dev/null
+++ b/svg/bluesky.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bluetooth.svg b/svg/bluetooth.svg
index ddaa0d84..20023bb8 100644
--- a/svg/bluetooth.svg
+++ b/svg/bluetooth.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/booklogr-light.svg b/svg/booklogr-light.svg
new file mode 100755
index 00000000..cfb7257b
--- /dev/null
+++ b/svg/booklogr-light.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/booklogr.svg b/svg/booklogr.svg
new file mode 100644
index 00000000..6d72c413
--- /dev/null
+++ b/svg/booklogr.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/bootstrap.svg b/svg/bootstrap.svg
index 47b7d43c..4dc454e5 100644
--- a/svg/bootstrap.svg
+++ b/svg/bootstrap.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/borg.svg b/svg/borg.svg
old mode 100644
new mode 100755
index 0e9ff8a8..d27297ce
--- a/svg/borg.svg
+++ b/svg/borg.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/svg/borgbackup.svg b/svg/borgbackup.svg
deleted file mode 100644
index 0e9ff8a8..00000000
--- a/svg/borgbackup.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/borgmatic-light.svg b/svg/borgmatic-light.svg
new file mode 100644
index 00000000..7dc7dfba
--- /dev/null
+++ b/svg/borgmatic-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/borgmatic.svg b/svg/borgmatic.svg
new file mode 100755
index 00000000..12f2547e
--- /dev/null
+++ b/svg/borgmatic.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/svg/boundary.svg b/svg/boundary.svg
index 43513a6a..2f5ff254 100644
--- a/svg/boundary.svg
+++ b/svg/boundary.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/box.svg b/svg/box.svg
new file mode 100755
index 00000000..a6847fca
--- /dev/null
+++ b/svg/box.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/brave.svg b/svg/brave.svg
old mode 100644
new mode 100755
index 3b24dd35..e294cf32
--- a/svg/brave.svg
+++ b/svg/brave.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/broadcastchannel-light.svg b/svg/broadcastchannel-light.svg
new file mode 100644
index 00000000..fb4d9158
--- /dev/null
+++ b/svg/broadcastchannel-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/broadcastchannel.svg b/svg/broadcastchannel.svg
new file mode 100755
index 00000000..e03fb24b
--- /dev/null
+++ b/svg/broadcastchannel.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/brocade.svg b/svg/brocade.svg
index 48a5a45a..d369af99 100644
--- a/svg/brocade.svg
+++ b/svg/brocade.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/brother.svg b/svg/brother.svg
new file mode 100755
index 00000000..806bb776
--- /dev/null
+++ b/svg/brother.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/browserless-light.svg b/svg/browserless-light.svg
new file mode 100644
index 00000000..e49fa8ea
--- /dev/null
+++ b/svg/browserless-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/browsh.svg b/svg/browsh.svg
index 67bff53a..82c0915c 100644
--- a/svg/browsh.svg
+++ b/svg/browsh.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/budgetbee-light.svg b/svg/budgetbee-light.svg
new file mode 100644
index 00000000..458b46e3
--- /dev/null
+++ b/svg/budgetbee-light.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/budgetbee.svg b/svg/budgetbee.svg
new file mode 100755
index 00000000..cb2b1292
--- /dev/null
+++ b/svg/budgetbee.svg
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/budibase.svg b/svg/budibase.svg
new file mode 100755
index 00000000..33315798
--- /dev/null
+++ b/svg/budibase.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/bunkerweb.svg b/svg/bunkerweb.svg
old mode 100644
new mode 100755
index 3b6b0d01..dc964373
--- a/svg/bunkerweb.svg
+++ b/svg/bunkerweb.svg
@@ -1 +1,6 @@
-
\ No newline at end of file
+
+
+
+
\ No newline at end of file
diff --git a/svg/caddy.svg b/svg/caddy.svg
new file mode 100755
index 00000000..82f1744f
--- /dev/null
+++ b/svg/caddy.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/cal-com-light.svg b/svg/cal-com-light.svg
new file mode 100644
index 00000000..7241f9cf
--- /dev/null
+++ b/svg/cal-com-light.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/cal-com.svg b/svg/cal-com.svg
new file mode 100755
index 00000000..4a5e6c80
--- /dev/null
+++ b/svg/cal-com.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/calibre.svg b/svg/calibre.svg
old mode 100644
new mode 100755
index 44b06764..9f9d64a6
--- a/svg/calibre.svg
+++ b/svg/calibre.svg
@@ -1 +1,225 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/caprover.svg b/svg/caprover.svg
new file mode 100755
index 00000000..5a9b1323
--- /dev/null
+++ b/svg/caprover.svg
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/casaos.svg b/svg/casaos.svg
index 31723a06..2eb0d31e 100644
--- a/svg/casaos.svg
+++ b/svg/casaos.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/castopod.svg b/svg/castopod.svg
old mode 100644
new mode 100755
index f32ac18a..b6f9374d
--- a/svg/castopod.svg
+++ b/svg/castopod.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/cc-light.svg b/svg/cc-light.svg
new file mode 100644
index 00000000..94c1626d
--- /dev/null
+++ b/svg/cc-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cc.svg b/svg/cc.svg
index 277952b0..81fe9b50 100644
--- a/svg/cc.svg
+++ b/svg/cc.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cert-warden-light.svg b/svg/cert-warden-light.svg
new file mode 100644
index 00000000..1ce5add7
--- /dev/null
+++ b/svg/cert-warden-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/changedetection.svg b/svg/changedetection.svg
new file mode 100755
index 00000000..9a912c6e
--- /dev/null
+++ b/svg/changedetection.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/channels-dvr.svg b/svg/channels-dvr.svg
new file mode 100755
index 00000000..c014f43e
--- /dev/null
+++ b/svg/channels-dvr.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/channels.svg b/svg/channels.svg
deleted file mode 100644
index 7b868bf6..00000000
--- a/svg/channels.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/chatgpt.svg b/svg/chatgpt.svg
old mode 100644
new mode 100755
index b3c2d5a3..1fe6c622
--- a/svg/chatgpt.svg
+++ b/svg/chatgpt.svg
@@ -1 +1,47 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/chevereto.svg b/svg/chevereto.svg
old mode 100644
new mode 100755
index be47b47e..e3eac6a5
--- a/svg/chevereto.svg
+++ b/svg/chevereto.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/svg/chirpy.svg b/svg/chirpy.svg
new file mode 100755
index 00000000..097da3a2
--- /dev/null
+++ b/svg/chirpy.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/chromecast.svg b/svg/chromecast.svg
deleted file mode 100644
index adcd268c..00000000
--- a/svg/chromecast.svg
+++ /dev/null
@@ -1 +0,0 @@
-ic_cast_black_24dp Created with Sketch.
\ No newline at end of file
diff --git a/svg/chromium.svg b/svg/chromium.svg
old mode 100644
new mode 100755
index 13badf54..10c198bc
--- a/svg/chromium.svg
+++ b/svg/chromium.svg
@@ -1 +1,44 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/cilium-light.svg b/svg/cilium-light.svg
new file mode 100644
index 00000000..accc738f
--- /dev/null
+++ b/svg/cilium-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cilium.svg b/svg/cilium.svg
index a4576246..e2d3c66e 100644
--- a/svg/cilium.svg
+++ b/svg/cilium.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cinny-light.svg b/svg/cinny-light.svg
new file mode 100644
index 00000000..9983c52c
--- /dev/null
+++ b/svg/cinny-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clickhouse.svg b/svg/clickhouse.svg
new file mode 100755
index 00000000..86971297
--- /dev/null
+++ b/svg/clickhouse.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/closed-captioning.svg b/svg/closed-captioning.svg
deleted file mode 100644
index 277952b0..00000000
--- a/svg/closed-captioning.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/cloud66.svg b/svg/cloud66.svg
index de4f53b8..f60cdb4f 100644
--- a/svg/cloud66.svg
+++ b/svg/cloud66.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cloud9-light.svg b/svg/cloud9-light.svg
new file mode 100644
index 00000000..466e164f
--- /dev/null
+++ b/svg/cloud9-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloud9.svg b/svg/cloud9.svg
index d3d4d2b5..ff3b886f 100644
--- a/svg/cloud9.svg
+++ b/svg/cloud9.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cloudbeaver.svg b/svg/cloudbeaver.svg
old mode 100644
new mode 100755
index 6799ef96..e4d13d80
--- a/svg/cloudbeaver.svg
+++ b/svg/cloudbeaver.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/cloudflare-pages.svg b/svg/cloudflare-pages.svg
index 49031aba..c16a23cc 100644
--- a/svg/cloudflare-pages.svg
+++ b/svg/cloudflare-pages.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cloudflare.svg b/svg/cloudflare.svg
old mode 100644
new mode 100755
index 2e3f8910..e60f3cc4
--- a/svg/cloudflare.svg
+++ b/svg/cloudflare.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/cloudpanel.svg b/svg/cloudpanel.svg
index aed96f95..64efb41e 100644
--- a/svg/cloudpanel.svg
+++ b/svg/cloudpanel.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cockpit-cms-light.svg b/svg/cockpit-cms-light.svg
new file mode 100644
index 00000000..6da1662d
--- /dev/null
+++ b/svg/cockpit-cms-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cockpit-light.svg b/svg/cockpit-light.svg
new file mode 100644
index 00000000..e44a8a69
--- /dev/null
+++ b/svg/cockpit-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/cockpit.svg b/svg/cockpit.svg
new file mode 100755
index 00000000..b34778b9
--- /dev/null
+++ b/svg/cockpit.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
diff --git a/svg/codeberg.svg b/svg/codeberg.svg
old mode 100644
new mode 100755
index a6574b0f..1b9fb615
--- a/svg/codeberg.svg
+++ b/svg/codeberg.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/coder-light.svg b/svg/coder-light.svg
new file mode 100644
index 00000000..36d4209e
--- /dev/null
+++ b/svg/coder-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/coder.svg b/svg/coder.svg
old mode 100644
new mode 100755
index 6cdd54bc..9575a49b
--- a/svg/coder.svg
+++ b/svg/coder.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/codestats-light.svg b/svg/codestats-light.svg
new file mode 100644
index 00000000..b2fde297
--- /dev/null
+++ b/svg/codestats-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/codestats.svg b/svg/codestats.svg
index 1a02a3c7..7476c392 100644
--- a/svg/codestats.svg
+++ b/svg/codestats.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/codex-light.svg b/svg/codex-light.svg
new file mode 100644
index 00000000..ec9d2832
--- /dev/null
+++ b/svg/codex-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/codex.svg b/svg/codex.svg
index ff6ff1f7..22ab14bd 100644
--- a/svg/codex.svg
+++ b/svg/codex.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/commafeed-light.svg b/svg/commafeed-light.svg
new file mode 100644
index 00000000..5c56b13d
--- /dev/null
+++ b/svg/commafeed-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/commafeed.svg b/svg/commafeed.svg
old mode 100644
new mode 100755
index d3f04c1a..d0d7c9f6
--- a/svg/commafeed.svg
+++ b/svg/commafeed.svg
@@ -1 +1,15 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/commento-light.svg b/svg/commento-light.svg
new file mode 100644
index 00000000..07009b1d
--- /dev/null
+++ b/svg/commento-light.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/commento.svg b/svg/commento.svg
new file mode 100755
index 00000000..097a6905
--- /dev/null
+++ b/svg/commento.svg
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/compreface.svg b/svg/compreface.svg
new file mode 100755
index 00000000..c46feb48
--- /dev/null
+++ b/svg/compreface.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/confluence.svg b/svg/confluence.svg
new file mode 100755
index 00000000..2e4ade3d
--- /dev/null
+++ b/svg/confluence.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/contabo.svg b/svg/contabo.svg
index 900e8943..a1c46b4e 100644
--- a/svg/contabo.svg
+++ b/svg/contabo.svg
@@ -1 +1 @@
-Layer 1
\ No newline at end of file
+Layer 1
\ No newline at end of file
diff --git a/svg/converse-light.svg b/svg/converse-light.svg
new file mode 100644
index 00000000..7db85c83
--- /dev/null
+++ b/svg/converse-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/converse.svg b/svg/converse.svg
new file mode 100755
index 00000000..118f7d0d
--- /dev/null
+++ b/svg/converse.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/coolify.svg b/svg/coolify.svg
old mode 100644
new mode 100755
index 3326bf09..e947039b
--- a/svg/coolify.svg
+++ b/svg/coolify.svg
@@ -1 +1,36 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/costco.svg b/svg/costco.svg
index efed5fbc..fde2725c 100644
--- a/svg/costco.svg
+++ b/svg/costco.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/couchdb.svg b/svg/couchdb.svg
new file mode 100755
index 00000000..94cd9a0d
--- /dev/null
+++ b/svg/couchdb.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/counter-analytics.svg b/svg/counter-analytics.svg
new file mode 100755
index 00000000..b2dd26bd
--- /dev/null
+++ b/svg/counter-analytics.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/cozy.svg b/svg/cozy.svg
index de4f4c09..463ddf12 100644
--- a/svg/cozy.svg
+++ b/svg/cozy.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cpanel.svg b/svg/cpanel.svg
index 6156f431..bbe70636 100644
--- a/svg/cpanel.svg
+++ b/svg/cpanel.svg
@@ -1 +1 @@
-hero-cpanel
\ No newline at end of file
+hero-cpanel
\ No newline at end of file
diff --git a/svg/crowdsec.svg b/svg/crowdsec.svg
old mode 100644
new mode 100755
index 83629c46..350b1858
--- a/svg/crowdsec.svg
+++ b/svg/crowdsec.svg
@@ -1 +1,96 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/cryptpad.svg b/svg/cryptpad.svg
old mode 100644
new mode 100755
index 1944b914..14dc28b1
--- a/svg/cryptpad.svg
+++ b/svg/cryptpad.svg
@@ -1,22 +1,37 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/css-light.svg b/svg/css-light.svg
new file mode 100644
index 00000000..345b5e0e
--- /dev/null
+++ b/svg/css-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ctfreak.svg b/svg/ctfreak.svg
new file mode 100755
index 00000000..5da6ded7
--- /dev/null
+++ b/svg/ctfreak.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/cups-light.svg b/svg/cups-light.svg
new file mode 100644
index 00000000..36e793e3
--- /dev/null
+++ b/svg/cups-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cups.svg b/svg/cups.svg
index 33d99ebb..34675c42 100644
--- a/svg/cups.svg
+++ b/svg/cups.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/cyberchef.svg b/svg/cyberchef.svg
old mode 100644
new mode 100755
index 6276fd2d..3557d398
--- a/svg/cyberchef.svg
+++ b/svg/cyberchef.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/czkawka.svg b/svg/czkawka.svg
new file mode 100755
index 00000000..2fc565d7
--- /dev/null
+++ b/svg/czkawka.svg
@@ -0,0 +1,180 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/dalibo.svg b/svg/dalibo.svg
new file mode 100755
index 00000000..af99e291
--- /dev/null
+++ b/svg/dalibo.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/datadog.svg b/svg/datadog.svg
index 93046de3..d3b3e61e 100644
--- a/svg/datadog.svg
+++ b/svg/datadog.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/davical.svg b/svg/davical.svg
new file mode 100755
index 00000000..eda4d681
--- /dev/null
+++ b/svg/davical.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/dawarich.svg b/svg/dawarich.svg
new file mode 100755
index 00000000..4d5a10bf
--- /dev/null
+++ b/svg/dawarich.svg
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ddclient.svg b/svg/ddclient.svg
new file mode 100755
index 00000000..c7b58f84
--- /dev/null
+++ b/svg/ddclient.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ddns-updater.svg b/svg/ddns-updater.svg
old mode 100644
new mode 100755
index 40460cf2..31329636
--- a/svg/ddns-updater.svg
+++ b/svg/ddns-updater.svg
@@ -1 +1,82 @@
-ddnsgopher DNS
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DNS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/debian-linux.svg b/svg/debian-linux.svg
new file mode 100644
index 00000000..77f2d9e6
--- /dev/null
+++ b/svg/debian-linux.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/debian.svg b/svg/debian.svg
deleted file mode 100644
index 3394309b..00000000
--- a/svg/debian.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/defguard.svg b/svg/defguard.svg
new file mode 100755
index 00000000..24e01d9b
--- /dev/null
+++ b/svg/defguard.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/deluge.svg b/svg/deluge.svg
old mode 100644
new mode 100755
index e3cd6f84..ef48037f
--- a/svg/deluge.svg
+++ b/svg/deluge.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/deno-light.svg b/svg/deno-light.svg
new file mode 100644
index 00000000..e04d9b44
--- /dev/null
+++ b/svg/deno-light.svg
@@ -0,0 +1 @@
+Created by potrace 1.15, written by Peter Selinger 2001-2017
\ No newline at end of file
diff --git a/svg/deno.svg b/svg/deno.svg
index 299a433d..42a09559 100644
--- a/svg/deno.svg
+++ b/svg/deno.svg
@@ -1 +1 @@
-Created by potrace 1.15, written by Peter Selinger 2001-2017
\ No newline at end of file
+Created by potrace 1.15, written by Peter Selinger 2001-2017
\ No newline at end of file
diff --git a/svg/denon-light.svg b/svg/denon-light.svg
new file mode 100644
index 00000000..24f804ef
--- /dev/null
+++ b/svg/denon-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/denon.svg b/svg/denon.svg
index 231a7049..7587dad7 100644
--- a/svg/denon.svg
+++ b/svg/denon.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/digital-ocean.svg b/svg/digital-ocean.svg
old mode 100644
new mode 100755
index 00ec2e45..c0f8db08
--- a/svg/digital-ocean.svg
+++ b/svg/digital-ocean.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/dillinger-light.svg b/svg/dillinger-light.svg
new file mode 100644
index 00000000..e1678c83
--- /dev/null
+++ b/svg/dillinger-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/dillinger.svg b/svg/dillinger.svg
new file mode 100755
index 00000000..65c11cd3
--- /dev/null
+++ b/svg/dillinger.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/directadmin.svg b/svg/directadmin.svg
index d5b8879e..37ad780b 100644
--- a/svg/directadmin.svg
+++ b/svg/directadmin.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/discord.svg b/svg/discord.svg
old mode 100644
new mode 100755
index 250ea9ba..f849e16e
--- a/svg/discord.svg
+++ b/svg/discord.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/discourse-light.svg b/svg/discourse-light.svg
new file mode 100644
index 00000000..279c12ca
--- /dev/null
+++ b/svg/discourse-light.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/discourse.svg b/svg/discourse.svg
old mode 100644
new mode 100755
index fdeca64e..cabf682f
--- a/svg/discourse.svg
+++ b/svg/discourse.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/disney-plus.svg b/svg/disney-plus.svg
old mode 100644
new mode 100755
index ed698aa4..c9051524
--- a/svg/disney-plus.svg
+++ b/svg/disney-plus.svg
@@ -1 +1,86 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/dlna.svg b/svg/dlna.svg
index 34bdbf20..bb835fab 100644
--- a/svg/dlna.svg
+++ b/svg/dlna.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/docassemble-light.svg b/svg/docassemble-light.svg
new file mode 100644
index 00000000..9a691c04
--- /dev/null
+++ b/svg/docassemble-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/docassemble.svg b/svg/docassemble.svg
new file mode 100755
index 00000000..ba447c2a
--- /dev/null
+++ b/svg/docassemble.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/docker-engine.svg b/svg/docker-engine.svg
new file mode 100755
index 00000000..d2003201
--- /dev/null
+++ b/svg/docker-engine.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/docker-mailserver-light.svg b/svg/docker-mailserver-light.svg
new file mode 100644
index 00000000..a712bfc3
--- /dev/null
+++ b/svg/docker-mailserver-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/docker-mailserver.svg b/svg/docker-mailserver.svg
index 6b139ce1..77165df7 100644
--- a/svg/docker-mailserver.svg
+++ b/svg/docker-mailserver.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/docker-moby.svg b/svg/docker-moby.svg
index 6744e149..eb98e396 100644
--- a/svg/docker-moby.svg
+++ b/svg/docker-moby.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/docker-volume-backup.svg b/svg/docker-volume-backup.svg
new file mode 100755
index 00000000..ada639b9
--- /dev/null
+++ b/svg/docker-volume-backup.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/docker.svg b/svg/docker.svg
old mode 100644
new mode 100755
index 72b041a2..d2003201
--- a/svg/docker.svg
+++ b/svg/docker.svg
@@ -1 +1,6 @@
-
\ No newline at end of file
+
+
+
+
\ No newline at end of file
diff --git a/svg/dockge-light.svg b/svg/dockge-light.svg
deleted file mode 100644
index 3e18a4f5..00000000
--- a/svg/dockge-light.svg
+++ /dev/null
@@ -1 +0,0 @@
-Created with Fabric.js 5.3.0
\ No newline at end of file
diff --git a/svg/dockge.svg b/svg/dockge.svg
new file mode 100755
index 00000000..b8e2df26
--- /dev/null
+++ b/svg/dockge.svg
@@ -0,0 +1,14 @@
+
+
+
+Created with Fabric.js 5.3.0
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/docking-station.svg b/svg/docking-station.svg
new file mode 100755
index 00000000..d140fb72
--- /dev/null
+++ b/svg/docking-station.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/docspell.svg b/svg/docspell.svg
old mode 100644
new mode 100755
index 77a1b1e5..ada67e90
--- a/svg/docspell.svg
+++ b/svg/docspell.svg
@@ -1 +1,36 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/documenso.svg b/svg/documenso.svg
new file mode 100755
index 00000000..89094837
--- /dev/null
+++ b/svg/documenso.svg
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/docusaurus.svg b/svg/docusaurus.svg
old mode 100644
new mode 100755
index 250f2fce..6b9ac139
--- a/svg/docusaurus.svg
+++ b/svg/docusaurus.svg
@@ -1 +1,26 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/docuseal.svg b/svg/docuseal.svg
old mode 100644
new mode 100755
index a659792d..9656c4fd
--- a/svg/docuseal.svg
+++ b/svg/docuseal.svg
@@ -1 +1,27 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/dokemon.svg b/svg/dokemon.svg
new file mode 100755
index 00000000..31b8c761
--- /dev/null
+++ b/svg/dokemon.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/dokuwiki.svg b/svg/dokuwiki.svg
old mode 100644
new mode 100755
index 6b67e7c7..ab6858c1
--- a/svg/dokuwiki.svg
+++ b/svg/dokuwiki.svg
@@ -1 +1,167 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/double-take-dark.svg b/svg/double-take-dark.svg
new file mode 100644
index 00000000..cda7dafe
--- /dev/null
+++ b/svg/double-take-dark.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/double-take.svg b/svg/double-take.svg
new file mode 100755
index 00000000..7dca4de9
--- /dev/null
+++ b/svg/double-take.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/dovecot.svg b/svg/dovecot.svg
old mode 100644
new mode 100755
index f2f01069..323dfa00
--- a/svg/dovecot.svg
+++ b/svg/dovecot.svg
@@ -1 +1,6 @@
-
\ No newline at end of file
+
+
+
+
\ No newline at end of file
diff --git a/svg/dozzle.svg b/svg/dozzle.svg
old mode 100644
new mode 100755
index e64ce827..c6b3b166
--- a/svg/dozzle.svg
+++ b/svg/dozzle.svg
@@ -1 +1,9 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/draw-io.svg b/svg/draw-io.svg
new file mode 100755
index 00000000..a7f6756d
--- /dev/null
+++ b/svg/draw-io.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/dropbox.svg b/svg/dropbox.svg
new file mode 100755
index 00000000..27827137
--- /dev/null
+++ b/svg/dropbox.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/dropout-light.svg b/svg/dropout-light.svg
new file mode 100644
index 00000000..0d9b5fd2
--- /dev/null
+++ b/svg/dropout-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/dropout.svg b/svg/dropout.svg
new file mode 100755
index 00000000..4247e92a
--- /dev/null
+++ b/svg/dropout.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/droppy-dark.svg b/svg/droppy-dark.svg
new file mode 100644
index 00000000..cf94f12f
--- /dev/null
+++ b/svg/droppy-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dub-light.svg b/svg/dub-light.svg
new file mode 100644
index 00000000..58ef6767
--- /dev/null
+++ b/svg/dub-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/dub.svg b/svg/dub.svg
new file mode 100755
index 00000000..14aac361
--- /dev/null
+++ b/svg/dub.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
diff --git a/svg/duckdns-light.svg b/svg/duckdns-light.svg
new file mode 100644
index 00000000..f53f8510
--- /dev/null
+++ b/svg/duckdns-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/duckdns.svg b/svg/duckdns.svg
new file mode 100755
index 00000000..e47ddf64
--- /dev/null
+++ b/svg/duckdns.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/duckduckgo.svg b/svg/duckduckgo.svg
old mode 100644
new mode 100755
index 5a73007c..fdd99bd8
--- a/svg/duckduckgo.svg
+++ b/svg/duckduckgo.svg
@@ -1 +1,89 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/duplicati.svg b/svg/duplicati.svg
old mode 100644
new mode 100755
index 09d1edf2..20441dfe
--- a/svg/duplicati.svg
+++ b/svg/duplicati.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/easy-gate-light.svg b/svg/easy-gate-light.svg
new file mode 100644
index 00000000..31e166d7
--- /dev/null
+++ b/svg/easy-gate-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/easy-gate.svg b/svg/easy-gate.svg
index 6b6c9bc4..aea8a183 100644
--- a/svg/easy-gate.svg
+++ b/svg/easy-gate.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/edge.svg b/svg/edge.svg
index f986f089..12b71eed 100644
--- a/svg/edge.svg
+++ b/svg/edge.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/elastic-beats.svg b/svg/elastic-beats.svg
index 8cefd39f..1e6c76ec 100644
--- a/svg/elastic-beats.svg
+++ b/svg/elastic-beats.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/elastic-kibana.svg b/svg/elastic-kibana.svg
index 692d3bd9..11f07aba 100644
--- a/svg/elastic-kibana.svg
+++ b/svg/elastic-kibana.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/elastic-logstash.svg b/svg/elastic-logstash.svg
index cf718cd0..864739ba 100644
--- a/svg/elastic-logstash.svg
+++ b/svg/elastic-logstash.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/electronic-arts.svg b/svg/electronic-arts.svg
new file mode 100755
index 00000000..3cc27076
--- /dev/null
+++ b/svg/electronic-arts.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
diff --git a/svg/element.svg b/svg/element.svg
old mode 100644
new mode 100755
index 86d22aa7..c917f272
--- a/svg/element.svg
+++ b/svg/element.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/eleventy-light.svg b/svg/eleventy-light.svg
new file mode 100644
index 00000000..de0fa52e
--- /dev/null
+++ b/svg/eleventy-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/eleventy.svg b/svg/eleventy.svg
new file mode 100755
index 00000000..0847923d
--- /dev/null
+++ b/svg/eleventy.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/elysian.svg b/svg/elysian.svg
new file mode 100755
index 00000000..86493be2
--- /dev/null
+++ b/svg/elysian.svg
@@ -0,0 +1,5951 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/emby.svg b/svg/emby.svg
old mode 100644
new mode 100755
index e00f1d01..5a8c78d3
--- a/svg/emby.svg
+++ b/svg/emby.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/emq-light.svg b/svg/emq-light.svg
new file mode 100644
index 00000000..8eb52f57
--- /dev/null
+++ b/svg/emq-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/emq.svg b/svg/emq.svg
index b6f91bde..7877e773 100644
--- a/svg/emq.svg
+++ b/svg/emq.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/emqx.svg b/svg/emqx.svg
index 29e351dd..1d5912a4 100644
--- a/svg/emqx.svg
+++ b/svg/emqx.svg
@@ -1 +1 @@
-320ๅคไปฝ
\ No newline at end of file
+320ๅคไปฝ
\ No newline at end of file
diff --git a/svg/emulatorjs.svg b/svg/emulatorjs.svg
new file mode 100755
index 00000000..6272cf37
--- /dev/null
+++ b/svg/emulatorjs.svg
@@ -0,0 +1,1242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/enclosed-light.svg b/svg/enclosed-light.svg
new file mode 100644
index 00000000..ac7119b8
--- /dev/null
+++ b/svg/enclosed-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/enclosed.svg b/svg/enclosed.svg
new file mode 100755
index 00000000..99263c04
--- /dev/null
+++ b/svg/enclosed.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/endless-light.svg b/svg/endless-light.svg
new file mode 100644
index 00000000..48ea3847
--- /dev/null
+++ b/svg/endless-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/endless.svg b/svg/endless.svg
new file mode 100755
index 00000000..d040a3d2
--- /dev/null
+++ b/svg/endless.svg
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/endurain.svg b/svg/endurain.svg
new file mode 100755
index 00000000..91b4a673
--- /dev/null
+++ b/svg/endurain.svg
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/epic-games-light.svg b/svg/epic-games-light.svg
new file mode 100644
index 00000000..bd0771a9
--- /dev/null
+++ b/svg/epic-games-light.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/epic-games.svg b/svg/epic-games.svg
new file mode 100755
index 00000000..f566a4f0
--- /dev/null
+++ b/svg/epic-games.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/erste-george.svg b/svg/erste-george.svg
index 4ac138d9..29ef1474 100644
--- a/svg/erste-george.svg
+++ b/svg/erste-george.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/esphome-alt-light.svg b/svg/esphome-alt-light.svg
new file mode 100644
index 00000000..b7a1f6cb
--- /dev/null
+++ b/svg/esphome-alt-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/esphome-alt.svg b/svg/esphome-alt.svg
index 70b0faec..18cee9cf 100644
--- a/svg/esphome-alt.svg
+++ b/svg/esphome-alt.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/esphome-light.svg b/svg/esphome-light.svg
new file mode 100644
index 00000000..0200e3f1
--- /dev/null
+++ b/svg/esphome-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/esphome.svg b/svg/esphome.svg
old mode 100644
new mode 100755
index 02f3a521..5378e8d7
--- a/svg/esphome.svg
+++ b/svg/esphome.svg
@@ -1,56 +1,19 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/etcd.svg b/svg/etcd.svg
index cf592d61..1933131f 100644
--- a/svg/etcd.svg
+++ b/svg/etcd.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/etesync.svg b/svg/etesync.svg
old mode 100644
new mode 100755
index 673d773c..75cd4e59
--- a/svg/etesync.svg
+++ b/svg/etesync.svg
@@ -1 +1,36 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/evcc.svg b/svg/evcc.svg
new file mode 100755
index 00000000..b438b813
--- /dev/null
+++ b/svg/evcc.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/excalidraw.svg b/svg/excalidraw.svg
old mode 100644
new mode 100755
index 69cb46cc..956eebee
--- a/svg/excalidraw.svg
+++ b/svg/excalidraw.svg
@@ -1 +1,52 @@
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/svg/facebook-messenger.svg b/svg/facebook-messenger.svg
old mode 100644
new mode 100755
index 01433b43..2b881650
--- a/svg/facebook-messenger.svg
+++ b/svg/facebook-messenger.svg
@@ -1 +1,24 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/facebook.svg b/svg/facebook.svg
old mode 100644
new mode 100755
index 8d6977b4..2cfd3b2f
--- a/svg/facebook.svg
+++ b/svg/facebook.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/fast-com-light.svg b/svg/fast-com-light.svg
new file mode 100644
index 00000000..1663290d
--- /dev/null
+++ b/svg/fast-com-light.svg
@@ -0,0 +1 @@
+Fast_Logo_Stacked_Black_RGB
\ No newline at end of file
diff --git a/svg/fasten-health.svg b/svg/fasten-health.svg
new file mode 100755
index 00000000..3e0b0f19
--- /dev/null
+++ b/svg/fasten-health.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/fastmail.svg b/svg/fastmail.svg
old mode 100644
new mode 100755
index b56571f8..42b86e1a
--- a/svg/fastmail.svg
+++ b/svg/fastmail.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/fedora.svg b/svg/fedora.svg
old mode 100644
new mode 100755
index e325de37..a9f02168
--- a/svg/fedora.svg
+++ b/svg/fedora.svg
@@ -1 +1,29 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/feedbase-light.svg b/svg/feedbase-light.svg
new file mode 100644
index 00000000..3383954e
--- /dev/null
+++ b/svg/feedbase-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/feedbase.svg b/svg/feedbase.svg
new file mode 100755
index 00000000..de68a6aa
--- /dev/null
+++ b/svg/feedbase.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/feedbin-light.svg b/svg/feedbin-light.svg
new file mode 100644
index 00000000..87816bb0
--- /dev/null
+++ b/svg/feedbin-light.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/svg/feedbin.svg b/svg/feedbin.svg
new file mode 100755
index 00000000..25d1113a
--- /dev/null
+++ b/svg/feedbin.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/svg/feedly.svg b/svg/feedly.svg
old mode 100644
new mode 100755
index 7730e24d..bf95b070
--- a/svg/feedly.svg
+++ b/svg/feedly.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/feedlynx-light.svg b/svg/feedlynx-light.svg
new file mode 100644
index 00000000..811f70b5
--- /dev/null
+++ b/svg/feedlynx-light.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/feedlynx.svg b/svg/feedlynx.svg
new file mode 100755
index 00000000..97826447
--- /dev/null
+++ b/svg/feedlynx.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/fenrus.svg b/svg/fenrus.svg
old mode 100644
new mode 100755
index 2568d8c7..2bbfb70b
--- a/svg/fenrus.svg
+++ b/svg/fenrus.svg
@@ -1 +1,115 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ferdium.svg b/svg/ferdium.svg
old mode 100644
new mode 100755
index c8ccdb53..f05edd4c
--- a/svg/ferdium.svg
+++ b/svg/ferdium.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ferretdb.svg b/svg/ferretdb.svg
new file mode 100755
index 00000000..3f23eed4
--- /dev/null
+++ b/svg/ferretdb.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/fider.svg b/svg/fider.svg
new file mode 100755
index 00000000..5be0cfd4
--- /dev/null
+++ b/svg/fider.svg
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/filebot.svg b/svg/filebot.svg
index 03f5c39e..3e8aea9a 100644
--- a/svg/filebot.svg
+++ b/svg/filebot.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/filecloud.svg b/svg/filecloud.svg
index 19e64539..88dddc6e 100644
--- a/svg/filecloud.svg
+++ b/svg/filecloud.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/fileflows.svg b/svg/fileflows.svg
old mode 100644
new mode 100755
index b4beaf05..682e9e36
--- a/svg/fileflows.svg
+++ b/svg/fileflows.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/filegator.svg b/svg/filegator.svg
index 492895e4..cc8a7119 100644
--- a/svg/filegator.svg
+++ b/svg/filegator.svg
@@ -1 +1 @@
-image/svg+xml Layer 1
\ No newline at end of file
+image/svg+xml Layer 1
\ No newline at end of file
diff --git a/svg/filerun.svg b/svg/filerun.svg
old mode 100644
new mode 100755
index 445568d9..d5c43793
--- a/svg/filerun.svg
+++ b/svg/filerun.svg
@@ -1 +1,6 @@
-
\ No newline at end of file
+
+
+
+
\ No newline at end of file
diff --git a/svg/files.svg b/svg/files.svg
index e2e6aa20..b218b073 100644
--- a/svg/files.svg
+++ b/svg/files.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/filestash.svg b/svg/filestash.svg
new file mode 100755
index 00000000..8e9e37f0
--- /dev/null
+++ b/svg/filestash.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/finamp-dark.svg b/svg/finamp-dark.svg
deleted file mode 100644
index 7f36963c..00000000
--- a/svg/finamp-dark.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/svg/finamp-light.svg b/svg/finamp-light.svg
deleted file mode 100644
index b3aa0166..00000000
--- a/svg/finamp-light.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/svg/finamp.svg b/svg/finamp.svg
index a899bfd9..c442a63a 100644
--- a/svg/finamp.svg
+++ b/svg/finamp.svg
@@ -1,5 +1,4 @@
-
-
+
-
-
-
\ No newline at end of file
diff --git a/svg/findroid-light.svg b/svg/findroid-light.svg
deleted file mode 100644
index 85ac5249..00000000
--- a/svg/findroid-light.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/svg/findroid.svg b/svg/findroid.svg
index 9d7be364..a3688fd0 100644
--- a/svg/findroid.svg
+++ b/svg/findroid.svg
@@ -1,5 +1,4 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/firefly.svg b/svg/firefly.svg
old mode 100644
new mode 100755
index a74693de..e376a42e
--- a/svg/firefly.svg
+++ b/svg/firefly.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/firefox-beta.svg b/svg/firefox-beta.svg
index efcb9d2e..cc230349 100644
--- a/svg/firefox-beta.svg
+++ b/svg/firefox-beta.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/firefox-developer-edition.svg b/svg/firefox-developer-edition.svg
index 742eb5d3..2c75d62f 100644
--- a/svg/firefox-developer-edition.svg
+++ b/svg/firefox-developer-edition.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/firefox-lite.svg b/svg/firefox-lite.svg
index cfcad6db..4b8979df 100644
--- a/svg/firefox-lite.svg
+++ b/svg/firefox-lite.svg
@@ -1 +1 @@
-q
\ No newline at end of file
+q
\ No newline at end of file
diff --git a/svg/firefox-nightly.svg b/svg/firefox-nightly.svg
index 853400ea..8d828076 100644
--- a/svg/firefox-nightly.svg
+++ b/svg/firefox-nightly.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/firefox-reality.svg b/svg/firefox-reality.svg
index e22a1ce7..7b4dc48d 100644
--- a/svg/firefox-reality.svg
+++ b/svg/firefox-reality.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/firefox-send.svg b/svg/firefox-send.svg
index 35ace7f9..8badae79 100644
--- a/svg/firefox-send.svg
+++ b/svg/firefox-send.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/firefox.svg b/svg/firefox.svg
old mode 100644
new mode 100755
index 065152ac..b3471fad
--- a/svg/firefox.svg
+++ b/svg/firefox.svg
@@ -1 +1,132 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/firewalla.svg b/svg/firewalla.svg
index aabe2851..09721668 100644
--- a/svg/firewalla.svg
+++ b/svg/firewalla.svg
@@ -1 +1 @@
-Logo_Refine
\ No newline at end of file
+Logo_Refine
\ No newline at end of file
diff --git a/svg/fittrackee.svg b/svg/fittrackee.svg
new file mode 100755
index 00000000..beae48d3
--- /dev/null
+++ b/svg/fittrackee.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/fladder.svg b/svg/fladder.svg
new file mode 100755
index 00000000..8b342f23
--- /dev/null
+++ b/svg/fladder.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/flaresolverr.svg b/svg/flaresolverr.svg
old mode 100644
new mode 100755
index e2856cf8..98f6cff9
--- a/svg/flaresolverr.svg
+++ b/svg/flaresolverr.svg
@@ -1 +1,90 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/flarum.svg b/svg/flarum.svg
old mode 100644
new mode 100755
index c3abfb52..cd48bf62
--- a/svg/flarum.svg
+++ b/svg/flarum.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/flathub.svg b/svg/flathub.svg
index 3b38e70e..223825e9 100644
--- a/svg/flathub.svg
+++ b/svg/flathub.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/flatnotes.svg b/svg/flatnotes.svg
new file mode 100755
index 00000000..e5d76fe9
--- /dev/null
+++ b/svg/flatnotes.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/flatpak.svg b/svg/flatpak.svg
index ee3ded91..0e0cf15f 100644
--- a/svg/flatpak.svg
+++ b/svg/flatpak.svg
@@ -1 +1 @@
-
\ No newline at end of file
+Flatpak
\ No newline at end of file
diff --git a/svg/flightradar24-light.svg b/svg/flightradar24-light.svg
new file mode 100644
index 00000000..edf6535c
--- /dev/null
+++ b/svg/flightradar24-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/flightradar24.svg b/svg/flightradar24.svg
new file mode 100755
index 00000000..1bf65d42
--- /dev/null
+++ b/svg/flightradar24.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/flood.svg b/svg/flood.svg
index 3aafb217..657fe37c 100644
--- a/svg/flood.svg
+++ b/svg/flood.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/fluffychat-dark.svg b/svg/fluffychat-dark.svg
new file mode 100644
index 00000000..219cee75
--- /dev/null
+++ b/svg/fluffychat-dark.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/fluffychat.svg b/svg/fluffychat.svg
old mode 100644
new mode 100755
index 4d798f8f..823765a1
--- a/svg/fluffychat.svg
+++ b/svg/fluffychat.svg
@@ -1 +1,43 @@
-fluffychat
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/fluidd.svg b/svg/fluidd.svg
old mode 100644
new mode 100755
index 3b30f22f..0d5a5ef9
--- a/svg/fluidd.svg
+++ b/svg/fluidd.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/flux-cd.svg b/svg/flux-cd.svg
index 45a599ce..67163774 100644
--- a/svg/flux-cd.svg
+++ b/svg/flux-cd.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/focalboard.svg b/svg/focalboard.svg
index 69c1824b..b0abca02 100644
--- a/svg/focalboard.svg
+++ b/svg/focalboard.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/foldingathome.svg b/svg/foldingathome.svg
index 4b32fade..7019ab53 100644
--- a/svg/foldingathome.svg
+++ b/svg/foldingathome.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/fontawesome.svg b/svg/fontawesome.svg
index fc0b383b..bd6e08a6 100644
--- a/svg/fontawesome.svg
+++ b/svg/fontawesome.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/forgejo.svg b/svg/forgejo.svg
old mode 100644
new mode 100755
index f65c10c6..12f2889e
--- a/svg/forgejo.svg
+++ b/svg/forgejo.svg
@@ -1 +1,15 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/forte-light.svg b/svg/forte-light.svg
new file mode 100644
index 00000000..5175c7fb
--- /dev/null
+++ b/svg/forte-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/forte.svg b/svg/forte.svg
new file mode 100755
index 00000000..ed26a95f
--- /dev/null
+++ b/svg/forte.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/fossil.svg b/svg/fossil.svg
index 45557470..0e727281 100644
--- a/svg/fossil.svg
+++ b/svg/fossil.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/franz.svg b/svg/franz.svg
index d5964a01..0660dd34 100644
--- a/svg/franz.svg
+++ b/svg/franz.svg
@@ -1 +1 @@
-franz Created with Sketch.
\ No newline at end of file
+franz Created with Sketch.
\ No newline at end of file
diff --git a/svg/freedombox.svg b/svg/freedombox.svg
index 838c7001..46c53d35 100644
--- a/svg/freedombox.svg
+++ b/svg/freedombox.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/freeipa.svg b/svg/freeipa.svg
old mode 100644
new mode 100755
index 5f182586..a1bf2a48
--- a/svg/freeipa.svg
+++ b/svg/freeipa.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/freenas.svg b/svg/freenas.svg
index ddcfd3bb..c15c574f 100644
--- a/svg/freenas.svg
+++ b/svg/freenas.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/freepbx.svg b/svg/freepbx.svg
index 8777ef0a..5eaed729 100644
--- a/svg/freepbx.svg
+++ b/svg/freepbx.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/freshping-dark.svg b/svg/freshping-dark.svg
new file mode 100644
index 00000000..24b024fa
--- /dev/null
+++ b/svg/freshping-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/freshrss.svg b/svg/freshrss.svg
old mode 100644
new mode 100755
index 10a2ecba..b99330ac
--- a/svg/freshrss.svg
+++ b/svg/freshrss.svg
@@ -1 +1,21 @@
-Logo FreshRSS
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/friendica.svg b/svg/friendica.svg
old mode 100644
new mode 100755
index efbb051c..2494dc0d
--- a/svg/friendica.svg
+++ b/svg/friendica.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/frigate-light.svg b/svg/frigate-light.svg
new file mode 100644
index 00000000..27310ef0
--- /dev/null
+++ b/svg/frigate-light.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/svg/frigate.svg b/svg/frigate.svg
old mode 100644
new mode 100755
index 149613c4..3e916d27
--- a/svg/frigate.svg
+++ b/svg/frigate.svg
@@ -1 +1,3 @@
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/svg/fritzbox-light.svg b/svg/fritzbox-light.svg
new file mode 100644
index 00000000..031019bd
--- /dev/null
+++ b/svg/fritzbox-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fritzbox.svg b/svg/fritzbox.svg
new file mode 100644
index 00000000..3053f14e
--- /dev/null
+++ b/svg/fritzbox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fulcio.svg b/svg/fulcio.svg
index be220926..0010dd74 100644
--- a/svg/fulcio.svg
+++ b/svg/fulcio.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/funkwhale-light.svg b/svg/funkwhale-light.svg
new file mode 100644
index 00000000..d583aaca
--- /dev/null
+++ b/svg/funkwhale-light.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/funkwhale.svg b/svg/funkwhale.svg
old mode 100644
new mode 100755
index a85c3b5c..7cf073b1
--- a/svg/funkwhale.svg
+++ b/svg/funkwhale.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/fusionauth-light.svg b/svg/fusionauth-light.svg
deleted file mode 100644
index 83156ae1..00000000
--- a/svg/fusionauth-light.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/svg/fusionauth.svg b/svg/fusionauth.svg
old mode 100644
new mode 100755
index 89cd0bce..b32fa140
--- a/svg/fusionauth.svg
+++ b/svg/fusionauth.svg
@@ -1,10 +1,33 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/garage.svg b/svg/garage.svg
new file mode 100755
index 00000000..9d057939
--- /dev/null
+++ b/svg/garage.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/gatsby.svg b/svg/gatsby.svg
old mode 100644
new mode 100755
index 8c301b63..4e31a16a
--- a/svg/gatsby.svg
+++ b/svg/gatsby.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/gatus.svg b/svg/gatus.svg
old mode 100644
new mode 100755
index 69e3e694..4470c1e9
--- a/svg/gatus.svg
+++ b/svg/gatus.svg
@@ -1 +1,31 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/gentoo.svg b/svg/gentoo-linux.svg
similarity index 100%
rename from svg/gentoo.svg
rename to svg/gentoo-linux.svg
diff --git a/svg/gebera.svg b/svg/gerbera.svg
similarity index 100%
rename from svg/gebera.svg
rename to svg/gerbera.svg
diff --git a/svg/ghostfolio.svg b/svg/ghostfolio.svg
new file mode 100755
index 00000000..2f1793cb
--- /dev/null
+++ b/svg/ghostfolio.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/gimp.svg b/svg/gimp.svg
new file mode 100755
index 00000000..efaa3ff1
--- /dev/null
+++ b/svg/gimp.svg
@@ -0,0 +1,452 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/gitbook.svg b/svg/gitbook.svg
index faa32348..7782940b 100644
--- a/svg/gitbook.svg
+++ b/svg/gitbook.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/gitea.svg b/svg/gitea.svg
old mode 100644
new mode 100755
index a33a547f..da71a0a3
--- a/svg/gitea.svg
+++ b/svg/gitea.svg
@@ -1 +1,15 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/github-light.svg b/svg/github-light.svg
new file mode 100644
index 00000000..da5df33b
--- /dev/null
+++ b/svg/github-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/github.svg b/svg/github.svg
old mode 100644
new mode 100755
index 013aa08a..6d4de379
--- a/svg/github.svg
+++ b/svg/github.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/gladys-assistant.svg b/svg/gladys-assistant.svg
index b1355359..2f1f31fc 100644
--- a/svg/gladys-assistant.svg
+++ b/svg/gladys-assistant.svg
@@ -1 +1 @@
-Artboard 1
\ No newline at end of file
+Artboard 1
\ No newline at end of file
diff --git a/svg/glance-light.svg b/svg/glance-light.svg
new file mode 100644
index 00000000..8955eafd
--- /dev/null
+++ b/svg/glance-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/glance.svg b/svg/glance.svg
new file mode 100755
index 00000000..46b0ac06
--- /dev/null
+++ b/svg/glance.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/glances-light.svg b/svg/glances-light.svg
old mode 100644
new mode 100755
index 1d848045..0bd4d5d2
--- a/svg/glances-light.svg
+++ b/svg/glances-light.svg
@@ -1,8 +1,16 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/glances.svg b/svg/glances.svg
index 0071e877..e69765f9 100644
--- a/svg/glances.svg
+++ b/svg/glances.svg
@@ -1,8 +1,16 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/glpi.svg b/svg/glpi.svg
new file mode 100755
index 00000000..ff16fa58
--- /dev/null
+++ b/svg/glpi.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/gmail.svg b/svg/gmail.svg
old mode 100644
new mode 100755
index 63c57aff..4bf0999c
--- a/svg/gmail.svg
+++ b/svg/gmail.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/goaccess-light.svg b/svg/goaccess-light.svg
new file mode 100644
index 00000000..2b98ca17
--- /dev/null
+++ b/svg/goaccess-light.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/goaccess.svg b/svg/goaccess.svg
new file mode 100755
index 00000000..59032c99
--- /dev/null
+++ b/svg/goaccess.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/gollum.svg b/svg/gollum.svg
index 63216683..c6e0ced6 100644
--- a/svg/gollum.svg
+++ b/svg/gollum.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/google-admin.svg b/svg/google-admin.svg
index a8e5a768..9547eab5 100644
--- a/svg/google-admin.svg
+++ b/svg/google-admin.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/google-admob.svg b/svg/google-admob.svg
index 660189d5..9efab980 100644
--- a/svg/google-admob.svg
+++ b/svg/google-admob.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/google-analytics.svg b/svg/google-analytics.svg
old mode 100644
new mode 100755
index 38ad1091..3e61e71c
--- a/svg/google-analytics.svg
+++ b/svg/google-analytics.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-calendar.svg b/svg/google-calendar.svg
old mode 100644
new mode 100755
index c32c0c77..8fe826f1
--- a/svg/google-calendar.svg
+++ b/svg/google-calendar.svg
@@ -1,28 +1,34 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-chrome.svg b/svg/google-chrome.svg
new file mode 100755
index 00000000..120580aa
--- /dev/null
+++ b/svg/google-chrome.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-cloud-platform.svg b/svg/google-cloud-platform.svg
index 22b5c017..2b97f7ef 100644
--- a/svg/google-cloud-platform.svg
+++ b/svg/google-cloud-platform.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/google-contacts.svg b/svg/google-contacts.svg
old mode 100644
new mode 100755
index af5a7542..43bf483d
--- a/svg/google-contacts.svg
+++ b/svg/google-contacts.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-drive.svg b/svg/google-drive.svg
old mode 100644
new mode 100755
index 4a83fcab..6b1ad993
--- a/svg/google-drive.svg
+++ b/svg/google-drive.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-fi.svg b/svg/google-fi.svg
index e8cf5649..042cb75e 100644
--- a/svg/google-fi.svg
+++ b/svg/google-fi.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/google-gemini.svg b/svg/google-gemini.svg
old mode 100644
new mode 100755
diff --git a/svg/google-home.svg b/svg/google-home.svg
old mode 100644
new mode 100755
index 494afafb..17c388a7
--- a/svg/google-home.svg
+++ b/svg/google-home.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-keep.svg b/svg/google-keep.svg
old mode 100644
new mode 100755
index 48b71fa3..c73970c4
--- a/svg/google-keep.svg
+++ b/svg/google-keep.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/google-maps.svg b/svg/google-maps.svg
old mode 100644
new mode 100755
index 5a5f8cbe..dff0b9d3
--- a/svg/google-maps.svg
+++ b/svg/google-maps.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/google-meet.svg b/svg/google-meet.svg
old mode 100644
new mode 100755
index b38bcfc0..6d30d062
--- a/svg/google-meet.svg
+++ b/svg/google-meet.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/google-messages.svg b/svg/google-messages.svg
old mode 100644
new mode 100755
index 7a12db9e..b388750c
--- a/svg/google-messages.svg
+++ b/svg/google-messages.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-photos.svg b/svg/google-photos.svg
old mode 100644
new mode 100755
index e5a32840..8b8b15fd
--- a/svg/google-photos.svg
+++ b/svg/google-photos.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-tag-manager.svg b/svg/google-tag-manager.svg
new file mode 100755
index 00000000..5ea87b09
--- /dev/null
+++ b/svg/google-tag-manager.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-voice.svg b/svg/google-voice.svg
old mode 100644
new mode 100755
index 12a5e2bc..4fd79148
--- a/svg/google-voice.svg
+++ b/svg/google-voice.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/google-wifi.svg b/svg/google-wifi.svg
index fa312c66..c836d6ca 100644
--- a/svg/google-wifi.svg
+++ b/svg/google-wifi.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/google.svg b/svg/google.svg
old mode 100644
new mode 100755
index 4cf163bf..104fd5ec
--- a/svg/google.svg
+++ b/svg/google.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/gotify.svg b/svg/gotify.svg
old mode 100644
new mode 100755
index dfe598e5..e056d398
--- a/svg/gotify.svg
+++ b/svg/gotify.svg
@@ -1 +1,5887 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/gotosocial.svg b/svg/gotosocial.svg
new file mode 100755
index 00000000..435660b1
--- /dev/null
+++ b/svg/gotosocial.svg
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/grafana.svg b/svg/grafana.svg
old mode 100644
new mode 100755
index a2c73498..1f99909d
--- a/svg/grafana.svg
+++ b/svg/grafana.svg
@@ -1 +1,55 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/gramps.svg b/svg/gramps.svg
old mode 100644
new mode 100755
index e93a9ffc..67936a8a
--- a/svg/gramps.svg
+++ b/svg/gramps.svg
@@ -1 +1,103 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/grandstream.svg b/svg/grandstream.svg
index d9dff131..f3bcd484 100644
--- a/svg/grandstream.svg
+++ b/svg/grandstream.svg
@@ -1 +1 @@
-Grandstream Logo Vector
\ No newline at end of file
+Grandstream Logo Vector
\ No newline at end of file
diff --git a/svg/grav-light.svg b/svg/grav-light.svg
new file mode 100644
index 00000000..7329877b
--- /dev/null
+++ b/svg/grav-light.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/grav.svg b/svg/grav.svg
old mode 100644
new mode 100755
index 1d774212..f0c12924
--- a/svg/grav.svg
+++ b/svg/grav.svg
@@ -1 +1,36 @@
-Grav icon
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/greenbone-light.svg b/svg/greenbone-light.svg
new file mode 100644
index 00000000..ce5c5e2e
--- /dev/null
+++ b/svg/greenbone-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/greenbone.svg b/svg/greenbone.svg
index 40b37bd5..b4ee92bc 100644
--- a/svg/greenbone.svg
+++ b/svg/greenbone.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/grimoire.svg b/svg/grimoire.svg
new file mode 100755
index 00000000..64451e18
--- /dev/null
+++ b/svg/grimoire.svg
@@ -0,0 +1,4489 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/grist.svg b/svg/grist.svg
old mode 100644
new mode 100755
index e9d11c46..87033f24
--- a/svg/grist.svg
+++ b/svg/grist.svg
@@ -1 +1,58 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/grocy.svg b/svg/grocy.svg
old mode 100644
new mode 100755
index 96b2adee..57a185fb
--- a/svg/grocy.svg
+++ b/svg/grocy.svg
@@ -1 +1,8 @@
-Created by potrace 1.15, written by Peter Selinger 2001-2017
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/guacamole-light.svg b/svg/guacamole-light.svg
new file mode 100644
index 00000000..8e08349a
--- /dev/null
+++ b/svg/guacamole-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guacamole.svg b/svg/guacamole.svg
index c7f9e76b..d596104e 100644
--- a/svg/guacamole.svg
+++ b/svg/guacamole.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/hacker-news.svg b/svg/hacker-news.svg
new file mode 100755
index 00000000..13602f25
--- /dev/null
+++ b/svg/hacker-news.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/hammond-light.svg b/svg/hammond-light.svg
new file mode 100644
index 00000000..31a37b0b
--- /dev/null
+++ b/svg/hammond-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hammond.svg b/svg/hammond.svg
index 846a7ae9..f3fe771c 100644
--- a/svg/hammond.svg
+++ b/svg/hammond.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/handbrake.svg b/svg/handbrake.svg
index eca0aa66..f7950ca8 100644
--- a/svg/handbrake.svg
+++ b/svg/handbrake.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/haproxy.svg b/svg/haproxy.svg
old mode 100644
new mode 100755
index 38cfbb02..09b017c7
--- a/svg/haproxy.svg
+++ b/svg/haproxy.svg
@@ -1 +1,189 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/haptic-light.svg b/svg/haptic-light.svg
new file mode 100644
index 00000000..709daba7
--- /dev/null
+++ b/svg/haptic-light.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/haptic.svg b/svg/haptic.svg
new file mode 100755
index 00000000..955c01db
--- /dev/null
+++ b/svg/haptic.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/harvester.svg b/svg/harvester.svg
index 92618fc8..579b2cf0 100644
--- a/svg/harvester.svg
+++ b/svg/harvester.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/hashicorp-boundary.svg b/svg/hashicorp-boundary.svg
new file mode 100755
index 00000000..3e03a47e
--- /dev/null
+++ b/svg/hashicorp-boundary.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hashicorp-consul.svg b/svg/hashicorp-consul.svg
new file mode 100755
index 00000000..1e990d44
--- /dev/null
+++ b/svg/hashicorp-consul.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/hashicorp-nomad.svg b/svg/hashicorp-nomad.svg
new file mode 100755
index 00000000..aa443faf
--- /dev/null
+++ b/svg/hashicorp-nomad.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hashicorp-packer.svg b/svg/hashicorp-packer.svg
new file mode 100755
index 00000000..9b743eed
--- /dev/null
+++ b/svg/hashicorp-packer.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hashicorp-terraform.svg b/svg/hashicorp-terraform.svg
new file mode 100755
index 00000000..eea1397d
--- /dev/null
+++ b/svg/hashicorp-terraform.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hashicorp-vagrant.svg b/svg/hashicorp-vagrant.svg
new file mode 100755
index 00000000..d107dddb
--- /dev/null
+++ b/svg/hashicorp-vagrant.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/hashicorp-vault.svg b/svg/hashicorp-vault.svg
new file mode 100755
index 00000000..6bc078a6
--- /dev/null
+++ b/svg/hashicorp-vault.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
diff --git a/svg/hashicorp-waypoint.svg b/svg/hashicorp-waypoint.svg
new file mode 100755
index 00000000..41e75e31
--- /dev/null
+++ b/svg/hashicorp-waypoint.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hatsh-light.svg b/svg/hatsh-light.svg
new file mode 100644
index 00000000..7d821243
--- /dev/null
+++ b/svg/hatsh-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hbo-light.svg b/svg/hbo-light.svg
new file mode 100644
index 00000000..d7f12833
--- /dev/null
+++ b/svg/hbo-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hbo.svg b/svg/hbo.svg
new file mode 100755
index 00000000..932e3769
--- /dev/null
+++ b/svg/hbo.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hdhomerun-light.svg b/svg/hdhomerun-light.svg
new file mode 100644
index 00000000..9b51ab9f
--- /dev/null
+++ b/svg/hdhomerun-light.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hdhomerun.svg b/svg/hdhomerun.svg
new file mode 100755
index 00000000..08dcd269
--- /dev/null
+++ b/svg/hdhomerun.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/headscale.svg b/svg/headscale.svg
new file mode 100755
index 00000000..01b6fff5
--- /dev/null
+++ b/svg/headscale.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/healthchecks.svg b/svg/healthchecks.svg
old mode 100644
new mode 100755
index 086433fa..f3d3beb3
--- a/svg/healthchecks.svg
+++ b/svg/healthchecks.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hedgedoc.svg b/svg/hedgedoc.svg
old mode 100644
new mode 100755
index eb93763d..aa2275eb
--- a/svg/hedgedoc.svg
+++ b/svg/hedgedoc.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/heimdall-light.svg b/svg/heimdall-light.svg
new file mode 100644
index 00000000..51c2a457
--- /dev/null
+++ b/svg/heimdall-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/heimdall.svg b/svg/heimdall.svg
old mode 100644
new mode 100755
index 6d6743d5..495b7651
--- a/svg/heimdall.svg
+++ b/svg/heimdall.svg
@@ -1 +1,11 @@
-background Layer 1
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hexo.svg b/svg/hexo.svg
index 3826b85e..9ead6f04 100644
--- a/svg/hexo.svg
+++ b/svg/hexo.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/heyform.svg b/svg/heyform.svg
new file mode 100755
index 00000000..7bf048f1
--- /dev/null
+++ b/svg/heyform.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hivedav.svg b/svg/hivedav.svg
new file mode 100755
index 00000000..30c3a84b
--- /dev/null
+++ b/svg/hivedav.svg
@@ -0,0 +1,228 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/hoarder-light.svg b/svg/hoarder-light.svg
new file mode 100644
index 00000000..6b8799d2
--- /dev/null
+++ b/svg/hoarder-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hoarder.svg b/svg/hoarder.svg
old mode 100644
new mode 100755
index f31427dc..bd50c772
--- a/svg/hoarder.svg
+++ b/svg/hoarder.svg
@@ -1 +1,5 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hollo-light.svg b/svg/hollo-light.svg
new file mode 100644
index 00000000..51dc3357
--- /dev/null
+++ b/svg/hollo-light.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hollo.svg b/svg/hollo.svg
new file mode 100755
index 00000000..098f213f
--- /dev/null
+++ b/svg/hollo.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/homarr.svg b/svg/homarr.svg
old mode 100644
new mode 100755
index 540f71bc..9cf003cd
--- a/svg/homarr.svg
+++ b/svg/homarr.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/home-assistant-alt.svg b/svg/home-assistant-alt.svg
index b718eb8e..142a5212 100644
--- a/svg/home-assistant-alt.svg
+++ b/svg/home-assistant-alt.svg
@@ -1 +1 @@
-file_type_homeassistant
\ No newline at end of file
+file_type_homeassistant
\ No newline at end of file
diff --git a/svg/home-assistant.svg b/svg/home-assistant.svg
old mode 100644
new mode 100755
index 6553a902..19cc9ab0
--- a/svg/home-assistant.svg
+++ b/svg/home-assistant.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/homebox-light.svg b/svg/homebox-light.svg
new file mode 100644
index 00000000..65a46431
--- /dev/null
+++ b/svg/homebox-light.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/homebox.svg b/svg/homebox.svg
old mode 100644
new mode 100755
index 707dc604..fbaa4d46
--- a/svg/homebox.svg
+++ b/svg/homebox.svg
@@ -1 +1,40 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/homebridge.svg b/svg/homebridge.svg
old mode 100644
new mode 100755
index c51e17e4..f8e8be32
--- a/svg/homebridge.svg
+++ b/svg/homebridge.svg
@@ -1 +1,36 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/homer.svg b/svg/homer.svg
old mode 100644
new mode 100755
index f7652979..65d482ab
--- a/svg/homer.svg
+++ b/svg/homer.svg
@@ -1 +1,52 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/hoppscotch.svg b/svg/hoppscotch.svg
old mode 100644
new mode 100755
index 0fb44fcd..851ddee1
--- a/svg/hoppscotch.svg
+++ b/svg/hoppscotch.svg
@@ -1 +1,92 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/html-light.svg b/svg/html-light.svg
new file mode 100644
index 00000000..8057ff76
--- /dev/null
+++ b/svg/html-light.svg
@@ -0,0 +1 @@
+HTML5 Logo
\ No newline at end of file
diff --git a/svg/html.svg b/svg/html.svg
index bdbbd66b..08d276de 100644
--- a/svg/html.svg
+++ b/svg/html.svg
@@ -1 +1 @@
-HTML5 Logo
\ No newline at end of file
+HTML5 Logo
\ No newline at end of file
diff --git a/svg/hubzilla.svg b/svg/hubzilla.svg
new file mode 100755
index 00000000..9f5da48b
--- /dev/null
+++ b/svg/hubzilla.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/svg/hugging-face.svg b/svg/hugging-face.svg
index deb8ac22..0b8250d6 100644
--- a/svg/hugging-face.svg
+++ b/svg/hugging-face.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/huginn.svg b/svg/huginn.svg
old mode 100644
new mode 100755
index 26a9a015..196d49a8
--- a/svg/huginn.svg
+++ b/svg/huginn.svg
@@ -1 +1,62 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/hugo.svg b/svg/hugo.svg
old mode 100644
new mode 100755
index 3ddcc4db..c665b2e9
--- a/svg/hugo.svg
+++ b/svg/hugo.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hulu.svg b/svg/hulu.svg
new file mode 100755
index 00000000..82bae1af
--- /dev/null
+++ b/svg/hulu.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/humhub.svg b/svg/humhub.svg
old mode 100644
new mode 100755
index 01d01d4e..a3bd5da3
--- a/svg/humhub.svg
+++ b/svg/humhub.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/hyperpipe-light.svg b/svg/hyperpipe-light.svg
new file mode 100644
index 00000000..ccde7b11
--- /dev/null
+++ b/svg/hyperpipe-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/hyperpipe.svg b/svg/hyperpipe.svg
new file mode 100755
index 00000000..909fe2e6
--- /dev/null
+++ b/svg/hyperpipe.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/i2p-light.svg b/svg/i2p-light.svg
new file mode 100644
index 00000000..d8215d9a
--- /dev/null
+++ b/svg/i2p-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/icinga-light.svg b/svg/icinga-light.svg
new file mode 100644
index 00000000..95a5d4b0
--- /dev/null
+++ b/svg/icinga-light.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/icinga.svg b/svg/icinga.svg
old mode 100644
new mode 100755
index e4671ec1..b01efcc9
--- a/svg/icinga.svg
+++ b/svg/icinga.svg
@@ -1 +1,41 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/immich-frame-light.svg b/svg/immich-frame-light.svg
new file mode 100644
index 00000000..473e5d18
--- /dev/null
+++ b/svg/immich-frame-light.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/immich-frame.svg b/svg/immich-frame.svg
new file mode 100755
index 00000000..72b55b38
--- /dev/null
+++ b/svg/immich-frame.svg
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/immich-kiosk-light.svg b/svg/immich-kiosk-light.svg
new file mode 100644
index 00000000..48c26d93
--- /dev/null
+++ b/svg/immich-kiosk-light.svg
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/immich-kiosk.svg b/svg/immich-kiosk.svg
new file mode 100755
index 00000000..40f02644
--- /dev/null
+++ b/svg/immich-kiosk.svg
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/immich.svg b/svg/immich.svg
old mode 100644
new mode 100755
index ead10cef..b9f3cf9d
--- a/svg/immich.svg
+++ b/svg/immich.svg
@@ -1 +1,24 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/influxdb.svg b/svg/influxdb.svg
old mode 100644
new mode 100755
index 8d662630..94d86012
--- a/svg/influxdb.svg
+++ b/svg/influxdb.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/inoreader.svg b/svg/inoreader.svg
new file mode 100755
index 00000000..a7e350bd
--- /dev/null
+++ b/svg/inoreader.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/svg/instagram.svg b/svg/instagram.svg
old mode 100644
new mode 100755
index 4643ecc6..ccb28881
--- a/svg/instagram.svg
+++ b/svg/instagram.svg
@@ -1 +1,53 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/inventree.svg b/svg/inventree.svg
old mode 100644
new mode 100755
index 81bea3ce..8f52b00e
--- a/svg/inventree.svg
+++ b/svg/inventree.svg
@@ -1 +1,40 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/invidious.svg b/svg/invidious.svg
old mode 100644
new mode 100755
index 6f545dfb..527ecc1f
--- a/svg/invidious.svg
+++ b/svg/invidious.svg
@@ -1,2 +1,41 @@
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/invoice-ninja-light.svg b/svg/invoice-ninja-light.svg
new file mode 100644
index 00000000..ee58b6b1
--- /dev/null
+++ b/svg/invoice-ninja-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/invoice-ninja.svg b/svg/invoice-ninja.svg
new file mode 100755
index 00000000..507c41e9
--- /dev/null
+++ b/svg/invoice-ninja.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
diff --git a/svg/invoiceninja.svg b/svg/invoiceninja.svg
deleted file mode 100644
index 2dc19074..00000000
--- a/svg/invoiceninja.svg
+++ /dev/null
@@ -1 +0,0 @@
-Invoice Ninja icon
\ No newline at end of file
diff --git a/svg/ipfs-light.svg b/svg/ipfs-light.svg
new file mode 100644
index 00000000..b73bfcdb
--- /dev/null
+++ b/svg/ipfs-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ipfs.svg b/svg/ipfs.svg
index 7ffe6558..174f2d93 100644
--- a/svg/ipfs.svg
+++ b/svg/ipfs.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/ispconfig.svg b/svg/ispconfig.svg
index e378e497..8df8d8b6 100644
--- a/svg/ispconfig.svg
+++ b/svg/ispconfig.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/it-tools-light.svg b/svg/it-tools-light.svg
new file mode 100644
index 00000000..601ddc4c
--- /dev/null
+++ b/svg/it-tools-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/it-tools.svg b/svg/it-tools.svg
old mode 100644
new mode 100755
index ed942cc7..fd1ecc9f
--- a/svg/it-tools.svg
+++ b/svg/it-tools.svg
@@ -1,6 +1,74 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/svg/jackett-light.svg b/svg/jackett-light.svg
new file mode 100644
index 00000000..f7e35d53
--- /dev/null
+++ b/svg/jackett-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/jackett.svg b/svg/jackett.svg
old mode 100644
new mode 100755
index 58a4f973..f3245196
--- a/svg/jackett.svg
+++ b/svg/jackett.svg
@@ -1 +1,6 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/javascript-light.svg b/svg/javascript-light.svg
new file mode 100644
index 00000000..ec86a6fb
--- /dev/null
+++ b/svg/javascript-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jekyll.svg b/svg/jekyll.svg
old mode 100644
new mode 100755
index 9b49f500..6bad6b83
--- a/svg/jekyll.svg
+++ b/svg/jekyll.svg
@@ -1 +1,44 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/jellyfin.svg b/svg/jellyfin.svg
old mode 100644
new mode 100755
index 5b2e5769..89c4fdae
--- a/svg/jellyfin.svg
+++ b/svg/jellyfin.svg
@@ -1 +1,26 @@
-icon-transparent
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/jellyseerr.svg b/svg/jellyseerr.svg
old mode 100644
new mode 100755
index b6544446..a47c2c83
--- a/svg/jellyseerr.svg
+++ b/svg/jellyseerr.svg
@@ -1 +1,135 @@
-AAAsdGp1bWIAAAAeanVtZGMycGEAEQAQgAAAqgA4m3EDYzJwYQAAACxOanVtYgAAAEdqdW1kYzJtYQARABCAAACqADibcQN1cm46dXVpZDpjOGFmZTAwYS1iN2JiLTRkNTUtYmUwZi1iN2Y2Mzc4NzRlYTUAAAABtGp1bWIAAAApanVtZGMyYXMAEQAQgAAAqgA4m3EDYzJwYS5hc3NlcnRpb25zAAAAANdqdW1iAAAAJmp1bWRjYm9yABEAEIAAAKoAOJtxA2MycGEuYWN0aW9ucwAAAACpY2JvcqFnYWN0aW9uc4GjZmFjdGlvbmtjMnBhLmVkaXRlZG1zb2Z0d2FyZUFnZW50bUFkb2JlIEZpcmVmbHlxZGlnaXRhbFNvdXJjZVR5cGV4U2h0dHA6Ly9jdi5pcHRjLm9yZy9uZXdzY29kZXMvZGlnaXRhbHNvdXJjZXR5cGUvY29tcG9zaXRlV2l0aFRyYWluZWRBbGdvcml0aG1pY01lZGlhAAAArGp1bWIAAAAoanVtZGNib3IAEQAQgAAAqgA4m3EDYzJwYS5oYXNoLmRhdGEAAAAAfGNib3KlamV4Y2x1c2lvbnOBomVzdGFydBjuZmxlbmd0aBk7SGRuYW1lbmp1bWJmIG1hbmlmZXN0Y2FsZ2ZzaGEyNTZkaGFzaFggrnb/Z0LL/KWPpqmjemYRvQg3RH4cxUsaxZtMKj493SpjcGFkSQAAAAAAAAAAAAAAAgtqdW1iAAAAJGp1bWRjMmNsABEAEIAAAKoAOJtxA2MycGEuY2xhaW0AAAAB32Nib3KoaGRjOnRpdGxlb0dlbmVyYXRlZCBJbWFnZWlkYzpmb3JtYXRtaW1hZ2Uvc3ZnK3htbGppbnN0YW5jZUlEeCx4bXA6aWlkOjJmMzZiOTBiLTUyNTctNGIzMi05NjIyLTExOGUyYjY1NTJmZW9jbGFpbV9nZW5lcmF0b3J4NkFkb2JlX0lsbHVzdHJhdG9yLzI4LjQgYWRvYmVfYzJwYS8wLjcuNiBjMnBhLXJzLzAuMjUuMnRjbGFpbV9nZW5lcmF0b3JfaW5mb4G/ZG5hbWVxQWRvYmUgSWxsdXN0cmF0b3JndmVyc2lvbmQyOC40/2lzaWduYXR1cmV4GXNlbGYjanVtYmY9YzJwYS5zaWduYXR1cmVqYXNzZXJ0aW9uc4KiY3VybHgnc2VsZiNqdW1iZj1jMnBhLmFzc2VydGlvbnMvYzJwYS5hY3Rpb25zZGhhc2hYIEppwb3/qN5BMHi+JO3M+DE6wdFklTRWcaANawazN9SvomN1cmx4KXNlbGYjanVtYmY9YzJwYS5hc3NlcnRpb25zL2MycGEuaGFzaC5kYXRhZGhhc2hYINldUhaCxi4Jgpd/7+NsOOho+1iZ9chabhSccExPzJS9Y2FsZ2ZzaGEyNTYAAChAanVtYgAAAChqdW1kYzJjcwARABCAAACqADibcQNjMnBhLnNpZ25hdHVyZQAAACgQY2JvctKEWQzCogE4JBghglkGEDCCBgwwggP0oAMCAQICEH/ydB/Rxt5DtZR6jmVwnp4wDQYJKoZIhvcNAQELBQAwdTELMAkGA1UEBhMCVVMxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMR0wGwYDVQQLExRBZG9iZSBUcnVzdCBTZXJ2aWNlczEiMCAGA1UEAxMZQWRvYmUgUHJvZHVjdCBTZXJ2aWNlcyBHMzAeFw0yNDAxMTEwMDAwMDBaFw0yNTAxMTAyMzU5NTlaMH8xETAPBgNVBAMMCGNhaS1wcm9kMRMwEQYDVQQKDApBZG9iZSBJbmMuMREwDwYDVQQHDAhTYW4gSm9zZTETMBEGA1UECAwKQ2FsaWZvcm5pYTELMAkGA1UEBhMCVVMxIDAeBgkqhkiG9w0BCQEWEWNhaS1vcHNAYWRvYmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA79MAp32GPZZBw7MpK0xuxWJZ2BwXMrmpbg+bvVC487/hbE1ji4PDYa8/UU8SPRHgW7t1pu3+L6j7EGH8ZBKdMCGug1ZhDmYWwHkX24cm1kPw+Fr73JOJhGUfkGZk6SJ+x1+tYG7TBR5SVMZGAXLSKALfUwQBW8/XeSINlhtG7B9/W+v/FEl5yCJOBQenbQUU9cXhMEg7cDndWAaV1zQSZkVh1zSWWfOaH9rQU3rIP5DL06ziScWA2fe1ONesHL21aJpXnrPjV1GN/2QeMR/jbGYpbO5tWy9r9oUpx4i6KmXlCpJWx1Jk+GaY62QnbbiLFpuY9jz1yq+xylLgm2UlwQIDAQAFo4IBjDCCAYgwDAYDVR0TAQH/BAIwADAOBgNVHQ8BAf8EBAMCB4AwHgYDVR0lBBcwFQYJKoZIhvcvAQEMBggrBgEFBQcDBDCBjgYDVR0gBIGGMIGDMIGABgkqhkiG9y8BAgMwczBxBggrBgEFBQcCAjBlDGNZb3UgYXJlIG5vdCBwZXJtaXR0ZWQgdG8gdXNlIHRoaXMgTGljZW5zZSBDZXJ0aWZpY2F0ZSBleGNlcHQgYXMgcGVybWl0dGVkIGJ5IHRoZSBsaWNlbnNlIGFncmVlbWVudC4wXQYDVR0fBFYwVDBSoFCgToZMaHR0cDovL3BraS1jcmwuc3ltYXV0aC5jb20vY2FfN2E1YzNhMGM3MzExNzQwNmFkZDE5MzEyYmMxYmMyM2YvTGF0ZXN0Q1JMLmNybDA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9wa2ktb2NzcC5zeW1hdXRoLmNvbTAfBgNVHSMEGDAWgBRXKXoyTcz+5DVOwB8kc85zU6vfajANBgkqhkiG9w0BAQsFAAOCAgEAIWPV/Nti76MPfipUnZACP/eVrEv59WObHuWCZHj1By8bGm5UmjTgPQYlXyTj8XE/iY27phgrHg0piDsWDzu5s8B6TKkaMmUvgtk+UgukybbfdtBC6KvtGgy40cO4DkEUoPDitDxT1igbQqdKogAoVKqDEVqnF+CFQQztbGcZhFI9XKTsCQwf9hw7LhJCo6jANBIABNyQtSwWIpPeSEJhPVgWLyKepgQxJMqL6sgYZxGq9pCSQn2gS8pafyQFLByZwEBD/DxytRZZL6b3ZXqF+fZZsE9fsBxpcWFiv8pFvgBQOtCzlSbfG8o7bgBPJXm7mAA8j3t3hDEeEx0Gx8B/9a89pzTebWVrD3SEe0uZl9EbVC++F4EosRJFdYwzuP1iJO1d5I3VxGa9FrVq/FYBGORvvDaTwandizCwae43ozCI97QPEUtS+jJztz1kapHcBsLAh7LxnE82rlmq1o4vfdFsQUz7HEpOkPFkyKohyPTn1FIq4lkJKX3jBA6Na/sxyUZo9uvs4CA+0AeNcTXldyugRUF+mspdbMLiIduigdDLu+LJ3UcxvvLTE3374waDvUD1vzrXVsmJrCxk9CnI/RGmiINSZoDbUQcKPX/PXmCUmMHp0PhnXaanZwSI5Ot0Pit4AnZaU7PvrSQmew1/cp3ZmJcfeB4FGRT3DYprp+lZBqUwggahMIIEiaADAgECAhAMqLZUe4nm0gaJdc2Lm4niMA0GCSqGSIb3DQEBCwUAMGwxCzAJBgNVBAYTAlVTMSMwIQYDVQQKExpBZG9iZSBTeXN0ZW1zIEluY29ycG9yYXRlZDEdMBsGA1UECxMUQWRvYmUgVHJ1c3QgU2VydmljZXMxGTAXBgNVBAMTEEFkb2JlIFJvb3QgQ0EgRzIwHhcNMTYxMTI5MDAwMDAwWhcNNDExMTI4MjM1OTU5WjB1MQswCQYDVQQGEwJVUzEjMCEGA1UEChMaQWRvYmUgU3lzdGVtcyBJbmNvcnBvcmF0ZWQxHTAbBgNVBAsTFEFkb2JlIFRydXN0IFNlcnZpY2VzMSIwIAYDVQQDExlBZG9iZSBQcm9kdWN0IFNlcnZpY2VzIEczMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtx8uvb0Js1xIbP4Mg65sAepReCWkgD6Jp7GyiGTa9ol2gfn5HfOV/HiYjZiOz+TuHFU+DXNad86xEqgVeGVMlvIHGe/EHcKBxvEDXdlTXB5zIEkfl0/SGn7J6vTX8MNybfSi95eQDUOZ9fjCaq+PBFjS5ZfeNmzi/yR+MsA0jKKoWarSRCFFFBpUFQWfAgLyXOyxOnXQOQudjxNj6Wu0X0IB13+IH11WcKcWEWXM4j4jh6hLy29Cd3EoVG3oxcVenMF/EMgD2tXjx4NUbTNB1/g9+MR6Nw5Mhp5k/g3atNExAxhtugC+T3SDShSEJfs2quiiRUHtX3RhOcK1s1OJgT5s2s9xGy5/uxVpcAIaK2KiDJXW3xxN8nXPmk1NSVu/mxtfapr4TvSJbhrU7UA3qhQY9n4On2sbH1X1Tw+7LTek8KCA5ZDghOERPiIp/Jt893qov1bE5rJkagcVg0Wqjh89NhCaBA8VyRt3ovlGyCKdNV2UL3bn5vdFsTk7qqmp9makz1/SuVXYxIf6L6+8RXOatXWaPkmucuLE1TPOeP7S1N5JToFCs80l2D2EtxoQXGCR48K/cTUR5zV/fQ+hdIOzoo0nFn77Y8Ydd2k7/x9BE78pmoeMnw6VXYfXCuWEgj6p7jpbLoxQMoWMCVzlg72WVNhJFlSw4aD8fc6ezeECAwEAAaOCATQwggEwMBIGA1UdEwEB/wQIMAYBAf8CAQAwNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5hZG9iZS5jb20vYWRvYmVyb290ZzIuY3JsMA4GA1UdDwEB/wQEAwIBBjAUBgNVHSUEDTALBgkqhkiG9y8BAQcwVwYDVR0gBFAwTjBMBgkqhkiG9y8BAgMwPzA9BggrBgEFBQcCARYxaHR0cHM6Ly93d3cuYWRvYmUuY29tL21pc2MvcGtpL3Byb2Rfc3ZjZV9jcHMuaHRtbDAkBgNVHREEHTAbpBkwFzEVMBMGA1UEAxMMU1lNQy00MDk2LTMzMB0GA1UdDgQWBBRXKXoyTcz+5DVOwB8kc85zU6vfajAfBgNVHSMEGDAWgBSmHOFtVCRMqI9Icr9uqYzV5Owx1DANBgkqhkiG9w0BAQsFAAOCAgEAcc7lB4ym3C3cyOA7ZV4AkoGV65UgJK+faThdyXzxuNqlTQBlOyXBGFyevlm33BsGO1mDJfozuyLyT2+7IVxWFvW5yYMV+5S1NeChMXIZnCzWNXnuiIQSdmPD82TEVCkneQpFET4NDwSxo8/ykfw6Hx8fhuKz0wjhjkWMXmK3dNZXIuYVcbynHLyJOzA+vWU3sH2T0jPtFp7FN39GZne4YG0aVMlnHhtHhxaXVCiv2RVoR4w1QtvKHQpzfPObR53Cl74iLStGVFKPwCLYRSpYRF7J6vVS/XxW4LzvN2b6VEKOcvJmN3LhpxFRl3YYzW+dwnwtbuHW6WJlmjffbLm1MxLFGlG95aCz31X8wzqYNsvb9+5AXcv8Ll69tLXmO1OtsY/3wILNUEp4VLZTE3wqm3n8hMnClZiiKyZCS7L4E0mClbx+BRSMH3eVo6jgve41/fK3FQM4QCNIkpGs7FjjLy+ptC+JyyWqcfvORrFV/GOgB5hD+G5ghJcIpeigD/lHsCRYsOa5sFdqREhwIWLmSWtNwfLZdJ3dkCc7yRpm3gal6qRfTkYpxTNxxKyvKbkaJDoxR9vtWrC3iNrQd9VvxC3TXtuzoHbqumeqgcAqefWF9u6snQ4Q9FkXzeuJArNuSvPIhgBjVtggH0w0vm/lmCQYiC/Y12GeCxfgYlL33buiZnNpZ1RzdKFpdHN0VG9rZW5zgaFjdmFsWQ41MIIOMTADAgEAMIIOKAYJKoZIhvcNAQcCoIIOGTCCDhUCAQMxDzANBglghkgBZQMEAgEFADCBggYLKoZIhvcNAQkQAQSgcwRxMG8CAQEGCWCGSAGG/WwHATAxMA0GCWCGSAFlAwQCAQUABCAGrvDRboHNPkk5YkMOZNouE7RbAZbeV+ub1WJkA2xwMQIRALU2g1IN0avJA0iiHGfFgBsYDzIwMjQwNDA0MDY0MDAxWgIIfHSsvWnNmIigggu9MIIFBzCCAu+gAwIBAgIQBR6ekdcekQq75D1c7dDd2TANBgkqhkiG9w0BAQsFADBjMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQgUlNBNDA5NiBTSEEyNTYgVGltZVN0YW1waW5nIENBMB4XDTIzMDkwODAwMDAwMFoXDTM0MTIwNzIzNTk1OVowWDELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJbmMuMTAwLgYDVQQDEydEaWdpQ2VydCBBZG9iZSBBQVRMIFRpbWVzdGFtcCBSZXNwb25kZXIwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARNLK5R+QP/tefzBZdWrDYfEPE7mzrBFX7tKpSaxdLJo7cC9SHh2fwAeyefbtU66YaNQQzfOZX02N9KzQbH0/pso4IBizCCAYcwDgYDVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwIAYDVR0gBBkwFzAIBgZngQwBBAIwCwYJYIZIAYb9bAcBMB8GA1UdIwQYMBaAFLoW2W1NhS9zKXaaL3WMaiCPnshvMB0GA1UdDgQWBBSwNapWwyGpi87TuLyLFiVXne804TBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRSU0E0MDk2U0hBMjU2VGltZVN0YW1waW5nQ0EuY3JsMIGQBggrBgEFBQcBAQSBgzCBgDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFgGCCsGAQUFBzAChkxodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRSU0E0MDk2U0hBMjU2VGltZVN0YW1waW5nQ0EuY3J0MA0GCSqGSIb3DQEBCwUAA4ICAQB4K4xCx4QQhFiUgskV+5bC9AvSyYG19a8lWMkjUcR5DEdi6guz0GUSYAzUfpCaKfD+b9gc6f4zK88OFOKWOq2L9yPB6RZSWuLgcFEyFIB1qYvF8XdSRBF/eDzjg4ux8knpF+tANOeQaMxW+xhlWsW9C63kE0V55K+oIDzVD1/RoftknDsZU3UEC4GW5HWL8aNwKenMva4mYo0cTmaojslksTFIYCsXis8KxVul23tGsDYTlF2cyMXOIsaSs1kiLaTyd9GYgUJ+PVNwA2E57IWzfWZEwNaR3/zaL9mVL73XZGfFGL8KPbwby0w755gAZ0TASml2ALN2Qr8PQpAzzlk3lCTBUQLZlMedqIWgN5w/GwielH6UNqRXznUocKW+hir9IPgYHHSBtixzydFH5q/l5qYGYKvxyIHtIY3AgA6Yw4Kts+AdC+MbQANTPDK1MdNocW+9dOJxSqjLr+cyU0Jd7IMKl1Mj/vcx0D/cv2eRcfwEFqzlwluenVez+HBQSZfMx6op5YZDkrWdZttvvR5avngtISdpZBdS7s0XSSW/+dS16DykZ6KRQ54Ol6aA+3husOGKQMffj9NCblKAbGEq3bLhYslskEBgQJ4yOvYIG0i3FvoScrbop2sWsFZSLSZEtnleWeF7MT4O3/NrkZHbTdIUx3iPdwjdzlnkXm5yuzCCBq4wggSWoAMCAQICEAc2N7ckVHzYR6z9KGYqXlswDQYJKoZIhvcNAQELBQAwYjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEhMB8GA1UEAxMYRGlnaUNlcnQgVHJ1c3RlZCBSb290IEc0MB4XDTIyMDMyMzAwMDAwMFoXDTM3MDMyMjIzNTk1OVowYzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJbmMuMTswOQYDVQQDEzJEaWdpQ2VydCBUcnVzdGVkIEc0IFJTQTQwOTYgU0hBMjU2IFRpbWVTdGFtcGluZyBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMaGNQZJs8E9cklRVcclA8TykTepl1Gh1tKD0Z5Mom2gsMyD+Vr2EaFEFUJfpIjzaPp985yJC3+dH54PMx9QEwsmc5Zt+FeoAn39Q7SE2hHxc7Gz7iuAhIoiGN/r2j3EF3+rGSs+QtxnjupRPfDWVtTnKC3r07G1decfBmWNlCnT2exp39mQh0YAe9tEQYncfGpXevA3eZ9drMvohGS0UvJ2R/dhgxndX7RUCyFobjchu0CsX7LeSn3O9TkSZ+8OpWNs5KbFHc02DVzV5huowWR0QKfAcsW6Th+xtVhNef7Xj3OTrCw54qVI1vCwMROpVymWJy71h6aPTnYVVSZwmCZ/oBpHIEPjQ2OAe3VuJyWQmDo4EbP29p7mO1vsgd4iFNmCKseSv6De4z6ic/rnH1pslPJSlRErWHRAKKtzQ87fSqEcazjFKfPKqpZzQmiftkaznTqj1QPgv/CiPMpC3BhIfxQ0z9JMq++bPf4OuGQq+nUoJEHtQr8FnGZJUlD0UfM2SU2LINIsVzV5K6jzRWC8I41Y99xh3pP+OcD5sjClTNfpmEpYPtMDiP6zj9NeS3YSUZPJjAw7W4oiqMEmCPkUEBIDfV8ju2TjY+Cm4T72wnSyPx4JduyrXUZ14mCjWAkBKAAOhFTuzuldyF4wEr1GnrXTdrnSDmuZDNIztM2xAgMBAAGjggFdMIIBWTASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS6FtltTYUvcyl2mi91jGogj57IbzAfBgNVHSMEGDAWgBTs1+OC0nFdZEzfLmc/57qYrhwPTzAOBgNVHQ8BAf8EBAMCAYYwEwYDVR0lBAwwCgYIKwYBBQUHAwgwdwYIKwYBBQUHAQEEazBpMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQQYIKwYBBQUHMAKGNWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRSb290RzQuY3J0MEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRSb290RzQuY3JsMCAGA1UdIAQZMBcwCAYGZ4EMAQQCMAsGCWCGSAGG/WwHATANBgkqhkiG9w0BAQsFAAOCAgEAfVmOwJO2b5ipRCIBfmbW2CFC4bAYLhBNE88wU86/GPvHUF3iSyn7cIoNqilp/GnBzx0H6T5gyNgL5Vxb122H+oQgJTQxZ822EpZvxFBMYh0MCIKoFr2pVs8Vc40BIiXOlWk/R3f7cnQU1/+rT4osequFzUNf7WC2qk+RZp4snuCKrOX9jLxkJodskr2dfNBwCnzvqLx1T7pa96kQsl3p/yhUifDVinF2ZdrM8HKjI/rAJ4JErpknG6skHibBt94q6/aesXmZgaNWhqsKRcnfxI2g55j7+6adcq/Ex8HBanHZxhOACcS2n82HhyS7T6NJuXdmkfFynOlLAlKnN36TU6w7HQhJD5TNOXrd/yVjmScsPT9rp/Fmw0HNT7ZAmyEhQNC3EyTN3B14OuSereU0cZLXJmvkOHOrpgFPvT87eK1MrfvElXvtCl8zOYdBeHo46Zzh3SP9HSjTx/no8Zhf+yvYfvJGnXUsHicsJttvFXseGYs2uJPU5vIXmVnKcPA3v5gA3yAWTyf7YGcWoWa63VXAOimGsJigK+2VQbc61RWYMbRiCQ8KvYHZE/6/pNHzV9m8BPqC3jLfBInwAM1dwvnQI38AC+R2AibZ8GV2QqYphwlHK+Z/GqSFD/yYlvZVVCsfgPrA8g4r5db7qS9EFUrnEw4d2zc4GqEr9u3WfPwxggG3MIIBswIBATB3MGMxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgVHJ1c3RlZCBHNCBSU0E0MDk2IFNIQTI1NiBUaW1lU3RhbXBpbmcgQ0ECEAUenpHXHpEKu+Q9XO3Q3dkwDQYJYIZIAWUDBAIBBQCggdEwGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMBwGCSqGSIb3DQEJBTEPFw0yNDA0MDQwNjQwMDFaMCsGCyqGSIb3DQEJEAIMMRwwGjAYMBYEFNkauTP+F63pgh6mE/WkOnFOPn59MC8GCSqGSIb3DQEJBDEiBCBVjhiwVbdRlWhcd+zekIXbDQeN4mcEm18w9lDC4G09szA3BgsqhkiG9w0BCRACLzEoMCYwJDAiBCCC2vGUlXs2hAJFj9UnAGn+YscUVvqeC4ar+CfoUyAn2TAKBggqhkjOPQQDAgRGMEQCIErHs7kfjvydI2pHBtbV05TM1+Wtuf0wRhu3n7PrudbHAiBd9DhbIe1KnCm8yxaPz4sqEsjzgGOCNujAxmd8Xq4FUWNwYWRZC+UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2WQEAcNiFxc4R79ozvFI3cymplwVvAWDIKFyiBFAYVnZ4u3HEcPLDTfIt9X7Nd1vyzbJIZpVE6NOicYEaRwt+uauSMcSPsX9PHUJgyWALEQ6RHudtr57nbNIgmioCefdyEtzGbCylEalKZNWNlzjT2rgZFB1shhJ3hhVHDBPaKX2KxL3C8utMK2iBREKaVCatCmw4JVECUjwN7Qn3V347tiBf5wbCt/a+q382311bbBSW57XWiNjoek/xXArl25l6pWZSkTcShpTPT7ynjoFFRwCewR5+xU+2LKETQ4wrV3n5nK6RayHlThKGkqv3GuPOMk8ogRGaHezj/nphLuUsoIjpNA==
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/jellystat.svg b/svg/jellystat.svg
old mode 100644
new mode 100755
index ac0a621a..da086ad1
--- a/svg/jellystat.svg
+++ b/svg/jellystat.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/jenkins.svg b/svg/jenkins.svg
old mode 100644
new mode 100755
index bb6a6370..f3898f9f
--- a/svg/jenkins.svg
+++ b/svg/jenkins.svg
@@ -1 +1,85 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/jira.svg b/svg/jira.svg
old mode 100644
new mode 100755
index 6839cc47..496cc09a
--- a/svg/jira.svg
+++ b/svg/jira.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/jitsi-meet.svg b/svg/jitsi-meet.svg
old mode 100644
new mode 100755
index fb5fed36..5a304a30
--- a/svg/jitsi-meet.svg
+++ b/svg/jitsi-meet.svg
@@ -1 +1,180 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/jitsi.svg b/svg/jitsi.svg
index 0f9a951a..221a541b 100644
--- a/svg/jitsi.svg
+++ b/svg/jitsi.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/joplin.svg b/svg/joplin.svg
old mode 100644
new mode 100755
index 7bfdeb35..ade2b4df
--- a/svg/joplin.svg
+++ b/svg/joplin.svg
@@ -1 +1,14 @@
-Joplin Icon
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/jupyter.svg b/svg/jupyter.svg
old mode 100644
new mode 100755
index 136bcfd1..a989e7e9
--- a/svg/jupyter.svg
+++ b/svg/jupyter.svg
@@ -1 +1,105 @@
-Group.svg Created using Figma 0.90
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/jwt-io-light.svg b/svg/jwt-io-light.svg
new file mode 100644
index 00000000..2d75ce3d
--- /dev/null
+++ b/svg/jwt-io-light.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/jwt-io.svg b/svg/jwt-io.svg
new file mode 100755
index 00000000..bc6ca78e
--- /dev/null
+++ b/svg/jwt-io.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kamatera.svg b/svg/kamatera.svg
index 50a0a870..18ba0d65 100644
--- a/svg/kamatera.svg
+++ b/svg/kamatera.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/kanboard-light.svg b/svg/kanboard-light.svg
new file mode 100644
index 00000000..5490ba89
--- /dev/null
+++ b/svg/kanboard-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/kanboard.svg b/svg/kanboard.svg
old mode 100644
new mode 100755
index 107fe0a3..2e3244e8
--- a/svg/kanboard.svg
+++ b/svg/kanboard.svg
@@ -1 +1,10 @@
-K B
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/kanidm.svg b/svg/kanidm.svg
new file mode 100755
index 00000000..ba5707fc
--- /dev/null
+++ b/svg/kanidm.svg
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PASSPORT
+ AUTHSTRALIA
+ KANIDM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PASSPORT
+ AUTHSTRALIA
+ KANIDM
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/kapowarr.svg b/svg/kapowarr.svg
old mode 100644
new mode 100755
index 9eac6b9f..18e66a4c
--- a/svg/kapowarr.svg
+++ b/svg/kapowarr.svg
@@ -1 +1,108 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kasm-workspaces.svg b/svg/kasm-workspaces.svg
index 389f5d4b..d156d0cd 100644
--- a/svg/kasm-workspaces.svg
+++ b/svg/kasm-workspaces.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/kasm.svg b/svg/kasm.svg
index 389f5d4b..d156d0cd 100644
--- a/svg/kasm.svg
+++ b/svg/kasm.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/kavita.svg b/svg/kavita.svg
old mode 100644
new mode 100755
index d164522a..4eae613f
--- a/svg/kavita.svg
+++ b/svg/kavita.svg
@@ -1 +1,131 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kbin.svg b/svg/kbin.svg
old mode 100644
new mode 100755
index 97e3ccee..c2590eff
--- a/svg/kbin.svg
+++ b/svg/kbin.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/keenetic-alt.svg b/svg/keenetic-alt.svg
new file mode 100644
index 00000000..f57a5d9e
--- /dev/null
+++ b/svg/keenetic-alt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/keenetic-new.svg b/svg/keenetic-new.svg
deleted file mode 100644
index a7dbb0d0..00000000
--- a/svg/keenetic-new.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/keenetic.svg b/svg/keenetic.svg
index f57a5d9e..a7dbb0d0 100644
--- a/svg/keenetic.svg
+++ b/svg/keenetic.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/keepassxc.svg b/svg/keepassxc.svg
new file mode 100755
index 00000000..db7e9799
--- /dev/null
+++ b/svg/keepassxc.svg
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/keila.svg b/svg/keila.svg
old mode 100644
new mode 100755
index 31ae0301..239073c3
--- a/svg/keila.svg
+++ b/svg/keila.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/kestra.svg b/svg/kestra.svg
old mode 100644
new mode 100755
index 8a7e0434..748d6349
--- a/svg/kestra.svg
+++ b/svg/kestra.svg
@@ -1 +1,27 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/keycloak.svg b/svg/keycloak.svg
old mode 100644
new mode 100755
index d1dc6877..53acd1ae
--- a/svg/keycloak.svg
+++ b/svg/keycloak.svg
@@ -1 +1,81 @@
-keycloak_deliverables
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kibana.svg b/svg/kibana.svg
index 692d3bd9..11f07aba 100644
--- a/svg/kibana.svg
+++ b/svg/kibana.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/kick-light.svg b/svg/kick-light.svg
new file mode 100644
index 00000000..7e3890dd
--- /dev/null
+++ b/svg/kick-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kimai.svg b/svg/kimai.svg
old mode 100644
new mode 100755
index 8ca3aa22..974c340e
--- a/svg/kimai.svg
+++ b/svg/kimai.svg
@@ -1 +1,66 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kinto.svg b/svg/kinto.svg
index 559fbe38..7b04807b 100644
--- a/svg/kinto.svg
+++ b/svg/kinto.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/kiwix-light.svg b/svg/kiwix-light.svg
new file mode 100644
index 00000000..752c0e97
--- /dev/null
+++ b/svg/kiwix-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kiwix.svg b/svg/kiwix.svg
index 2e6e7b36..21d0bf7e 100644
--- a/svg/kiwix.svg
+++ b/svg/kiwix.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/klipper.svg b/svg/klipper.svg
old mode 100644
new mode 100755
index 31e89e20..f295e238
--- a/svg/klipper.svg
+++ b/svg/klipper.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/kodi.svg b/svg/kodi.svg
old mode 100644
new mode 100755
index f88b5757..a9b2b1d0
--- a/svg/kodi.svg
+++ b/svg/kodi.svg
@@ -1 +1,28 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/koillection-light.svg b/svg/koillection-light.svg
new file mode 100644
index 00000000..ef137604
--- /dev/null
+++ b/svg/koillection-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/koillection.svg b/svg/koillection.svg
index ef137604..ea6b3408 100644
--- a/svg/koillection.svg
+++ b/svg/koillection.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/komga.svg b/svg/komga.svg
old mode 100644
new mode 100755
index cbff33e5..9690ecca
--- a/svg/komga.svg
+++ b/svg/komga.svg
@@ -1 +1,39 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+K
+K
+
diff --git a/svg/kontoj.svg b/svg/kontoj.svg
new file mode 100755
index 00000000..370b4930
--- /dev/null
+++ b/svg/kontoj.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kopia.svg b/svg/kopia.svg
old mode 100644
new mode 100755
index 879a3745..9344d2cf
--- a/svg/kopia.svg
+++ b/svg/kopia.svg
@@ -1 +1,10 @@
-kopia-svg
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/krakend.svg b/svg/krakend.svg
new file mode 100755
index 00000000..0a193ade
--- /dev/null
+++ b/svg/krakend.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/kyoo.svg b/svg/kyoo.svg
new file mode 100755
index 00000000..43eae366
--- /dev/null
+++ b/svg/kyoo.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/lancommander-light.svg b/svg/lancommander-light.svg
new file mode 100644
index 00000000..2cd9b96a
--- /dev/null
+++ b/svg/lancommander-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/lancommander.svg b/svg/lancommander.svg
new file mode 100755
index 00000000..27446203
--- /dev/null
+++ b/svg/lancommander.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/lark.svg b/svg/lark.svg
index a15ab5b9..d0968e1d 100644
--- a/svg/lark.svg
+++ b/svg/lark.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/lastpass.svg b/svg/lastpass.svg
new file mode 100755
index 00000000..277b37b9
--- /dev/null
+++ b/svg/lastpass.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/leantime.svg b/svg/leantime.svg
new file mode 100755
index 00000000..b3867eb4
--- /dev/null
+++ b/svg/leantime.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/lemmy-light.svg b/svg/lemmy-light.svg
new file mode 100755
index 00000000..5d4a4cb8
--- /dev/null
+++ b/svg/lemmy-light.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/lemmy.svg b/svg/lemmy.svg
index bf55d252..f78a1afc 100644
--- a/svg/lemmy.svg
+++ b/svg/lemmy.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/lets-encrypt.svg b/svg/lets-encrypt.svg
old mode 100644
new mode 100755
index e5b4fe1c..c54f7d6f
--- a/svg/lets-encrypt.svg
+++ b/svg/lets-encrypt.svg
@@ -1 +1,27 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/libreddit-light.svg b/svg/libreddit-light.svg
new file mode 100644
index 00000000..98c5d4af
--- /dev/null
+++ b/svg/libreddit-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/libreoffice-light.svg b/svg/libreoffice-light.svg
new file mode 100644
index 00000000..84993706
--- /dev/null
+++ b/svg/libreoffice-light.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/libreoffice.svg b/svg/libreoffice.svg
old mode 100644
new mode 100755
index 7ef8336c..50e0a667
--- a/svg/libreoffice.svg
+++ b/svg/libreoffice.svg
@@ -1 +1,9 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/librespeed-light.svg b/svg/librespeed-light.svg
new file mode 100644
index 00000000..19481ba1
--- /dev/null
+++ b/svg/librespeed-light.svg
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/librespeed.svg b/svg/librespeed.svg
old mode 100644
new mode 100755
index 66bc5201..246b231d
--- a/svg/librespeed.svg
+++ b/svg/librespeed.svg
@@ -1 +1,63 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/librewolf.svg b/svg/librewolf.svg
new file mode 100755
index 00000000..bb46c994
--- /dev/null
+++ b/svg/librewolf.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/librum.svg b/svg/librum.svg
new file mode 100755
index 00000000..0e397d67
--- /dev/null
+++ b/svg/librum.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
diff --git a/svg/lidarr.svg b/svg/lidarr.svg
old mode 100644
new mode 100755
index d6009fc9..95f146c4
--- a/svg/lidarr.svg
+++ b/svg/lidarr.svg
@@ -1 +1,441 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/limesurvey.svg b/svg/limesurvey.svg
new file mode 100755
index 00000000..c0a015e2
--- /dev/null
+++ b/svg/limesurvey.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/linguacafe.svg b/svg/linguacafe.svg
new file mode 100755
index 00000000..5bd9b490
--- /dev/null
+++ b/svg/linguacafe.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ๆ
+
+
\ No newline at end of file
diff --git a/svg/linkace.svg b/svg/linkace.svg
old mode 100644
new mode 100755
index 327e8c80..bfbffec8
--- a/svg/linkace.svg
+++ b/svg/linkace.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/linkding.svg b/svg/linkding.svg
old mode 100644
new mode 100755
index 31a439bd..d140e14b
--- a/svg/linkding.svg
+++ b/svg/linkding.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/linkedin.svg b/svg/linkedin.svg
old mode 100644
new mode 100755
index f2a51d9c..3bcd0265
--- a/svg/linkedin.svg
+++ b/svg/linkedin.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/linkstack.svg b/svg/linkstack.svg
old mode 100644
new mode 100755
index f2149395..6db95614
--- a/svg/linkstack.svg
+++ b/svg/linkstack.svg
@@ -1 +1,69 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/linux.svg b/svg/linux.svg
new file mode 100755
index 00000000..968f732f
--- /dev/null
+++ b/svg/linux.svg
@@ -0,0 +1,561 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/linuxgsm.svg b/svg/linuxgsm.svg
new file mode 100755
index 00000000..a7cc61f9
--- /dev/null
+++ b/svg/linuxgsm.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/linuxserver-io.svg b/svg/linuxserver-io.svg
old mode 100644
new mode 100755
index 26ef7b41..1d81047e
--- a/svg/linuxserver-io.svg
+++ b/svg/linuxserver-io.svg
@@ -1 +1,133 @@
-Asset 1
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/liremdb.svg b/svg/liremdb.svg
index 53796101..1f3bf198 100644
--- a/svg/liremdb.svg
+++ b/svg/liremdb.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/listmonk.svg b/svg/listmonk.svg
new file mode 100755
index 00000000..a7636145
--- /dev/null
+++ b/svg/listmonk.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/svg/lodestone.svg b/svg/lodestone.svg
new file mode 100755
index 00000000..80cc9a7e
--- /dev/null
+++ b/svg/lodestone.svg
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/logitech-light.svg b/svg/logitech-light.svg
new file mode 100644
index 00000000..96958d9d
--- /dev/null
+++ b/svg/logitech-light.svg
@@ -0,0 +1 @@
+Logitech_logo-svg
\ No newline at end of file
diff --git a/svg/logseq.svg b/svg/logseq.svg
new file mode 100755
index 00000000..b0a4d57c
--- /dev/null
+++ b/svg/logseq.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/logstash.svg b/svg/logstash.svg
index cf718cd0..864739ba 100644
--- a/svg/logstash.svg
+++ b/svg/logstash.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/logto.svg b/svg/logto.svg
new file mode 100755
index 00000000..400acb4c
--- /dev/null
+++ b/svg/logto.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/loki.svg b/svg/loki.svg
new file mode 100755
index 00000000..af40b7d7
--- /dev/null
+++ b/svg/loki.svg
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/lunasea.svg b/svg/lunasea.svg
new file mode 100755
index 00000000..734f3a1f
--- /dev/null
+++ b/svg/lunasea.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/lynx-light.svg b/svg/lynx-light.svg
new file mode 100644
index 00000000..e77dbe4a
--- /dev/null
+++ b/svg/lynx-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mail-in-a-box.svg b/svg/mail-in-a-box.svg
new file mode 100755
index 00000000..7789fb8c
--- /dev/null
+++ b/svg/mail-in-a-box.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RETURN PATH
+ IMAP DNS
+ Mail-in-a-Box
+ SMTP Port 25
+ The Internet
+
+
\ No newline at end of file
diff --git a/svg/mailchimp-light.svg b/svg/mailchimp-light.svg
new file mode 100644
index 00000000..1bad54fa
--- /dev/null
+++ b/svg/mailchimp-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mailchimp.svg b/svg/mailchimp.svg
new file mode 100755
index 00000000..184b3beb
--- /dev/null
+++ b/svg/mailchimp.svg
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
diff --git a/svg/mailcow.svg b/svg/mailcow.svg
old mode 100644
new mode 100755
index c08d8320..4bff6bf4
--- a/svg/mailcow.svg
+++ b/svg/mailcow.svg
@@ -1 +1,126 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mailgun.svg b/svg/mailgun.svg
new file mode 100755
index 00000000..af29dbd9
--- /dev/null
+++ b/svg/mailgun.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
diff --git a/svg/mailinabox.svg b/svg/mailinabox.svg
deleted file mode 100644
index af58ec92..00000000
--- a/svg/mailinabox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/mailjet.svg b/svg/mailjet.svg
new file mode 100755
index 00000000..5c0bea89
--- /dev/null
+++ b/svg/mailjet.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/svg/mainsail.svg b/svg/mainsail.svg
old mode 100644
new mode 100755
index a0fb6d48..5dd27391
--- a/svg/mainsail.svg
+++ b/svg/mainsail.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/maintainerr.svg b/svg/maintainerr.svg
old mode 100644
new mode 100755
index d465f672..35d54b8f
--- a/svg/maintainerr.svg
+++ b/svg/maintainerr.svg
@@ -1,18 +1,25 @@
-
-
-
-Created with Fabric.js 4.6.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/manyfold.svg b/svg/manyfold.svg
old mode 100644
new mode 100755
index 711030f2..aa325a9e
--- a/svg/manyfold.svg
+++ b/svg/manyfold.svg
@@ -1,923 +1,167 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/maptiler.svg b/svg/maptiler.svg
index 7e648ce7..b494514d 100644
--- a/svg/maptiler.svg
+++ b/svg/maptiler.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/mariadb.svg b/svg/mariadb.svg
old mode 100644
new mode 100755
index 5ef53219..5cf4fdb1
--- a/svg/mariadb.svg
+++ b/svg/mariadb.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mastodon.svg b/svg/mastodon.svg
old mode 100644
new mode 100755
index 36b0267a..5de7ceeb
--- a/svg/mastodon.svg
+++ b/svg/mastodon.svg
@@ -1 +1,28 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/matomo.svg b/svg/matomo.svg
old mode 100644
new mode 100755
index 5dd5dd9c..1630fbaf
--- a/svg/matomo.svg
+++ b/svg/matomo.svg
@@ -1 +1,67 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/matrix-light.svg b/svg/matrix-light.svg
new file mode 100644
index 00000000..dd41e714
--- /dev/null
+++ b/svg/matrix-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/matrix-synapse-light.svg b/svg/matrix-synapse-light.svg
new file mode 100644
index 00000000..e3e29aa7
--- /dev/null
+++ b/svg/matrix-synapse-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/matrix-synapse.svg b/svg/matrix-synapse.svg
index 1ef0dbab..55467857 100644
--- a/svg/matrix-synapse.svg
+++ b/svg/matrix-synapse.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/matrix.svg b/svg/matrix.svg
old mode 100644
new mode 100755
index 9eb50e9b..9631bbac
--- a/svg/matrix.svg
+++ b/svg/matrix.svg
@@ -1 +1,10 @@
-Matrix (protocol) logo
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mattermost.svg b/svg/mattermost.svg
old mode 100644
new mode 100755
index 10772434..097ae4c3
--- a/svg/mattermost.svg
+++ b/svg/mattermost.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mautic.svg b/svg/mautic.svg
old mode 100644
new mode 100755
index bc82a2a5..803a2bd1
--- a/svg/mautic.svg
+++ b/svg/mautic.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/max.svg b/svg/max.svg
new file mode 100755
index 00000000..6d4d4085
--- /dev/null
+++ b/svg/max.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mayan-edms-light.svg b/svg/mayan-edms-light.svg
new file mode 100644
index 00000000..433989ac
--- /dev/null
+++ b/svg/mayan-edms-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mayan-edms.svg b/svg/mayan-edms.svg
new file mode 100755
index 00000000..86173892
--- /dev/null
+++ b/svg/mayan-edms.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/maybe.svg b/svg/maybe.svg
new file mode 100755
index 00000000..6112f254
--- /dev/null
+++ b/svg/maybe.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mbin.svg b/svg/mbin.svg
new file mode 100755
index 00000000..331793d5
--- /dev/null
+++ b/svg/mbin.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mealie.svg b/svg/mealie.svg
old mode 100644
new mode 100755
index f1eb1068..a6d43d2a
--- a/svg/mealie.svg
+++ b/svg/mealie.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/medama.svg b/svg/medama.svg
new file mode 100755
index 00000000..1b08af7e
--- /dev/null
+++ b/svg/medama.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mediathekview.svg b/svg/mediathekview.svg
index 7d06570d..55901750 100644
--- a/svg/mediathekview.svg
+++ b/svg/mediathekview.svg
@@ -1 +1 @@
-MV
\ No newline at end of file
+MV
\ No newline at end of file
diff --git a/svg/mediawiki.svg b/svg/mediawiki.svg
index eaf520f1..63ebdb7a 100644
--- a/svg/mediawiki.svg
+++ b/svg/mediawiki.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/mediux.svg b/svg/mediux.svg
new file mode 100755
index 00000000..afa25a17
--- /dev/null
+++ b/svg/mediux.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/medusa-light.svg b/svg/medusa-light.svg
new file mode 100644
index 00000000..38e5dd58
--- /dev/null
+++ b/svg/medusa-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/medusa.svg b/svg/medusa.svg
new file mode 100755
index 00000000..4b17f2b6
--- /dev/null
+++ b/svg/medusa.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mega-nz-dark.svg b/svg/mega-nz-dark.svg
new file mode 100644
index 00000000..2893782a
--- /dev/null
+++ b/svg/mega-nz-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meilisearch.svg b/svg/meilisearch.svg
new file mode 100755
index 00000000..eea55bea
--- /dev/null
+++ b/svg/meilisearch.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/memories-light.svg b/svg/memories-light.svg
new file mode 100644
index 00000000..f05c07f4
--- /dev/null
+++ b/svg/memories-light.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/memories.svg b/svg/memories.svg
new file mode 100755
index 00000000..d12ac2ac
--- /dev/null
+++ b/svg/memories.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/meraki.svg b/svg/meraki.svg
index b20ef77b..958fffda 100644
--- a/svg/meraki.svg
+++ b/svg/meraki.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/mergeable-dark.svg b/svg/mergeable-dark.svg
new file mode 100644
index 00000000..9d674d42
--- /dev/null
+++ b/svg/mergeable-dark.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mergeable.svg b/svg/mergeable.svg
new file mode 100755
index 00000000..77fc55a9
--- /dev/null
+++ b/svg/mergeable.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/meshping-light.svg b/svg/meshping-light.svg
new file mode 100644
index 00000000..4c6562b1
--- /dev/null
+++ b/svg/meshping-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/meshping.svg b/svg/meshping.svg
new file mode 100755
index 00000000..0d27d6b0
--- /dev/null
+++ b/svg/meshping.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/metabase.svg b/svg/metabase.svg
old mode 100644
new mode 100755
index e5c48267..83df866a
--- a/svg/metabase.svg
+++ b/svg/metabase.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/metube.svg b/svg/metube.svg
old mode 100644
new mode 100755
index 4f7f90be..a82d155a
--- a/svg/metube.svg
+++ b/svg/metube.svg
@@ -1 +1,8 @@
-Created by potrace 1.11, written by Peter Selinger 2001-2013
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-365-admin-center.svg b/svg/microsoft-365-admin-center.svg
new file mode 100644
index 00000000..b81048c1
--- /dev/null
+++ b/svg/microsoft-365-admin-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/microsoft-365.svg b/svg/microsoft-365.svg
new file mode 100755
index 00000000..029f34e6
--- /dev/null
+++ b/svg/microsoft-365.svg
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-access.svg b/svg/microsoft-access.svg
new file mode 100755
index 00000000..6c882663
--- /dev/null
+++ b/svg/microsoft-access.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/microsoft-azure.svg b/svg/microsoft-azure.svg
index ff5dfa5c..ae781482 100644
--- a/svg/microsoft-azure.svg
+++ b/svg/microsoft-azure.svg
@@ -1,4 +1,4 @@
-
+
diff --git a/svg/microsoft-bing.svg b/svg/microsoft-bing.svg
new file mode 100755
index 00000000..bcfa2771
--- /dev/null
+++ b/svg/microsoft-bing.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-copilot.svg b/svg/microsoft-copilot.svg
old mode 100644
new mode 100755
index c76bea42..548ea7eb
--- a/svg/microsoft-copilot.svg
+++ b/svg/microsoft-copilot.svg
@@ -1 +1,53 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-edge.svg b/svg/microsoft-edge.svg
new file mode 100755
index 00000000..12a50e3d
--- /dev/null
+++ b/svg/microsoft-edge.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/microsoft-excel.svg b/svg/microsoft-excel.svg
new file mode 100755
index 00000000..6b937a03
--- /dev/null
+++ b/svg/microsoft-excel.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-office.svg b/svg/microsoft-office.svg
index 68b16ae2..ccf0e7b0 100644
--- a/svg/microsoft-office.svg
+++ b/svg/microsoft-office.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/microsoft-onedrive.svg b/svg/microsoft-onedrive.svg
new file mode 100755
index 00000000..98510396
--- /dev/null
+++ b/svg/microsoft-onedrive.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-onenote.svg b/svg/microsoft-onenote.svg
new file mode 100755
index 00000000..9e035e50
--- /dev/null
+++ b/svg/microsoft-onenote.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-outlook.svg b/svg/microsoft-outlook.svg
new file mode 100755
index 00000000..ab42f1f8
--- /dev/null
+++ b/svg/microsoft-outlook.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-powerpoint.svg b/svg/microsoft-powerpoint.svg
new file mode 100755
index 00000000..aeb91eb1
--- /dev/null
+++ b/svg/microsoft-powerpoint.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-sharepoint.svg b/svg/microsoft-sharepoint.svg
old mode 100644
new mode 100755
index 8baca491..e920b5bb
--- a/svg/microsoft-sharepoint.svg
+++ b/svg/microsoft-sharepoint.svg
@@ -1,59 +1,28 @@
-
-
-
-
-
-
-
-
-
-
-]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-sql-server-light.svg b/svg/microsoft-sql-server-light.svg
new file mode 100644
index 00000000..4f169e18
--- /dev/null
+++ b/svg/microsoft-sql-server-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/microsoft-sql-server.svg b/svg/microsoft-sql-server.svg
index 6bf9e54c..e9b8cf54 100644
--- a/svg/microsoft-sql-server.svg
+++ b/svg/microsoft-sql-server.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/microsoft-teams.svg b/svg/microsoft-teams.svg
old mode 100644
new mode 100755
index 3409e6cf..53ace8e6
--- a/svg/microsoft-teams.svg
+++ b/svg/microsoft-teams.svg
@@ -1,22 +1,34 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-to-do.svg b/svg/microsoft-to-do.svg
new file mode 100755
index 00000000..393f107b
--- /dev/null
+++ b/svg/microsoft-to-do.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft-todo.svg b/svg/microsoft-todo.svg
deleted file mode 100644
index bf36b699..00000000
--- a/svg/microsoft-todo.svg
+++ /dev/null
@@ -1 +0,0 @@
-Todo
\ No newline at end of file
diff --git a/svg/microsoft-windows.svg b/svg/microsoft-windows.svg
new file mode 100755
index 00000000..59883901
--- /dev/null
+++ b/svg/microsoft-windows.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/svg/microsoft-word.svg b/svg/microsoft-word.svg
new file mode 100755
index 00000000..598a5a3a
--- /dev/null
+++ b/svg/microsoft-word.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/microsoft.svg b/svg/microsoft.svg
old mode 100644
new mode 100755
index 95f84188..63d98783
--- a/svg/microsoft.svg
+++ b/svg/microsoft.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/microsoft365-admin-center.svg b/svg/microsoft365-admin-center.svg
deleted file mode 100644
index 4753e5f6..00000000
--- a/svg/microsoft365-admin-center.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/mikrotik-light.svg b/svg/mikrotik-light.svg
new file mode 100644
index 00000000..ce8483a8
--- /dev/null
+++ b/svg/mikrotik-light.svg
@@ -0,0 +1 @@
+MikroTik-logo-2021-ai
\ No newline at end of file
diff --git a/svg/minecraft.svg b/svg/minecraft.svg
old mode 100644
new mode 100755
index 44f78337..21a96ee8
--- a/svg/minecraft.svg
+++ b/svg/minecraft.svg
@@ -1 +1,34 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/miniflux-light.svg b/svg/miniflux-light.svg
new file mode 100644
index 00000000..5ec0d6db
--- /dev/null
+++ b/svg/miniflux-light.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/svg/miniflux.svg b/svg/miniflux.svg
old mode 100644
new mode 100755
index 9336c4f8..6ff4d42b
--- a/svg/miniflux.svg
+++ b/svg/miniflux.svg
@@ -1 +1,3 @@
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/svg/minio-light.svg b/svg/minio-light.svg
new file mode 100644
index 00000000..53c4d92c
--- /dev/null
+++ b/svg/minio-light.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/minio.svg b/svg/minio.svg
old mode 100644
new mode 100755
index 1821bb3d..dbdfe246
--- a/svg/minio.svg
+++ b/svg/minio.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/misskey-light.svg b/svg/misskey-light.svg
new file mode 100644
index 00000000..2c96b9a4
--- /dev/null
+++ b/svg/misskey-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/misskey.svg b/svg/misskey.svg
new file mode 100755
index 00000000..6e0d0731
--- /dev/null
+++ b/svg/misskey.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mitra.svg b/svg/mitra.svg
new file mode 100755
index 00000000..462851e9
--- /dev/null
+++ b/svg/mitra.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mixpost.svg b/svg/mixpost.svg
new file mode 100755
index 00000000..3c82a150
--- /dev/null
+++ b/svg/mixpost.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mkdocs-light.svg b/svg/mkdocs-light.svg
new file mode 100644
index 00000000..4816fed4
--- /dev/null
+++ b/svg/mkdocs-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mkdocs.svg b/svg/mkdocs.svg
index 3ec13fe8..36cc0306 100644
--- a/svg/mkdocs.svg
+++ b/svg/mkdocs.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/mobilizon.svg b/svg/mobilizon.svg
new file mode 100755
index 00000000..c4f2c3be
--- /dev/null
+++ b/svg/mobilizon.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mobotix-light.svg b/svg/mobotix-light.svg
new file mode 100644
index 00000000..87758f28
--- /dev/null
+++ b/svg/mobotix-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mobotix.svg b/svg/mobotix.svg
index f1125789..372736e3 100644
--- a/svg/mobotix.svg
+++ b/svg/mobotix.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/mongodb.svg b/svg/mongodb.svg
old mode 100644
new mode 100755
index 2f129671..80c3cc04
--- a/svg/mongodb.svg
+++ b/svg/mongodb.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/monica-light.svg b/svg/monica-light.svg
new file mode 100644
index 00000000..e1b24af3
--- /dev/null
+++ b/svg/monica-light.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/monica.svg b/svg/monica.svg
old mode 100644
new mode 100755
index 5c397c78..e030f8b1
--- a/svg/monica.svg
+++ b/svg/monica.svg
@@ -1 +1,18 @@
-Artboard 3.1 Created using Figma
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/moodle-light.svg b/svg/moodle-light.svg
new file mode 100644
index 00000000..daf39c44
--- /dev/null
+++ b/svg/moodle-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/morphos.svg b/svg/morphos.svg
new file mode 100755
index 00000000..9e1d7251
--- /dev/null
+++ b/svg/morphos.svg
@@ -0,0 +1,235 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mosquitto.svg b/svg/mosquitto.svg
new file mode 100755
index 00000000..a3a5739b
--- /dev/null
+++ b/svg/mosquitto.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/motioneye-dark.svg b/svg/motioneye-dark.svg
new file mode 100644
index 00000000..fc71d5c9
--- /dev/null
+++ b/svg/motioneye-dark.svg
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/motioneye.svg b/svg/motioneye.svg
old mode 100644
new mode 100755
index 919dcbe3..30917f1b
--- a/svg/motioneye.svg
+++ b/svg/motioneye.svg
@@ -1 +1,89 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/mqtt.svg b/svg/mqtt.svg
old mode 100644
new mode 100755
index a1fbb1e0..8d4b8a5a
--- a/svg/mqtt.svg
+++ b/svg/mqtt.svg
@@ -1 +1,15 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/mullvad-vpn.svg b/svg/mullvad-vpn.svg
new file mode 100755
index 00000000..496ce926
--- /dev/null
+++ b/svg/mullvad-vpn.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/multi-scrobbler.svg b/svg/multi-scrobbler.svg
old mode 100644
new mode 100755
index e5b2e6eb..9fbffaa4
--- a/svg/multi-scrobbler.svg
+++ b/svg/multi-scrobbler.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/mumble-light.svg b/svg/mumble-light.svg
new file mode 100644
index 00000000..e6a1f7d7
--- /dev/null
+++ b/svg/mumble-light.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mumble.svg b/svg/mumble.svg
old mode 100644
new mode 100755
index 60abebab..bd9ff49b
--- a/svg/mumble.svg
+++ b/svg/mumble.svg
@@ -1 +1,61 @@
-Mumble logo
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/music-assistant-light.svg b/svg/music-assistant-light.svg
new file mode 100644
index 00000000..a53fac05
--- /dev/null
+++ b/svg/music-assistant-light.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/music-assistant.svg b/svg/music-assistant.svg
new file mode 100755
index 00000000..68d8427d
--- /dev/null
+++ b/svg/music-assistant.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/myheats-light.svg b/svg/myheats-light.svg
new file mode 100644
index 00000000..8a09d093
--- /dev/null
+++ b/svg/myheats-light.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/myheats.svg b/svg/myheats.svg
new file mode 100755
index 00000000..b265c150
--- /dev/null
+++ b/svg/myheats.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/mysql.svg b/svg/mysql.svg
old mode 100644
new mode 100755
index 200df0ec..8fda596a
--- a/svg/mysql.svg
+++ b/svg/mysql.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/n8n.svg b/svg/n8n.svg
old mode 100644
new mode 100755
index 13c07d91..31969cf3
--- a/svg/n8n.svg
+++ b/svg/n8n.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nagios.svg b/svg/nagios.svg
index a03cb2d1..b4d0a03e 100644
--- a/svg/nagios.svg
+++ b/svg/nagios.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/nasa.svg b/svg/nasa.svg
new file mode 100755
index 00000000..d6ee9c08
--- /dev/null
+++ b/svg/nasa.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/navidrome-light.svg b/svg/navidrome-light.svg
new file mode 100644
index 00000000..215459b6
--- /dev/null
+++ b/svg/navidrome-light.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/navidrome.svg b/svg/navidrome.svg
old mode 100644
new mode 100755
index e9dae534..a22dd196
--- a/svg/navidrome.svg
+++ b/svg/navidrome.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/neko-light.svg b/svg/neko-light.svg
new file mode 100644
index 00000000..138dd3bb
--- /dev/null
+++ b/svg/neko-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/neko.svg b/svg/neko.svg
old mode 100644
new mode 100755
index 27ef745d..8322239d
--- a/svg/neko.svg
+++ b/svg/neko.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/neodb.svg b/svg/neodb.svg
new file mode 100755
index 00000000..c8d5ba3d
--- /dev/null
+++ b/svg/neodb.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/netalertx-light.svg b/svg/netalertx-light.svg
new file mode 100644
index 00000000..a0c911c3
--- /dev/null
+++ b/svg/netalertx-light.svg
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/netalertx.svg b/svg/netalertx.svg
new file mode 100755
index 00000000..ab6f5676
--- /dev/null
+++ b/svg/netalertx.svg
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/netapp-light.svg b/svg/netapp-light.svg
index 2ab29721..5afa0c14 100644
--- a/svg/netapp-light.svg
+++ b/svg/netapp-light.svg
@@ -1 +1 @@
-
+
\ No newline at end of file
diff --git a/svg/netapp.svg b/svg/netapp.svg
index 28f0568f..15519289 100644
--- a/svg/netapp.svg
+++ b/svg/netapp.svg
@@ -1 +1 @@
-
+
\ No newline at end of file
diff --git a/svg/netbird.svg b/svg/netbird.svg
old mode 100644
new mode 100755
index bdf7c1ba..0c0135eb
--- a/svg/netbird.svg
+++ b/svg/netbird.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/netboot.svg b/svg/netboot.svg
index f121b043..9abe95d7 100644
--- a/svg/netboot.svg
+++ b/svg/netboot.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/netbox.svg b/svg/netbox.svg
index 952cf78d..4ae18967 100644
--- a/svg/netbox.svg
+++ b/svg/netbox.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/netdata.svg b/svg/netdata.svg
old mode 100644
new mode 100755
index a3a72b83..23825398
--- a/svg/netdata.svg
+++ b/svg/netdata.svg
@@ -1 +1,8 @@
-logo_green_fill
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/netflix.svg b/svg/netflix.svg
old mode 100644
new mode 100755
index 409f18e7..e4b06db8
--- a/svg/netflix.svg
+++ b/svg/netflix.svg
@@ -1 +1,28 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/netgear-light.svg b/svg/netgear-light.svg
new file mode 100644
index 00000000..add58dc8
--- /dev/null
+++ b/svg/netgear-light.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/netgear.svg b/svg/netgear.svg
old mode 100644
new mode 100755
index 44173f5c..a4ee0457
--- a/svg/netgear.svg
+++ b/svg/netgear.svg
@@ -1 +1,33 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/netlify.svg b/svg/netlify.svg
old mode 100644
new mode 100755
index 80c3726e..5002b5e5
--- a/svg/netlify.svg
+++ b/svg/netlify.svg
@@ -1 +1,45 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/netsurf-light.svg b/svg/netsurf-light.svg
new file mode 100644
index 00000000..552388f7
--- /dev/null
+++ b/svg/netsurf-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/network-ups-tools.svg b/svg/network-ups-tools.svg
index dbe1c4c8..50dd6550 100755
--- a/svg/network-ups-tools.svg
+++ b/svg/network-ups-tools.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/newsblur.svg b/svg/newsblur.svg
old mode 100644
new mode 100755
index d605136f..d894e180
--- a/svg/newsblur.svg
+++ b/svg/newsblur.svg
@@ -1 +1,356 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/nextcloud-news.svg b/svg/nextcloud-news.svg
old mode 100644
new mode 100755
index 9d4db81c..c4ad2c7c
--- a/svg/nextcloud-news.svg
+++ b/svg/nextcloud-news.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/nextcloud-social.svg b/svg/nextcloud-social.svg
new file mode 100755
index 00000000..9059a807
--- /dev/null
+++ b/svg/nextcloud-social.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/nextcloud-tables.svg b/svg/nextcloud-tables.svg
new file mode 100755
index 00000000..40a0886d
--- /dev/null
+++ b/svg/nextcloud-tables.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nextcloud.svg b/svg/nextcloud.svg
old mode 100644
new mode 100755
index 7068e1b7..0c18b32e
--- a/svg/nextcloud.svg
+++ b/svg/nextcloud.svg
@@ -1 +1,10 @@
-Nextcloud icon
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nextcloudpi.svg b/svg/nextcloudpi.svg
new file mode 100755
index 00000000..32459cb6
--- /dev/null
+++ b/svg/nextcloudpi.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/nextdns.svg b/svg/nextdns.svg
index 154295c6..6202f7a8 100644
--- a/svg/nextdns.svg
+++ b/svg/nextdns.svg
@@ -1 +1 @@
->
\ No newline at end of file
+>
\ No newline at end of file
diff --git a/svg/nexterm.svg b/svg/nexterm.svg
new file mode 100755
index 00000000..9cd49be5
--- /dev/null
+++ b/svg/nexterm.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nextjs-light.svg b/svg/nextjs-light.svg
new file mode 100644
index 00000000..9b9ea618
--- /dev/null
+++ b/svg/nextjs-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nginx-proxy-manager.svg b/svg/nginx-proxy-manager.svg
old mode 100644
new mode 100755
index d81356ff..ebe425df
--- a/svg/nginx-proxy-manager.svg
+++ b/svg/nginx-proxy-manager.svg
@@ -1 +1,128 @@
-logo
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nginx.svg b/svg/nginx.svg
old mode 100644
new mode 100755
index e4df78c4..2800a15b
--- a/svg/nginx.svg
+++ b/svg/nginx.svg
@@ -1 +1,10 @@
-file_type_nginx
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nightscout-light.svg b/svg/nightscout-light.svg
new file mode 100644
index 00000000..147893c0
--- /dev/null
+++ b/svg/nightscout-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nightscout.svg b/svg/nightscout.svg
new file mode 100755
index 00000000..e9eeca1c
--- /dev/null
+++ b/svg/nightscout.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nintendo-switch.svg b/svg/nintendo-switch.svg
new file mode 100755
index 00000000..5303d3bf
--- /dev/null
+++ b/svg/nintendo-switch.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/nitter.svg b/svg/nitter.svg
index c72d183f..0e4fd1d3 100644
--- a/svg/nitter.svg
+++ b/svg/nitter.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/nixos.svg b/svg/nixos.svg
new file mode 100755
index 00000000..1aedba8f
--- /dev/null
+++ b/svg/nixos.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nocodb.svg b/svg/nocodb.svg
new file mode 100755
index 00000000..3ec9c967
--- /dev/null
+++ b/svg/nocodb.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/node-red.svg b/svg/node-red.svg
old mode 100644
new mode 100755
index 800a4fac..9bc974e7
--- a/svg/node-red.svg
+++ b/svg/node-red.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/nodebb.svg b/svg/nodebb.svg
new file mode 100755
index 00000000..e88781d1
--- /dev/null
+++ b/svg/nodebb.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nodejs-alt.svg b/svg/nodejs-alt.svg
index e33a5889..5db387e7 100644
--- a/svg/nodejs-alt.svg
+++ b/svg/nodejs-alt.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/nomad.svg b/svg/nomad.svg
index 9e186bd4..16915ba5 100644
--- a/svg/nomad.svg
+++ b/svg/nomad.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/nordvpn.svg b/svg/nordvpn.svg
old mode 100644
new mode 100755
index 199ea7ec..ceba7d8a
--- a/svg/nordvpn.svg
+++ b/svg/nordvpn.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/note-mark.svg b/svg/note-mark.svg
new file mode 100755
index 00000000..e6cb142a
--- /dev/null
+++ b/svg/note-mark.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/notesnook-light.svg b/svg/notesnook-light.svg
new file mode 100644
index 00000000..c643e1d6
--- /dev/null
+++ b/svg/notesnook-light.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/notesnook.svg b/svg/notesnook.svg
old mode 100644
new mode 100755
index 1a28fd40..46c6cbd2
--- a/svg/notesnook.svg
+++ b/svg/notesnook.svg
@@ -1 +1,32 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/notion-light.svg b/svg/notion-light.svg
new file mode 100644
index 00000000..f33a885b
--- /dev/null
+++ b/svg/notion-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/notion.svg b/svg/notion.svg
old mode 100644
new mode 100755
index 17857633..3b3c2b7a
--- a/svg/notion.svg
+++ b/svg/notion.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/ntfy.svg b/svg/ntfy.svg
old mode 100644
new mode 100755
index 0e01ae89..9dc408f8
--- a/svg/ntfy.svg
+++ b/svg/ntfy.svg
@@ -1 +1,33 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/nvidia.svg b/svg/nvidia.svg
new file mode 100755
index 00000000..223fcb8e
--- /dev/null
+++ b/svg/nvidia.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/nzbhydra2-light.svg b/svg/nzbhydra2-light.svg
new file mode 100644
index 00000000..64ca5968
--- /dev/null
+++ b/svg/nzbhydra2-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/obsidian.svg b/svg/obsidian.svg
old mode 100644
new mode 100755
index 0c2483dc..c8193792
--- a/svg/obsidian.svg
+++ b/svg/obsidian.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/obtainium.svg b/svg/obtainium.svg
new file mode 100755
index 00000000..0e60d9b3
--- /dev/null
+++ b/svg/obtainium.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/octoprint.svg b/svg/octoprint.svg
new file mode 100755
index 00000000..8c41a7a0
--- /dev/null
+++ b/svg/octoprint.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/oculus-light.svg b/svg/oculus-light.svg
new file mode 100644
index 00000000..e4eda300
--- /dev/null
+++ b/svg/oculus-light.svg
@@ -0,0 +1 @@
+Oculus icon
\ No newline at end of file
diff --git a/svg/oculus.svg b/svg/oculus.svg
index 5ade4010..bcddf7cf 100644
--- a/svg/oculus.svg
+++ b/svg/oculus.svg
@@ -1 +1 @@
-Oculus icon
\ No newline at end of file
+Oculus icon
\ No newline at end of file
diff --git a/svg/odoo.svg b/svg/odoo.svg
index 073cf91e..30ae15de 100644
--- a/svg/odoo.svg
+++ b/svg/odoo.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/olivetin-light.svg b/svg/olivetin-light.svg
new file mode 100644
index 00000000..7ea268b3
--- /dev/null
+++ b/svg/olivetin-light.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/olivetin.svg b/svg/olivetin.svg
old mode 100644
new mode 100755
index 206fd0d8..b90a8128
--- a/svg/olivetin.svg
+++ b/svg/olivetin.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/omada.svg b/svg/omada.svg
old mode 100644
new mode 100755
index 6950c7b5..2a96c8c1
--- a/svg/omada.svg
+++ b/svg/omada.svg
@@ -1 +1,113 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ombi.svg b/svg/ombi.svg
old mode 100644
new mode 100755
index 68aea030..fc5569b1
--- a/svg/ombi.svg
+++ b/svg/ombi.svg
@@ -1 +1,74 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/omnidb.svg b/svg/omnidb.svg
index 48164fef..4f9191c2 100644
--- a/svg/omnidb.svg
+++ b/svg/omnidb.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/omnivore.svg b/svg/omnivore.svg
new file mode 100755
index 00000000..3987d06a
--- /dev/null
+++ b/svg/omnivore.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/onedev-light.svg b/svg/onedev-light.svg
new file mode 100644
index 00000000..579f793e
--- /dev/null
+++ b/svg/onedev-light.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/onedev.svg b/svg/onedev.svg
old mode 100644
new mode 100755
index a71ff16b..b1f4d78e
--- a/svg/onedev.svg
+++ b/svg/onedev.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/oneuptime-light.svg b/svg/oneuptime-light.svg
new file mode 100644
index 00000000..7876fe71
--- /dev/null
+++ b/svg/oneuptime-light.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/oneuptime.svg b/svg/oneuptime.svg
new file mode 100755
index 00000000..cd3efe25
--- /dev/null
+++ b/svg/oneuptime.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/open-source-initiative.svg b/svg/open-source-initiative.svg
new file mode 100755
index 00000000..2712bccb
--- /dev/null
+++ b/svg/open-source-initiative.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/svg/openai-light.svg b/svg/openai-light.svg
new file mode 100644
index 00000000..460565ad
--- /dev/null
+++ b/svg/openai-light.svg
@@ -0,0 +1 @@
+OpenAI icon
\ No newline at end of file
diff --git a/svg/openchangelog-light.svg b/svg/openchangelog-light.svg
new file mode 100644
index 00000000..78d1e242
--- /dev/null
+++ b/svg/openchangelog-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openchangelog.svg b/svg/openchangelog.svg
new file mode 100755
index 00000000..29e60966
--- /dev/null
+++ b/svg/openchangelog.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openeats-light.svg b/svg/openeats-light.svg
new file mode 100644
index 00000000..39ff5a59
--- /dev/null
+++ b/svg/openeats-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/openeats.svg b/svg/openeats.svg
index 0317a73c..b8cd0146 100644
--- a/svg/openeats.svg
+++ b/svg/openeats.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/openemr-light.svg b/svg/openemr-light.svg
new file mode 100644
index 00000000..6f3a3d96
--- /dev/null
+++ b/svg/openemr-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openemr.svg b/svg/openemr.svg
new file mode 100755
index 00000000..7e80330d
--- /dev/null
+++ b/svg/openemr.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/opengist-light.svg b/svg/opengist-light.svg
new file mode 100644
index 00000000..f6244765
--- /dev/null
+++ b/svg/opengist-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/opengist.svg b/svg/opengist.svg
index 4ed1ba7d..b3d37e24 100644
--- a/svg/opengist.svg
+++ b/svg/opengist.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/openhab.svg b/svg/openhab.svg
index c821987f..08652c37 100644
--- a/svg/openhab.svg
+++ b/svg/openhab.svg
@@ -1 +1 @@
-file_type_light_openHAB
\ No newline at end of file
+file_type_light_openHAB
\ No newline at end of file
diff --git a/svg/openldap.svg b/svg/openldap.svg
new file mode 100755
index 00000000..c59f4b85
--- /dev/null
+++ b/svg/openldap.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openmediavault.svg b/svg/openmediavault.svg
old mode 100644
new mode 100755
index 80d7247d..ae6aae1d
--- a/svg/openmediavault.svg
+++ b/svg/openmediavault.svg
@@ -1 +1,18 @@
-OpenMediaVault logo
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openoffice.svg b/svg/openoffice.svg
index a62eeab9..106d1cb8 100644
--- a/svg/openoffice.svg
+++ b/svg/openoffice.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/openpanel-light.svg b/svg/openpanel-light.svg
new file mode 100644
index 00000000..82e24346
--- /dev/null
+++ b/svg/openpanel-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openpanel.svg b/svg/openpanel.svg
new file mode 100755
index 00000000..0430f3de
--- /dev/null
+++ b/svg/openpanel.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openreads.svg b/svg/openreads.svg
new file mode 100755
index 00000000..0d85e412
--- /dev/null
+++ b/svg/openreads.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openspeedtest.svg b/svg/openspeedtest.svg
new file mode 100755
index 00000000..a0935f9d
--- /dev/null
+++ b/svg/openspeedtest.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/opentalk.svg b/svg/opentalk.svg
new file mode 100755
index 00000000..59859225
--- /dev/null
+++ b/svg/opentalk.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/opentofu.svg b/svg/opentofu.svg
new file mode 100755
index 00000000..1939e9c1
--- /dev/null
+++ b/svg/opentofu.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/openvas.svg b/svg/openvas.svg
index 40b37bd5..b4ee92bc 100644
--- a/svg/openvas.svg
+++ b/svg/openvas.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/openvpn.svg b/svg/openvpn.svg
old mode 100644
new mode 100755
index 7203f28f..651b6e6d
--- a/svg/openvpn.svg
+++ b/svg/openvpn.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/openwrt.svg b/svg/openwrt.svg
old mode 100644
new mode 100755
index ecaa50d7..e36b92fe
--- a/svg/openwrt.svg
+++ b/svg/openwrt.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/opera.svg b/svg/opera.svg
old mode 100644
new mode 100755
index 6e79822e..8dc76056
--- a/svg/opera.svg
+++ b/svg/opera.svg
@@ -1 +1,34 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/opnform.svg b/svg/opnform.svg
new file mode 100755
index 00000000..f4d99076
--- /dev/null
+++ b/svg/opnform.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/opnsense.svg b/svg/opnsense.svg
old mode 100644
new mode 100755
index 06633aeb..fc4bd2c2
--- a/svg/opnsense.svg
+++ b/svg/opnsense.svg
@@ -1 +1,272 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/origin.svg b/svg/origin.svg
index 02c71ac1..dcc7fcbc 100644
--- a/svg/origin.svg
+++ b/svg/origin.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/oscarr-light.svg b/svg/oscarr-light.svg
new file mode 100644
index 00000000..7430ea2b
--- /dev/null
+++ b/svg/oscarr-light.svg
@@ -0,0 +1 @@
+Created by potrace 1.11, written by Peter Selinger 2001-2013
\ No newline at end of file
diff --git a/svg/osticket.svg b/svg/osticket.svg
index d792c549..b597ae6b 100644
--- a/svg/osticket.svg
+++ b/svg/osticket.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/outline-light.svg b/svg/outline-light.svg
new file mode 100644
index 00000000..4279caef
--- /dev/null
+++ b/svg/outline-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/outline.svg b/svg/outline.svg
new file mode 100755
index 00000000..27e173bb
--- /dev/null
+++ b/svg/outline.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/overleaf.svg b/svg/overleaf.svg
old mode 100644
new mode 100755
index 4f2058be..b560f0a9
--- a/svg/overleaf.svg
+++ b/svg/overleaf.svg
@@ -1 +1,15 @@
-stickers alt
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/overseerr.svg b/svg/overseerr.svg
old mode 100644
new mode 100755
index 58a450d9..7f31e945
--- a/svg/overseerr.svg
+++ b/svg/overseerr.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ovirt-light.svg b/svg/ovirt-light.svg
new file mode 100644
index 00000000..0310d0d8
--- /dev/null
+++ b/svg/ovirt-light.svg
@@ -0,0 +1 @@
+GitHub Profile Image
\ No newline at end of file
diff --git a/svg/owncast.svg b/svg/owncast.svg
new file mode 100755
index 00000000..03e54140
--- /dev/null
+++ b/svg/owncast.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/owncloud.svg b/svg/owncloud.svg
old mode 100644
new mode 100755
index d15ff27e..26085a9d
--- a/svg/owncloud.svg
+++ b/svg/owncloud.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/owntone.svg b/svg/owntone.svg
old mode 100644
new mode 100755
index 722ae077..d30b51df
--- a/svg/owntone.svg
+++ b/svg/owntone.svg
@@ -1,20 +1,33 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/oxker-light.svg b/svg/oxker-light.svg
new file mode 100644
index 00000000..eabbd37f
--- /dev/null
+++ b/svg/oxker-light.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/oxker.svg b/svg/oxker.svg
new file mode 100755
index 00000000..e847ab75
--- /dev/null
+++ b/svg/oxker.svg
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/pagerduty.svg b/svg/pagerduty.svg
index 3d88c30e..8d04e397 100644
--- a/svg/pagerduty.svg
+++ b/svg/pagerduty.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/paperless-ngx.svg b/svg/paperless-ngx.svg
old mode 100644
new mode 100755
index a3160c2c..51d00a65
--- a/svg/paperless-ngx.svg
+++ b/svg/paperless-ngx.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/paperless.svg b/svg/paperless.svg
index 366aee2e..72d0407b 100644
--- a/svg/paperless.svg
+++ b/svg/paperless.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/papermark-light.svg b/svg/papermark-light.svg
new file mode 100644
index 00000000..d5a8626b
--- /dev/null
+++ b/svg/papermark-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/papermark.svg b/svg/papermark.svg
new file mode 100755
index 00000000..09380b68
--- /dev/null
+++ b/svg/papermark.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/papermerge-light.svg b/svg/papermerge-light.svg
new file mode 100644
index 00000000..8f9ac925
--- /dev/null
+++ b/svg/papermerge-light.svg
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/papermerge.svg b/svg/papermerge.svg
old mode 100644
new mode 100755
index 10821eea..f4fdf576
--- a/svg/papermerge.svg
+++ b/svg/papermerge.svg
@@ -1 +1,159 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/parseable.svg b/svg/parseable.svg
new file mode 100755
index 00000000..1039c7ad
--- /dev/null
+++ b/svg/parseable.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/part-db-light.svg b/svg/part-db-light.svg
new file mode 100644
index 00000000..584ee22c
--- /dev/null
+++ b/svg/part-db-light.svg
@@ -0,0 +1,18 @@
+
+
+Created by potrace 1.11, written by Peter Selinger 2001-2013
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/part-db.svg b/svg/part-db.svg
index 7673493a..acd50900 100644
--- a/svg/part-db.svg
+++ b/svg/part-db.svg
@@ -1,49 +1,18 @@
-
-
-
+
Created by potrace 1.11, written by Peter Selinger 2001-2013
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/svg/passbolt.svg b/svg/passbolt.svg
old mode 100644
new mode 100755
index ded1e231..c5ba7356
--- a/svg/passbolt.svg
+++ b/svg/passbolt.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/pastebin-dark.svg b/svg/pastebin-dark.svg
new file mode 100644
index 00000000..f4346b40
--- /dev/null
+++ b/svg/pastebin-dark.svg
@@ -0,0 +1 @@
+Pastebin_Integration_Icon_Bit
\ No newline at end of file
diff --git a/svg/pastebin.svg b/svg/pastebin.svg
index 13aa9ad1..496ddede 100644
--- a/svg/pastebin.svg
+++ b/svg/pastebin.svg
@@ -1 +1 @@
-Pastebin_Integration_Icon_Bit
\ No newline at end of file
+Pastebin_Integration_Icon_Bit
\ No newline at end of file
diff --git a/svg/patreon-light.svg b/svg/patreon-light.svg
new file mode 100644
index 00000000..641bacd4
--- /dev/null
+++ b/svg/patreon-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/patreon.svg b/svg/patreon.svg
index d7fd0eb0..41318eef 100644
--- a/svg/patreon.svg
+++ b/svg/patreon.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/payload-light.svg b/svg/payload-light.svg
new file mode 100644
index 00000000..3ee6f088
--- /dev/null
+++ b/svg/payload-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/payload.svg b/svg/payload.svg
new file mode 100755
index 00000000..8dd0a3f4
--- /dev/null
+++ b/svg/payload.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/paypal.svg b/svg/paypal.svg
index 0d612ca1..64ccb9ac 100644
--- a/svg/paypal.svg
+++ b/svg/paypal.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/pdfding-light.svg b/svg/pdfding-light.svg
new file mode 100644
index 00000000..189c7b4c
--- /dev/null
+++ b/svg/pdfding-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pdfding.svg b/svg/pdfding.svg
new file mode 100755
index 00000000..d9652cf8
--- /dev/null
+++ b/svg/pdfding.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/peacock-light.svg b/svg/peacock-light.svg
new file mode 100644
index 00000000..2195ff2e
--- /dev/null
+++ b/svg/peacock-light.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/peacock.svg b/svg/peacock.svg
new file mode 100755
index 00000000..22f07a4d
--- /dev/null
+++ b/svg/peacock.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/peanut-light.svg b/svg/peanut-light.svg
new file mode 100644
index 00000000..eb5fec24
--- /dev/null
+++ b/svg/peanut-light.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/peanut.svg b/svg/peanut.svg
old mode 100644
new mode 100755
index 0ab3d4d5..2f08b485
--- a/svg/peanut.svg
+++ b/svg/peanut.svg
@@ -1,2 +1,34 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/peertube.svg b/svg/peertube.svg
old mode 100644
new mode 100755
index 76c57e10..3695f1eb
--- a/svg/peertube.svg
+++ b/svg/peertube.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pelican-panel.svg b/svg/pelican-panel.svg
new file mode 100755
index 00000000..93e07064
--- /dev/null
+++ b/svg/pelican-panel.svg
@@ -0,0 +1,134 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/penpot-light.svg b/svg/penpot-light.svg
new file mode 100644
index 00000000..05465fe4
--- /dev/null
+++ b/svg/penpot-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/penpot.svg b/svg/penpot.svg
old mode 100644
new mode 100755
index c0751a60..cf58698c
--- a/svg/penpot.svg
+++ b/svg/penpot.svg
@@ -1 +1,5 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/peppermint.svg b/svg/peppermint.svg
new file mode 100755
index 00000000..4613bff4
--- /dev/null
+++ b/svg/peppermint.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pepperminty-wiki.svg b/svg/pepperminty-wiki.svg
new file mode 100755
index 00000000..c0e11370
--- /dev/null
+++ b/svg/pepperminty-wiki.svg
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/perlite.svg b/svg/perlite.svg
index 2ded8457..def433f8 100644
--- a/svg/perlite.svg
+++ b/svg/perlite.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/pfsense-light.svg b/svg/pfsense-light.svg
new file mode 100644
index 00000000..03fb24cd
--- /dev/null
+++ b/svg/pfsense-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pfsense.svg b/svg/pfsense.svg
old mode 100644
new mode 100755
index 4e91700d..075870e3
--- a/svg/pfsense.svg
+++ b/svg/pfsense.svg
@@ -1 +1,26 @@
-pfSense
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/pg-back-web.svg b/svg/pg-back-web.svg
new file mode 100755
index 00000000..548d457e
--- /dev/null
+++ b/svg/pg-back-web.svg
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/phanpy.svg b/svg/phanpy.svg
new file mode 100755
index 00000000..9235f02b
--- /dev/null
+++ b/svg/phanpy.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/phoneinfoga-light.svg b/svg/phoneinfoga-light.svg
new file mode 100644
index 00000000..5cd2c1c7
--- /dev/null
+++ b/svg/phoneinfoga-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/phoneinfoga.svg b/svg/phoneinfoga.svg
index cd894b08..673864e4 100644
--- a/svg/phoneinfoga.svg
+++ b/svg/phoneinfoga.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/phorge-light.svg b/svg/phorge-light.svg
new file mode 100644
index 00000000..c66f6a2c
--- /dev/null
+++ b/svg/phorge-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/phorge.svg b/svg/phorge.svg
new file mode 100755
index 00000000..d20b3e79
--- /dev/null
+++ b/svg/phorge.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
diff --git a/svg/phoscon-light.svg b/svg/phoscon-light.svg
new file mode 100644
index 00000000..fdc4d790
--- /dev/null
+++ b/svg/phoscon-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/photonix-light.svg b/svg/photonix-light.svg
new file mode 100644
index 00000000..6f3b1b5b
--- /dev/null
+++ b/svg/photonix-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/photopea.svg b/svg/photopea.svg
new file mode 100755
index 00000000..dbf05a42
--- /dev/null
+++ b/svg/photopea.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/svg/photoprism-light.svg b/svg/photoprism-light.svg
new file mode 100644
index 00000000..9fed7ac2
--- /dev/null
+++ b/svg/photoprism-light.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/photoprism.svg b/svg/photoprism.svg
old mode 100644
new mode 100755
index 5b48471e..9b8ba1bd
--- a/svg/photoprism.svg
+++ b/svg/photoprism.svg
@@ -1 +1,27 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/photostructure-dark.svg b/svg/photostructure-dark.svg
new file mode 100644
index 00000000..c5615bb0
--- /dev/null
+++ b/svg/photostructure-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/photoview.svg b/svg/photoview.svg
old mode 100644
new mode 100755
index cf466309..0b1ebbe5
--- a/svg/photoview.svg
+++ b/svg/photoview.svg
@@ -1 +1,40 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/php-light.svg b/svg/php-light.svg
new file mode 100644
index 00000000..4e20b531
--- /dev/null
+++ b/svg/php-light.svg
@@ -0,0 +1 @@
+Official PHP Logo
\ No newline at end of file
diff --git a/svg/pi-hole.svg b/svg/pi-hole.svg
old mode 100644
new mode 100755
index a742cfc5..b1808e5d
--- a/svg/pi-hole.svg
+++ b/svg/pi-hole.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/picsur-light.svg b/svg/picsur-light.svg
new file mode 100644
index 00000000..cc45a025
--- /dev/null
+++ b/svg/picsur-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pigallery2.svg b/svg/pigallery2.svg
index d8cf02cf..2ba26cfa 100644
--- a/svg/pigallery2.svg
+++ b/svg/pigallery2.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/pikapods.svg b/svg/pikapods.svg
new file mode 100755
index 00000000..47f40ab5
--- /dev/null
+++ b/svg/pikapods.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pikvm.svg b/svg/pikvm.svg
deleted file mode 100644
index e0117d3d..00000000
--- a/svg/pikvm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/pingdom-light.svg b/svg/pingdom-light.svg
new file mode 100644
index 00000000..a97dede0
--- /dev/null
+++ b/svg/pingdom-light.svg
@@ -0,0 +1 @@
+logo-resize
\ No newline at end of file
diff --git a/svg/pingvin-dark.svg b/svg/pingvin-dark.svg
new file mode 100644
index 00000000..9a00f6a8
--- /dev/null
+++ b/svg/pingvin-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pingvin-share-dark.svg b/svg/pingvin-share-dark.svg
new file mode 100644
index 00000000..9a00f6a8
--- /dev/null
+++ b/svg/pingvin-share-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pingvin-share.svg b/svg/pingvin-share.svg
old mode 100644
new mode 100755
index f0ceb97b..b8a6384c
--- a/svg/pingvin-share.svg
+++ b/svg/pingvin-share.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pinkary.svg b/svg/pinkary.svg
new file mode 100755
index 00000000..c778e9d3
--- /dev/null
+++ b/svg/pinkary.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/pinterest.svg b/svg/pinterest.svg
old mode 100644
new mode 100755
index afa5fd6f..3e5a23df
--- a/svg/pinterest.svg
+++ b/svg/pinterest.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/pioneer-light.svg b/svg/pioneer-light.svg
new file mode 100644
index 00000000..3728d20b
--- /dev/null
+++ b/svg/pioneer-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pioneer.svg b/svg/pioneer.svg
index c984e1a6..f64cdecd 100644
--- a/svg/pioneer.svg
+++ b/svg/pioneer.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/piped.svg b/svg/piped.svg
new file mode 100755
index 00000000..fc4efb43
--- /dev/null
+++ b/svg/piped.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pirate-proxy.svg b/svg/pirate-proxy.svg
index cd9da64c..080a191d 100644
--- a/svg/pirate-proxy.svg
+++ b/svg/pirate-proxy.svg
@@ -1 +1 @@
-The Pirate Bay Logo For more information see: http://commons.wikimedia.org/wiki/File:The_Pirate_Bay_logo.svg
\ No newline at end of file
+The Pirate Bay Logo For more information see: http://commons.wikimedia.org/wiki/File:The_Pirate_Bay_logo.svg
\ No newline at end of file
diff --git a/svg/piwigo.svg b/svg/piwigo.svg
old mode 100644
new mode 100755
index 7ddf4e88..a7c3fc33
--- a/svg/piwigo.svg
+++ b/svg/piwigo.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/pixelfed.svg b/svg/pixelfed.svg
old mode 100644
new mode 100755
index 76cd5fdd..ee7aa8d7
--- a/svg/pixelfed.svg
+++ b/svg/pixelfed.svg
@@ -1 +1,143 @@
-icon/color/svg/pixelfed-icon-color Created with Sketch.
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/plane.svg b/svg/plane.svg
new file mode 100755
index 00000000..ec3ec28c
--- /dev/null
+++ b/svg/plane.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/planka-dark.svg b/svg/planka-dark.svg
new file mode 100644
index 00000000..e26df37b
--- /dev/null
+++ b/svg/planka-dark.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/planka.svg b/svg/planka.svg
old mode 100644
new mode 100755
index 61e084cd..cdc691ce
--- a/svg/planka.svg
+++ b/svg/planka.svg
@@ -1 +1,24 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/plausible.svg b/svg/plausible.svg
old mode 100644
new mode 100755
index f43c55f0..0d4e681e
--- a/svg/plausible.svg
+++ b/svg/plausible.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/playstation.svg b/svg/playstation.svg
new file mode 100755
index 00000000..31efbbb5
--- /dev/null
+++ b/svg/playstation.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pleroma.svg b/svg/pleroma.svg
old mode 100644
new mode 100755
index 909e6e7d..aa59face
--- a/svg/pleroma.svg
+++ b/svg/pleroma.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/plesk.svg b/svg/plesk.svg
index d9089ce9..57ac3fe7 100644
--- a/svg/plesk.svg
+++ b/svg/plesk.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/plex-alt-light.svg b/svg/plex-alt-light.svg
new file mode 100644
index 00000000..3409d6ad
--- /dev/null
+++ b/svg/plex-alt-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plex-light.svg b/svg/plex-light.svg
new file mode 100644
index 00000000..24462dd8
--- /dev/null
+++ b/svg/plex-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plex-rewind.svg b/svg/plex-rewind.svg
new file mode 100755
index 00000000..8f1f4105
--- /dev/null
+++ b/svg/plex-rewind.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/plex.svg b/svg/plex.svg
old mode 100644
new mode 100755
index 55646065..f631c310
--- a/svg/plex.svg
+++ b/svg/plex.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/plexrequests-light.svg b/svg/plexrequests-light.svg
new file mode 100644
index 00000000..4d87da91
--- /dev/null
+++ b/svg/plexrequests-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pocket-casts-dark.svg b/svg/pocket-casts-dark.svg
new file mode 100644
index 00000000..e8b5a933
--- /dev/null
+++ b/svg/pocket-casts-dark.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pocket-casts.svg b/svg/pocket-casts.svg
new file mode 100755
index 00000000..87559508
--- /dev/null
+++ b/svg/pocket-casts.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/pocket-id-light.svg b/svg/pocket-id-light.svg
new file mode 100644
index 00000000..3e437676
--- /dev/null
+++ b/svg/pocket-id-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pocket-id.svg b/svg/pocket-id.svg
new file mode 100755
index 00000000..14434f2c
--- /dev/null
+++ b/svg/pocket-id.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
diff --git a/svg/pocketbase-dark.svg b/svg/pocketbase-dark.svg
new file mode 100644
index 00000000..91750613
--- /dev/null
+++ b/svg/pocketbase-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/podfetch-light.svg b/svg/podfetch-light.svg
new file mode 100644
index 00000000..03cd3ac4
--- /dev/null
+++ b/svg/podfetch-light.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/podfetch.svg b/svg/podfetch.svg
new file mode 100755
index 00000000..e177925e
--- /dev/null
+++ b/svg/podfetch.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/podman.svg b/svg/podman.svg
new file mode 100755
index 00000000..4227532d
--- /dev/null
+++ b/svg/podman.svg
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/portainer.svg b/svg/portainer.svg
old mode 100644
new mode 100755
index e8c91b36..61549874
--- a/svg/portainer.svg
+++ b/svg/portainer.svg
@@ -1 +1,27 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/postal.svg b/svg/postal.svg
new file mode 100755
index 00000000..6d64e062
--- /dev/null
+++ b/svg/postal.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/postgresql.svg b/svg/postgresql.svg
new file mode 100755
index 00000000..e2659f16
--- /dev/null
+++ b/svg/postgresql.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/posthog-light.svg b/svg/posthog-light.svg
new file mode 100644
index 00000000..bc7f6896
--- /dev/null
+++ b/svg/posthog-light.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/posthog.svg b/svg/posthog.svg
new file mode 100755
index 00000000..de56a514
--- /dev/null
+++ b/svg/posthog.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/postiz-dark.svg b/svg/postiz-dark.svg
new file mode 100644
index 00000000..0a36cf9b
--- /dev/null
+++ b/svg/postiz-dark.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/postiz.svg b/svg/postiz.svg
new file mode 100755
index 00000000..5b24d21d
--- /dev/null
+++ b/svg/postiz.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/powerdns.svg b/svg/powerdns.svg
index 39a111e7..f96657d8 100644
--- a/svg/powerdns.svg
+++ b/svg/powerdns.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/prime-video-light.svg b/svg/prime-video-light.svg
new file mode 100644
index 00000000..bb377428
--- /dev/null
+++ b/svg/prime-video-light.svg
@@ -0,0 +1 @@
+Prime Video Logo
\ No newline at end of file
diff --git a/svg/printer.svg b/svg/printer.svg
index e15cbaaa..869faf6f 100644
--- a/svg/printer.svg
+++ b/svg/printer.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/private-internet-access.svg b/svg/private-internet-access.svg
old mode 100644
new mode 100755
index 6f812d58..af26714e
--- a/svg/private-internet-access.svg
+++ b/svg/private-internet-access.svg
@@ -1 +1,45 @@
-pia-robot Created with Sketch.
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/privatebin.svg b/svg/privatebin.svg
old mode 100644
new mode 100755
index bcafdc54..f478194f
--- a/svg/privatebin.svg
+++ b/svg/privatebin.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/projectsend.svg b/svg/projectsend.svg
old mode 100644
new mode 100755
index 16d0f6da..efb50827
--- a/svg/projectsend.svg
+++ b/svg/projectsend.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/prometheus.svg b/svg/prometheus.svg
old mode 100644
new mode 100755
index 58d75c88..c6e2333b
--- a/svg/prometheus.svg
+++ b/svg/prometheus.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/proton-calendar.svg b/svg/proton-calendar.svg
old mode 100644
new mode 100755
index 77e31233..0a5d0499
--- a/svg/proton-calendar.svg
+++ b/svg/proton-calendar.svg
@@ -1 +1,35 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/proton-drive.svg b/svg/proton-drive.svg
old mode 100644
new mode 100755
index ee6d7c6e..c3041ed2
--- a/svg/proton-drive.svg
+++ b/svg/proton-drive.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/proton-pass.svg b/svg/proton-pass.svg
old mode 100644
new mode 100755
index b448bf08..0adcf9b3
--- a/svg/proton-pass.svg
+++ b/svg/proton-pass.svg
@@ -1,36 +1,70 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/proton-vpn.svg b/svg/proton-vpn.svg
old mode 100644
new mode 100755
index 24a6034e..2928c462
--- a/svg/proton-vpn.svg
+++ b/svg/proton-vpn.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/prowlarr.svg b/svg/prowlarr.svg
old mode 100644
new mode 100755
index 875cff9b..0261471b
--- a/svg/prowlarr.svg
+++ b/svg/prowlarr.svg
@@ -1 +1,177 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/proxmox-light.svg b/svg/proxmox-light.svg
new file mode 100644
index 00000000..3ac606a6
--- /dev/null
+++ b/svg/proxmox-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/proxmox.svg b/svg/proxmox.svg
old mode 100644
new mode 100755
index 86790d20..4cbca2ab
--- a/svg/proxmox.svg
+++ b/svg/proxmox.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/pterodactyl.svg b/svg/pterodactyl.svg
old mode 100644
new mode 100755
index 743ffb79..cef96f9b
--- a/svg/pterodactyl.svg
+++ b/svg/pterodactyl.svg
@@ -1 +1,173 @@
-Artboard 1
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/purelymail.svg b/svg/purelymail.svg
index 5456232b..e822ef9f 100644
--- a/svg/purelymail.svg
+++ b/svg/purelymail.svg
@@ -1 +1 @@
-Layer 3 Layer 2 Layer 5
\ No newline at end of file
+Layer 3 Layer 2 Layer 5
\ No newline at end of file
diff --git a/svg/pushover.svg b/svg/pushover.svg
old mode 100644
new mode 100755
index 5c6028c0..df82dcc8
--- a/svg/pushover.svg
+++ b/svg/pushover.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/pydio.svg b/svg/pydio.svg
index 95622e3d..fd13e3be 100644
--- a/svg/pydio.svg
+++ b/svg/pydio.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/pyload.svg b/svg/pyload.svg
old mode 100644
new mode 100755
index cf43bb4b..9a423a7c
--- a/svg/pyload.svg
+++ b/svg/pyload.svg
@@ -1 +1,101 @@
-pyLoad Logo
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/python.svg b/svg/python.svg
old mode 100644
new mode 100755
index ed532022..05e03811
--- a/svg/python.svg
+++ b/svg/python.svg
@@ -1 +1,35 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/qbittorrent.svg b/svg/qbittorrent.svg
old mode 100644
new mode 100755
index 21c4ac75..db4528c0
--- a/svg/qbittorrent.svg
+++ b/svg/qbittorrent.svg
@@ -1 +1,28 @@
-qbittorrent-new-light
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/qdirstat.svg b/svg/qdirstat.svg
index 4f5c6e63..920411c4 100644
--- a/svg/qdirstat.svg
+++ b/svg/qdirstat.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/qnap-alt.svg b/svg/qnap-alt.svg
deleted file mode 100644
index d4e46098..00000000
--- a/svg/qnap-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/qnap.svg b/svg/qnap.svg
old mode 100644
new mode 100755
index e3b81a67..181600ea
--- a/svg/qnap.svg
+++ b/svg/qnap.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/quetre.svg b/svg/quetre.svg
index 3dda7fde..32a88890 100644
--- a/svg/quetre.svg
+++ b/svg/quetre.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/quickwit.svg b/svg/quickwit.svg
new file mode 100755
index 00000000..1555a855
--- /dev/null
+++ b/svg/quickwit.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/radarr.svg b/svg/radarr.svg
old mode 100644
new mode 100755
index 93a4c923..c0f63da6
--- a/svg/radarr.svg
+++ b/svg/radarr.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/radicale.svg b/svg/radicale.svg
old mode 100644
new mode 100755
index cb6dd380..2c4f9780
--- a/svg/radicale.svg
+++ b/svg/radicale.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/rainloop.svg b/svg/rainloop.svg
index d2a57013..99ca3099 100644
--- a/svg/rainloop.svg
+++ b/svg/rainloop.svg
@@ -1 +1 @@
-background Layer 1
\ No newline at end of file
+background Layer 1
\ No newline at end of file
diff --git a/svg/rallly.svg b/svg/rallly.svg
old mode 100644
new mode 100755
index 295ad010..c8b3f50a
--- a/svg/rallly.svg
+++ b/svg/rallly.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/rancher.svg b/svg/rancher.svg
old mode 100644
new mode 100755
index a00e2678..40a34216
--- a/svg/rancher.svg
+++ b/svg/rancher.svg
@@ -1 +1,11 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/raspberry-pi-light.svg b/svg/raspberry-pi-light.svg
new file mode 100644
index 00000000..0ce0faef
--- /dev/null
+++ b/svg/raspberry-pi-light.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/raspberry-pi.svg b/svg/raspberry-pi.svg
new file mode 100755
index 00000000..01c66e7b
--- /dev/null
+++ b/svg/raspberry-pi.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/raspberrypi.svg b/svg/raspberrypi.svg
deleted file mode 100644
index 406ecbfb..00000000
--- a/svg/raspberrypi.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/rclone.svg b/svg/rclone.svg
old mode 100644
new mode 100755
index f6399b32..1947e5ce
--- a/svg/rclone.svg
+++ b/svg/rclone.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/reactive-resume-light.svg b/svg/reactive-resume-light.svg
new file mode 100644
index 00000000..88efd8b7
--- /dev/null
+++ b/svg/reactive-resume-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/reactive-resume.svg b/svg/reactive-resume.svg
old mode 100644
new mode 100755
index 7a053f78..05543cd2
--- a/svg/reactive-resume.svg
+++ b/svg/reactive-resume.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/readarr.svg b/svg/readarr.svg
old mode 100644
new mode 100755
index faae05f7..f21173f1
--- a/svg/readarr.svg
+++ b/svg/readarr.svg
@@ -1 +1,32 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/readeck.svg b/svg/readeck.svg
old mode 100644
new mode 100755
index 4949b18f..b262577a
--- a/svg/readeck.svg
+++ b/svg/readeck.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/readthedocs-light.svg b/svg/readthedocs-light.svg
new file mode 100644
index 00000000..dd78698f
--- /dev/null
+++ b/svg/readthedocs-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/readthedocs.svg b/svg/readthedocs.svg
index fa70586c..7779e766 100644
--- a/svg/readthedocs.svg
+++ b/svg/readthedocs.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/receipt-wrangler.svg b/svg/receipt-wrangler.svg
new file mode 100755
index 00000000..3f418138
--- /dev/null
+++ b/svg/receipt-wrangler.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/recipesage.svg b/svg/recipesage.svg
old mode 100644
new mode 100755
index 4e456640..20295de9
--- a/svg/recipesage.svg
+++ b/svg/recipesage.svg
@@ -1 +1,10 @@
-Created by potrace 1.11, written by Peter Selinger 2001-2013
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/reddit.svg b/svg/reddit.svg
old mode 100644
new mode 100755
index d9c429d8..9792efe9
--- a/svg/reddit.svg
+++ b/svg/reddit.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/redict.svg b/svg/redict.svg
new file mode 100755
index 00000000..46522db4
--- /dev/null
+++ b/svg/redict.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/redis.svg b/svg/redis.svg
index 05a1d067..4f6339b3 100644
--- a/svg/redis.svg
+++ b/svg/redis.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/redlib-light.svg b/svg/redlib-light.svg
new file mode 100644
index 00000000..99c34c33
--- /dev/null
+++ b/svg/redlib-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/redlib.svg b/svg/redlib.svg
new file mode 100755
index 00000000..604b1260
--- /dev/null
+++ b/svg/redlib.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/remmina.svg b/svg/remmina.svg
index a07b1b0a..bf71cffa 100644
--- a/svg/remmina.svg
+++ b/svg/remmina.svg
@@ -1,200 +1,54 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
image/svg+xml
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
+
\ No newline at end of file
diff --git a/svg/reolink.svg b/svg/reolink.svg
new file mode 100755
index 00000000..b851c326
--- /dev/null
+++ b/svg/reolink.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/requestly.svg b/svg/requestly.svg
old mode 100644
new mode 100755
index b49b7d60..67991fec
--- a/svg/requestly.svg
+++ b/svg/requestly.svg
@@ -1 +1,41 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/resiliosync-light.svg b/svg/resiliosync-light.svg
new file mode 100644
index 00000000..c8b15f27
--- /dev/null
+++ b/svg/resiliosync-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/restreamer.svg b/svg/restreamer.svg
new file mode 100755
index 00000000..1393df42
--- /dev/null
+++ b/svg/restreamer.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
diff --git a/svg/revolt-light.svg b/svg/revolt-light.svg
new file mode 100644
index 00000000..7c668624
--- /dev/null
+++ b/svg/revolt-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/revolt.svg b/svg/revolt.svg
new file mode 100755
index 00000000..87ccd6a0
--- /dev/null
+++ b/svg/revolt.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
diff --git a/svg/rhasspy-dark.svg b/svg/rhasspy-dark.svg
new file mode 100644
index 00000000..c444e07e
--- /dev/null
+++ b/svg/rhasspy-dark.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/rhasspy.svg b/svg/rhasspy.svg
old mode 100644
new mode 100755
index a853d20e..17768746
--- a/svg/rhasspy.svg
+++ b/svg/rhasspy.svg
@@ -1 +1,43 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/richy.svg b/svg/richy.svg
new file mode 100755
index 00000000..09eb27f3
--- /dev/null
+++ b/svg/richy.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/rimgo-light.svg b/svg/rimgo-light.svg
new file mode 100644
index 00000000..ba37d4d8
--- /dev/null
+++ b/svg/rimgo-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rimgo.svg b/svg/rimgo.svg
index 1ae6e241..a44bda97 100644
--- a/svg/rimgo.svg
+++ b/svg/rimgo.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/riot.svg b/svg/riot.svg
index a7b34c3d..db5426e0 100644
--- a/svg/riot.svg
+++ b/svg/riot.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/riverside-fm-light.svg b/svg/riverside-fm-light.svg
new file mode 100644
index 00000000..ea6a02a9
--- /dev/null
+++ b/svg/riverside-fm-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/riverside-fm.svg b/svg/riverside-fm.svg
new file mode 100755
index 00000000..225e8491
--- /dev/null
+++ b/svg/riverside-fm.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/rocket-chat.svg b/svg/rocket-chat.svg
new file mode 100755
index 00000000..82457330
--- /dev/null
+++ b/svg/rocket-chat.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/rocketchat.svg b/svg/rocketchat.svg
deleted file mode 100644
index e6e5e80c..00000000
--- a/svg/rocketchat.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/romm.svg b/svg/romm.svg
old mode 100644
new mode 100755
index 1fb3f1e8..fdd830c4
--- a/svg/romm.svg
+++ b/svg/romm.svg
@@ -1 +1,300 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/roundcube.svg b/svg/roundcube.svg
old mode 100644
new mode 100755
index b5d0c55f..ae6b8a17
--- a/svg/roundcube.svg
+++ b/svg/roundcube.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/rss-bridge.svg b/svg/rss-bridge.svg
old mode 100644
new mode 100755
index cf180772..0b5f9d50
--- a/svg/rss-bridge.svg
+++ b/svg/rss-bridge.svg
@@ -1 +1,54 @@
-Bridge rss
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/rss-translator.svg b/svg/rss-translator.svg
new file mode 100755
index 00000000..70c89451
--- /dev/null
+++ b/svg/rss-translator.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/rundeck.svg b/svg/rundeck.svg
old mode 100644
new mode 100755
index 4ded97a8..83c64468
--- a/svg/rundeck.svg
+++ b/svg/rundeck.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/runson-light.svg b/svg/runson-light.svg
new file mode 100644
index 00000000..72cf74cd
--- /dev/null
+++ b/svg/runson-light.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/runson.svg b/svg/runson.svg
new file mode 100755
index 00000000..aee958d7
--- /dev/null
+++ b/svg/runson.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ryot-light.svg b/svg/ryot-light.svg
new file mode 100644
index 00000000..d5cfbf56
--- /dev/null
+++ b/svg/ryot-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ryot.svg b/svg/ryot.svg
index 3c6e5448..11294a63 100644
--- a/svg/ryot.svg
+++ b/svg/ryot.svg
@@ -1,40 +1,6 @@
-
-
-
+
-
-
+
+
-
+
\ No newline at end of file
diff --git a/svg/sabnzbd-alt.svg b/svg/sabnzbd-alt.svg
deleted file mode 100644
index ffa59a39..00000000
--- a/svg/sabnzbd-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/sabnzbd-light.svg b/svg/sabnzbd-light.svg
new file mode 100644
index 00000000..bda9768e
--- /dev/null
+++ b/svg/sabnzbd-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sabnzbd.svg b/svg/sabnzbd.svg
old mode 100644
new mode 100755
index 9c03a07c..ffa59a39
--- a/svg/sabnzbd.svg
+++ b/svg/sabnzbd.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/safari.svg b/svg/safari.svg
new file mode 100644
index 00000000..c04ad582
--- /dev/null
+++ b/svg/safari.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saltcorn.svg b/svg/saltcorn.svg
new file mode 100755
index 00000000..7d965c8b
--- /dev/null
+++ b/svg/saltcorn.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/screenconnect.svg b/svg/screenconnect.svg
index 1258d1c1..944713e2 100644
--- a/svg/screenconnect.svg
+++ b/svg/screenconnect.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/scrutiny-light.svg b/svg/scrutiny-light.svg
new file mode 100644
index 00000000..30b62403
--- /dev/null
+++ b/svg/scrutiny-light.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/scrutiny.svg b/svg/scrutiny.svg
old mode 100644
new mode 100755
index fd01e1fb..41d1cc8c
--- a/svg/scrutiny.svg
+++ b/svg/scrutiny.svg
@@ -1 +1,17 @@
-background Layer 1
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/seafile.svg b/svg/seafile.svg
old mode 100644
new mode 100755
index 94eb94d5..ef6fc1fc
--- a/svg/seafile.svg
+++ b/svg/seafile.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/searxng.svg b/svg/searxng.svg
old mode 100644
new mode 100755
index 965d21d0..04c4f10b
--- a/svg/searxng.svg
+++ b/svg/searxng.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/secureai-tools-light.svg b/svg/secureai-tools-light.svg
new file mode 100644
index 00000000..520943d1
--- /dev/null
+++ b/svg/secureai-tools-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/secureai-tools.svg b/svg/secureai-tools.svg
new file mode 100755
index 00000000..b7236f06
--- /dev/null
+++ b/svg/secureai-tools.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/seelf.svg b/svg/seelf.svg
new file mode 100755
index 00000000..a29b489f
--- /dev/null
+++ b/svg/seelf.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/self-hosted-gateway.svg b/svg/self-hosted-gateway.svg
new file mode 100755
index 00000000..92370d47
--- /dev/null
+++ b/svg/self-hosted-gateway.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/selfh-st-light.svg b/svg/selfh-st-light.svg
new file mode 100644
index 00000000..7d390b1b
--- /dev/null
+++ b/svg/selfh-st-light.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/selfh-st.svg b/svg/selfh-st.svg
new file mode 100755
index 00000000..3c1605e9
--- /dev/null
+++ b/svg/selfh-st.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/semaphore-dark.svg b/svg/semaphore-dark.svg
new file mode 100644
index 00000000..dc744d34
--- /dev/null
+++ b/svg/semaphore-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/send.svg b/svg/send.svg
index e4bfb3d1..5ff50493 100644
--- a/svg/send.svg
+++ b/svg/send.svg
@@ -1,34 +1,15 @@
-
-
-
-
+
+
+
-
+
image/svg+xml
-
-
+
+
-
-
+
+
-
+
\ No newline at end of file
diff --git a/svg/sendgrid.svg b/svg/sendgrid.svg
new file mode 100755
index 00000000..102fda69
--- /dev/null
+++ b/svg/sendgrid.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/sendinblue.svg b/svg/sendinblue.svg
index c165dc81..0237ecbb 100644
--- a/svg/sendinblue.svg
+++ b/svg/sendinblue.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/sentry-light.svg b/svg/sentry-light.svg
new file mode 100644
index 00000000..547ed40a
--- /dev/null
+++ b/svg/sentry-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/sentry.svg b/svg/sentry.svg
old mode 100644
new mode 100755
index 8007f05d..95d89705
--- a/svg/sentry.svg
+++ b/svg/sentry.svg
@@ -1 +1,5 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/servarr-light.svg b/svg/servarr-light.svg
new file mode 100644
index 00000000..5a49e51d
--- /dev/null
+++ b/svg/servarr-light.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/servarr.svg b/svg/servarr.svg
old mode 100644
new mode 100755
index afed0e99..cf52b7d4
--- a/svg/servarr.svg
+++ b/svg/servarr.svg
@@ -1 +1,42 @@
-servarr_light_
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/serviio-light.svg b/svg/serviio-light.svg
new file mode 100644
index 00000000..9c65a6d2
--- /dev/null
+++ b/svg/serviio-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shaarli.svg b/svg/shaarli.svg
new file mode 100755
index 00000000..110a7340
--- /dev/null
+++ b/svg/shaarli.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/shell-light.svg b/svg/shell-light.svg
new file mode 100644
index 00000000..d22dd1a8
--- /dev/null
+++ b/svg/shell-light.svg
@@ -0,0 +1 @@
+BASH_logo-transparent-bg-bw
\ No newline at end of file
diff --git a/svg/shell-tips-light.svg b/svg/shell-tips-light.svg
new file mode 100644
index 00000000..38dc2658
--- /dev/null
+++ b/svg/shell-tips-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shell-tips.svg b/svg/shell-tips.svg
index 932d2ed1..18c70ff8 100644
--- a/svg/shell-tips.svg
+++ b/svg/shell-tips.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/shell.svg b/svg/shell.svg
index 2178a7c3..b211eb44 100644
--- a/svg/shell.svg
+++ b/svg/shell.svg
@@ -1 +1 @@
-BASH_logo-transparent-bg-bw
\ No newline at end of file
+BASH_logo-transparent-bg-bw
\ No newline at end of file
diff --git a/svg/shellhub.svg b/svg/shellhub.svg
new file mode 100755
index 00000000..17e585d9
--- /dev/null
+++ b/svg/shellhub.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/shlink.svg b/svg/shlink.svg
old mode 100644
new mode 100755
index bbf2be45..19a00aae
--- a/svg/shlink.svg
+++ b/svg/shlink.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/shoko-server.svg b/svg/shoko-server.svg
new file mode 100755
index 00000000..88397077
--- /dev/null
+++ b/svg/shoko-server.svg
@@ -0,0 +1,309 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/shopify.svg b/svg/shopify.svg
new file mode 100755
index 00000000..5ad37a1b
--- /dev/null
+++ b/svg/shopify.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/signal-transparent.svg b/svg/signal-transparent.svg
deleted file mode 100644
index fe655b01..00000000
--- a/svg/signal-transparent.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/signal.svg b/svg/signal.svg
old mode 100644
new mode 100755
index 90a2cb47..c8eb4abf
--- a/svg/signal.svg
+++ b/svg/signal.svg
@@ -1 +1,26 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/simplex-chat.svg b/svg/simplex-chat.svg
new file mode 100755
index 00000000..535cf57b
--- /dev/null
+++ b/svg/simplex-chat.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/siyuan.svg b/svg/siyuan.svg
new file mode 100755
index 00000000..62a2b5b9
--- /dev/null
+++ b/svg/siyuan.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/slack.svg b/svg/slack.svg
old mode 100644
new mode 100755
index 1f9731dd..afcbfaa7
--- a/svg/slack.svg
+++ b/svg/slack.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/slash-light.svg b/svg/slash-light.svg
new file mode 100644
index 00000000..5f5e945b
--- /dev/null
+++ b/svg/slash-light.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/slash.svg b/svg/slash.svg
new file mode 100755
index 00000000..96593271
--- /dev/null
+++ b/svg/slash.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/slice.svg b/svg/slice.svg
index 8503e26a..ab3c32c6 100644
--- a/svg/slice.svg
+++ b/svg/slice.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/slskd.svg b/svg/slskd.svg
old mode 100644
new mode 100755
index 3866537e..81c69cb4
--- a/svg/slskd.svg
+++ b/svg/slskd.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/snapcast-alt-light.svg b/svg/snapcast-alt-light.svg
deleted file mode 100644
index f8636422..00000000
--- a/svg/snapcast-alt-light.svg
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
-
-
-
-
-
-
- image/svg+xml
-
-
-
-
-
-
-
-
- Snapcast
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/svg/snapcast-alt.svg b/svg/snapcast-alt.svg
deleted file mode 100644
index bda734e4..00000000
--- a/svg/snapcast-alt.svg
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
-
-
-
-
-
-
- image/svg+xml
-
-
-
-
-
-
-
-
- Snapcast
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/svg/snapchat-dark.svg b/svg/snapchat-dark.svg
new file mode 100644
index 00000000..bebda156
--- /dev/null
+++ b/svg/snapchat-dark.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/snapchat.svg b/svg/snapchat.svg
old mode 100644
new mode 100755
index e2652e74..d025a2ec
--- a/svg/snapchat.svg
+++ b/svg/snapchat.svg
@@ -1 +1,58 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/snappymail-light.svg b/svg/snappymail-light.svg
new file mode 100644
index 00000000..5fecefd1
--- /dev/null
+++ b/svg/snappymail-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snappymail.svg b/svg/snappymail.svg
index c8098664..46b0a7c7 100644
--- a/svg/snappymail.svg
+++ b/svg/snappymail.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/snikket.svg b/svg/snikket.svg
new file mode 100755
index 00000000..7b6c4061
--- /dev/null
+++ b/svg/snikket.svg
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/socialhome.svg b/svg/socialhome.svg
new file mode 100755
index 00000000..5b4d2057
--- /dev/null
+++ b/svg/socialhome.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/sogo.svg b/svg/sogo.svg
index 748ee954..6fc506c2 100644
--- a/svg/sogo.svg
+++ b/svg/sogo.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/solidtime-light.svg b/svg/solidtime-light.svg
new file mode 100644
index 00000000..c8d56559
--- /dev/null
+++ b/svg/solidtime-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/solidtime.svg b/svg/solidtime.svg
new file mode 100755
index 00000000..566fd551
--- /dev/null
+++ b/svg/solidtime.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/sonarqube.svg b/svg/sonarqube.svg
old mode 100644
new mode 100755
index c6bb3072..19d62299
--- a/svg/sonarqube.svg
+++ b/svg/sonarqube.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/sonarr-dark.svg b/svg/sonarr-dark.svg
new file mode 100644
index 00000000..0855d382
--- /dev/null
+++ b/svg/sonarr-dark.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/sonarr.svg b/svg/sonarr.svg
old mode 100644
new mode 100755
index fc699468..a56dc1e6
--- a/svg/sonarr.svg
+++ b/svg/sonarr.svg
@@ -1 +1,33 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/sophos-dark.svg b/svg/sophos-dark.svg
new file mode 100644
index 00000000..63559c7a
--- /dev/null
+++ b/svg/sophos-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sparkleshare.svg b/svg/sparkleshare.svg
index 25515112..667e4ce5 100644
--- a/svg/sparkleshare.svg
+++ b/svg/sparkleshare.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/specifically-clementines.svg b/svg/specifically-clementines.svg
new file mode 100755
index 00000000..9fa1b3fe
--- /dev/null
+++ b/svg/specifically-clementines.svg
@@ -0,0 +1,310 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/sphinx-doc.svg b/svg/sphinx-doc.svg
index d4a6bb2d..d79bbf03 100644
--- a/svg/sphinx-doc.svg
+++ b/svg/sphinx-doc.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/sphinx.svg b/svg/sphinx.svg
index d4a6bb2d..d79bbf03 100644
--- a/svg/sphinx.svg
+++ b/svg/sphinx.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/spoolman.svg b/svg/spoolman.svg
old mode 100644
new mode 100755
index 1b87d8ae..6b7c3e9c
--- a/svg/spoolman.svg
+++ b/svg/spoolman.svg
@@ -1 +1,48 @@
-Created with Fabric.js 5.3.0
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/spotify.svg b/svg/spotify.svg
old mode 100644
new mode 100755
index 506cd26c..636b6086
--- a/svg/spotify.svg
+++ b/svg/spotify.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/sqlitebrowser.svg b/svg/sqlitebrowser.svg
index b91d59db..ac7a07cc 100644
--- a/svg/sqlitebrowser.svg
+++ b/svg/sqlitebrowser.svg
@@ -1 +1 @@
-logo
\ No newline at end of file
+logo
\ No newline at end of file
diff --git a/svg/squidex.svg b/svg/squidex.svg
index 705633a6..59d9d1e5 100644
--- a/svg/squidex.svg
+++ b/svg/squidex.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/squirrel-servers-manager.svg b/svg/squirrel-servers-manager.svg
new file mode 100755
index 00000000..7e2c7260
--- /dev/null
+++ b/svg/squirrel-servers-manager.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/sshwifty.svg b/svg/sshwifty.svg
old mode 100644
new mode 100755
index 81519216..72f5ee45
--- a/svg/sshwifty.svg
+++ b/svg/sshwifty.svg
@@ -1 +1,73 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/stalwart-mail-server.svg b/svg/stalwart-mail-server.svg
new file mode 100755
index 00000000..9d907784
--- /dev/null
+++ b/svg/stalwart-mail-server.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/stalwart.svg b/svg/stalwart.svg
index 9c24f9a7..168119e7 100644
--- a/svg/stalwart.svg
+++ b/svg/stalwart.svg
@@ -1,8 +1,6 @@
-
-
-
+
-
+
\ No newline at end of file
diff --git a/svg/standard-notes.svg b/svg/standard-notes.svg
new file mode 100755
index 00000000..95c807c7
--- /dev/null
+++ b/svg/standard-notes.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
diff --git a/svg/steam.svg b/svg/steam.svg
old mode 100644
new mode 100755
index fb6663c5..76943553
--- a/svg/steam.svg
+++ b/svg/steam.svg
@@ -1 +1,34 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/step-ca.svg b/svg/step-ca.svg
new file mode 100755
index 00000000..17a47b1d
--- /dev/null
+++ b/svg/step-ca.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/svg/stirling-pdf.svg b/svg/stirling-pdf.svg
old mode 100644
new mode 100755
index a8511519..a02f995c
--- a/svg/stirling-pdf.svg
+++ b/svg/stirling-pdf.svg
@@ -1 +1,24 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/storj.svg b/svg/storj.svg
index 1efb1991..581eb7d2 100644
--- a/svg/storj.svg
+++ b/svg/storj.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/storm.svg b/svg/storm.svg
index 2ce37b11..232738f0 100644
--- a/svg/storm.svg
+++ b/svg/storm.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/stormkit.svg b/svg/stormkit.svg
new file mode 100755
index 00000000..9de33b0d
--- /dev/null
+++ b/svg/stormkit.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/subatic.svg b/svg/subatic.svg
new file mode 100755
index 00000000..31135b72
--- /dev/null
+++ b/svg/subatic.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/sunshine.svg b/svg/sunshine.svg
index e76b7de4..4e2f315f 100644
--- a/svg/sunshine.svg
+++ b/svg/sunshine.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/supabase.svg b/svg/supabase.svg
new file mode 100755
index 00000000..79648f44
--- /dev/null
+++ b/svg/supabase.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/surveymonkey.svg b/svg/surveymonkey.svg
new file mode 100755
index 00000000..69373d77
--- /dev/null
+++ b/svg/surveymonkey.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/swarmpit.svg b/svg/swarmpit.svg
old mode 100644
new mode 100755
index 3918df72..318b3c69
--- a/svg/swarmpit.svg
+++ b/svg/swarmpit.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/symmetricom-light.svg b/svg/symmetricom-light.svg
new file mode 100644
index 00000000..5a3eb8f5
--- /dev/null
+++ b/svg/symmetricom-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/synapse-light.svg b/svg/synapse-light.svg
new file mode 100644
index 00000000..c9c56b2f
--- /dev/null
+++ b/svg/synapse-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/synapse.svg b/svg/synapse.svg
new file mode 100755
index 00000000..a4b0f5a5
--- /dev/null
+++ b/svg/synapse.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/syncthing-dark.svg b/svg/syncthing-dark.svg
new file mode 100644
index 00000000..410aeaed
--- /dev/null
+++ b/svg/syncthing-dark.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/syncthing.svg b/svg/syncthing.svg
old mode 100644
new mode 100755
index 7c112fa8..113f1dbe
--- a/svg/syncthing.svg
+++ b/svg/syncthing.svg
@@ -1 +1,37 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/synology-light.svg b/svg/synology-light.svg
new file mode 100644
index 00000000..3330f1bc
--- /dev/null
+++ b/svg/synology-light.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/synology.svg b/svg/synology.svg
old mode 100644
new mode 100755
index 73ca4bb5..eeed20f4
--- a/svg/synology.svg
+++ b/svg/synology.svg
@@ -1 +1,74 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/tailscale-light.svg b/svg/tailscale-light.svg
new file mode 100644
index 00000000..6cdd665d
--- /dev/null
+++ b/svg/tailscale-light.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tailscale.svg b/svg/tailscale.svg
old mode 100644
new mode 100755
index 71577997..cc908d79
--- a/svg/tailscale.svg
+++ b/svg/tailscale.svg
@@ -1 +1,24 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/tandoor-recipes.svg b/svg/tandoor-recipes.svg
new file mode 100755
index 00000000..fc37e92f
--- /dev/null
+++ b/svg/tandoor-recipes.svg
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/tandoor.svg b/svg/tandoor.svg
deleted file mode 100644
index 01d3e6f2..00000000
--- a/svg/tandoor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/tandoorrecipes.svg b/svg/tandoorrecipes.svg
deleted file mode 100644
index 01d3e6f2..00000000
--- a/svg/tandoorrecipes.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/tangerine-ui.svg b/svg/tangerine-ui.svg
new file mode 100755
index 00000000..fc0e614a
--- /dev/null
+++ b/svg/tangerine-ui.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/taskcafe.svg b/svg/taskcafe.svg
index c8c5a176..c4445124 100644
--- a/svg/taskcafe.svg
+++ b/svg/taskcafe.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/tasmota-light.svg b/svg/tasmota-light.svg
new file mode 100644
index 00000000..7b4b451d
--- /dev/null
+++ b/svg/tasmota-light.svg
@@ -0,0 +1 @@
+Element 1
\ No newline at end of file
diff --git a/svg/tautulli.svg b/svg/tautulli.svg
old mode 100644
new mode 100755
index 95c4b9af..bf66c5c8
--- a/svg/tautulli.svg
+++ b/svg/tautulli.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/teamcity-light.svg b/svg/teamcity-light.svg
new file mode 100644
index 00000000..914c7cb5
--- /dev/null
+++ b/svg/teamcity-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/teamspeak.svg b/svg/teamspeak.svg
index 52342d2b..a4cb36c9 100644
--- a/svg/teamspeak.svg
+++ b/svg/teamspeak.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/telegraf.svg b/svg/telegraf.svg
index 2ef69291..069c6194 100644
--- a/svg/telegraf.svg
+++ b/svg/telegraf.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/telegram.svg b/svg/telegram.svg
old mode 100644
new mode 100755
index 6f88d42b..ec0bea67
--- a/svg/telegram.svg
+++ b/svg/telegram.svg
@@ -1 +1,25 @@
-Telegram_logo
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/teleport.svg b/svg/teleport.svg
old mode 100644
new mode 100755
index 5171f280..05c0112c
--- a/svg/teleport.svg
+++ b/svg/teleport.svg
@@ -1 +1,24 @@
-teleport medallion Created with Sketch.
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/terraform.svg b/svg/terraform.svg
index 37d94e48..620f2d7a 100644
--- a/svg/terraform.svg
+++ b/svg/terraform.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/teslamate-light.svg b/svg/teslamate-light.svg
new file mode 100644
index 00000000..12193d42
--- /dev/null
+++ b/svg/teslamate-light.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/teslamate.svg b/svg/teslamate.svg
old mode 100644
new mode 100755
index 11113d21..f0f4c1de
--- a/svg/teslamate.svg
+++ b/svg/teslamate.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/theia-light.svg b/svg/theia-light.svg
new file mode 100644
index 00000000..c905247c
--- /dev/null
+++ b/svg/theia-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thelounge.svg b/svg/thelounge.svg
index f2cebd40..4e85fa9f 100644
--- a/svg/thelounge.svg
+++ b/svg/thelounge.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/threads-light.svg b/svg/threads-light.svg
new file mode 100644
index 00000000..f9b5946e
--- /dev/null
+++ b/svg/threads-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/threads.svg b/svg/threads.svg
new file mode 100755
index 00000000..19d5b487
--- /dev/null
+++ b/svg/threads.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/thunderbird.svg b/svg/thunderbird.svg
old mode 100644
new mode 100755
index dcae391f..e785cd56
--- a/svg/thunderbird.svg
+++ b/svg/thunderbird.svg
@@ -1 +1,118 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/tianji-light.svg b/svg/tianji-light.svg
new file mode 100644
index 00000000..6e2c6411
--- /dev/null
+++ b/svg/tianji-light.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tianji.svg b/svg/tianji.svg
new file mode 100755
index 00000000..f2f09e43
--- /dev/null
+++ b/svg/tianji.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tiddlywiki-light.svg b/svg/tiddlywiki-light.svg
new file mode 100644
index 00000000..02e45045
--- /dev/null
+++ b/svg/tiddlywiki-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tiddlywiki.svg b/svg/tiddlywiki.svg
new file mode 100755
index 00000000..ecbadee5
--- /dev/null
+++ b/svg/tiddlywiki.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tiktok-light.svg b/svg/tiktok-light.svg
new file mode 100644
index 00000000..a5e25a67
--- /dev/null
+++ b/svg/tiktok-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tiktok.svg b/svg/tiktok.svg
old mode 100644
new mode 100755
index 64c4fa41..d9a75df9
--- a/svg/tiktok.svg
+++ b/svg/tiktok.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/timetagger-light.svg b/svg/timetagger-light.svg
new file mode 100644
index 00000000..f1715a72
--- /dev/null
+++ b/svg/timetagger-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tmdb.svg b/svg/tmdb.svg
new file mode 100755
index 00000000..5027c709
--- /dev/null
+++ b/svg/tmdb.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/todoist-dark.svg b/svg/todoist-dark.svg
new file mode 100644
index 00000000..137e8676
--- /dev/null
+++ b/svg/todoist-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tolgee.svg b/svg/tolgee.svg
index a16c83e6..ac1b3e0c 100644
--- a/svg/tolgee.svg
+++ b/svg/tolgee.svg
@@ -1,39 +1,3 @@
-
-
-
-
+
+
+
\ No newline at end of file
diff --git a/svg/tooljet-dark.svg b/svg/tooljet-dark.svg
new file mode 100644
index 00000000..62e62ed4
--- /dev/null
+++ b/svg/tooljet-dark.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tooljet.svg b/svg/tooljet.svg
old mode 100644
new mode 100755
index 0b0c8260..29307acd
--- a/svg/tooljet.svg
+++ b/svg/tooljet.svg
@@ -1 +1,31 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/touitomamout.svg b/svg/touitomamout.svg
new file mode 100755
index 00000000..e5bf8cbb
--- /dev/null
+++ b/svg/touitomamout.svg
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tp-link.svg b/svg/tp-link.svg
new file mode 100755
index 00000000..6b6906bd
--- /dev/null
+++ b/svg/tp-link.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
diff --git a/svg/tpdb.svg b/svg/tpdb.svg
new file mode 100755
index 00000000..79f43b6d
--- /dev/null
+++ b/svg/tpdb.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/traccar-dark.svg b/svg/traccar-dark.svg
new file mode 100644
index 00000000..df19136a
--- /dev/null
+++ b/svg/traccar-dark.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/traccar.svg b/svg/traccar.svg
old mode 100644
new mode 100755
index 8f75dde1..51bbcb46
--- a/svg/traccar.svg
+++ b/svg/traccar.svg
@@ -1 +1,21 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/traefik-proxy.svg b/svg/traefik-proxy.svg
index ed035a55..b05ff47a 100644
--- a/svg/traefik-proxy.svg
+++ b/svg/traefik-proxy.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/traefik.svg b/svg/traefik.svg
old mode 100644
new mode 100755
index 9a333643..6dff5d1a
--- a/svg/traefik.svg
+++ b/svg/traefik.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/trakt.svg b/svg/trakt.svg
old mode 100644
new mode 100755
index 1efa24e0..303685b6
--- a/svg/trakt.svg
+++ b/svg/trakt.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/transmission.svg b/svg/transmission.svg
old mode 100644
new mode 100755
index 6206fed6..a06260a4
--- a/svg/transmission.svg
+++ b/svg/transmission.svg
@@ -1 +1,150 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/trilium.svg b/svg/trilium.svg
old mode 100644
new mode 100755
index e0d20000..feb85104
--- a/svg/trilium.svg
+++ b/svg/trilium.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/triliumnext.svg b/svg/triliumnext.svg
new file mode 100755
index 00000000..77f632d6
--- /dev/null
+++ b/svg/triliumnext.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/truenas-core.svg b/svg/truenas-core.svg
new file mode 100755
index 00000000..2dea7aed
--- /dev/null
+++ b/svg/truenas-core.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/truenas-scale.svg b/svg/truenas-scale.svg
new file mode 100755
index 00000000..4e0ea505
--- /dev/null
+++ b/svg/truenas-scale.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/truenas.svg b/svg/truenas.svg
index c3d96ff7..53c9ac1c 100644
--- a/svg/truenas.svg
+++ b/svg/truenas.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/tubesync-light.svg b/svg/tubesync-light.svg
new file mode 100644
index 00000000..564d9a73
--- /dev/null
+++ b/svg/tubesync-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/tubesync.svg b/svg/tubesync.svg
old mode 100644
new mode 100755
index 04500810..7bbfb891
--- a/svg/tubesync.svg
+++ b/svg/tubesync.svg
@@ -1,9 +1,20 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/tumblr.svg b/svg/tumblr.svg
new file mode 100755
index 00000000..78d4e02c
--- /dev/null
+++ b/svg/tumblr.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/turbopack-light.svg b/svg/turbopack-light.svg
index 9bac83b0..59eb66e5 100644
--- a/svg/turbopack-light.svg
+++ b/svg/turbopack-light.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/tvdb.svg b/svg/tvdb.svg
new file mode 100755
index 00000000..23072a7e
--- /dev/null
+++ b/svg/tvdb.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/twingate-light.svg b/svg/twingate-light.svg
new file mode 100644
index 00000000..2b103ce1
--- /dev/null
+++ b/svg/twingate-light.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/twingate.svg b/svg/twingate.svg
old mode 100644
new mode 100755
index eccdd5a2..b76b90f4
--- a/svg/twingate.svg
+++ b/svg/twingate.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/twitch.svg b/svg/twitch.svg
old mode 100644
new mode 100755
index ca888b1e..916d200e
--- a/svg/twitch.svg
+++ b/svg/twitch.svg
@@ -1 +1,11 @@
-Asset 2
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/twitter.svg b/svg/twitter.svg
old mode 100644
new mode 100755
index 233ffebd..fcc0c04c
--- a/svg/twitter.svg
+++ b/svg/twitter.svg
@@ -1 +1,8 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/typemill-light.svg b/svg/typemill-light.svg
new file mode 100644
index 00000000..d0d13fda
--- /dev/null
+++ b/svg/typemill-light.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/typemill.svg b/svg/typemill.svg
new file mode 100755
index 00000000..e7c91d0b
--- /dev/null
+++ b/svg/typemill.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ubiquiti-unifi.svg b/svg/ubiquiti-unifi.svg
new file mode 100755
index 00000000..4946d62c
--- /dev/null
+++ b/svg/ubiquiti-unifi.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
diff --git a/svg/ubuntu-alt.svg b/svg/ubuntu-linux-alt.svg
similarity index 100%
rename from svg/ubuntu-alt.svg
rename to svg/ubuntu-linux-alt.svg
diff --git a/svg/ubuntu-linux.svg b/svg/ubuntu-linux.svg
new file mode 100755
index 00000000..fe163a57
--- /dev/null
+++ b/svg/ubuntu-linux.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ubuntu.svg b/svg/ubuntu.svg
deleted file mode 100644
index 406f3fef..00000000
--- a/svg/ubuntu.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/udemy-light.svg b/svg/udemy-light.svg
new file mode 100644
index 00000000..c3587854
--- /dev/null
+++ b/svg/udemy-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ultimate-guitar-light.svg b/svg/ultimate-guitar-light.svg
new file mode 100644
index 00000000..04cbab4c
--- /dev/null
+++ b/svg/ultimate-guitar-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/umami-analytics.svg b/svg/umami-analytics.svg
deleted file mode 100644
index 6dfcb6a4..00000000
--- a/svg/umami-analytics.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/umami-light.svg b/svg/umami-light.svg
new file mode 100644
index 00000000..1220e15b
--- /dev/null
+++ b/svg/umami-light.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/umami.svg b/svg/umami.svg
old mode 100644
new mode 100755
index 6dfcb6a4..78435db7
--- a/svg/umami.svg
+++ b/svg/umami.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/umbrel.svg b/svg/umbrel.svg
old mode 100644
new mode 100755
index 5ddde50d..82f41ed9
--- a/svg/umbrel.svg
+++ b/svg/umbrel.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/unbound.svg b/svg/unbound.svg
old mode 100644
new mode 100755
index cb3e3635..be458caf
--- a/svg/unbound.svg
+++ b/svg/unbound.svg
@@ -1,15 +1,31 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/undb.svg b/svg/undb.svg
new file mode 100755
index 00000000..8d28ada5
--- /dev/null
+++ b/svg/undb.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/unifi-dark.svg b/svg/unifi-dark.svg
new file mode 100644
index 00000000..518fca9b
--- /dev/null
+++ b/svg/unifi-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unifi-voucher-site.svg b/svg/unifi-voucher-site.svg
new file mode 100755
index 00000000..17fd9ff3
--- /dev/null
+++ b/svg/unifi-voucher-site.svg
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/unraid-alt.svg b/svg/unraid-alt.svg
deleted file mode 100644
index 7d695dad..00000000
--- a/svg/unraid-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/unraid.svg b/svg/unraid.svg
old mode 100644
new mode 100755
index 2084909e..b4eda0a0
--- a/svg/unraid.svg
+++ b/svg/unraid.svg
@@ -1 +1,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/ups.svg b/svg/ups.svg
index ba6c2973..701694f2 100644
--- a/svg/ups.svg
+++ b/svg/ups.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/upsnap.svg b/svg/upsnap.svg
old mode 100644
new mode 100755
index b6b06ece..714cd692
--- a/svg/upsnap.svg
+++ b/svg/upsnap.svg
@@ -1 +1,147 @@
-P A C K A G E
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ P
+ A
+ C
+ K
+ A
+ G
+ E
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/uptime-kuma.svg b/svg/uptime-kuma.svg
old mode 100644
new mode 100755
index 10011b53..bcb07d36
--- a/svg/uptime-kuma.svg
+++ b/svg/uptime-kuma.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/valetudo.svg b/svg/valetudo.svg
old mode 100644
new mode 100755
index dc5eb4c7..dfa92114
--- a/svg/valetudo.svg
+++ b/svg/valetudo.svg
@@ -1 +1,30 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/valkey.svg b/svg/valkey.svg
new file mode 100755
index 00000000..10d0878f
--- /dev/null
+++ b/svg/valkey.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/svg/vault-light.svg b/svg/vault-light.svg
new file mode 100644
index 00000000..02edfda3
--- /dev/null
+++ b/svg/vault-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vaultwarden-light.svg b/svg/vaultwarden-light.svg
new file mode 100644
index 00000000..474aecaf
--- /dev/null
+++ b/svg/vaultwarden-light.svg
@@ -0,0 +1,26 @@
+
+ Vaultwarden Icon
+
+
+
+ image/svg+xml
+
+ Vaultwarden Icon
+
+
+ Mathijs van Veluw
+
+
+ Rust Logo
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/vaultwarden.svg b/svg/vaultwarden.svg
old mode 100644
new mode 100755
index aa36cc1a..67d617e6
--- a/svg/vaultwarden.svg
+++ b/svg/vaultwarden.svg
@@ -1 +1,86 @@
-Vaultwarden Icon
\ No newline at end of file
+
+
+ Vaultwarden Icon
+
+
+
+ image/svg+xml
+
+ Vaultwarden Icon
+
+
+ Mathijs van Veluw
+
+
+ Rust Logo
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/vector.svg b/svg/vector.svg
new file mode 100755
index 00000000..bbcdab12
--- /dev/null
+++ b/svg/vector.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/vercel-light.svg b/svg/vercel-light.svg
index 64eeda0a..29bde6be 100644
--- a/svg/vercel-light.svg
+++ b/svg/vercel-light.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/verizon.svg b/svg/verizon.svg
index 01aa09b4..df6b4b82 100644
--- a/svg/verizon.svg
+++ b/svg/verizon.svg
@@ -1 +1 @@
-verizon-check
\ No newline at end of file
+verizon-check
\ No newline at end of file
diff --git a/svg/victoriametrics-light.svg b/svg/victoriametrics-light.svg
new file mode 100644
index 00000000..fcea8495
--- /dev/null
+++ b/svg/victoriametrics-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/victoriametrics.svg b/svg/victoriametrics.svg
new file mode 100755
index 00000000..99d0ef5e
--- /dev/null
+++ b/svg/victoriametrics.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/svg/vidzy.svg b/svg/vidzy.svg
new file mode 100755
index 00000000..0cfc2e63
--- /dev/null
+++ b/svg/vidzy.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/vikunja.svg b/svg/vikunja.svg
old mode 100644
new mode 100755
index 3b127f4a..be596721
--- a/svg/vikunja.svg
+++ b/svg/vikunja.svg
@@ -1 +1,57 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/viseron-light.svg b/svg/viseron-light.svg
new file mode 100644
index 00000000..347076b8
--- /dev/null
+++ b/svg/viseron-light.svg
@@ -0,0 +1,1392 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/viseron.svg b/svg/viseron.svg
old mode 100644
new mode 100755
index 4264e6df..530479c8
--- a/svg/viseron.svg
+++ b/svg/viseron.svg
@@ -1 +1,1393 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/visual-studio-code.svg b/svg/visual-studio-code.svg
new file mode 100755
index 00000000..155262c0
--- /dev/null
+++ b/svg/visual-studio-code.svg
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/voilib.svg b/svg/voilib.svg
new file mode 100755
index 00000000..ca702e09
--- /dev/null
+++ b/svg/voilib.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
diff --git a/svg/voltaserve-light.svg b/svg/voltaserve-light.svg
new file mode 100644
index 00000000..f3528554
--- /dev/null
+++ b/svg/voltaserve-light.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/voltaserve.svg b/svg/voltaserve.svg
new file mode 100755
index 00000000..b0798abd
--- /dev/null
+++ b/svg/voltaserve.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
diff --git a/svg/volumio-light.svg b/svg/volumio-light.svg
index 74efe8b8..11d46875 100644
--- a/svg/volumio-light.svg
+++ b/svg/volumio-light.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/voron.svg b/svg/voron.svg
new file mode 100755
index 00000000..22891b3e
--- /dev/null
+++ b/svg/voron.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/vuetorrent.svg b/svg/vuetorrent.svg
new file mode 100755
index 00000000..23d4c1cc
--- /dev/null
+++ b/svg/vuetorrent.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/vultr.svg b/svg/vultr.svg
index a9c0d144..b882cbd4 100644
--- a/svg/vultr.svg
+++ b/svg/vultr.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/wakapi.svg b/svg/wakapi.svg
new file mode 100755
index 00000000..c83fe884
--- /dev/null
+++ b/svg/wakapi.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wakatime-light.svg b/svg/wakatime-light.svg
new file mode 100644
index 00000000..a36abe2e
--- /dev/null
+++ b/svg/wakatime-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wallabag-light.svg b/svg/wallabag-light.svg
new file mode 100644
index 00000000..ff4fff33
--- /dev/null
+++ b/svg/wallabag-light.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wallabag.svg b/svg/wallabag.svg
old mode 100644
new mode 100755
index 6c757414..ad79a2e3
--- a/svg/wallabag.svg
+++ b/svg/wallabag.svg
@@ -1 +1,31 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/svg/wanderer-light.svg b/svg/wanderer-light.svg
new file mode 100644
index 00000000..ba2e5b42
--- /dev/null
+++ b/svg/wanderer-light.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wanderer.svg b/svg/wanderer.svg
new file mode 100755
index 00000000..8ff2faf7
--- /dev/null
+++ b/svg/wanderer.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/warpgate.svg b/svg/warpgate.svg
index 2f41abe1..ea20cf74 100644
--- a/svg/warpgate.svg
+++ b/svg/warpgate.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/watcharr-light.svg b/svg/watcharr-light.svg
new file mode 100644
index 00000000..c5a03ab8
--- /dev/null
+++ b/svg/watcharr-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/watchtower.svg b/svg/watchtower.svg
old mode 100644
new mode 100755
index c050a3b9..f330f2a2
--- a/svg/watchtower.svg
+++ b/svg/watchtower.svg
@@ -1 +1,44 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wazuh-opaque.svg b/svg/wazuh-opaque.svg
deleted file mode 100644
index 993fd730..00000000
--- a/svg/wazuh-opaque.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/web-check-dark.svg b/svg/web-check-dark.svg
new file mode 100644
index 00000000..b4dfb5ff
--- /dev/null
+++ b/svg/web-check-dark.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/web-check-light.svg b/svg/web-check-light.svg
deleted file mode 100644
index ed4ef50c..00000000
--- a/svg/web-check-light.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/svg/webkit.svg b/svg/webkit.svg
index 2f53f660..56a78be3 100644
--- a/svg/webkit.svg
+++ b/svg/webkit.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/webmin.svg b/svg/webmin.svg
index c3b27d6b..996006db 100644
--- a/svg/webmin.svg
+++ b/svg/webmin.svg
@@ -1,99 +1,26 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
+
image/svg+xml
-
+
-
-
-
-
+
+
+
+
-
+
\ No newline at end of file
diff --git a/svg/webtorrent.svg b/svg/webtorrent.svg
index 745f29f2..969e94b6 100644
--- a/svg/webtorrent.svg
+++ b/svg/webtorrent.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/webtrees.svg b/svg/webtrees.svg
new file mode 100755
index 00000000..5ce91449
--- /dev/null
+++ b/svg/webtrees.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wekan.svg b/svg/wekan.svg
old mode 100644
new mode 100755
index 6cc74870..29dd9f5a
--- a/svg/wekan.svg
+++ b/svg/wekan.svg
@@ -1 +1,59 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wger.svg b/svg/wger.svg
old mode 100644
new mode 100755
index a0642865..6d76fefe
--- a/svg/wger.svg
+++ b/svg/wger.svg
@@ -1 +1,27 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/whats-up-docker-light.svg b/svg/whats-up-docker-light.svg
new file mode 100644
index 00000000..6d55dcfb
--- /dev/null
+++ b/svg/whats-up-docker-light.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/whats-up-docker.svg b/svg/whats-up-docker.svg
old mode 100644
new mode 100755
index d7762e63..7213eddb
--- a/svg/whats-up-docker.svg
+++ b/svg/whats-up-docker.svg
@@ -1,10 +1,9 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/svg/whatsapp.svg b/svg/whatsapp.svg
old mode 100644
new mode 100755
index c79479fe..640422c5
--- a/svg/whatsapp.svg
+++ b/svg/whatsapp.svg
@@ -1 +1,37 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wifiman.svg b/svg/wifiman.svg
deleted file mode 100644
index e7835309..00000000
--- a/svg/wifiman.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/wikidocs.svg b/svg/wikidocs.svg
new file mode 100755
index 00000000..21e4b1f5
--- /dev/null
+++ b/svg/wikidocs.svg
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/wikijs-full.svg b/svg/wikijs-alt.svg
similarity index 100%
rename from svg/wikijs-full.svg
rename to svg/wikijs-alt.svg
diff --git a/svg/wikijs-text.svg b/svg/wikijs-text.svg
deleted file mode 100644
index 2c614e1f..00000000
--- a/svg/wikijs-text.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/wikijs.svg b/svg/wikijs.svg
new file mode 100755
index 00000000..181865a6
--- /dev/null
+++ b/svg/wikijs.svg
@@ -0,0 +1,386 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wikipedia-light.svg b/svg/wikipedia-light.svg
new file mode 100644
index 00000000..1539c9db
--- /dev/null
+++ b/svg/wikipedia-light.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wikipedia.svg b/svg/wikipedia.svg
new file mode 100755
index 00000000..20fa5ac7
--- /dev/null
+++ b/svg/wikipedia.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
diff --git a/svg/willow.svg b/svg/willow.svg
new file mode 100755
index 00000000..aab7c457
--- /dev/null
+++ b/svg/willow.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/windmill.svg b/svg/windmill.svg
index 01721cb8..a94e95ec 100644
--- a/svg/windmill.svg
+++ b/svg/windmill.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/windows-95-light.svg b/svg/windows-95-light.svg
new file mode 100644
index 00000000..2cb2ccdd
--- /dev/null
+++ b/svg/windows-95-light.svg
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/windows-98.svg b/svg/windows-98.svg
deleted file mode 100644
index 1be948ce..00000000
--- a/svg/windows-98.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/svg/windows-retro-light.svg b/svg/windows-retro-light.svg
new file mode 100644
index 00000000..c71ef485
--- /dev/null
+++ b/svg/windows-retro-light.svg
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/windows-retro.svg b/svg/windows-retro.svg
new file mode 100755
index 00000000..21905b60
--- /dev/null
+++ b/svg/windows-retro.svg
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wireguard.svg b/svg/wireguard.svg
old mode 100644
new mode 100755
index 2ba3684b..4ffdd3f7
--- a/svg/wireguard.svg
+++ b/svg/wireguard.svg
@@ -1 +1,39 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wizarr.svg b/svg/wizarr.svg
new file mode 100755
index 00000000..6e78ebf7
--- /dev/null
+++ b/svg/wizarr.svg
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wolfi-light.svg b/svg/wolfi-light.svg
new file mode 100644
index 00000000..67b2c3d9
--- /dev/null
+++ b/svg/wolfi-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/woocommerce.svg b/svg/woocommerce.svg
new file mode 100755
index 00000000..8009815d
--- /dev/null
+++ b/svg/woocommerce.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/woodpecker-ci.svg b/svg/woodpecker-ci.svg
index 1f4eb14f..1cd49a8f 100644
--- a/svg/woodpecker-ci.svg
+++ b/svg/woodpecker-ci.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
diff --git a/svg/wordpress.svg b/svg/wordpress.svg
old mode 100644
new mode 100755
index 60f81a79..1fd72a6d
--- a/svg/wordpress.svg
+++ b/svg/wordpress.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/worklenz.svg b/svg/worklenz.svg
new file mode 100755
index 00000000..accd632e
--- /dev/null
+++ b/svg/worklenz.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/wotdle-light.svg b/svg/wotdle-light.svg
index 55584899..67f49ffc 100644
--- a/svg/wotdle-light.svg
+++ b/svg/wotdle-light.svg
@@ -1,7 +1,7 @@
-
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/svg/writefreely-light.svg b/svg/writefreely-light.svg
new file mode 100644
index 00000000..919bb4bf
--- /dev/null
+++ b/svg/writefreely-light.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/writefreely.svg b/svg/writefreely.svg
old mode 100644
new mode 100755
index 32955ee5..26b08667
--- a/svg/writefreely.svg
+++ b/svg/writefreely.svg
@@ -1,42 +1,40 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/wud.svg b/svg/wud.svg
deleted file mode 100644
index d7762e63..00000000
--- a/svg/wud.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/svg/x-light.svg b/svg/x-light.svg
new file mode 100644
index 00000000..495e64fd
--- /dev/null
+++ b/svg/x-light.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/x.svg b/svg/x.svg
old mode 100644
new mode 100755
index 7847827a..3dfe7475
--- a/svg/x.svg
+++ b/svg/x.svg
@@ -1 +1,9 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/svg/xbackbone.svg b/svg/xbackbone.svg
new file mode 100755
index 00000000..625b9943
--- /dev/null
+++ b/svg/xbackbone.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/xbox-game-pass.svg b/svg/xbox-game-pass.svg
new file mode 100755
index 00000000..e3d30481
--- /dev/null
+++ b/svg/xbox-game-pass.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/xbox.svg b/svg/xbox.svg
new file mode 100755
index 00000000..6a9b1f29
--- /dev/null
+++ b/svg/xbox.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/xpipe.svg b/svg/xpipe.svg
new file mode 100755
index 00000000..fd84cece
--- /dev/null
+++ b/svg/xpipe.svg
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/xwiki.svg b/svg/xwiki.svg
old mode 100644
new mode 100755
index d63cb1a7..b8733ecf
--- a/svg/xwiki.svg
+++ b/svg/xwiki.svg
@@ -1 +1,28 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/yacht.svg b/svg/yacht.svg
old mode 100644
new mode 100755
index ec938bb6..e74817bc
--- a/svg/yacht.svg
+++ b/svg/yacht.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/yamtrack-light.svg b/svg/yamtrack-light.svg
new file mode 100644
index 00000000..b7e236e1
--- /dev/null
+++ b/svg/yamtrack-light.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/yamtrack.svg b/svg/yamtrack.svg
new file mode 100755
index 00000000..f8bdb74d
--- /dev/null
+++ b/svg/yamtrack.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/yarr-light.svg b/svg/yarr-light.svg
new file mode 100644
index 00000000..5bfe04ac
--- /dev/null
+++ b/svg/yarr-light.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/yarr.svg b/svg/yarr.svg
new file mode 100755
index 00000000..7858cd8e
--- /dev/null
+++ b/svg/yarr.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/ycombinator-dark.svg b/svg/ycombinator-dark.svg
new file mode 100644
index 00000000..fba87c08
--- /dev/null
+++ b/svg/ycombinator-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ynab.svg b/svg/ynab.svg
old mode 100644
new mode 100755
index 06a02a94..716fb9be
--- a/svg/ynab.svg
+++ b/svg/ynab.svg
@@ -1 +1,47 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/your-spotify.svg b/svg/your-spotify.svg
old mode 100644
new mode 100755
index 79448b7e..fb09dd5e
--- a/svg/your-spotify.svg
+++ b/svg/your-spotify.svg
@@ -1 +1,23 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/yourls.svg b/svg/yourls.svg
old mode 100644
new mode 100755
index f88266f2..e7b7a520
--- a/svg/yourls.svg
+++ b/svg/yourls.svg
@@ -1 +1,22 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/youtube-dl.svg b/svg/youtube-dl.svg
new file mode 100755
index 00000000..e9cd978b
--- /dev/null
+++ b/svg/youtube-dl.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/youtube.svg b/svg/youtube.svg
old mode 100644
new mode 100755
index 67001440..d0246867
--- a/svg/youtube.svg
+++ b/svg/youtube.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/youtubedl.svg b/svg/youtubedl.svg
deleted file mode 100644
index d38bd979..00000000
--- a/svg/youtubedl.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/svg/yuno-host-light.svg b/svg/yuno-host-light.svg
new file mode 100644
index 00000000..6362feb6
--- /dev/null
+++ b/svg/yuno-host-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/z-wave-js-ui.svg b/svg/z-wave-js-ui.svg
new file mode 100755
index 00000000..70ea1a1f
--- /dev/null
+++ b/svg/z-wave-js-ui.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/zabbix.svg b/svg/zabbix.svg
old mode 100644
new mode 100755
index 28f979c8..22988288
--- a/svg/zabbix.svg
+++ b/svg/zabbix.svg
@@ -1 +1,12 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/svg/zammad.svg b/svg/zammad.svg
old mode 100644
new mode 100755
index 862f01d2..b960c86a
--- a/svg/zammad.svg
+++ b/svg/zammad.svg
@@ -1 +1,39 @@
-logo Created with Sketch.
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/zerotier-light.svg b/svg/zerotier-light.svg
new file mode 100644
index 00000000..3badf846
--- /dev/null
+++ b/svg/zerotier-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zigbee2mqtt-light.svg b/svg/zigbee2mqtt-light.svg
new file mode 100644
index 00000000..87ad12ca
--- /dev/null
+++ b/svg/zigbee2mqtt-light.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/zigbee2mqtt.svg b/svg/zigbee2mqtt.svg
old mode 100644
new mode 100755
index f1e36053..d14dcc08
--- a/svg/zigbee2mqtt.svg
+++ b/svg/zigbee2mqtt.svg
@@ -1 +1,129 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/zipcaptions.svg b/svg/zipcaptions.svg
new file mode 100755
index 00000000..929de5fd
--- /dev/null
+++ b/svg/zipcaptions.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/zipline-light.svg b/svg/zipline-light.svg
new file mode 100644
index 00000000..ca8843fc
--- /dev/null
+++ b/svg/zipline-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zitadel-light.svg b/svg/zitadel-light.svg
new file mode 100644
index 00000000..6aca3cc8
--- /dev/null
+++ b/svg/zitadel-light.svg
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/svg/zitadel.svg b/svg/zitadel.svg
old mode 100644
new mode 100755
index 02a80044..d9606225
--- a/svg/zitadel.svg
+++ b/svg/zitadel.svg
@@ -1 +1,127 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/zoom.svg b/svg/zoom.svg
old mode 100644
new mode 100755
index 22d21915..15b2dd32
--- a/svg/zoom.svg
+++ b/svg/zoom.svg
@@ -1 +1,14 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/svg/zoraxy.svg b/svg/zoraxy.svg
old mode 100644
new mode 100755
index 0304a079..c9bd35f0
--- a/svg/zoraxy.svg
+++ b/svg/zoraxy.svg
@@ -1 +1,20 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/svg/zulip.svg b/svg/zulip.svg
index 8b7cc874..d8015ab9 100644
--- a/svg/zulip.svg
+++ b/svg/zulip.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/svg/zyxel-communications-light.svg b/svg/zyxel-communications-light.svg
new file mode 100644
index 00000000..89e8f5b5
--- /dev/null
+++ b/svg/zyxel-communications-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zyxel-networks-light.svg b/svg/zyxel-networks-light.svg
new file mode 100644
index 00000000..413a4cb2
--- /dev/null
+++ b/svg/zyxel-networks-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/tree.json b/tree.json
new file mode 100644
index 00000000..7608bb5a
--- /dev/null
+++ b/tree.json
@@ -0,0 +1,4857 @@
+{
+ "png": [
+ "13ft.png",
+ "2fauth-light.png",
+ "2fauth.png",
+ "act.png",
+ "activepieces.png",
+ "actual-budget.png",
+ "adguard-home.png",
+ "adminer.png",
+ "adventure-log.png",
+ "affine-light.png",
+ "affine.png",
+ "airsonic.png",
+ "airtable.png",
+ "airtel.png",
+ "airvpn.png",
+ "akkoma-light.png",
+ "akkoma.png",
+ "albert-heijn.png",
+ "alertmanager.png",
+ "aliexpress.png",
+ "alist.png",
+ "alloy.png",
+ "alma-linux.png",
+ "alpine-linux.png",
+ "amazon-light.png",
+ "amazon-prime.png",
+ "amazon-web-services-light.png",
+ "amazon-web-services.png",
+ "amazon.png",
+ "amd-light.png",
+ "amd.png",
+ "android-auto-dark.png",
+ "android-auto.png",
+ "android-robot.png",
+ "android.png",
+ "anonaddy.png",
+ "ansible-light.png",
+ "ansible.png",
+ "apache-airflow.png",
+ "apache-answer.png",
+ "apache-cassandra.png",
+ "apache-druid.png",
+ "apache-openoffice.png",
+ "apache-solr.png",
+ "apache-subversion.png",
+ "apache-tomcat-light.png",
+ "apache-tomcat.png",
+ "apache.png",
+ "apc.png",
+ "apiscp.png",
+ "app-store.png",
+ "appflowy.png",
+ "apple-alt.png",
+ "apple-light.png",
+ "apple-music.png",
+ "apple-tv-plus-light.png",
+ "apple-tv-plus.png",
+ "apple.png",
+ "appwrite.png",
+ "ara-records-ansible.png",
+ "arch-linux.png",
+ "arduino.png",
+ "argo-cd.png",
+ "arm.png",
+ "artifacthub.png",
+ "aruba.png",
+ "asana.png",
+ "asciinema.png",
+ "astral.png",
+ "astuto-light.png",
+ "astuto.png",
+ "asus-rog.png",
+ "asus-router.png",
+ "asus.png",
+ "asustor.png",
+ "at-t.png",
+ "atlassian-bamboo.png",
+ "atlassian-bitbucket.png",
+ "atlassian-jira.png",
+ "atlassian-opsgenie.png",
+ "atlassian-trello.png",
+ "atlassian.png",
+ "atuin-light.png",
+ "atuin.png",
+ "audacity.png",
+ "audiobookshelf.png",
+ "auracast.png",
+ "authelia.png",
+ "authentik.png",
+ "authman.png",
+ "autobrr.png",
+ "automad-light.png",
+ "automad.png",
+ "avigilon.png",
+ "avm-fritzbox-light.png",
+ "avm-fritzbox.png",
+ "aws-ecs.png",
+ "aws-light.png",
+ "aws.png",
+ "awwesome.png",
+ "azuracast.png",
+ "azure-container-instances.png",
+ "azure-container-service.png",
+ "azure-devops.png",
+ "azure-dns.png",
+ "azure.png",
+ "backblaze.png",
+ "backrest-light.png",
+ "backrest.png",
+ "bar-assistant.png",
+ "baserow.png",
+ "bazarr-dark.png",
+ "bazarr.png",
+ "beaver-habit-tracker-light.png",
+ "beaver-habit-tracker.png",
+ "beef-light.png",
+ "beef.png",
+ "beszel-light.png",
+ "beszel.png",
+ "biblioreads-light.png",
+ "biblioreads.png",
+ "bigcapital.png",
+ "bing.png",
+ "bitbucket.png",
+ "bitcoin.png",
+ "bitwarden.png",
+ "blocky.png",
+ "blogger.png",
+ "bluesky.png",
+ "bluetooth.png",
+ "booklogr-light.png",
+ "booklogr.png",
+ "bookstack.png",
+ "bootstrap.png",
+ "borg.png",
+ "borgmatic-light.png",
+ "borgmatic.png",
+ "boundary.png",
+ "box.png",
+ "brave.png",
+ "broadcastchannel-light.png",
+ "broadcastchannel.png",
+ "brocade.png",
+ "brother.png",
+ "browserless-light.png",
+ "browserless.png",
+ "browsh.png",
+ "budgetbee-light.png",
+ "budgetbee.png",
+ "budibase.png",
+ "bunkerweb.png",
+ "c.png",
+ "cacti.png",
+ "caddy.png",
+ "cal-com-light.png",
+ "cal-com.png",
+ "calibre-web.png",
+ "calibre.png",
+ "canonical.png",
+ "caprover.png",
+ "carrefour.png",
+ "casaos.png",
+ "castopod.png",
+ "cc-light.png",
+ "cc.png",
+ "centos.png",
+ "ceph.png",
+ "cert-manager.png",
+ "cert-warden-light.png",
+ "cert-warden.png",
+ "chainguard.png",
+ "changedetection.png",
+ "channels-dvr.png",
+ "chatgpt.png",
+ "chatpad-ai.png",
+ "checkmk.png",
+ "chevereto.png",
+ "chirpy.png",
+ "chrome-canary.png",
+ "chrome-dev.png",
+ "chrome-devtools.png",
+ "chrome-remote-desktop.png",
+ "chrome.png",
+ "chromium.png",
+ "cilium-light.png",
+ "cilium.png",
+ "cinny-light.png",
+ "cinny.png",
+ "cisco.png",
+ "clickhouse.png",
+ "cloud66.png",
+ "cloud9-light.png",
+ "cloud9.png",
+ "cloudbeaver.png",
+ "cloudflare-pages.png",
+ "cloudflare-zero-trust.png",
+ "cloudflare.png",
+ "cloudpanel.png",
+ "cockpit-cms-light.png",
+ "cockpit-cms.png",
+ "cockpit-light.png",
+ "cockpit.png",
+ "code.png",
+ "codeberg.png",
+ "coder-light.png",
+ "coder.png",
+ "codestats-light.png",
+ "codestats.png",
+ "codex-light.png",
+ "codex.png",
+ "collabora-online.png",
+ "commafeed-light.png",
+ "commafeed.png",
+ "commento-light.png",
+ "commento.png",
+ "compreface.png",
+ "concourse.png",
+ "confluence.png",
+ "consul.png",
+ "contabo.png",
+ "converse-light.png",
+ "converse.png",
+ "coolify.png",
+ "coredns.png",
+ "coreos.png",
+ "cosign.png",
+ "costco.png",
+ "couchdb.png",
+ "counter-analytics.png",
+ "cozy.png",
+ "cpanel.png",
+ "cpp.png",
+ "crafty-controller.png",
+ "crowdsec.png",
+ "cryptomator.png",
+ "cryptpad.png",
+ "csharp.png",
+ "css-light.png",
+ "css.png",
+ "ctfreak.png",
+ "cups-light.png",
+ "cups.png",
+ "cura.png",
+ "cyberchef.png",
+ "czkawka.png",
+ "d-link.png",
+ "dalibo.png",
+ "dart.png",
+ "datadog.png",
+ "davical.png",
+ "dawarich.png",
+ "dc-os.png",
+ "ddclient.png",
+ "ddns-updater.png",
+ "debian-linux.png",
+ "defguard.png",
+ "dell.png",
+ "deluge.png",
+ "deno-light.png",
+ "deno.png",
+ "denon-light.png",
+ "denon.png",
+ "deployarr.png",
+ "diagrams-net.png",
+ "digital-ocean.png",
+ "dillinger-light.png",
+ "dillinger.png",
+ "directadmin.png",
+ "directus.png",
+ "discord.png",
+ "discourse-light.png",
+ "discourse.png",
+ "disney-plus.png",
+ "dlna.png",
+ "docassemble-light.png",
+ "docassemble.png",
+ "docker-engine.png",
+ "docker-mailserver-light.png",
+ "docker-mailserver.png",
+ "docker-moby.png",
+ "docker-volume-backup.png",
+ "docker.png",
+ "dockge.png",
+ "docking-station.png",
+ "docsify.png",
+ "docspell.png",
+ "documenso.png",
+ "docusaurus.png",
+ "docuseal.png",
+ "dokemon.png",
+ "dokuwiki.png",
+ "double-take-dark.png",
+ "double-take.png",
+ "dovecot.png",
+ "dozzle.png",
+ "draw-io.png",
+ "draytek.png",
+ "dropbox.png",
+ "dropout-light.png",
+ "dropout.png",
+ "droppy-dark.png",
+ "droppy.png",
+ "dub-light.png",
+ "dub.png",
+ "duckdns-light.png",
+ "duckdns.png",
+ "duckduckgo.png",
+ "duo.png",
+ "duplicati.png",
+ "easy-gate-light.png",
+ "easy-gate.png",
+ "ebay.png",
+ "eblocker.png",
+ "edge-dev.png",
+ "edge.png",
+ "elastic-beats.png",
+ "elastic-kibana.png",
+ "elastic-logstash.png",
+ "elastic.png",
+ "elasticsearch.png",
+ "electron.png",
+ "electronic-arts.png",
+ "element.png",
+ "eleventy-light.png",
+ "eleventy.png",
+ "elysian.png",
+ "emacs.png",
+ "emby.png",
+ "emq-light.png",
+ "emq.png",
+ "emqx.png",
+ "emulatorjs.png",
+ "enbizcard.png",
+ "enclosed-light.png",
+ "enclosed.png",
+ "endless-light.png",
+ "endless.png",
+ "endurain.png",
+ "epic-games-light.png",
+ "epic-games.png",
+ "erste-george.png",
+ "erste.png",
+ "esphome-alt-light.png",
+ "esphome-alt.png",
+ "esphome-light.png",
+ "esphome.png",
+ "espressif.png",
+ "etcd.png",
+ "etesync.png",
+ "ethereum.png",
+ "etherpad.png",
+ "evcc.png",
+ "excalidraw.png",
+ "f-droid.png",
+ "facebook-messenger.png",
+ "facebook.png",
+ "fast-com-light.png",
+ "fast-com.png",
+ "fasten-health.png",
+ "fastmail.png",
+ "fedora-alt.png",
+ "fedora.png",
+ "feedbase-light.png",
+ "feedbase.png",
+ "feedbin-light.png",
+ "feedbin.png",
+ "feedly.png",
+ "feedlynx-light.png",
+ "feedlynx.png",
+ "fenrus.png",
+ "ferdium.png",
+ "ferretdb.png",
+ "fider.png",
+ "filebot.png",
+ "filebrowser.png",
+ "filecloud.png",
+ "fileflows.png",
+ "filegator.png",
+ "filerun.png",
+ "files.png",
+ "filestash.png",
+ "filezilla.png",
+ "finamp.png",
+ "findroid.png",
+ "fios-light.png",
+ "fios.png",
+ "firebase.png",
+ "firefly-iii.png",
+ "firefly.png",
+ "firefox-beta.png",
+ "firefox-developer-edition.png",
+ "firefox-lite.png",
+ "firefox-nightly.png",
+ "firefox-reality.png",
+ "firefox-send.png",
+ "firefox.png",
+ "firewalla.png",
+ "fittrackee.png",
+ "fladder.png",
+ "flaresolverr.png",
+ "flarum.png",
+ "flathub.png",
+ "flatnotes.png",
+ "flatpak.png",
+ "flightradar24-light.png",
+ "flightradar24.png",
+ "flood.png",
+ "fluffychat-dark.png",
+ "fluffychat.png",
+ "fluidd.png",
+ "flux-cd.png",
+ "fly-io.png",
+ "focalboard.png",
+ "foldingathome.png",
+ "fontawesome.png",
+ "forgejo.png",
+ "forte-light.png",
+ "forte.png",
+ "fortinet.png",
+ "fossil.png",
+ "franz.png",
+ "freedombox.png",
+ "freeipa.png",
+ "freenas.png",
+ "freenom.png",
+ "freepbx.png",
+ "freshping-dark.png",
+ "freshping.png",
+ "freshrss.png",
+ "friendica.png",
+ "frigate-light.png",
+ "frigate.png",
+ "fritzbox-light.png",
+ "fritzbox.png",
+ "fronius.png",
+ "fulcio.png",
+ "funkwhale-light.png",
+ "funkwhale.png",
+ "fusionauth.png",
+ "garage.png",
+ "gatsby.png",
+ "gatus.png",
+ "gboard.png",
+ "geckoview.png",
+ "gentoo-linux.png",
+ "gerbera.png",
+ "get-iplayer.png",
+ "ghostfolio.png",
+ "gigaset.png",
+ "gimp.png",
+ "git.png",
+ "gitbook.png",
+ "gitea.png",
+ "gitee.png",
+ "github-light.png",
+ "github.png",
+ "gitlab.png",
+ "gitsign.png",
+ "gladys-assistant.png",
+ "glance-light.png",
+ "glance.png",
+ "glances-light.png",
+ "glances.png",
+ "glpi.png",
+ "gluetun.png",
+ "gmail.png",
+ "go.png",
+ "goaccess-light.png",
+ "goaccess.png",
+ "godaddy-alt.png",
+ "godaddy.png",
+ "gollum.png",
+ "goodreads.png",
+ "google-admin.png",
+ "google-admob.png",
+ "google-alerts.png",
+ "google-analytics.png",
+ "google-assistant.png",
+ "google-calendar.png",
+ "google-chat.png",
+ "google-chrome.png",
+ "google-classroom.png",
+ "google-cloud-platform.png",
+ "google-cloud-print.png",
+ "google-compute-engine.png",
+ "google-contacts.png",
+ "google-docs.png",
+ "google-domains.png",
+ "google-drive.png",
+ "google-earth.png",
+ "google-fi.png",
+ "google-fit.png",
+ "google-fonts.png",
+ "google-forms.png",
+ "google-gemini.png",
+ "google-home.png",
+ "google-keep.png",
+ "google-lens.png",
+ "google-maps.png",
+ "google-meet.png",
+ "google-messages.png",
+ "google-news.png",
+ "google-one.png",
+ "google-pay.png",
+ "google-photos.png",
+ "google-play-books.png",
+ "google-play-games.png",
+ "google-play.png",
+ "google-podcasts.png",
+ "google-scholar.png",
+ "google-search-console.png",
+ "google-sheets.png",
+ "google-shopping.png",
+ "google-sites.png",
+ "google-slides.png",
+ "google-street-view.png",
+ "google-tag-manager.png",
+ "google-translate.png",
+ "google-tv.png",
+ "google-voice.png",
+ "google-wallet.png",
+ "google-wifi.png",
+ "google.png",
+ "gotify.png",
+ "gotosocial.png",
+ "gpt4free.png",
+ "grafana.png",
+ "gramps.png",
+ "grandstream.png",
+ "grav-light.png",
+ "grav.png",
+ "graylog.png",
+ "greenbone-light.png",
+ "greenbone.png",
+ "grimoire.png",
+ "grist.png",
+ "grocy.png",
+ "guacamole-light.png",
+ "guacamole.png",
+ "hacker-news.png",
+ "hammond-light.png",
+ "hammond.png",
+ "handbrake.png",
+ "haproxy.png",
+ "haptic-light.png",
+ "haptic.png",
+ "harbor.png",
+ "harvester.png",
+ "hashicorp-boundary.png",
+ "hashicorp-consul.png",
+ "hashicorp-nomad.png",
+ "hashicorp-packer.png",
+ "hashicorp-terraform.png",
+ "hashicorp-vagrant.png",
+ "hashicorp-vault.png",
+ "hashicorp-waypoint.png",
+ "hastypaste.png",
+ "hasura.png",
+ "hatsh-light.png",
+ "hatsh.png",
+ "hbo-light.png",
+ "hbo.png",
+ "hdhomerun-light.png",
+ "hdhomerun.png",
+ "headscale.png",
+ "healthchecks.png",
+ "hedgedoc.png",
+ "heimdall-light.png",
+ "heimdall.png",
+ "helium-token.png",
+ "helm.png",
+ "hetzner.png",
+ "hexo.png",
+ "heyform.png",
+ "hifiberry.png",
+ "hikvision.png",
+ "hilook.png",
+ "hivedav.png",
+ "hoarder-light.png",
+ "hoarder.png",
+ "hollo-light.png",
+ "hollo.png",
+ "homarr.png",
+ "home-assistant-alt.png",
+ "home-assistant.png",
+ "homebox-light.png",
+ "homebox.png",
+ "homebridge.png",
+ "homer.png",
+ "homey.png",
+ "hoobs.png",
+ "hoppscotch.png",
+ "hostinger.png",
+ "hotio.png",
+ "hp.png",
+ "html-light.png",
+ "html.png",
+ "huawei.png",
+ "hubitat.png",
+ "hubzilla.png",
+ "hugging-face.png",
+ "huginn.png",
+ "hugo.png",
+ "hulu.png",
+ "humhub.png",
+ "hydra.png",
+ "hyperpipe-light.png",
+ "hyperpipe.png",
+ "i2p-light.png",
+ "i2p.png",
+ "i2pd.png",
+ "icecast.png",
+ "icinga-light.png",
+ "icinga.png",
+ "idrac.png",
+ "ilo.png",
+ "immich-frame-light.png",
+ "immich-frame.png",
+ "immich-kiosk-light.png",
+ "immich-kiosk.png",
+ "immich.png",
+ "influxdb.png",
+ "infoblox.png",
+ "inoreader.png",
+ "instagram.png",
+ "inventree.png",
+ "invidious.png",
+ "invisioncommunity.png",
+ "invoice-ninja-light.png",
+ "invoice-ninja.png",
+ "invoke-ai.png",
+ "iobroker.png",
+ "ionos.png",
+ "ipboard.png",
+ "ipfs-light.png",
+ "ipfs.png",
+ "ispconfig.png",
+ "it-tools-light.png",
+ "it-tools.png",
+ "jackett-light.png",
+ "jackett.png",
+ "jaeger.png",
+ "jamstack.png",
+ "java.png",
+ "javascript-light.png",
+ "javascript.png",
+ "jeedom.png",
+ "jekyll.png",
+ "jellyfin.png",
+ "jellyseerr.png",
+ "jellystat.png",
+ "jelu.png",
+ "jenkins.png",
+ "jetbrains-youtrack.png",
+ "jio.png",
+ "jira.png",
+ "jitsi-meet.png",
+ "jitsi.png",
+ "joomla.png",
+ "joplin.png",
+ "julia.png",
+ "jupyter.png",
+ "jwt-io-light.png",
+ "jwt-io.png",
+ "kagi.png",
+ "kamatera.png",
+ "kanboard-light.png",
+ "kanboard.png",
+ "kanidm.png",
+ "kapowarr.png",
+ "kasm-workspaces.png",
+ "kasm.png",
+ "kasten-k10.png",
+ "kaufland.png",
+ "kavita.png",
+ "kbin.png",
+ "keenetic-alt.png",
+ "keenetic.png",
+ "keepassxc.png",
+ "keila.png",
+ "kerberos.png",
+ "kestra.png",
+ "keycloak.png",
+ "keyoxide-alt.png",
+ "keyoxide.png",
+ "kibana.png",
+ "kick-light.png",
+ "kick.png",
+ "kimai.png",
+ "kinto.png",
+ "kitana.png",
+ "kitchenowl.png",
+ "kiwix-light.png",
+ "kiwix.png",
+ "klipper.png",
+ "ko-fi.png",
+ "kodi.png",
+ "koel.png",
+ "koillection-light.png",
+ "koillection.png",
+ "komga.png",
+ "kontoj.png",
+ "kopia.png",
+ "kotlin.png",
+ "kpn.png",
+ "krakend.png",
+ "krusader.png",
+ "kubernetes-dashboard.png",
+ "kubernetes.png",
+ "kutt.png",
+ "kyoo.png",
+ "lancommander-light.png",
+ "lancommander.png",
+ "lark.png",
+ "lastpass.png",
+ "leanote.png",
+ "leantime.png",
+ "lemmy-light.png",
+ "lemmy.png",
+ "lets-encrypt.png",
+ "libreddit-light.png",
+ "libreddit.png",
+ "librenms.png",
+ "libreoffice-light.png",
+ "libreoffice.png",
+ "librespeed-light.png",
+ "librespeed.png",
+ "librewolf.png",
+ "librum.png",
+ "lidarr.png",
+ "lidl.png",
+ "lighttpd.png",
+ "limesurvey.png",
+ "linguacafe.png",
+ "linkace.png",
+ "linkding.png",
+ "linkedin.png",
+ "linkstack.png",
+ "linode.png",
+ "linux-mint.png",
+ "linux.png",
+ "linuxgsm.png",
+ "linuxserver-io.png",
+ "liremdb.png",
+ "listmonk.png",
+ "littlelink-custom.png",
+ "lnbits.png",
+ "locals-light.png",
+ "locals.png",
+ "lodestone.png",
+ "logitech-gaming.png",
+ "logitech-legacy.png",
+ "logitech-light.png",
+ "logitech.png",
+ "logseq.png",
+ "logstash.png",
+ "logto.png",
+ "loki.png",
+ "longhorn.png",
+ "lua.png",
+ "lunasea.png",
+ "lynx-light.png",
+ "lynx.png",
+ "mail-in-a-box.png",
+ "mailchimp-light.png",
+ "mailchimp.png",
+ "mailcow.png",
+ "mailfence.png",
+ "mailgun.png",
+ "mailjet.png",
+ "mainsail.png",
+ "maintainerr.png",
+ "manjaro-linux.png",
+ "manyfold.png",
+ "maptiler.png",
+ "mariadb.png",
+ "mastodon.png",
+ "matomo.png",
+ "matrix-light.png",
+ "matrix-synapse-light.png",
+ "matrix-synapse.png",
+ "matrix.png",
+ "mattermost.png",
+ "mautic.png",
+ "max.png",
+ "mayan-edms-light.png",
+ "mayan-edms.png",
+ "maybe.png",
+ "mbin.png",
+ "mealie.png",
+ "medama.png",
+ "mediathekview.png",
+ "mediawiki.png",
+ "mediux.png",
+ "medusa-light.png",
+ "medusa.png",
+ "mega-nz-dark.png",
+ "mega-nz.png",
+ "meilisearch.png",
+ "memories-light.png",
+ "memories.png",
+ "meraki.png",
+ "mercusys.png",
+ "mergeable-dark.png",
+ "mergeable.png",
+ "meshping-light.png",
+ "meshping.png",
+ "meshtastic.png",
+ "meta.png",
+ "metabase.png",
+ "metube.png",
+ "microsoft-365-admin-center.png",
+ "microsoft-365.png",
+ "microsoft-access.png",
+ "microsoft-azure.png",
+ "microsoft-bing.png",
+ "microsoft-copilot.png",
+ "microsoft-edge.png",
+ "microsoft-excel.png",
+ "microsoft-exchange.png",
+ "microsoft-office.png",
+ "microsoft-onedrive.png",
+ "microsoft-onenote.png",
+ "microsoft-outlook.png",
+ "microsoft-powerpoint.png",
+ "microsoft-sharepoint.png",
+ "microsoft-sql-server-light.png",
+ "microsoft-sql-server.png",
+ "microsoft-teams.png",
+ "microsoft-to-do.png",
+ "microsoft-windows.png",
+ "microsoft-word.png",
+ "microsoft.png",
+ "mikrotik-light.png",
+ "mikrotik.png",
+ "minecraft.png",
+ "miniflux-light.png",
+ "miniflux.png",
+ "minio-light.png",
+ "minio.png",
+ "misskey-light.png",
+ "misskey.png",
+ "mitra.png",
+ "mixpost.png",
+ "mkdocs-light.png",
+ "mkdocs.png",
+ "mobilizon.png",
+ "mobotix-light.png",
+ "mobotix.png",
+ "modrinth.png",
+ "mojeek.png",
+ "monero.png",
+ "mongodb.png",
+ "monica-light.png",
+ "monica.png",
+ "moodle-light.png",
+ "moodle.png",
+ "morphos.png",
+ "mosquitto.png",
+ "motioneye-dark.png",
+ "motioneye.png",
+ "mqtt.png",
+ "mstream.png",
+ "mullvad-browser.png",
+ "mullvad-vpn.png",
+ "mullvad.png",
+ "multi-scrobbler.png",
+ "mumble-light.png",
+ "mumble.png",
+ "music-assistant-light.png",
+ "music-assistant.png",
+ "musicbrainz.png",
+ "myheats-light.png",
+ "myheats.png",
+ "myspeed.png",
+ "mysql.png",
+ "n8n.png",
+ "nagios.png",
+ "nasa.png",
+ "navidrome-light.png",
+ "navidrome.png",
+ "neko-light.png",
+ "neko.png",
+ "neo4j.png",
+ "neocities.png",
+ "neodb.png",
+ "neonlink.png",
+ "netalertx-light.png",
+ "netalertx.png",
+ "netapp-light.png",
+ "netapp.png",
+ "netatmo.png",
+ "netbird.png",
+ "netboot.png",
+ "netbox.png",
+ "netdata.png",
+ "netflix.png",
+ "netgear-light.png",
+ "netgear.png",
+ "netlify.png",
+ "netsurf-light.png",
+ "netsurf.png",
+ "network-ups-tools.png",
+ "newegg.png",
+ "newsblur.png",
+ "nextcloud-blue.png",
+ "nextcloud-calendar.png",
+ "nextcloud-contacts.png",
+ "nextcloud-cookbook.png",
+ "nextcloud-cospend.png",
+ "nextcloud-deck.png",
+ "nextcloud-files.png",
+ "nextcloud-ncdownloader.png",
+ "nextcloud-news.png",
+ "nextcloud-notes.png",
+ "nextcloud-photos.png",
+ "nextcloud-social.png",
+ "nextcloud-tables.png",
+ "nextcloud-tasks.png",
+ "nextcloud-timemanager.png",
+ "nextcloud-white.png",
+ "nextcloud.png",
+ "nextcloudpi.png",
+ "nextdns.png",
+ "nexterm.png",
+ "nextjs-light.png",
+ "nextjs.png",
+ "nginx-proxy-manager.png",
+ "nginx.png",
+ "nicotine-plus.png",
+ "nightscout-light.png",
+ "nightscout.png",
+ "nintendo-switch.png",
+ "nitter.png",
+ "nixos.png",
+ "nocodb.png",
+ "node-red.png",
+ "nodebb.png",
+ "nodejs-alt.png",
+ "nodejs.png",
+ "nomad.png",
+ "nomie.png",
+ "nordvpn.png",
+ "note-mark.png",
+ "notesnook-light.png",
+ "notesnook.png",
+ "notion-light.png",
+ "notion.png",
+ "ntfy.png",
+ "nut.png",
+ "nvidia.png",
+ "nzbhydra2-light.png",
+ "nzbhydra2.png",
+ "obico.png",
+ "obsidian.png",
+ "obtainium.png",
+ "octoprint.png",
+ "oculus-light.png",
+ "oculus.png",
+ "odoo.png",
+ "office-365.png",
+ "olivetin-light.png",
+ "olivetin.png",
+ "ollama.png",
+ "omada.png",
+ "ombi.png",
+ "omnidb.png",
+ "omnivore.png",
+ "onedev-light.png",
+ "onedev.png",
+ "oneuptime-light.png",
+ "oneuptime.png",
+ "onlyoffice.png",
+ "open-resume.png",
+ "open-source-initiative.png",
+ "openai-light.png",
+ "openai.png",
+ "openchangelog-light.png",
+ "openchangelog.png",
+ "openeats-light.png",
+ "openeats.png",
+ "openemr-light.png",
+ "openemr.png",
+ "opengist-light.png",
+ "opengist.png",
+ "openhab.png",
+ "openldap.png",
+ "openmediavault.png",
+ "openoffice.png",
+ "openpanel-light.png",
+ "openpanel.png",
+ "openproject.png",
+ "openreads.png",
+ "opensearch.png",
+ "openspeedtest.png",
+ "openstack.png",
+ "openstreetmap.png",
+ "opensuse.png",
+ "opentalk.png",
+ "opentofu.png",
+ "openvas.png",
+ "openvpn.png",
+ "openwrt.png",
+ "opera-touch.png",
+ "opera.png",
+ "opnform.png",
+ "opnsense.png",
+ "oracle-cloud.png",
+ "oracle.png",
+ "orange.png",
+ "origin.png",
+ "oscarr-light.png",
+ "oscarr.png",
+ "osticket.png",
+ "outline-light.png",
+ "outline.png",
+ "overleaf.png",
+ "overseerr.png",
+ "ovh.png",
+ "ovirt-light.png",
+ "ovirt.png",
+ "owncast.png",
+ "owncloud.png",
+ "owntone.png",
+ "owntracks.png",
+ "oxker-light.png",
+ "oxker.png",
+ "p1ib.png",
+ "pagerduty.png",
+ "palemoon.png",
+ "palo-alto.png",
+ "paperless-ng.png",
+ "paperless-ngx.png",
+ "paperless.png",
+ "papermark-light.png",
+ "papermark.png",
+ "papermerge-light.png",
+ "papermerge.png",
+ "parseable.png",
+ "part-db-light.png",
+ "part-db.png",
+ "partkeepr.png",
+ "passbolt.png",
+ "passwork.png",
+ "pastebin-dark.png",
+ "pastebin.png",
+ "patreon-light.png",
+ "patreon.png",
+ "payload-light.png",
+ "payload.png",
+ "paypal.png",
+ "pdfding-light.png",
+ "pdfding.png",
+ "peacock-light.png",
+ "peacock.png",
+ "peanut-light.png",
+ "peanut.png",
+ "peertube.png",
+ "pelican-panel.png",
+ "penpot-light.png",
+ "penpot.png",
+ "peppermint.png",
+ "pepperminty-wiki.png",
+ "perlite.png",
+ "pfsense-light.png",
+ "pfsense.png",
+ "pg-back-web.png",
+ "pgadmin.png",
+ "phanpy.png",
+ "phoneinfoga-light.png",
+ "phoneinfoga.png",
+ "phorge-light.png",
+ "phorge.png",
+ "phoscon-light.png",
+ "phoscon.png",
+ "photonix-light.png",
+ "photonix.png",
+ "photopea.png",
+ "photoprism-light.png",
+ "photoprism.png",
+ "photostructure-dark.png",
+ "photostructure.png",
+ "photoview.png",
+ "php-light.png",
+ "php.png",
+ "phpmyadmin.png",
+ "pi-hole.png",
+ "pia.png",
+ "picsur-light.png",
+ "picsur.png",
+ "pigallery2.png",
+ "pikapods.png",
+ "pingdom-light.png",
+ "pingdom.png",
+ "pingvin-dark.png",
+ "pingvin-share-dark.png",
+ "pingvin-share.png",
+ "pingvin.png",
+ "pinkary.png",
+ "pinterest.png",
+ "pioneer-light.png",
+ "pioneer.png",
+ "piped.png",
+ "pirate-proxy.png",
+ "piwigo.png",
+ "pixelfed.png",
+ "plane.png",
+ "planka-dark.png",
+ "planka.png",
+ "plausible.png",
+ "playstation.png",
+ "pleroma.png",
+ "plesk.png",
+ "plex-alt-light.png",
+ "plex-alt.png",
+ "plex-light.png",
+ "plex-rewind.png",
+ "plex.png",
+ "plexrequests-light.png",
+ "plexrequests.png",
+ "plume.png",
+ "pocket-casts-dark.png",
+ "pocket-casts.png",
+ "pocket-id-light.png",
+ "pocket-id.png",
+ "pocketbase-dark.png",
+ "pocketbase.png",
+ "podfetch-light.png",
+ "podfetch.png",
+ "podify.png",
+ "podman.png",
+ "policycontroller.png",
+ "poly.png",
+ "polywork.png",
+ "portainer.png",
+ "portus.png",
+ "postal.png",
+ "poste.png",
+ "postgres.png",
+ "postgresql.png",
+ "posthog-light.png",
+ "posthog.png",
+ "postiz-dark.png",
+ "postiz.png",
+ "powerbi.png",
+ "powerdns.png",
+ "prime-video-light.png",
+ "prime-video.png",
+ "printer.png",
+ "pritunl.png",
+ "privacyidea.png",
+ "private-internet-access.png",
+ "privatebin.png",
+ "projectsend.png",
+ "prometheus.png",
+ "proton-calendar.png",
+ "proton-drive.png",
+ "proton-mail.png",
+ "proton-pass.png",
+ "proton-vpn.png",
+ "prowlarr.png",
+ "proxmox-light.png",
+ "proxmox.png",
+ "prtg.png",
+ "prusa-research.png",
+ "pterodactyl.png",
+ "pufferpanel.png",
+ "purelymail.png",
+ "pushfish.png",
+ "pushover.png",
+ "putty.png",
+ "pydio.png",
+ "pyload.png",
+ "python.png",
+ "qbittorrent.png",
+ "qdirstat.png",
+ "qinglong.png",
+ "qnap.png",
+ "questdb.png",
+ "quetre.png",
+ "quickwit.png",
+ "qutebrowser.png",
+ "r.png",
+ "rabbitmq.png",
+ "radarr.png",
+ "radicale.png",
+ "rainloop.png",
+ "rallly.png",
+ "rancher.png",
+ "raspberry-pi-light.png",
+ "raspberry-pi.png",
+ "rclone.png",
+ "rdt-client.png",
+ "reactive-resume-light.png",
+ "reactive-resume.png",
+ "readarr.png",
+ "readeck.png",
+ "readthedocs-light.png",
+ "readthedocs.png",
+ "real-debrid.png",
+ "recalbox.png",
+ "receipt-wrangler.png",
+ "recipesage.png",
+ "reddit.png",
+ "redict.png",
+ "redis.png",
+ "redlib-light.png",
+ "redlib.png",
+ "rekor.png",
+ "remmina.png",
+ "reolink.png",
+ "requestly.png",
+ "requestrr.png",
+ "resiliosync-light.png",
+ "resiliosync.png",
+ "restreamer.png",
+ "revolt-light.png",
+ "revolt.png",
+ "rhasspy-dark.png",
+ "rhasspy.png",
+ "rhodecode.png",
+ "richy.png",
+ "rimgo-light.png",
+ "rimgo.png",
+ "riot.png",
+ "riverside-fm-light.png",
+ "riverside-fm.png",
+ "rocket-chat.png",
+ "rocky-linux.png",
+ "romm.png",
+ "rook.png",
+ "roundcube.png",
+ "router.png",
+ "rport.png",
+ "rss-bridge.png",
+ "rss-translator.png",
+ "rstudio.png",
+ "rstudioserver.png",
+ "ruby.png",
+ "rumble.png",
+ "rundeck.png",
+ "runonflux.png",
+ "runson-light.png",
+ "runson.png",
+ "rust.png",
+ "rustdesk.png",
+ "rutorrent.png",
+ "ryot-light.png",
+ "ryot.png",
+ "sabnzbd-light.png",
+ "sabnzbd.png",
+ "safari-ios.png",
+ "safari.png",
+ "saltcorn.png",
+ "samsung-internet.png",
+ "sandstorm.png",
+ "screenconnect.png",
+ "scrutiny-light.png",
+ "scrutiny.png",
+ "seafile.png",
+ "searx.png",
+ "searxng.png",
+ "secureai-tools-light.png",
+ "secureai-tools.png",
+ "seelf.png",
+ "self-hosted-gateway.png",
+ "selfh-st-light.png",
+ "selfh-st.png",
+ "semaphore-dark.png",
+ "semaphore.png",
+ "send.png",
+ "sendgrid.png",
+ "sendinblue.png",
+ "sensu.png",
+ "sentry-light.png",
+ "sentry.png",
+ "servarr-light.png",
+ "servarr.png",
+ "serviio-light.png",
+ "serviio.png",
+ "session.png",
+ "shaarli.png",
+ "shell-light.png",
+ "shell-tips-light.png",
+ "shell-tips.png",
+ "shell.png",
+ "shellhub.png",
+ "shellngn.png",
+ "shelly.png",
+ "shiori.png",
+ "shlink.png",
+ "shoko-server.png",
+ "shoko.png",
+ "shopify.png",
+ "sickbeard.png",
+ "signal.png",
+ "sigstore.png",
+ "simplelogin.png",
+ "simplex-chat.png",
+ "sinusbot.png",
+ "siyuan.png",
+ "skype.png",
+ "slack.png",
+ "slash-light.png",
+ "slash.png",
+ "slice.png",
+ "slidev.png",
+ "slskd.png",
+ "smartfox.png",
+ "snapcast.png",
+ "snapchat-dark.png",
+ "snapchat.png",
+ "snapdrop.png",
+ "snappymail-light.png",
+ "snappymail.png",
+ "snikket.png",
+ "socialhome.png",
+ "sogo.png",
+ "solidtime-light.png",
+ "solidtime.png",
+ "sonarqube.png",
+ "sonarr-dark.png",
+ "sonarr.png",
+ "sophos-dark.png",
+ "sophos.png",
+ "sourcegraph.png",
+ "spamassassin.png",
+ "sparkleshare.png",
+ "specifically-clementines.png",
+ "sphinx-doc.png",
+ "sphinx-relay.png",
+ "sphinx.png",
+ "splunk.png",
+ "spoolman.png",
+ "spotify.png",
+ "sqlitebrowser.png",
+ "squidex.png",
+ "squirrel-servers-manager.png",
+ "sshwifty.png",
+ "stalwart-mail-server.png",
+ "stalwart.png",
+ "standard-notes.png",
+ "startpage.png",
+ "stash.png",
+ "stb-proxy.png",
+ "steam.png",
+ "step-ca.png",
+ "stirling-pdf.png",
+ "storj.png",
+ "storm.png",
+ "stormkit.png",
+ "strapi.png",
+ "stremio.png",
+ "stump-alt.png",
+ "stump.png",
+ "subatic.png",
+ "sunshine.png",
+ "supabase.png",
+ "supermicro.png",
+ "surveymonkey.png",
+ "swarmpit.png",
+ "swift.png",
+ "symmetricom-light.png",
+ "symmetricom.png",
+ "synapse-light.png",
+ "synapse.png",
+ "syncthing-dark.png",
+ "syncthing.png",
+ "synology-dsm.png",
+ "synology-light.png",
+ "synology.png",
+ "sysreptor.png",
+ "tabula.png",
+ "tacticalrmm.png",
+ "taiga.png",
+ "tailscale-light.png",
+ "tailscale.png",
+ "talos.png",
+ "tandoor-recipes.png",
+ "tangerine-ui.png",
+ "taskcafe.png",
+ "tasmota-light.png",
+ "tasmota.png",
+ "tautulli.png",
+ "teamcity-light.png",
+ "teamcity.png",
+ "teamspeak.png",
+ "telegraf.png",
+ "telegram.png",
+ "telekom.png",
+ "teleport.png",
+ "tenda.png",
+ "terminal.png",
+ "terraform.png",
+ "teslamate-light.png",
+ "teslamate.png",
+ "thanos.png",
+ "the-pirate-bay.png",
+ "the-proxy-bay.png",
+ "theia-light.png",
+ "theia.png",
+ "thelounge.png",
+ "theodinproject.png",
+ "thingsboard.png",
+ "threads-light.png",
+ "threads.png",
+ "thunderbird.png",
+ "tianji-light.png",
+ "tianji.png",
+ "tiddlywiki-light.png",
+ "tiddlywiki.png",
+ "tiktok-light.png",
+ "tiktok.png",
+ "timetagger-light.png",
+ "timetagger.png",
+ "tmdb.png",
+ "todoist-dark.png",
+ "todoist.png",
+ "tolgee.png",
+ "tooljet-dark.png",
+ "tooljet.png",
+ "touitomamout.png",
+ "tp-link.png",
+ "tpdb.png",
+ "traccar-dark.png",
+ "traccar.png",
+ "traefik-proxy.png",
+ "traefik.png",
+ "traggo.png",
+ "trakt.png",
+ "transmission.png",
+ "trilium.png",
+ "triliumnext.png",
+ "truenas-core.png",
+ "truenas-scale.png",
+ "truenas.png",
+ "tubesync-light.png",
+ "tubesync.png",
+ "tumblr.png",
+ "turbopack-light.png",
+ "turbopack.png",
+ "tux.png",
+ "tvdb.png",
+ "tvheadend.png",
+ "twingate-light.png",
+ "twingate.png",
+ "twitch.png",
+ "twitter.png",
+ "typemill-light.png",
+ "typemill.png",
+ "typescript.png",
+ "typo3.png",
+ "ubiquiti-networks.png",
+ "ubiquiti-unifi.png",
+ "ubiquiti.png",
+ "ubuntu-linux-alt.png",
+ "ubuntu-linux.png",
+ "uc-browser.png",
+ "udemy-light.png",
+ "udemy.png",
+ "ultimate-guitar-light.png",
+ "ultimate-guitar.png",
+ "umami-light.png",
+ "umami.png",
+ "umbrel.png",
+ "unbound.png",
+ "undb.png",
+ "unifi-dark.png",
+ "unifi-voucher-site.png",
+ "unifi.png",
+ "unimus.png",
+ "unraid.png",
+ "untangle.png",
+ "ups.png",
+ "upsnap.png",
+ "uptime-kuma.png",
+ "valetudo.png",
+ "valkey.png",
+ "vault-light.png",
+ "vault.png",
+ "vaultwarden-light.png",
+ "vaultwarden.png",
+ "vector.png",
+ "veeam.png",
+ "vercel-light.png",
+ "vercel.png",
+ "verizon.png",
+ "vi.png",
+ "victoriametrics-light.png",
+ "victoriametrics.png",
+ "vidzy.png",
+ "viewtube.png",
+ "vikunja.png",
+ "virgin-media.png",
+ "virtualmin.png",
+ "viseron-light.png",
+ "viseron.png",
+ "visual-studio-code.png",
+ "vivaldi.png",
+ "vmware-esxi.png",
+ "vmware-workstation.png",
+ "vmware.png",
+ "voilib.png",
+ "voip-ms.png",
+ "voltaserve-light.png",
+ "voltaserve.png",
+ "volumio-light.png",
+ "volumio.png",
+ "voron.png",
+ "vscode.png",
+ "vuetorrent.png",
+ "vultr.png",
+ "wakapi.png",
+ "wakatime-light.png",
+ "wakatime.png",
+ "wallabag-light.png",
+ "wallabag.png",
+ "wanderer-light.png",
+ "wanderer.png",
+ "warpgate.png",
+ "watcharr-light.png",
+ "watcharr.png",
+ "watchtower.png",
+ "waze.png",
+ "wazuh.png",
+ "web-check-dark.png",
+ "web-check.png",
+ "webhook.png",
+ "webhookd.png",
+ "webkit.png",
+ "webmin.png",
+ "webtorrent.png",
+ "webtrees.png",
+ "wekan.png",
+ "wger.png",
+ "whats-up-docker-light.png",
+ "whats-up-docker.png",
+ "whatsapp.png",
+ "whisparr.png",
+ "wikidocs.png",
+ "wikijs-alt.png",
+ "wikijs.png",
+ "wikipedia-light.png",
+ "wikipedia.png",
+ "willow.png",
+ "windmill.png",
+ "windows-10.png",
+ "windows-95-light.png",
+ "windows-95.png",
+ "windows-retro-light.png",
+ "windows-retro.png",
+ "wireguard.png",
+ "wizarr.png",
+ "wolfi-light.png",
+ "wolfi.png",
+ "woocommerce.png",
+ "woodpecker-ci.png",
+ "wordpress.png",
+ "worklenz.png",
+ "wotdle-light.png",
+ "wotdle.png",
+ "wownero.png",
+ "writefreely-light.png",
+ "writefreely.png",
+ "x-light.png",
+ "x.png",
+ "xbackbone.png",
+ "xbox-game-pass.png",
+ "xbox.png",
+ "xbrowsersync.png",
+ "xmr.png",
+ "xmrig.png",
+ "xpipe.png",
+ "xwiki.png",
+ "yacht.png",
+ "yahoo.png",
+ "yamtrack-light.png",
+ "yamtrack.png",
+ "yandex.png",
+ "yarr-light.png",
+ "yarr.png",
+ "ycombinator-dark.png",
+ "ycombinator.png",
+ "ynab.png",
+ "your-spotify.png",
+ "yourls.png",
+ "youtube-dl.png",
+ "youtube-kids.png",
+ "youtube-music.png",
+ "youtube.png",
+ "yts.png",
+ "yuno-host-light.png",
+ "yunohost.png",
+ "z-wave-js-ui.png",
+ "zabbix.png",
+ "zabka.png",
+ "zammad.png",
+ "zendesk.png",
+ "zerotier-light.png",
+ "zerotier.png",
+ "zigbee2mqtt-light.png",
+ "zigbee2mqtt.png",
+ "zipcaptions.png",
+ "zipline-light.png",
+ "zipline.png",
+ "zitadel-light.png",
+ "zitadel.png",
+ "zohomail.png",
+ "zoom-alt.png",
+ "zoom.png",
+ "zoraxy.png",
+ "zulip.png",
+ "zyxel-communications-light.png",
+ "zyxel-communications.png",
+ "zyxel-networks-light.png",
+ "zyxel-networks.png"
+ ],
+ "svg": [
+ ".DS_Store",
+ "13ft.svg",
+ "2fauth-light.svg",
+ "2fauth.svg",
+ "act.svg",
+ "activepieces.svg",
+ "actual-budget.svg",
+ "adguard-home.svg",
+ "adminer.svg",
+ "adventure-log.svg",
+ "affine-light.svg",
+ "affine.svg",
+ "airsonic.svg",
+ "airtable.svg",
+ "airtel.svg",
+ "airvpn.svg",
+ "akkoma-light.svg",
+ "akkoma.svg",
+ "albert-heijn.svg",
+ "alertmanager.svg",
+ "aliexpress.svg",
+ "alist.svg",
+ "alloy.svg",
+ "alma-linux.svg",
+ "alpine-linux.svg",
+ "amazon-light.svg",
+ "amazon-prime.svg",
+ "amazon-web-services-light.svg",
+ "amazon-web-services.svg",
+ "amazon.svg",
+ "amd-light.svg",
+ "amd.svg",
+ "android-auto-dark.svg",
+ "android-auto.svg",
+ "android-robot.svg",
+ "android.svg",
+ "anonaddy.svg",
+ "ansible-light.svg",
+ "ansible.svg",
+ "apache-airflow.svg",
+ "apache-answer.svg",
+ "apache-cassandra.svg",
+ "apache-druid.svg",
+ "apache-openoffice.svg",
+ "apache-solr.svg",
+ "apache-subversion.svg",
+ "apache-tomcat-light.svg",
+ "apache-tomcat.svg",
+ "apache.svg",
+ "apc.svg",
+ "apiscp.svg",
+ "app-store.svg",
+ "appflowy.svg",
+ "apple-alt.svg",
+ "apple-light.svg",
+ "apple-music.svg",
+ "apple-tv-plus-light.svg",
+ "apple-tv-plus.svg",
+ "apple.svg",
+ "appwrite.svg",
+ "ara-records-ansible.svg",
+ "arch-linux.svg",
+ "arduino.svg",
+ "argo-cd.svg",
+ "arm.svg",
+ "artifacthub.svg",
+ "aruba.svg",
+ "asana.svg",
+ "asciinema.svg",
+ "astral.svg",
+ "astuto-light.svg",
+ "astuto.svg",
+ "asus-rog.svg",
+ "asus-router.svg",
+ "asus.svg",
+ "asustor.svg",
+ "at-t.svg",
+ "atlassian-bamboo.svg",
+ "atlassian-bitbucket.svg",
+ "atlassian-jira.svg",
+ "atlassian-opsgenie.svg",
+ "atlassian-trello.svg",
+ "atlassian.svg",
+ "atuin-light.svg",
+ "atuin.svg",
+ "audacity.svg",
+ "audiobookshelf.svg",
+ "auracast.svg",
+ "authelia.svg",
+ "authentik.svg",
+ "authman.svg",
+ "autobrr.svg",
+ "automad-light.svg",
+ "automad.svg",
+ "avigilon.svg",
+ "avm-fritzbox-light.svg",
+ "avm-fritzbox.svg",
+ "aws-ecs.svg",
+ "aws-light.svg",
+ "aws.svg",
+ "awwesome.svg",
+ "azuracast.svg",
+ "azure-container-instances.svg",
+ "azure-container-service.svg",
+ "azure-devops.svg",
+ "azure-dns.svg",
+ "azure.svg",
+ "backblaze.svg",
+ "backrest-light.svg",
+ "backrest.svg",
+ "bar-assistant.svg",
+ "baserow.svg",
+ "bazarr-dark.svg",
+ "bazarr.svg",
+ "beaver-habit-tracker-light.svg",
+ "beaver-habit-tracker.svg",
+ "beef-light.svg",
+ "beef.svg",
+ "beszel-light.svg",
+ "beszel.svg",
+ "biblioreads-light.svg",
+ "biblioreads.svg",
+ "bigcapital.svg",
+ "bing.svg",
+ "bitbucket.svg",
+ "bitcoin.svg",
+ "bitwarden.svg",
+ "blocky.svg",
+ "blogger.svg",
+ "bluesky.svg",
+ "bluetooth.svg",
+ "booklogr-light.svg",
+ "booklogr.svg",
+ "bookstack.svg",
+ "bootstrap.svg",
+ "borg.svg",
+ "borgmatic-light.svg",
+ "borgmatic.svg",
+ "boundary.svg",
+ "box.svg",
+ "brave.svg",
+ "broadcastchannel-light.svg",
+ "broadcastchannel.svg",
+ "brocade.svg",
+ "brother.svg",
+ "browserless-light.svg",
+ "browserless.svg",
+ "browsh.svg",
+ "budgetbee-light.svg",
+ "budgetbee.svg",
+ "budibase.svg",
+ "bunkerweb.svg",
+ "c.svg",
+ "cacti.svg",
+ "caddy.svg",
+ "cal-com-light.svg",
+ "cal-com.svg",
+ "calibre-web.svg",
+ "calibre.svg",
+ "canonical.svg",
+ "caprover.svg",
+ "carrefour.svg",
+ "casaos.svg",
+ "castopod.svg",
+ "cc-light.svg",
+ "cc.svg",
+ "centos.svg",
+ "ceph.svg",
+ "cert-manager.svg",
+ "cert-warden-light.svg",
+ "cert-warden.svg",
+ "chainguard.svg",
+ "changedetection.svg",
+ "channels-dvr.svg",
+ "chatgpt.svg",
+ "chatpad-ai.svg",
+ "checkmk.svg",
+ "chevereto.svg",
+ "chirpy.svg",
+ "chrome-canary.svg",
+ "chrome-dev.svg",
+ "chrome-devtools.svg",
+ "chrome-remote-desktop.svg",
+ "chrome.svg",
+ "chromium.svg",
+ "cilium-light.svg",
+ "cilium.svg",
+ "cinny-light.svg",
+ "cinny.svg",
+ "cisco.svg",
+ "clickhouse.svg",
+ "cloud66.svg",
+ "cloud9-light.svg",
+ "cloud9.svg",
+ "cloudbeaver.svg",
+ "cloudflare-pages.svg",
+ "cloudflare-zero-trust.svg",
+ "cloudflare.svg",
+ "cloudpanel.svg",
+ "cockpit-cms-light.svg",
+ "cockpit-cms.svg",
+ "cockpit-light.svg",
+ "cockpit.svg",
+ "code.svg",
+ "codeberg.svg",
+ "coder-light.svg",
+ "coder.svg",
+ "codestats-light.svg",
+ "codestats.svg",
+ "codex-light.svg",
+ "codex.svg",
+ "collabora-online.svg",
+ "commafeed-light.svg",
+ "commafeed.svg",
+ "commento-light.svg",
+ "commento.svg",
+ "compreface.svg",
+ "concourse.svg",
+ "confluence.svg",
+ "consul.svg",
+ "contabo.svg",
+ "converse-light.svg",
+ "converse.svg",
+ "coolify.svg",
+ "coredns.svg",
+ "coreos.svg",
+ "cosign.svg",
+ "costco.svg",
+ "couchdb.svg",
+ "counter-analytics.svg",
+ "cozy.svg",
+ "cpanel.svg",
+ "cpp.svg",
+ "crafty-controller.svg",
+ "crowdsec.svg",
+ "cryptomator.svg",
+ "cryptpad.svg",
+ "csharp.svg",
+ "css-light.svg",
+ "css.svg",
+ "ctfreak.svg",
+ "cups-light.svg",
+ "cups.svg",
+ "cura.svg",
+ "cyberchef.svg",
+ "czkawka.svg",
+ "d-link.svg",
+ "dalibo.svg",
+ "dart.svg",
+ "datadog.svg",
+ "davical.svg",
+ "dawarich.svg",
+ "dc-os.svg",
+ "ddclient.svg",
+ "ddns-updater.svg",
+ "debian-linux.svg",
+ "defguard.svg",
+ "dell.svg",
+ "deluge.svg",
+ "deno-light.svg",
+ "deno.svg",
+ "denon-light.svg",
+ "denon.svg",
+ "deployarr.svg",
+ "diagrams-net.svg",
+ "digital-ocean.svg",
+ "dillinger-light.svg",
+ "dillinger.svg",
+ "directadmin.svg",
+ "directus.svg",
+ "discord.svg",
+ "discourse-light.svg",
+ "discourse.svg",
+ "disney-plus.svg",
+ "dlna.svg",
+ "docassemble-light.svg",
+ "docassemble.svg",
+ "docker-engine.svg",
+ "docker-mailserver-light.svg",
+ "docker-mailserver.svg",
+ "docker-moby.svg",
+ "docker-volume-backup.svg",
+ "docker.svg",
+ "dockge.svg",
+ "docking-station.svg",
+ "docsify.svg",
+ "docspell.svg",
+ "documenso.svg",
+ "docusaurus.svg",
+ "docuseal.svg",
+ "dokemon.svg",
+ "dokuwiki.svg",
+ "double-take-dark.svg",
+ "double-take.svg",
+ "dovecot.svg",
+ "dozzle.svg",
+ "draw-io.svg",
+ "draytek.svg",
+ "dropbox.svg",
+ "dropout-light.svg",
+ "dropout.svg",
+ "droppy-dark.svg",
+ "droppy.svg",
+ "dub-light.svg",
+ "dub.svg",
+ "duckdns-light.svg",
+ "duckdns.svg",
+ "duckduckgo.svg",
+ "duo.svg",
+ "duplicati.svg",
+ "easy-gate-light.svg",
+ "easy-gate.svg",
+ "ebay.svg",
+ "eblocker.svg",
+ "edge-dev.svg",
+ "edge.svg",
+ "elastic-beats.svg",
+ "elastic-kibana.svg",
+ "elastic-logstash.svg",
+ "elastic.svg",
+ "elasticsearch.svg",
+ "electron.svg",
+ "electronic-arts.svg",
+ "element.svg",
+ "eleventy-light.svg",
+ "eleventy.svg",
+ "elysian.svg",
+ "emacs.svg",
+ "emby.svg",
+ "emq-light.svg",
+ "emq.svg",
+ "emqx.svg",
+ "emulatorjs.svg",
+ "enbizcard.svg",
+ "enclosed-light.svg",
+ "enclosed.svg",
+ "endless-light.svg",
+ "endless.svg",
+ "endurain.svg",
+ "epic-games-light.svg",
+ "epic-games.svg",
+ "erste-george.svg",
+ "erste.svg",
+ "esphome-alt-light.svg",
+ "esphome-alt.svg",
+ "esphome-light.svg",
+ "esphome.svg",
+ "espressif.svg",
+ "etcd.svg",
+ "etesync.svg",
+ "ethereum.svg",
+ "etherpad.svg",
+ "evcc.svg",
+ "excalidraw.svg",
+ "f-droid.svg",
+ "facebook-messenger.svg",
+ "facebook.svg",
+ "fast-com-light.svg",
+ "fast-com.svg",
+ "fasten-health.svg",
+ "fastmail.svg",
+ "fedora-alt.svg",
+ "fedora.svg",
+ "feedbase-light.svg",
+ "feedbase.svg",
+ "feedbin-light.svg",
+ "feedbin.svg",
+ "feedly.svg",
+ "feedlynx-light.svg",
+ "feedlynx.svg",
+ "fenrus.svg",
+ "ferdium.svg",
+ "ferretdb.svg",
+ "fider.svg",
+ "filebot.svg",
+ "filebrowser.svg",
+ "filecloud.svg",
+ "fileflows.svg",
+ "filegator.svg",
+ "filerun.svg",
+ "files.svg",
+ "filestash.svg",
+ "filezilla.svg",
+ "finamp.svg",
+ "findroid.svg",
+ "fios-light.svg",
+ "fios.svg",
+ "firebase.svg",
+ "firefly-iii.svg",
+ "firefly.svg",
+ "firefox-beta.svg",
+ "firefox-developer-edition.svg",
+ "firefox-lite.svg",
+ "firefox-nightly.svg",
+ "firefox-reality.svg",
+ "firefox-send.svg",
+ "firefox.svg",
+ "firewalla.svg",
+ "fittrackee.svg",
+ "fladder.svg",
+ "flaresolverr.svg",
+ "flarum.svg",
+ "flathub.svg",
+ "flatnotes.svg",
+ "flatpak.svg",
+ "flightradar24-light.svg",
+ "flightradar24.svg",
+ "flood.svg",
+ "fluffychat-dark.svg",
+ "fluffychat.svg",
+ "fluidd.svg",
+ "flux-cd.svg",
+ "fly-io.svg",
+ "focalboard.svg",
+ "foldingathome.svg",
+ "fontawesome.svg",
+ "forgejo.svg",
+ "forte-light.svg",
+ "forte.svg",
+ "fortinet.svg",
+ "fossil.svg",
+ "franz.svg",
+ "freedombox.svg",
+ "freeipa.svg",
+ "freenas.svg",
+ "freenom.svg",
+ "freepbx.svg",
+ "freshping-dark.svg",
+ "freshping.svg",
+ "freshrss.svg",
+ "friendica.svg",
+ "frigate-light.svg",
+ "frigate.svg",
+ "fritzbox-light.svg",
+ "fritzbox.svg",
+ "fronius.svg",
+ "fulcio.svg",
+ "funkwhale-light.svg",
+ "funkwhale.svg",
+ "fusionauth.svg",
+ "garage.svg",
+ "gatsby.svg",
+ "gatus.svg",
+ "gboard.svg",
+ "geckoview.svg",
+ "gentoo-linux.svg",
+ "gerbera.svg",
+ "get-iplayer.svg",
+ "ghostfolio.svg",
+ "gigaset.svg",
+ "gimp.svg",
+ "git.svg",
+ "gitbook.svg",
+ "gitea.svg",
+ "gitee.svg",
+ "github-light.svg",
+ "github.svg",
+ "gitlab.svg",
+ "gitsign.svg",
+ "gladys-assistant.svg",
+ "glance-light.svg",
+ "glance.svg",
+ "glances-light.svg",
+ "glances.svg",
+ "glpi.svg",
+ "gluetun.svg",
+ "gmail.svg",
+ "go.svg",
+ "goaccess-light.svg",
+ "goaccess.svg",
+ "godaddy-alt.svg",
+ "godaddy.svg",
+ "gollum.svg",
+ "goodreads.svg",
+ "google-admin.svg",
+ "google-admob.svg",
+ "google-alerts.svg",
+ "google-analytics.svg",
+ "google-assistant.svg",
+ "google-calendar.svg",
+ "google-chat.svg",
+ "google-chrome.svg",
+ "google-classroom.svg",
+ "google-cloud-platform.svg",
+ "google-cloud-print.svg",
+ "google-compute-engine.svg",
+ "google-contacts.svg",
+ "google-docs.svg",
+ "google-domains.svg",
+ "google-drive.svg",
+ "google-earth.svg",
+ "google-fi.svg",
+ "google-fit.svg",
+ "google-fonts.svg",
+ "google-forms.svg",
+ "google-gemini.svg",
+ "google-home.svg",
+ "google-keep.svg",
+ "google-lens.svg",
+ "google-maps.svg",
+ "google-meet.svg",
+ "google-messages.svg",
+ "google-news.svg",
+ "google-one.svg",
+ "google-pay.svg",
+ "google-photos.svg",
+ "google-play-books.svg",
+ "google-play-games.svg",
+ "google-play.svg",
+ "google-podcasts.svg",
+ "google-scholar.svg",
+ "google-search-console.svg",
+ "google-sheets.svg",
+ "google-shopping.svg",
+ "google-sites.svg",
+ "google-slides.svg",
+ "google-street-view.svg",
+ "google-tag-manager.svg",
+ "google-translate.svg",
+ "google-tv.svg",
+ "google-voice.svg",
+ "google-wallet.svg",
+ "google-wifi.svg",
+ "google.svg",
+ "gotify.svg",
+ "gotosocial.svg",
+ "gpt4free.svg",
+ "grafana.svg",
+ "gramps.svg",
+ "grandstream.svg",
+ "grav-light.svg",
+ "grav.svg",
+ "graylog.svg",
+ "greenbone-light.svg",
+ "greenbone.svg",
+ "grimoire.svg",
+ "grist.svg",
+ "grocy.svg",
+ "guacamole-light.svg",
+ "guacamole.svg",
+ "hacker-news.svg",
+ "hammond-light.svg",
+ "hammond.svg",
+ "handbrake.svg",
+ "haproxy.svg",
+ "haptic-light.svg",
+ "haptic.svg",
+ "harbor.svg",
+ "harvester.svg",
+ "hashicorp-boundary.svg",
+ "hashicorp-consul.svg",
+ "hashicorp-nomad.svg",
+ "hashicorp-packer.svg",
+ "hashicorp-terraform.svg",
+ "hashicorp-vagrant.svg",
+ "hashicorp-vault.svg",
+ "hashicorp-waypoint.svg",
+ "hastypaste.svg",
+ "hasura.svg",
+ "hatsh-light.svg",
+ "hatsh.svg",
+ "hbo-light.svg",
+ "hbo.svg",
+ "hdhomerun-light.svg",
+ "hdhomerun.svg",
+ "headscale.svg",
+ "healthchecks.svg",
+ "hedgedoc.svg",
+ "heimdall-light.svg",
+ "heimdall.svg",
+ "helium-token.svg",
+ "helm.svg",
+ "hetzner.svg",
+ "hexo.svg",
+ "heyform.svg",
+ "hifiberry.svg",
+ "hikvision.svg",
+ "hilook.svg",
+ "hivedav.svg",
+ "hoarder-light.svg",
+ "hoarder.svg",
+ "hollo-light.svg",
+ "hollo.svg",
+ "homarr.svg",
+ "home-assistant-alt.svg",
+ "home-assistant.svg",
+ "homebox-light.svg",
+ "homebox.svg",
+ "homebridge.svg",
+ "homer.svg",
+ "homey.svg",
+ "hoobs.svg",
+ "hoppscotch.svg",
+ "hostinger.svg",
+ "hotio.svg",
+ "hp.svg",
+ "html-light.svg",
+ "html.svg",
+ "huawei.svg",
+ "hubitat.svg",
+ "hubzilla.svg",
+ "hugging-face.svg",
+ "huginn.svg",
+ "hugo.svg",
+ "hulu.svg",
+ "humhub.svg",
+ "hydra.svg",
+ "hyperpipe-light.svg",
+ "hyperpipe.svg",
+ "i2p-light.svg",
+ "i2p.svg",
+ "i2pd.svg",
+ "icecast.svg",
+ "icinga-light.svg",
+ "icinga.svg",
+ "idrac.svg",
+ "ilo.svg",
+ "immich-frame-light.svg",
+ "immich-frame.svg",
+ "immich-kiosk-light.svg",
+ "immich-kiosk.svg",
+ "immich.svg",
+ "influxdb.svg",
+ "infoblox.svg",
+ "inoreader.svg",
+ "instagram.svg",
+ "inventree.svg",
+ "invidious.svg",
+ "invisioncommunity.svg",
+ "invoice-ninja-light.svg",
+ "invoice-ninja.svg",
+ "invoke-ai.svg",
+ "iobroker.svg",
+ "ionos.svg",
+ "ipboard.svg",
+ "ipfs-light.svg",
+ "ipfs.svg",
+ "ispconfig.svg",
+ "it-tools-light.svg",
+ "it-tools.svg",
+ "jackett-light.svg",
+ "jackett.svg",
+ "jaeger.svg",
+ "jamstack.svg",
+ "java.svg",
+ "javascript-light.svg",
+ "javascript.svg",
+ "jeedom.svg",
+ "jekyll.svg",
+ "jellyfin.svg",
+ "jellyseerr.svg",
+ "jellystat.svg",
+ "jelu.svg",
+ "jenkins.svg",
+ "jetbrains-youtrack.svg",
+ "jio.svg",
+ "jira.svg",
+ "jitsi-meet.svg",
+ "jitsi.svg",
+ "joomla.svg",
+ "joplin.svg",
+ "julia.svg",
+ "jupyter.svg",
+ "jwt-io-light.svg",
+ "jwt-io.svg",
+ "kagi.svg",
+ "kamatera.svg",
+ "kanboard-light.svg",
+ "kanboard.svg",
+ "kanidm.svg",
+ "kapowarr.svg",
+ "kasm-workspaces.svg",
+ "kasm.svg",
+ "kasten-k10.svg",
+ "kaufland.svg",
+ "kavita.svg",
+ "kbin.svg",
+ "keenetic-alt.svg",
+ "keenetic.svg",
+ "keepassxc.svg",
+ "keila.svg",
+ "kerberos.svg",
+ "kestra.svg",
+ "keycloak.svg",
+ "keyoxide-alt.svg",
+ "keyoxide.svg",
+ "kibana.svg",
+ "kick-light.svg",
+ "kick.svg",
+ "kimai.svg",
+ "kinto.svg",
+ "kitana.svg",
+ "kitchenowl.svg",
+ "kiwix-light.svg",
+ "kiwix.svg",
+ "klipper.svg",
+ "ko-fi.svg",
+ "kodi.svg",
+ "koel.svg",
+ "koillection-light.svg",
+ "koillection.svg",
+ "komga.svg",
+ "kontoj.svg",
+ "kopia.svg",
+ "kotlin.svg",
+ "kpn.svg",
+ "krakend.svg",
+ "krusader.svg",
+ "kubernetes-dashboard.svg",
+ "kubernetes.svg",
+ "kutt.svg",
+ "kyoo.svg",
+ "lancommander-light.svg",
+ "lancommander.svg",
+ "lark.svg",
+ "lastpass.svg",
+ "leanote.svg",
+ "leantime.svg",
+ "lemmy-light.svg",
+ "lemmy.svg",
+ "lets-encrypt.svg",
+ "libreddit-light.svg",
+ "libreddit.svg",
+ "librenms.svg",
+ "libreoffice-light.svg",
+ "libreoffice.svg",
+ "librespeed-light.svg",
+ "librespeed.svg",
+ "librewolf.svg",
+ "librum.svg",
+ "lidarr.svg",
+ "lidl.svg",
+ "lighttpd.svg",
+ "limesurvey.svg",
+ "linguacafe.svg",
+ "linkace.svg",
+ "linkding.svg",
+ "linkedin.svg",
+ "linkstack.svg",
+ "linode.svg",
+ "linux-mint.svg",
+ "linux.svg",
+ "linuxgsm.svg",
+ "linuxserver-io.svg",
+ "liremdb.svg",
+ "listmonk.svg",
+ "littlelink-custom.svg",
+ "lnbits.svg",
+ "locals-light.svg",
+ "locals.svg",
+ "lodestone.svg",
+ "logitech-gaming.svg",
+ "logitech-legacy.svg",
+ "logitech-light.svg",
+ "logitech.svg",
+ "logseq.svg",
+ "logstash.svg",
+ "logto.svg",
+ "loki.svg",
+ "longhorn.svg",
+ "lua.svg",
+ "lunasea.svg",
+ "lynx-light.svg",
+ "lynx.svg",
+ "mail-in-a-box.svg",
+ "mailchimp-light.svg",
+ "mailchimp.svg",
+ "mailcow.svg",
+ "mailfence.svg",
+ "mailgun.svg",
+ "mailjet.svg",
+ "mainsail.svg",
+ "maintainerr.svg",
+ "manjaro-linux.svg",
+ "manyfold.svg",
+ "maptiler.svg",
+ "mariadb.svg",
+ "mastodon.svg",
+ "matomo.svg",
+ "matrix-light.svg",
+ "matrix-synapse-light.svg",
+ "matrix-synapse.svg",
+ "matrix.svg",
+ "mattermost.svg",
+ "mautic.svg",
+ "max.svg",
+ "mayan-edms-light.svg",
+ "mayan-edms.svg",
+ "maybe.svg",
+ "mbin.svg",
+ "mealie.svg",
+ "medama.svg",
+ "mediathekview.svg",
+ "mediawiki.svg",
+ "mediux.svg",
+ "medusa-light.svg",
+ "medusa.svg",
+ "mega-nz-dark.svg",
+ "mega-nz.svg",
+ "meilisearch.svg",
+ "memories-light.svg",
+ "memories.svg",
+ "meraki.svg",
+ "mercusys.svg",
+ "mergeable-dark.svg",
+ "mergeable.svg",
+ "meshping-light.svg",
+ "meshping.svg",
+ "meshtastic.svg",
+ "meta.svg",
+ "metabase.svg",
+ "metube.svg",
+ "microsoft-365-admin-center.svg",
+ "microsoft-365.svg",
+ "microsoft-access.svg",
+ "microsoft-azure.svg",
+ "microsoft-bing.svg",
+ "microsoft-copilot.svg",
+ "microsoft-edge.svg",
+ "microsoft-excel.svg",
+ "microsoft-exchange.svg",
+ "microsoft-office.svg",
+ "microsoft-onedrive.svg",
+ "microsoft-onenote.svg",
+ "microsoft-outlook.svg",
+ "microsoft-powerpoint.svg",
+ "microsoft-sharepoint.svg",
+ "microsoft-sql-server-light.svg",
+ "microsoft-sql-server.svg",
+ "microsoft-teams.svg",
+ "microsoft-to-do.svg",
+ "microsoft-windows.svg",
+ "microsoft-word.svg",
+ "microsoft.svg",
+ "mikrotik-light.svg",
+ "mikrotik.svg",
+ "minecraft.svg",
+ "miniflux-light.svg",
+ "miniflux.svg",
+ "minio-light.svg",
+ "minio.svg",
+ "misskey-light.svg",
+ "misskey.svg",
+ "mitra.svg",
+ "mixpost.svg",
+ "mkdocs-light.svg",
+ "mkdocs.svg",
+ "mobilizon.svg",
+ "mobotix-light.svg",
+ "mobotix.svg",
+ "modrinth.svg",
+ "mojeek.svg",
+ "monero.svg",
+ "mongodb.svg",
+ "monica-light.svg",
+ "monica.svg",
+ "moodle-light.svg",
+ "moodle.svg",
+ "morphos.svg",
+ "mosquitto.svg",
+ "motioneye-dark.svg",
+ "motioneye.svg",
+ "mqtt.svg",
+ "mstream.svg",
+ "mullvad-browser.svg",
+ "mullvad-vpn.svg",
+ "mullvad.svg",
+ "multi-scrobbler.svg",
+ "mumble-light.svg",
+ "mumble.svg",
+ "music-assistant-light.svg",
+ "music-assistant.svg",
+ "musicbrainz.svg",
+ "myheats-light.svg",
+ "myheats.svg",
+ "myspeed.svg",
+ "mysql.svg",
+ "n8n.svg",
+ "nagios.svg",
+ "nasa.svg",
+ "navidrome-light.svg",
+ "navidrome.svg",
+ "neko-light.svg",
+ "neko.svg",
+ "neo4j.svg",
+ "neocities.svg",
+ "neodb.svg",
+ "neonlink.svg",
+ "netalertx-light.svg",
+ "netalertx.svg",
+ "netapp-light.svg",
+ "netapp.svg",
+ "netatmo.svg",
+ "netbird.svg",
+ "netboot.svg",
+ "netbox.svg",
+ "netdata.svg",
+ "netflix.svg",
+ "netgear-light.svg",
+ "netgear.svg",
+ "netlify.svg",
+ "netsurf-light.svg",
+ "netsurf.svg",
+ "network-ups-tools.svg",
+ "newegg.svg",
+ "newsblur.svg",
+ "nextcloud-blue.svg",
+ "nextcloud-calendar.svg",
+ "nextcloud-contacts.svg",
+ "nextcloud-cookbook.svg",
+ "nextcloud-cospend.svg",
+ "nextcloud-deck.svg",
+ "nextcloud-files.svg",
+ "nextcloud-ncdownloader.svg",
+ "nextcloud-news.svg",
+ "nextcloud-notes.svg",
+ "nextcloud-photos.svg",
+ "nextcloud-social.svg",
+ "nextcloud-tables.svg",
+ "nextcloud-tasks.svg",
+ "nextcloud-timemanager.svg",
+ "nextcloud-white.svg",
+ "nextcloud.svg",
+ "nextcloudpi.svg",
+ "nextdns.svg",
+ "nexterm.svg",
+ "nextjs-light.svg",
+ "nextjs.svg",
+ "nginx-proxy-manager.svg",
+ "nginx.svg",
+ "nicotine-plus.svg",
+ "nightscout-light.svg",
+ "nightscout.svg",
+ "nintendo-switch.svg",
+ "nitter.svg",
+ "nixos.svg",
+ "nocodb.svg",
+ "node-red.svg",
+ "nodebb.svg",
+ "nodejs-alt.svg",
+ "nodejs.svg",
+ "nomad.svg",
+ "nomie.svg",
+ "nordvpn.svg",
+ "note-mark.svg",
+ "notesnook-light.svg",
+ "notesnook.svg",
+ "notion-light.svg",
+ "notion.svg",
+ "ntfy.svg",
+ "nut.svg",
+ "nvidia.svg",
+ "nzbhydra2-light.svg",
+ "nzbhydra2.svg",
+ "obico.svg",
+ "obsidian.svg",
+ "obtainium.svg",
+ "octoprint.svg",
+ "oculus-light.svg",
+ "oculus.svg",
+ "odoo.svg",
+ "office-365.svg",
+ "olivetin-light.svg",
+ "olivetin.svg",
+ "ollama.svg",
+ "omada.svg",
+ "ombi.svg",
+ "omnidb.svg",
+ "omnivore.svg",
+ "onedev-light.svg",
+ "onedev.svg",
+ "oneuptime-light.svg",
+ "oneuptime.svg",
+ "onlyoffice.svg",
+ "open-resume.svg",
+ "open-source-initiative.svg",
+ "openai-light.svg",
+ "openai.svg",
+ "openchangelog-light.svg",
+ "openchangelog.svg",
+ "openeats-light.svg",
+ "openeats.svg",
+ "openemr-light.svg",
+ "openemr.svg",
+ "opengist-light.svg",
+ "opengist.svg",
+ "openhab.svg",
+ "openldap.svg",
+ "openmediavault.svg",
+ "openoffice.svg",
+ "openpanel-light.svg",
+ "openpanel.svg",
+ "openproject.svg",
+ "openreads.svg",
+ "opensearch.svg",
+ "openspeedtest.svg",
+ "openstack.svg",
+ "openstreetmap.svg",
+ "opensuse.svg",
+ "opentalk.svg",
+ "opentofu.svg",
+ "openvas.svg",
+ "openvpn.svg",
+ "openwrt.svg",
+ "opera-touch.svg",
+ "opera.svg",
+ "opnform.svg",
+ "opnsense.svg",
+ "oracle-cloud.svg",
+ "oracle.svg",
+ "orange.svg",
+ "origin.svg",
+ "oscarr-light.svg",
+ "oscarr.svg",
+ "osticket.svg",
+ "outline-light.svg",
+ "outline.svg",
+ "overleaf.svg",
+ "overseerr.svg",
+ "ovh.svg",
+ "ovirt-light.svg",
+ "ovirt.svg",
+ "owncast.svg",
+ "owncloud.svg",
+ "owntone.svg",
+ "owntracks.svg",
+ "oxker-light.svg",
+ "oxker.svg",
+ "p1ib.svg",
+ "pagerduty.svg",
+ "palemoon.svg",
+ "palo-alto.svg",
+ "paperless-ng.svg",
+ "paperless-ngx.svg",
+ "paperless.svg",
+ "papermark-light.svg",
+ "papermark.svg",
+ "papermerge-light.svg",
+ "papermerge.svg",
+ "parseable.svg",
+ "part-db-light.svg",
+ "part-db.svg",
+ "partkeepr.svg",
+ "passbolt.svg",
+ "passwork.svg",
+ "pastebin-dark.svg",
+ "pastebin.svg",
+ "patreon-light.svg",
+ "patreon.svg",
+ "payload-light.svg",
+ "payload.svg",
+ "paypal.svg",
+ "pdfding-light.svg",
+ "pdfding.svg",
+ "peacock-light.svg",
+ "peacock.svg",
+ "peanut-light.svg",
+ "peanut.svg",
+ "peertube.svg",
+ "pelican-panel.svg",
+ "penpot-light.svg",
+ "penpot.svg",
+ "peppermint.svg",
+ "pepperminty-wiki.svg",
+ "perlite.svg",
+ "pfsense-light.svg",
+ "pfsense.svg",
+ "pg-back-web.svg",
+ "pgadmin.svg",
+ "phanpy.svg",
+ "phoneinfoga-light.svg",
+ "phoneinfoga.svg",
+ "phorge-light.svg",
+ "phorge.svg",
+ "phoscon-light.svg",
+ "phoscon.svg",
+ "photonix-light.svg",
+ "photonix.svg",
+ "photopea.svg",
+ "photoprism-light.svg",
+ "photoprism.svg",
+ "photostructure-dark.svg",
+ "photostructure.svg",
+ "photoview.svg",
+ "php-light.svg",
+ "php.svg",
+ "phpmyadmin.svg",
+ "pi-hole.svg",
+ "pia.svg",
+ "picsur-light.svg",
+ "picsur.svg",
+ "pigallery2.svg",
+ "pikapods.svg",
+ "pingdom-light.svg",
+ "pingdom.svg",
+ "pingvin-dark.svg",
+ "pingvin-share-dark.svg",
+ "pingvin-share.svg",
+ "pingvin.svg",
+ "pinkary.svg",
+ "pinterest.svg",
+ "pioneer-light.svg",
+ "pioneer.svg",
+ "piped.svg",
+ "pirate-proxy.svg",
+ "piwigo.svg",
+ "pixelfed.svg",
+ "plane.svg",
+ "planka-dark.svg",
+ "planka.svg",
+ "plausible.svg",
+ "playstation.svg",
+ "pleroma.svg",
+ "plesk.svg",
+ "plex-alt-light.svg",
+ "plex-alt.svg",
+ "plex-light.svg",
+ "plex-rewind.svg",
+ "plex.svg",
+ "plexrequests-light.svg",
+ "plexrequests.svg",
+ "plume.svg",
+ "pocket-casts-dark.svg",
+ "pocket-casts.svg",
+ "pocket-id-light.svg",
+ "pocket-id.svg",
+ "pocketbase-dark.svg",
+ "pocketbase.svg",
+ "podfetch-light.svg",
+ "podfetch.svg",
+ "podify.svg",
+ "podman.svg",
+ "policycontroller.svg",
+ "poly.svg",
+ "polywork.svg",
+ "portainer.svg",
+ "portus.svg",
+ "postal.svg",
+ "poste.svg",
+ "postgres.svg",
+ "postgresql.svg",
+ "posthog-light.svg",
+ "posthog.svg",
+ "postiz-dark.svg",
+ "postiz.svg",
+ "powerbi.svg",
+ "powerdns.svg",
+ "prime-video-light.svg",
+ "prime-video.svg",
+ "printer.svg",
+ "pritunl.svg",
+ "privacyidea.svg",
+ "private-internet-access.svg",
+ "privatebin.svg",
+ "projectsend.svg",
+ "prometheus.svg",
+ "proton-calendar.svg",
+ "proton-drive.svg",
+ "proton-mail.svg",
+ "proton-pass.svg",
+ "proton-vpn.svg",
+ "prowlarr.svg",
+ "proxmox-light.svg",
+ "proxmox.svg",
+ "prtg.svg",
+ "prusa-research.svg",
+ "pterodactyl.svg",
+ "pufferpanel.svg",
+ "purelymail.svg",
+ "pushfish.svg",
+ "pushover.svg",
+ "putty.svg",
+ "pydio.svg",
+ "pyload.svg",
+ "python.svg",
+ "qbittorrent.svg",
+ "qdirstat.svg",
+ "qinglong.svg",
+ "qnap.svg",
+ "questdb.svg",
+ "quetre.svg",
+ "quickwit.svg",
+ "qutebrowser.svg",
+ "r.svg",
+ "rabbitmq.svg",
+ "radarr.svg",
+ "radicale.svg",
+ "rainloop.svg",
+ "rallly.svg",
+ "rancher.svg",
+ "raspberry-pi-light.svg",
+ "raspberry-pi.svg",
+ "rclone.svg",
+ "rdt-client.svg",
+ "reactive-resume-light.svg",
+ "reactive-resume.svg",
+ "readarr.svg",
+ "readeck.svg",
+ "readthedocs-light.svg",
+ "readthedocs.svg",
+ "real-debrid.svg",
+ "recalbox.svg",
+ "receipt-wrangler.svg",
+ "recipesage.svg",
+ "reddit.svg",
+ "redict.svg",
+ "redis.svg",
+ "redlib-light.svg",
+ "redlib.svg",
+ "rekor.svg",
+ "remmina.svg",
+ "reolink.svg",
+ "requestly.svg",
+ "requestrr.svg",
+ "resiliosync-light.svg",
+ "resiliosync.svg",
+ "restreamer.svg",
+ "revolt-light.svg",
+ "revolt.svg",
+ "rhasspy-dark.svg",
+ "rhasspy.svg",
+ "rhodecode.svg",
+ "richy.svg",
+ "rimgo-light.svg",
+ "rimgo.svg",
+ "riot.svg",
+ "riverside-fm-light.svg",
+ "riverside-fm.svg",
+ "rocket-chat.svg",
+ "rocky-linux.svg",
+ "romm.svg",
+ "rook.svg",
+ "roundcube.svg",
+ "router.svg",
+ "rport.svg",
+ "rss-bridge.svg",
+ "rss-translator.svg",
+ "rstudio.svg",
+ "rstudioserver.svg",
+ "ruby.svg",
+ "rumble.svg",
+ "rundeck.svg",
+ "runonflux.svg",
+ "runson-light.svg",
+ "runson.svg",
+ "rust.svg",
+ "rustdesk.svg",
+ "rutorrent.svg",
+ "ryot-light.svg",
+ "ryot.svg",
+ "sabnzbd-light.svg",
+ "sabnzbd.svg",
+ "safari-ios.svg",
+ "safari.svg",
+ "saltcorn.svg",
+ "samsung-internet.svg",
+ "sandstorm.svg",
+ "screenconnect.svg",
+ "scrutiny-light.svg",
+ "scrutiny.svg",
+ "seafile.svg",
+ "searx.svg",
+ "searxng.svg",
+ "secureai-tools-light.svg",
+ "secureai-tools.svg",
+ "seelf.svg",
+ "self-hosted-gateway.svg",
+ "selfh-st-light.svg",
+ "selfh-st.svg",
+ "semaphore-dark.svg",
+ "semaphore.svg",
+ "send.svg",
+ "sendgrid.svg",
+ "sendinblue.svg",
+ "sensu.svg",
+ "sentry-light.svg",
+ "sentry.svg",
+ "servarr-light.svg",
+ "servarr.svg",
+ "serviio-light.svg",
+ "serviio.svg",
+ "session.svg",
+ "shaarli.svg",
+ "shell-light.svg",
+ "shell-tips-light.svg",
+ "shell-tips.svg",
+ "shell.svg",
+ "shellhub.svg",
+ "shellngn.svg",
+ "shelly.svg",
+ "shiori.svg",
+ "shlink.svg",
+ "shoko-server.svg",
+ "shoko.svg",
+ "shopify.svg",
+ "sickbeard.svg",
+ "signal.svg",
+ "sigstore.svg",
+ "simplelogin.svg",
+ "simplex-chat.svg",
+ "sinusbot.svg",
+ "siyuan.svg",
+ "skype.svg",
+ "slack.svg",
+ "slash-light.svg",
+ "slash.svg",
+ "slice.svg",
+ "slidev.svg",
+ "slskd.svg",
+ "smartfox.svg",
+ "snapcast.svg",
+ "snapchat-dark.svg",
+ "snapchat.svg",
+ "snapdrop.svg",
+ "snappymail-light.svg",
+ "snappymail.svg",
+ "snikket.svg",
+ "socialhome.svg",
+ "sogo.svg",
+ "solidtime-light.svg",
+ "solidtime.svg",
+ "sonarqube.svg",
+ "sonarr-dark.svg",
+ "sonarr.svg",
+ "sophos-dark.svg",
+ "sophos.svg",
+ "sourcegraph.svg",
+ "spamassassin.svg",
+ "sparkleshare.svg",
+ "specifically-clementines.svg",
+ "sphinx-doc.svg",
+ "sphinx-relay.svg",
+ "sphinx.svg",
+ "splunk.svg",
+ "spoolman.svg",
+ "spotify.svg",
+ "sqlitebrowser.svg",
+ "squidex.svg",
+ "squirrel-servers-manager.svg",
+ "sshwifty.svg",
+ "stalwart-mail-server.svg",
+ "stalwart.svg",
+ "standard-notes.svg",
+ "startpage.svg",
+ "stash.svg",
+ "stb-proxy.svg",
+ "steam.svg",
+ "step-ca.svg",
+ "stirling-pdf.svg",
+ "storj.svg",
+ "storm.svg",
+ "stormkit.svg",
+ "strapi.svg",
+ "stremio.svg",
+ "stump-alt.svg",
+ "stump.svg",
+ "subatic.svg",
+ "sunshine.svg",
+ "supabase.svg",
+ "supermicro.svg",
+ "surveymonkey.svg",
+ "swarmpit.svg",
+ "swift.svg",
+ "symmetricom-light.svg",
+ "symmetricom.svg",
+ "synapse-light.svg",
+ "synapse.svg",
+ "syncthing-dark.svg",
+ "syncthing.svg",
+ "synology-dsm.svg",
+ "synology-light.svg",
+ "synology.svg",
+ "sysreptor.svg",
+ "tabula.svg",
+ "tacticalrmm.svg",
+ "taiga.svg",
+ "tailscale-light.svg",
+ "tailscale.svg",
+ "talos.svg",
+ "tandoor-recipes.svg",
+ "tangerine-ui.svg",
+ "taskcafe.svg",
+ "tasmota-light.svg",
+ "tasmota.svg",
+ "tautulli.svg",
+ "teamcity-light.svg",
+ "teamcity.svg",
+ "teamspeak.svg",
+ "telegraf.svg",
+ "telegram.svg",
+ "telekom.svg",
+ "teleport.svg",
+ "tenda.svg",
+ "terminal.svg",
+ "terraform.svg",
+ "teslamate-light.svg",
+ "teslamate.svg",
+ "thanos.svg",
+ "the-pirate-bay.svg",
+ "the-proxy-bay.svg",
+ "theia-light.svg",
+ "theia.svg",
+ "thelounge.svg",
+ "theodinproject.svg",
+ "thingsboard.svg",
+ "threads-light.svg",
+ "threads.svg",
+ "thunderbird.svg",
+ "tianji-light.svg",
+ "tianji.svg",
+ "tiddlywiki-light.svg",
+ "tiddlywiki.svg",
+ "tiktok-light.svg",
+ "tiktok.svg",
+ "timetagger-light.svg",
+ "timetagger.svg",
+ "tmdb.svg",
+ "todoist-dark.svg",
+ "todoist.svg",
+ "tolgee.svg",
+ "tooljet-dark.svg",
+ "tooljet.svg",
+ "touitomamout.svg",
+ "tp-link.svg",
+ "tpdb.svg",
+ "traccar-dark.svg",
+ "traccar.svg",
+ "traefik-proxy.svg",
+ "traefik.svg",
+ "traggo.svg",
+ "trakt.svg",
+ "transmission.svg",
+ "trilium.svg",
+ "triliumnext.svg",
+ "truenas-core.svg",
+ "truenas-scale.svg",
+ "truenas.svg",
+ "tubesync-light.svg",
+ "tubesync.svg",
+ "tumblr.svg",
+ "turbopack-light.svg",
+ "turbopack.svg",
+ "tux.svg",
+ "tvdb.svg",
+ "tvheadend.svg",
+ "twingate-light.svg",
+ "twingate.svg",
+ "twitch.svg",
+ "twitter.svg",
+ "typemill-light.svg",
+ "typemill.svg",
+ "typescript.svg",
+ "typo3.svg",
+ "ubiquiti-networks.svg",
+ "ubiquiti-unifi.svg",
+ "ubiquiti.svg",
+ "ubuntu-linux-alt.svg",
+ "ubuntu-linux.svg",
+ "uc-browser.svg",
+ "udemy-light.svg",
+ "udemy.svg",
+ "ultimate-guitar-light.svg",
+ "ultimate-guitar.svg",
+ "umami-light.svg",
+ "umami.svg",
+ "umbrel.svg",
+ "unbound.svg",
+ "undb.svg",
+ "unifi-dark.svg",
+ "unifi-voucher-site.svg",
+ "unifi.svg",
+ "unimus.svg",
+ "unraid.svg",
+ "untangle.svg",
+ "ups.svg",
+ "upsnap.svg",
+ "uptime-kuma.svg",
+ "valetudo.svg",
+ "valkey.svg",
+ "vault-light.svg",
+ "vault.svg",
+ "vaultwarden-light.svg",
+ "vaultwarden.svg",
+ "vector.svg",
+ "veeam.svg",
+ "vercel-light.svg",
+ "vercel.svg",
+ "verizon.svg",
+ "vi.svg",
+ "victoriametrics-light.svg",
+ "victoriametrics.svg",
+ "vidzy.svg",
+ "viewtube.svg",
+ "vikunja.svg",
+ "virgin-media.svg",
+ "virtualmin.svg",
+ "viseron-light.svg",
+ "viseron.svg",
+ "visual-studio-code.svg",
+ "vivaldi.svg",
+ "vmware-esxi.svg",
+ "vmware-workstation.svg",
+ "vmware.svg",
+ "voilib.svg",
+ "voip-ms.svg",
+ "voltaserve-light.svg",
+ "voltaserve.svg",
+ "volumio-light.svg",
+ "volumio.svg",
+ "voron.svg",
+ "vscode.svg",
+ "vuetorrent.svg",
+ "vultr.svg",
+ "wakapi.svg",
+ "wakatime-light.svg",
+ "wakatime.svg",
+ "wallabag-light.svg",
+ "wallabag.svg",
+ "wanderer-light.svg",
+ "wanderer.svg",
+ "warpgate.svg",
+ "watcharr-light.svg",
+ "watcharr.svg",
+ "watchtower.svg",
+ "waze.svg",
+ "wazuh.svg",
+ "web-check-dark.svg",
+ "web-check.svg",
+ "webhook.svg",
+ "webhookd.svg",
+ "webkit.svg",
+ "webmin.svg",
+ "webtorrent.svg",
+ "webtrees.svg",
+ "wekan.svg",
+ "wger.svg",
+ "whats-up-docker-light.svg",
+ "whats-up-docker.svg",
+ "whatsapp.svg",
+ "whisparr.svg",
+ "wikidocs.svg",
+ "wikijs-alt.svg",
+ "wikijs.svg",
+ "wikipedia-light.svg",
+ "wikipedia.svg",
+ "willow.svg",
+ "windmill.svg",
+ "windows-10.svg",
+ "windows-95-light.svg",
+ "windows-95.svg",
+ "windows-retro-light.svg",
+ "windows-retro.svg",
+ "wireguard.svg",
+ "wizarr.svg",
+ "wolfi-light.svg",
+ "wolfi.svg",
+ "woocommerce.svg",
+ "woodpecker-ci.svg",
+ "wordpress.svg",
+ "worklenz.svg",
+ "wotdle-light.svg",
+ "wotdle.svg",
+ "wownero.svg",
+ "writefreely-light.svg",
+ "writefreely.svg",
+ "x-light.svg",
+ "x.svg",
+ "xbackbone.svg",
+ "xbox-game-pass.svg",
+ "xbox.svg",
+ "xbrowsersync.svg",
+ "xmr.svg",
+ "xmrig.svg",
+ "xpipe.svg",
+ "xwiki.svg",
+ "yacht.svg",
+ "yahoo.svg",
+ "yamtrack-light.svg",
+ "yamtrack.svg",
+ "yandex.svg",
+ "yarr-light.svg",
+ "yarr.svg",
+ "ycombinator-dark.svg",
+ "ycombinator.svg",
+ "ynab.svg",
+ "your-spotify.svg",
+ "yourls.svg",
+ "youtube-dl.svg",
+ "youtube-kids.svg",
+ "youtube-music.svg",
+ "youtube.svg",
+ "yts.svg",
+ "yuno-host-light.svg",
+ "yunohost.svg",
+ "z-wave-js-ui.svg",
+ "zabbix.svg",
+ "zabka.svg",
+ "zammad.svg",
+ "zendesk.svg",
+ "zerotier-light.svg",
+ "zerotier.svg",
+ "zigbee2mqtt-light.svg",
+ "zigbee2mqtt.svg",
+ "zipcaptions.svg",
+ "zipline-light.svg",
+ "zipline.svg",
+ "zitadel-light.svg",
+ "zitadel.svg",
+ "zohomail.svg",
+ "zoom-alt.svg",
+ "zoom.svg",
+ "zoraxy.svg",
+ "zulip.svg",
+ "zyxel-communications-light.svg",
+ "zyxel-communications.svg",
+ "zyxel-networks-light.svg",
+ "zyxel-networks.svg"
+ ],
+ "webp": [
+ "13ft.webp",
+ "2fauth-light.webp",
+ "2fauth.webp",
+ "act.webp",
+ "activepieces.webp",
+ "actual-budget.webp",
+ "adguard-home.webp",
+ "adminer.webp",
+ "adventure-log.webp",
+ "affine-light.webp",
+ "affine.webp",
+ "airsonic.webp",
+ "airtable.webp",
+ "airtel.webp",
+ "airvpn.webp",
+ "akkoma-light.webp",
+ "akkoma.webp",
+ "albert-heijn.webp",
+ "alertmanager.webp",
+ "aliexpress.webp",
+ "alist.webp",
+ "alloy.webp",
+ "alma-linux.webp",
+ "alpine-linux.webp",
+ "amazon-light.webp",
+ "amazon-prime.webp",
+ "amazon-web-services-light.webp",
+ "amazon-web-services.webp",
+ "amazon.webp",
+ "amd-light.webp",
+ "amd.webp",
+ "android-auto-dark.webp",
+ "android-auto.webp",
+ "android-robot.webp",
+ "android.webp",
+ "anonaddy.webp",
+ "ansible-light.webp",
+ "ansible.webp",
+ "apache-airflow.webp",
+ "apache-answer.webp",
+ "apache-cassandra.webp",
+ "apache-druid.webp",
+ "apache-openoffice.webp",
+ "apache-solr.webp",
+ "apache-subversion.webp",
+ "apache-tomcat-light.webp",
+ "apache-tomcat.webp",
+ "apache.webp",
+ "apc.webp",
+ "apiscp.webp",
+ "app-store.webp",
+ "appflowy.webp",
+ "apple-alt.webp",
+ "apple-light.webp",
+ "apple-music.webp",
+ "apple-tv-plus-light.webp",
+ "apple-tv-plus.webp",
+ "apple.webp",
+ "appwrite.webp",
+ "ara-records-ansible.webp",
+ "arch-linux.webp",
+ "arduino.webp",
+ "argo-cd.webp",
+ "arm.webp",
+ "artifacthub.webp",
+ "aruba.webp",
+ "asana.webp",
+ "asciinema.webp",
+ "astral.webp",
+ "astuto-light.webp",
+ "astuto.webp",
+ "asus-rog.webp",
+ "asus-router.webp",
+ "asus.webp",
+ "asustor.webp",
+ "at-t.webp",
+ "atlassian-bamboo.webp",
+ "atlassian-bitbucket.webp",
+ "atlassian-jira.webp",
+ "atlassian-opsgenie.webp",
+ "atlassian-trello.webp",
+ "atlassian.webp",
+ "atuin-light.webp",
+ "atuin.webp",
+ "audacity.webp",
+ "audiobookshelf.webp",
+ "auracast.webp",
+ "authelia.webp",
+ "authentik.webp",
+ "authman.webp",
+ "autobrr.webp",
+ "automad-light.webp",
+ "automad.webp",
+ "avigilon.webp",
+ "avm-fritzbox-light.webp",
+ "avm-fritzbox.webp",
+ "aws-ecs.webp",
+ "aws-light.webp",
+ "aws.webp",
+ "awwesome.webp",
+ "azuracast.webp",
+ "azure-container-instances.webp",
+ "azure-container-service.webp",
+ "azure-devops.webp",
+ "azure-dns.webp",
+ "azure.webp",
+ "backblaze.webp",
+ "backrest-light.webp",
+ "backrest.webp",
+ "bar-assistant.webp",
+ "baserow.webp",
+ "bazarr-dark.webp",
+ "bazarr.webp",
+ "beaver-habit-tracker-light.webp",
+ "beaver-habit-tracker.webp",
+ "beef-light.webp",
+ "beef.webp",
+ "beszel-light.webp",
+ "beszel.webp",
+ "biblioreads-light.webp",
+ "biblioreads.webp",
+ "bigcapital.webp",
+ "bing.webp",
+ "bitbucket.webp",
+ "bitcoin.webp",
+ "bitwarden.webp",
+ "blocky.webp",
+ "blogger.webp",
+ "bluesky.webp",
+ "bluetooth.webp",
+ "booklogr-light.webp",
+ "booklogr.webp",
+ "bookstack.webp",
+ "bootstrap.webp",
+ "borg.webp",
+ "borgmatic-light.webp",
+ "borgmatic.webp",
+ "boundary.webp",
+ "box.webp",
+ "brave.webp",
+ "broadcastchannel-light.webp",
+ "broadcastchannel.webp",
+ "brocade.webp",
+ "brother.webp",
+ "browserless-light.webp",
+ "browserless.webp",
+ "browsh.webp",
+ "budgetbee-light.webp",
+ "budgetbee.webp",
+ "budibase.webp",
+ "bunkerweb.webp",
+ "c.webp",
+ "cacti.webp",
+ "caddy.webp",
+ "cal-com-light.webp",
+ "cal-com.webp",
+ "calibre-web.webp",
+ "calibre.webp",
+ "canonical.webp",
+ "caprover.webp",
+ "carrefour.webp",
+ "casaos.webp",
+ "castopod.webp",
+ "cc-light.webp",
+ "cc.webp",
+ "centos.webp",
+ "ceph.webp",
+ "cert-manager.webp",
+ "cert-warden-light.webp",
+ "cert-warden.webp",
+ "chainguard.webp",
+ "changedetection.webp",
+ "channels-dvr.webp",
+ "chatgpt.webp",
+ "chatpad-ai.webp",
+ "checkmk.webp",
+ "chevereto.webp",
+ "chirpy.webp",
+ "chrome-canary.webp",
+ "chrome-dev.webp",
+ "chrome-devtools.webp",
+ "chrome-remote-desktop.webp",
+ "chrome.webp",
+ "chromium.webp",
+ "cilium-light.webp",
+ "cilium.webp",
+ "cinny-light.webp",
+ "cinny.webp",
+ "cisco.webp",
+ "clickhouse.webp",
+ "cloud66.webp",
+ "cloud9-light.webp",
+ "cloud9.webp",
+ "cloudbeaver.webp",
+ "cloudflare-pages.webp",
+ "cloudflare-zero-trust.webp",
+ "cloudflare.webp",
+ "cloudpanel.webp",
+ "cockpit-cms-light.webp",
+ "cockpit-cms.webp",
+ "cockpit-light.webp",
+ "cockpit.webp",
+ "code.webp",
+ "codeberg.webp",
+ "coder-light.webp",
+ "coder.webp",
+ "codestats-light.webp",
+ "codestats.webp",
+ "codex-light.webp",
+ "codex.webp",
+ "collabora-online.webp",
+ "commafeed-light.webp",
+ "commafeed.webp",
+ "commento-light.webp",
+ "commento.webp",
+ "compreface.webp",
+ "concourse.webp",
+ "confluence.webp",
+ "consul.webp",
+ "contabo.webp",
+ "converse-light.webp",
+ "converse.webp",
+ "coolify.webp",
+ "coredns.webp",
+ "coreos.webp",
+ "cosign.webp",
+ "costco.webp",
+ "couchdb.webp",
+ "counter-analytics.webp",
+ "cozy.webp",
+ "cpanel.webp",
+ "cpp.webp",
+ "crafty-controller.webp",
+ "crowdsec.webp",
+ "cryptomator.webp",
+ "cryptpad.webp",
+ "csharp.webp",
+ "css-light.webp",
+ "css.webp",
+ "ctfreak.webp",
+ "cups-light.webp",
+ "cups.webp",
+ "cura.webp",
+ "cyberchef.webp",
+ "czkawka.webp",
+ "d-link.webp",
+ "dalibo.webp",
+ "dart.webp",
+ "datadog.webp",
+ "davical.webp",
+ "dawarich.webp",
+ "dc-os.webp",
+ "ddclient.webp",
+ "ddns-updater.webp",
+ "debian-linux.webp",
+ "defguard.webp",
+ "dell.webp",
+ "deluge.webp",
+ "deno-light.webp",
+ "deno.webp",
+ "denon-light.webp",
+ "denon.webp",
+ "deployarr.webp",
+ "diagrams-net.webp",
+ "digital-ocean.webp",
+ "dillinger-light.webp",
+ "dillinger.webp",
+ "directadmin.webp",
+ "directus.webp",
+ "discord.webp",
+ "discourse-light.webp",
+ "discourse.webp",
+ "disney-plus.webp",
+ "dlna.webp",
+ "docassemble-light.webp",
+ "docassemble.webp",
+ "docker-engine.webp",
+ "docker-mailserver-light.webp",
+ "docker-mailserver.webp",
+ "docker-moby.webp",
+ "docker-volume-backup.webp",
+ "docker.webp",
+ "dockge.webp",
+ "docking-station.webp",
+ "docsify.webp",
+ "docspell.webp",
+ "documenso.webp",
+ "docusaurus.webp",
+ "docuseal.webp",
+ "dokemon.webp",
+ "dokuwiki.webp",
+ "double-take-dark.webp",
+ "double-take.webp",
+ "dovecot.webp",
+ "dozzle.webp",
+ "draw-io.webp",
+ "draytek.webp",
+ "dropbox.webp",
+ "dropout-light.webp",
+ "dropout.webp",
+ "droppy-dark.webp",
+ "droppy.webp",
+ "dub-light.webp",
+ "dub.webp",
+ "duckdns-light.webp",
+ "duckdns.webp",
+ "duckduckgo.webp",
+ "duo.webp",
+ "duplicati.webp",
+ "easy-gate-light.webp",
+ "easy-gate.webp",
+ "ebay.webp",
+ "eblocker.webp",
+ "edge-dev.webp",
+ "edge.webp",
+ "elastic-beats.webp",
+ "elastic-kibana.webp",
+ "elastic-logstash.webp",
+ "elastic.webp",
+ "elasticsearch.webp",
+ "electron.webp",
+ "electronic-arts.webp",
+ "element.webp",
+ "eleventy-light.webp",
+ "eleventy.webp",
+ "elysian.webp",
+ "emacs.webp",
+ "emby.webp",
+ "emq-light.webp",
+ "emq.webp",
+ "emqx.webp",
+ "emulatorjs.webp",
+ "enbizcard.webp",
+ "enclosed-light.webp",
+ "enclosed.webp",
+ "endless-light.webp",
+ "endless.webp",
+ "endurain.webp",
+ "epic-games-light.webp",
+ "epic-games.webp",
+ "erste-george.webp",
+ "erste.webp",
+ "esphome-alt-light.webp",
+ "esphome-alt.webp",
+ "esphome-light.webp",
+ "esphome.webp",
+ "espressif.webp",
+ "etcd.webp",
+ "etesync.webp",
+ "ethereum.webp",
+ "etherpad.webp",
+ "evcc.webp",
+ "excalidraw.webp",
+ "f-droid.webp",
+ "facebook-messenger.webp",
+ "facebook.webp",
+ "fast-com-light.webp",
+ "fast-com.webp",
+ "fasten-health.webp",
+ "fastmail.webp",
+ "fedora-alt.webp",
+ "fedora.webp",
+ "feedbase-light.webp",
+ "feedbase.webp",
+ "feedbin-light.webp",
+ "feedbin.webp",
+ "feedly.webp",
+ "feedlynx-light.webp",
+ "feedlynx.webp",
+ "fenrus.webp",
+ "ferdium.webp",
+ "ferretdb.webp",
+ "fider.webp",
+ "filebot.webp",
+ "filebrowser.webp",
+ "filecloud.webp",
+ "fileflows.webp",
+ "filegator.webp",
+ "filerun.webp",
+ "files.webp",
+ "filestash.webp",
+ "filezilla.webp",
+ "finamp.webp",
+ "findroid.webp",
+ "fios-light.webp",
+ "fios.webp",
+ "firebase.webp",
+ "firefly-iii.webp",
+ "firefly.webp",
+ "firefox-beta.webp",
+ "firefox-developer-edition.webp",
+ "firefox-lite.webp",
+ "firefox-nightly.webp",
+ "firefox-reality.webp",
+ "firefox-send.webp",
+ "firefox.webp",
+ "firewalla.webp",
+ "fittrackee.webp",
+ "fladder.webp",
+ "flaresolverr.webp",
+ "flarum.webp",
+ "flathub.webp",
+ "flatnotes.webp",
+ "flatpak.webp",
+ "flightradar24-light.webp",
+ "flightradar24.webp",
+ "flood.webp",
+ "fluffychat-dark.webp",
+ "fluffychat.webp",
+ "fluidd.webp",
+ "flux-cd.webp",
+ "fly-io.webp",
+ "focalboard.webp",
+ "foldingathome.webp",
+ "fontawesome.webp",
+ "forgejo.webp",
+ "forte-light.webp",
+ "forte.webp",
+ "fortinet.webp",
+ "fossil.webp",
+ "franz.webp",
+ "freedombox.webp",
+ "freeipa.webp",
+ "freenas.webp",
+ "freenom.webp",
+ "freepbx.webp",
+ "freshping-dark.webp",
+ "freshping.webp",
+ "freshrss.webp",
+ "friendica.webp",
+ "frigate-light.webp",
+ "frigate.webp",
+ "fritzbox-light.webp",
+ "fritzbox.webp",
+ "fronius.webp",
+ "fulcio.webp",
+ "funkwhale-light.webp",
+ "funkwhale.webp",
+ "fusionauth.webp",
+ "garage.webp",
+ "gatsby.webp",
+ "gatus.webp",
+ "gboard.webp",
+ "geckoview.webp",
+ "gentoo-linux.webp",
+ "gerbera.webp",
+ "get-iplayer.webp",
+ "ghostfolio.webp",
+ "gigaset.webp",
+ "gimp.webp",
+ "git.webp",
+ "gitbook.webp",
+ "gitea.webp",
+ "gitee.webp",
+ "github-light.webp",
+ "github.webp",
+ "gitlab.webp",
+ "gitsign.webp",
+ "gladys-assistant.webp",
+ "glance-light.webp",
+ "glance.webp",
+ "glances-light.webp",
+ "glances.webp",
+ "glpi.webp",
+ "gluetun.webp",
+ "gmail.webp",
+ "go.webp",
+ "goaccess-light.webp",
+ "goaccess.webp",
+ "godaddy-alt.webp",
+ "godaddy.webp",
+ "gollum.webp",
+ "goodreads.webp",
+ "google-admin.webp",
+ "google-admob.webp",
+ "google-alerts.webp",
+ "google-analytics.webp",
+ "google-assistant.webp",
+ "google-calendar.webp",
+ "google-chat.webp",
+ "google-chrome.webp",
+ "google-classroom.webp",
+ "google-cloud-platform.webp",
+ "google-cloud-print.webp",
+ "google-compute-engine.webp",
+ "google-contacts.webp",
+ "google-docs.webp",
+ "google-domains.webp",
+ "google-drive.webp",
+ "google-earth.webp",
+ "google-fi.webp",
+ "google-fit.webp",
+ "google-fonts.webp",
+ "google-forms.webp",
+ "google-gemini.webp",
+ "google-home.webp",
+ "google-keep.webp",
+ "google-lens.webp",
+ "google-maps.webp",
+ "google-meet.webp",
+ "google-messages.webp",
+ "google-news.webp",
+ "google-one.webp",
+ "google-pay.webp",
+ "google-photos.webp",
+ "google-play-books.webp",
+ "google-play-games.webp",
+ "google-play.webp",
+ "google-podcasts.webp",
+ "google-scholar.webp",
+ "google-search-console.webp",
+ "google-sheets.webp",
+ "google-shopping.webp",
+ "google-sites.webp",
+ "google-slides.webp",
+ "google-street-view.webp",
+ "google-tag-manager.webp",
+ "google-translate.webp",
+ "google-tv.webp",
+ "google-voice.webp",
+ "google-wallet.webp",
+ "google-wifi.webp",
+ "google.webp",
+ "gotify.webp",
+ "gotosocial.webp",
+ "gpt4free.webp",
+ "grafana.webp",
+ "gramps.webp",
+ "grandstream.webp",
+ "grav-light.webp",
+ "grav.webp",
+ "graylog.webp",
+ "greenbone-light.webp",
+ "greenbone.webp",
+ "grimoire.webp",
+ "grist.webp",
+ "grocy.webp",
+ "guacamole-light.webp",
+ "guacamole.webp",
+ "hacker-news.webp",
+ "hammond-light.webp",
+ "hammond.webp",
+ "handbrake.webp",
+ "haproxy.webp",
+ "haptic-light.webp",
+ "haptic.webp",
+ "harbor.webp",
+ "harvester.webp",
+ "hashicorp-boundary.webp",
+ "hashicorp-consul.webp",
+ "hashicorp-nomad.webp",
+ "hashicorp-packer.webp",
+ "hashicorp-terraform.webp",
+ "hashicorp-vagrant.webp",
+ "hashicorp-vault.webp",
+ "hashicorp-waypoint.webp",
+ "hastypaste.webp",
+ "hasura.webp",
+ "hatsh-light.webp",
+ "hatsh.webp",
+ "hbo-light.webp",
+ "hbo.webp",
+ "hdhomerun-light.webp",
+ "hdhomerun.webp",
+ "headscale.webp",
+ "healthchecks.webp",
+ "hedgedoc.webp",
+ "heimdall-light.webp",
+ "heimdall.webp",
+ "helium-token.webp",
+ "helm.webp",
+ "hetzner.webp",
+ "hexo.webp",
+ "heyform.webp",
+ "hifiberry.webp",
+ "hikvision.webp",
+ "hilook.webp",
+ "hivedav.webp",
+ "hoarder-light.webp",
+ "hoarder.webp",
+ "hollo-light.webp",
+ "hollo.webp",
+ "homarr.webp",
+ "home-assistant-alt.webp",
+ "home-assistant.webp",
+ "homebox-light.webp",
+ "homebox.webp",
+ "homebridge.webp",
+ "homer.webp",
+ "homey.webp",
+ "hoobs.webp",
+ "hoppscotch.webp",
+ "hostinger.webp",
+ "hotio.webp",
+ "hp.webp",
+ "html-light.webp",
+ "html.webp",
+ "huawei.webp",
+ "hubitat.webp",
+ "hubzilla.webp",
+ "hugging-face.webp",
+ "huginn.webp",
+ "hugo.webp",
+ "hulu.webp",
+ "humhub.webp",
+ "hydra.webp",
+ "hyperpipe-light.webp",
+ "hyperpipe.webp",
+ "i2p-light.webp",
+ "i2p.webp",
+ "i2pd.webp",
+ "icecast.webp",
+ "icinga-light.webp",
+ "icinga.webp",
+ "idrac.webp",
+ "ilo.webp",
+ "immich-frame-light.webp",
+ "immich-frame.webp",
+ "immich-kiosk-light.webp",
+ "immich-kiosk.webp",
+ "immich.webp",
+ "influxdb.webp",
+ "infoblox.webp",
+ "inoreader.webp",
+ "instagram.webp",
+ "inventree.webp",
+ "invidious.webp",
+ "invisioncommunity.webp",
+ "invoice-ninja-light.webp",
+ "invoice-ninja.webp",
+ "invoke-ai.webp",
+ "iobroker.webp",
+ "ionos.webp",
+ "ipboard.webp",
+ "ipfs-light.webp",
+ "ipfs.webp",
+ "ispconfig.webp",
+ "it-tools-light.webp",
+ "it-tools.webp",
+ "jackett-light.webp",
+ "jackett.webp",
+ "jaeger.webp",
+ "jamstack.webp",
+ "java.webp",
+ "javascript-light.webp",
+ "javascript.webp",
+ "jeedom.webp",
+ "jekyll.webp",
+ "jellyfin.webp",
+ "jellyseerr.webp",
+ "jellystat.webp",
+ "jelu.webp",
+ "jenkins.webp",
+ "jetbrains-youtrack.webp",
+ "jio.webp",
+ "jira.webp",
+ "jitsi-meet.webp",
+ "jitsi.webp",
+ "joomla.webp",
+ "joplin.webp",
+ "julia.webp",
+ "jupyter.webp",
+ "jwt-io-light.webp",
+ "jwt-io.webp",
+ "kagi.webp",
+ "kamatera.webp",
+ "kanboard-light.webp",
+ "kanboard.webp",
+ "kanidm.webp",
+ "kapowarr.webp",
+ "kasm-workspaces.webp",
+ "kasm.webp",
+ "kasten-k10.webp",
+ "kaufland.webp",
+ "kavita.webp",
+ "kbin.webp",
+ "keenetic-alt.webp",
+ "keenetic.webp",
+ "keepassxc.webp",
+ "keila.webp",
+ "kerberos.webp",
+ "kestra.webp",
+ "keycloak.webp",
+ "keyoxide-alt.webp",
+ "keyoxide.webp",
+ "kibana.webp",
+ "kick-light.webp",
+ "kick.webp",
+ "kimai.webp",
+ "kinto.webp",
+ "kitana.webp",
+ "kitchenowl.webp",
+ "kiwix-light.webp",
+ "kiwix.webp",
+ "klipper.webp",
+ "ko-fi.webp",
+ "kodi.webp",
+ "koel.webp",
+ "koillection-light.webp",
+ "koillection.webp",
+ "komga.webp",
+ "kontoj.webp",
+ "kopia.webp",
+ "kotlin.webp",
+ "kpn.webp",
+ "krakend.webp",
+ "krusader.webp",
+ "kubernetes-dashboard.webp",
+ "kubernetes.webp",
+ "kutt.webp",
+ "kyoo.webp",
+ "lancommander-light.webp",
+ "lancommander.webp",
+ "lark.webp",
+ "lastpass.webp",
+ "leanote.webp",
+ "leantime.webp",
+ "lemmy-light.webp",
+ "lemmy.webp",
+ "lets-encrypt.webp",
+ "libreddit-light.webp",
+ "libreddit.webp",
+ "librenms.webp",
+ "libreoffice-light.webp",
+ "libreoffice.webp",
+ "librespeed-light.webp",
+ "librespeed.webp",
+ "librewolf.webp",
+ "librum.webp",
+ "lidarr.webp",
+ "lidl.webp",
+ "lighttpd.webp",
+ "limesurvey.webp",
+ "linguacafe.webp",
+ "linkace.webp",
+ "linkding.webp",
+ "linkedin.webp",
+ "linkstack.webp",
+ "linode.webp",
+ "linux-mint.webp",
+ "linux.webp",
+ "linuxgsm.webp",
+ "linuxserver-io.webp",
+ "liremdb.webp",
+ "listmonk.webp",
+ "littlelink-custom.webp",
+ "lnbits.webp",
+ "locals-light.webp",
+ "locals.webp",
+ "lodestone.webp",
+ "logitech-gaming.webp",
+ "logitech-legacy.webp",
+ "logitech-light.webp",
+ "logitech.webp",
+ "logseq.webp",
+ "logstash.webp",
+ "logto.webp",
+ "loki.webp",
+ "longhorn.webp",
+ "lua.webp",
+ "lunasea.webp",
+ "lynx-light.webp",
+ "lynx.webp",
+ "mail-in-a-box.webp",
+ "mailchimp-light.webp",
+ "mailchimp.webp",
+ "mailcow.webp",
+ "mailfence.webp",
+ "mailgun.webp",
+ "mailjet.webp",
+ "mainsail.webp",
+ "maintainerr.webp",
+ "manjaro-linux.webp",
+ "manyfold.webp",
+ "maptiler.webp",
+ "mariadb.webp",
+ "mastodon.webp",
+ "matomo.webp",
+ "matrix-light.webp",
+ "matrix-synapse-light.webp",
+ "matrix-synapse.webp",
+ "matrix.webp",
+ "mattermost.webp",
+ "mautic.webp",
+ "max.webp",
+ "mayan-edms-light.webp",
+ "mayan-edms.webp",
+ "maybe.webp",
+ "mbin.webp",
+ "mealie.webp",
+ "medama.webp",
+ "mediathekview.webp",
+ "mediawiki.webp",
+ "mediux.webp",
+ "medusa-light.webp",
+ "medusa.webp",
+ "mega-nz-dark.webp",
+ "mega-nz.webp",
+ "meilisearch.webp",
+ "memories-light.webp",
+ "memories.webp",
+ "meraki.webp",
+ "mercusys.webp",
+ "mergeable-dark.webp",
+ "mergeable.webp",
+ "meshping-light.webp",
+ "meshping.webp",
+ "meshtastic.webp",
+ "meta.webp",
+ "metabase.webp",
+ "metube.webp",
+ "microsoft-365-admin-center.webp",
+ "microsoft-365.webp",
+ "microsoft-access.webp",
+ "microsoft-azure.webp",
+ "microsoft-bing.webp",
+ "microsoft-copilot.webp",
+ "microsoft-edge.webp",
+ "microsoft-excel.webp",
+ "microsoft-exchange.webp",
+ "microsoft-office.webp",
+ "microsoft-onedrive.webp",
+ "microsoft-onenote.webp",
+ "microsoft-outlook.webp",
+ "microsoft-powerpoint.webp",
+ "microsoft-sharepoint.webp",
+ "microsoft-sql-server-light.webp",
+ "microsoft-sql-server.webp",
+ "microsoft-teams.webp",
+ "microsoft-to-do.webp",
+ "microsoft-windows.webp",
+ "microsoft-word.webp",
+ "microsoft.webp",
+ "mikrotik-light.webp",
+ "mikrotik.webp",
+ "minecraft.webp",
+ "miniflux-light.webp",
+ "miniflux.webp",
+ "minio-light.webp",
+ "minio.webp",
+ "misskey-light.webp",
+ "misskey.webp",
+ "mitra.webp",
+ "mixpost.webp",
+ "mkdocs-light.webp",
+ "mkdocs.webp",
+ "mobilizon.webp",
+ "mobotix-light.webp",
+ "mobotix.webp",
+ "modrinth.webp",
+ "mojeek.webp",
+ "monero.webp",
+ "mongodb.webp",
+ "monica-light.webp",
+ "monica.webp",
+ "moodle-light.webp",
+ "moodle.webp",
+ "morphos.webp",
+ "mosquitto.webp",
+ "motioneye-dark.webp",
+ "motioneye.webp",
+ "mqtt.webp",
+ "mstream.webp",
+ "mullvad-browser.webp",
+ "mullvad-vpn.webp",
+ "mullvad.webp",
+ "multi-scrobbler.webp",
+ "mumble-light.webp",
+ "mumble.webp",
+ "music-assistant-light.webp",
+ "music-assistant.webp",
+ "musicbrainz.webp",
+ "myheats-light.webp",
+ "myheats.webp",
+ "myspeed.webp",
+ "mysql.webp",
+ "n8n.webp",
+ "nagios.webp",
+ "nasa.webp",
+ "navidrome-light.webp",
+ "navidrome.webp",
+ "neko-light.webp",
+ "neko.webp",
+ "neo4j.webp",
+ "neocities.webp",
+ "neodb.webp",
+ "neonlink.webp",
+ "netalertx-light.webp",
+ "netalertx.webp",
+ "netapp-light.webp",
+ "netapp.webp",
+ "netatmo.webp",
+ "netbird.webp",
+ "netboot.webp",
+ "netbox.webp",
+ "netdata.webp",
+ "netflix.webp",
+ "netgear-light.webp",
+ "netgear.webp",
+ "netlify.webp",
+ "netsurf-light.webp",
+ "netsurf.webp",
+ "network-ups-tools.webp",
+ "newegg.webp",
+ "newsblur.webp",
+ "nextcloud-blue.webp",
+ "nextcloud-calendar.webp",
+ "nextcloud-contacts.webp",
+ "nextcloud-cookbook.webp",
+ "nextcloud-cospend.webp",
+ "nextcloud-deck.webp",
+ "nextcloud-files.webp",
+ "nextcloud-ncdownloader.webp",
+ "nextcloud-news.webp",
+ "nextcloud-notes.webp",
+ "nextcloud-photos.webp",
+ "nextcloud-social.webp",
+ "nextcloud-tables.webp",
+ "nextcloud-tasks.webp",
+ "nextcloud-timemanager.webp",
+ "nextcloud-white.webp",
+ "nextcloud.webp",
+ "nextcloudpi.webp",
+ "nextdns.webp",
+ "nexterm.webp",
+ "nextjs-light.webp",
+ "nextjs.webp",
+ "nginx-proxy-manager.webp",
+ "nginx.webp",
+ "nicotine-plus.webp",
+ "nightscout-light.webp",
+ "nightscout.webp",
+ "nintendo-switch.webp",
+ "nitter.webp",
+ "nixos.webp",
+ "nocodb.webp",
+ "node-red.webp",
+ "nodebb.webp",
+ "nodejs-alt.webp",
+ "nodejs.webp",
+ "nomad.webp",
+ "nomie.webp",
+ "nordvpn.webp",
+ "note-mark.webp",
+ "notesnook-light.webp",
+ "notesnook.webp",
+ "notion-light.webp",
+ "notion.webp",
+ "ntfy.webp",
+ "nut.webp",
+ "nvidia.webp",
+ "nzbhydra2-light.webp",
+ "nzbhydra2.webp",
+ "obico.webp",
+ "obsidian.webp",
+ "obtainium.webp",
+ "octoprint.webp",
+ "oculus-light.webp",
+ "oculus.webp",
+ "odoo.webp",
+ "office-365.webp",
+ "olivetin-light.webp",
+ "olivetin.webp",
+ "ollama.webp",
+ "omada.webp",
+ "ombi.webp",
+ "omnidb.webp",
+ "omnivore.webp",
+ "onedev-light.webp",
+ "onedev.webp",
+ "oneuptime-light.webp",
+ "oneuptime.webp",
+ "onlyoffice.webp",
+ "open-resume.webp",
+ "open-source-initiative.webp",
+ "openai-light.webp",
+ "openai.webp",
+ "openchangelog-light.webp",
+ "openchangelog.webp",
+ "openeats-light.webp",
+ "openeats.webp",
+ "openemr-light.webp",
+ "openemr.webp",
+ "opengist-light.webp",
+ "opengist.webp",
+ "openhab.webp",
+ "openldap.webp",
+ "openmediavault.webp",
+ "openoffice.webp",
+ "openpanel-light.webp",
+ "openpanel.webp",
+ "openproject.webp",
+ "openreads.webp",
+ "opensearch.webp",
+ "openspeedtest.webp",
+ "openstack.webp",
+ "openstreetmap.webp",
+ "opensuse.webp",
+ "opentalk.webp",
+ "opentofu.webp",
+ "openvas.webp",
+ "openvpn.webp",
+ "openwrt.webp",
+ "opera-touch.webp",
+ "opera.webp",
+ "opnform.webp",
+ "opnsense.webp",
+ "oracle-cloud.webp",
+ "oracle.webp",
+ "orange.webp",
+ "origin.webp",
+ "oscarr-light.webp",
+ "oscarr.webp",
+ "osticket.webp",
+ "outline-light.webp",
+ "outline.webp",
+ "overleaf.webp",
+ "overseerr.webp",
+ "ovh.webp",
+ "ovirt-light.webp",
+ "ovirt.webp",
+ "owncast.webp",
+ "owncloud.webp",
+ "owntone.webp",
+ "owntracks.webp",
+ "oxker-light.webp",
+ "oxker.webp",
+ "p1ib.webp",
+ "pagerduty.webp",
+ "palemoon.webp",
+ "palo-alto.webp",
+ "paperless-ng.webp",
+ "paperless-ngx.webp",
+ "paperless.webp",
+ "papermark-light.webp",
+ "papermark.webp",
+ "papermerge-light.webp",
+ "papermerge.webp",
+ "parseable.webp",
+ "part-db-light.webp",
+ "part-db.webp",
+ "partkeepr.webp",
+ "passbolt.webp",
+ "passwork.webp",
+ "pastebin-dark.webp",
+ "pastebin.webp",
+ "patreon-light.webp",
+ "patreon.webp",
+ "payload-light.webp",
+ "payload.webp",
+ "paypal.webp",
+ "pdfding-light.webp",
+ "pdfding.webp",
+ "peacock-light.webp",
+ "peacock.webp",
+ "peanut-light.webp",
+ "peanut.webp",
+ "peertube.webp",
+ "pelican-panel.webp",
+ "penpot-light.webp",
+ "penpot.webp",
+ "peppermint.webp",
+ "pepperminty-wiki.webp",
+ "perlite.webp",
+ "pfsense-light.webp",
+ "pfsense.webp",
+ "pg-back-web.webp",
+ "pgadmin.webp",
+ "phanpy.webp",
+ "phoneinfoga-light.webp",
+ "phoneinfoga.webp",
+ "phorge-light.webp",
+ "phorge.webp",
+ "phoscon-light.webp",
+ "phoscon.webp",
+ "photonix-light.webp",
+ "photonix.webp",
+ "photopea.webp",
+ "photoprism-light.webp",
+ "photoprism.webp",
+ "photostructure-dark.webp",
+ "photostructure.webp",
+ "photoview.webp",
+ "php-light.webp",
+ "php.webp",
+ "phpmyadmin.webp",
+ "pi-hole.webp",
+ "pia.webp",
+ "picsur-light.webp",
+ "picsur.webp",
+ "pigallery2.webp",
+ "pikapods.webp",
+ "pingdom-light.webp",
+ "pingdom.webp",
+ "pingvin-dark.webp",
+ "pingvin-share-dark.webp",
+ "pingvin-share.webp",
+ "pingvin.webp",
+ "pinkary.webp",
+ "pinterest.webp",
+ "pioneer-light.webp",
+ "pioneer.webp",
+ "piped.webp",
+ "pirate-proxy.webp",
+ "piwigo.webp",
+ "pixelfed.webp",
+ "plane.webp",
+ "planka-dark.webp",
+ "planka.webp",
+ "plausible.webp",
+ "playstation.webp",
+ "pleroma.webp",
+ "plesk.webp",
+ "plex-alt-light.webp",
+ "plex-alt.webp",
+ "plex-light.webp",
+ "plex-rewind.webp",
+ "plex.webp",
+ "plexrequests-light.webp",
+ "plexrequests.webp",
+ "plume.webp",
+ "pocket-casts-dark.webp",
+ "pocket-casts.webp",
+ "pocket-id-light.webp",
+ "pocket-id.webp",
+ "pocketbase-dark.webp",
+ "pocketbase.webp",
+ "podfetch-light.webp",
+ "podfetch.webp",
+ "podify.webp",
+ "podman.webp",
+ "policycontroller.webp",
+ "poly.webp",
+ "polywork.webp",
+ "portainer.webp",
+ "portus.webp",
+ "postal.webp",
+ "poste.webp",
+ "postgres.webp",
+ "postgresql.webp",
+ "posthog-light.webp",
+ "posthog.webp",
+ "postiz-dark.webp",
+ "postiz.webp",
+ "powerbi.webp",
+ "powerdns.webp",
+ "prime-video-light.webp",
+ "prime-video.webp",
+ "printer.webp",
+ "pritunl.webp",
+ "privacyidea.webp",
+ "private-internet-access.webp",
+ "privatebin.webp",
+ "projectsend.webp",
+ "prometheus.webp",
+ "proton-calendar.webp",
+ "proton-drive.webp",
+ "proton-mail.webp",
+ "proton-pass.webp",
+ "proton-vpn.webp",
+ "prowlarr.webp",
+ "proxmox-light.webp",
+ "proxmox.webp",
+ "prtg.webp",
+ "prusa-research.webp",
+ "pterodactyl.webp",
+ "pufferpanel.webp",
+ "purelymail.webp",
+ "pushfish.webp",
+ "pushover.webp",
+ "putty.webp",
+ "pydio.webp",
+ "pyload.webp",
+ "python.webp",
+ "qbittorrent.webp",
+ "qdirstat.webp",
+ "qinglong.webp",
+ "qnap.webp",
+ "questdb.webp",
+ "quetre.webp",
+ "quickwit.webp",
+ "qutebrowser.webp",
+ "r.webp",
+ "rabbitmq.webp",
+ "radarr.webp",
+ "radicale.webp",
+ "rainloop.webp",
+ "rallly.webp",
+ "rancher.webp",
+ "raspberry-pi-light.webp",
+ "raspberry-pi.webp",
+ "rclone.webp",
+ "rdt-client.webp",
+ "reactive-resume-light.webp",
+ "reactive-resume.webp",
+ "readarr.webp",
+ "readeck.webp",
+ "readthedocs-light.webp",
+ "readthedocs.webp",
+ "real-debrid.webp",
+ "recalbox.webp",
+ "receipt-wrangler.webp",
+ "recipesage.webp",
+ "reddit.webp",
+ "redict.webp",
+ "redis.webp",
+ "redlib-light.webp",
+ "redlib.webp",
+ "rekor.webp",
+ "remmina.webp",
+ "reolink.webp",
+ "requestly.webp",
+ "requestrr.webp",
+ "resiliosync-light.webp",
+ "resiliosync.webp",
+ "restreamer.webp",
+ "revolt-light.webp",
+ "revolt.webp",
+ "rhasspy-dark.webp",
+ "rhasspy.webp",
+ "rhodecode.webp",
+ "richy.webp",
+ "rimgo-light.webp",
+ "rimgo.webp",
+ "riot.webp",
+ "riverside-fm-light.webp",
+ "riverside-fm.webp",
+ "rocket-chat.webp",
+ "rocky-linux.webp",
+ "romm.webp",
+ "rook.webp",
+ "roundcube.webp",
+ "router.webp",
+ "rport.webp",
+ "rss-bridge.webp",
+ "rss-translator.webp",
+ "rstudio.webp",
+ "rstudioserver.webp",
+ "ruby.webp",
+ "rumble.webp",
+ "rundeck.webp",
+ "runonflux.webp",
+ "runson-light.webp",
+ "runson.webp",
+ "rust.webp",
+ "rustdesk.webp",
+ "rutorrent.webp",
+ "ryot-light.webp",
+ "ryot.webp",
+ "sabnzbd-light.webp",
+ "sabnzbd.webp",
+ "safari-ios.webp",
+ "safari.webp",
+ "saltcorn.webp",
+ "samsung-internet.webp",
+ "sandstorm.webp",
+ "screenconnect.webp",
+ "scrutiny-light.webp",
+ "scrutiny.webp",
+ "seafile.webp",
+ "searx.webp",
+ "searxng.webp",
+ "secureai-tools-light.webp",
+ "secureai-tools.webp",
+ "seelf.webp",
+ "self-hosted-gateway.webp",
+ "selfh-st-light.webp",
+ "selfh-st.webp",
+ "semaphore-dark.webp",
+ "semaphore.webp",
+ "send.webp",
+ "sendgrid.webp",
+ "sendinblue.webp",
+ "sensu.webp",
+ "sentry-light.webp",
+ "sentry.webp",
+ "servarr-light.webp",
+ "servarr.webp",
+ "serviio-light.webp",
+ "serviio.webp",
+ "session.webp",
+ "shaarli.webp",
+ "shell-light.webp",
+ "shell-tips-light.webp",
+ "shell-tips.webp",
+ "shell.webp",
+ "shellhub.webp",
+ "shellngn.webp",
+ "shelly.webp",
+ "shiori.webp",
+ "shlink.webp",
+ "shoko-server.webp",
+ "shoko.webp",
+ "shopify.webp",
+ "sickbeard.webp",
+ "signal.webp",
+ "sigstore.webp",
+ "simplelogin.webp",
+ "simplex-chat.webp",
+ "sinusbot.webp",
+ "siyuan.webp",
+ "skype.webp",
+ "slack.webp",
+ "slash-light.webp",
+ "slash.webp",
+ "slice.webp",
+ "slidev.webp",
+ "slskd.webp",
+ "smartfox.webp",
+ "snapcast.webp",
+ "snapchat-dark.webp",
+ "snapchat.webp",
+ "snapdrop.webp",
+ "snappymail-light.webp",
+ "snappymail.webp",
+ "snikket.webp",
+ "socialhome.webp",
+ "sogo.webp",
+ "solidtime-light.webp",
+ "solidtime.webp",
+ "sonarqube.webp",
+ "sonarr-dark.webp",
+ "sonarr.webp",
+ "sophos-dark.webp",
+ "sophos.webp",
+ "sourcegraph.webp",
+ "spamassassin.webp",
+ "sparkleshare.webp",
+ "specifically-clementines.webp",
+ "sphinx-doc.webp",
+ "sphinx-relay.webp",
+ "sphinx.webp",
+ "splunk.webp",
+ "spoolman.webp",
+ "spotify.webp",
+ "sqlitebrowser.webp",
+ "squidex.webp",
+ "squirrel-servers-manager.webp",
+ "sshwifty.webp",
+ "stalwart-mail-server.webp",
+ "stalwart.webp",
+ "standard-notes.webp",
+ "startpage.webp",
+ "stash.webp",
+ "stb-proxy.webp",
+ "steam.webp",
+ "step-ca.webp",
+ "stirling-pdf.webp",
+ "storj.webp",
+ "storm.webp",
+ "stormkit.webp",
+ "strapi.webp",
+ "stremio.webp",
+ "stump-alt.webp",
+ "stump.webp",
+ "subatic.webp",
+ "sunshine.webp",
+ "supabase.webp",
+ "supermicro.webp",
+ "surveymonkey.webp",
+ "swarmpit.webp",
+ "swift.webp",
+ "symmetricom-light.webp",
+ "symmetricom.webp",
+ "synapse-light.webp",
+ "synapse.webp",
+ "syncthing-dark.webp",
+ "syncthing.webp",
+ "synology-dsm.webp",
+ "synology-light.webp",
+ "synology.webp",
+ "sysreptor.webp",
+ "tabula.webp",
+ "tacticalrmm.webp",
+ "taiga.webp",
+ "tailscale-light.webp",
+ "tailscale.webp",
+ "talos.webp",
+ "tandoor-recipes.webp",
+ "tangerine-ui.webp",
+ "taskcafe.webp",
+ "tasmota-light.webp",
+ "tasmota.webp",
+ "tautulli.webp",
+ "teamcity-light.webp",
+ "teamcity.webp",
+ "teamspeak.webp",
+ "telegraf.webp",
+ "telegram.webp",
+ "telekom.webp",
+ "teleport.webp",
+ "tenda.webp",
+ "terminal.webp",
+ "terraform.webp",
+ "teslamate-light.webp",
+ "teslamate.webp",
+ "thanos.webp",
+ "the-pirate-bay.webp",
+ "the-proxy-bay.webp",
+ "theia-light.webp",
+ "theia.webp",
+ "thelounge.webp",
+ "theodinproject.webp",
+ "thingsboard.webp",
+ "threads-light.webp",
+ "threads.webp",
+ "thunderbird.webp",
+ "tianji-light.webp",
+ "tianji.webp",
+ "tiddlywiki-light.webp",
+ "tiddlywiki.webp",
+ "tiktok-light.webp",
+ "tiktok.webp",
+ "timetagger-light.webp",
+ "timetagger.webp",
+ "tmdb.webp",
+ "todoist-dark.webp",
+ "todoist.webp",
+ "tolgee.webp",
+ "tooljet-dark.webp",
+ "tooljet.webp",
+ "touitomamout.webp",
+ "tp-link.webp",
+ "tpdb.webp",
+ "traccar-dark.webp",
+ "traccar.webp",
+ "traefik-proxy.webp",
+ "traefik.webp",
+ "traggo.webp",
+ "trakt.webp",
+ "transmission.webp",
+ "trilium.webp",
+ "triliumnext.webp",
+ "truenas-core.webp",
+ "truenas-scale.webp",
+ "truenas.webp",
+ "tubesync-light.webp",
+ "tubesync.webp",
+ "tumblr.webp",
+ "turbopack-light.webp",
+ "turbopack.webp",
+ "tux.webp",
+ "tvdb.webp",
+ "tvheadend.webp",
+ "twingate-light.webp",
+ "twingate.webp",
+ "twitch.webp",
+ "twitter.webp",
+ "typemill-light.webp",
+ "typemill.webp",
+ "typescript.webp",
+ "typo3.webp",
+ "ubiquiti-networks.webp",
+ "ubiquiti-unifi.webp",
+ "ubiquiti.webp",
+ "ubuntu-linux-alt.webp",
+ "ubuntu-linux.webp",
+ "uc-browser.webp",
+ "udemy-light.webp",
+ "udemy.webp",
+ "ultimate-guitar-light.webp",
+ "ultimate-guitar.webp",
+ "umami-light.webp",
+ "umami.webp",
+ "umbrel.webp",
+ "unbound.webp",
+ "undb.webp",
+ "unifi-dark.webp",
+ "unifi-voucher-site.webp",
+ "unifi.webp",
+ "unimus.webp",
+ "unraid.webp",
+ "untangle.webp",
+ "ups.webp",
+ "upsnap.webp",
+ "uptime-kuma.webp",
+ "valetudo.webp",
+ "valkey.webp",
+ "vault-light.webp",
+ "vault.webp",
+ "vaultwarden-light.webp",
+ "vaultwarden.webp",
+ "vector.webp",
+ "veeam.webp",
+ "vercel-light.webp",
+ "vercel.webp",
+ "verizon.webp",
+ "vi.webp",
+ "victoriametrics-light.webp",
+ "victoriametrics.webp",
+ "vidzy.webp",
+ "viewtube.webp",
+ "vikunja.webp",
+ "virgin-media.webp",
+ "virtualmin.webp",
+ "viseron-light.webp",
+ "viseron.webp",
+ "visual-studio-code.webp",
+ "vivaldi.webp",
+ "vmware-esxi.webp",
+ "vmware-workstation.webp",
+ "vmware.webp",
+ "voilib.webp",
+ "voip-ms.webp",
+ "voltaserve-light.webp",
+ "voltaserve.webp",
+ "volumio-light.webp",
+ "volumio.webp",
+ "voron.webp",
+ "vscode.webp",
+ "vuetorrent.webp",
+ "vultr.webp",
+ "wakapi.webp",
+ "wakatime-light.webp",
+ "wakatime.webp",
+ "wallabag-light.webp",
+ "wallabag.webp",
+ "wanderer-light.webp",
+ "wanderer.webp",
+ "warpgate.webp",
+ "watcharr-light.webp",
+ "watcharr.webp",
+ "watchtower.webp",
+ "waze.webp",
+ "wazuh.webp",
+ "web-check-dark.webp",
+ "web-check.webp",
+ "webhook.webp",
+ "webhookd.webp",
+ "webkit.webp",
+ "webmin.webp",
+ "webtorrent.webp",
+ "webtrees.webp",
+ "wekan.webp",
+ "wger.webp",
+ "whats-up-docker-light.webp",
+ "whats-up-docker.webp",
+ "whatsapp.webp",
+ "whisparr.webp",
+ "wikidocs.webp",
+ "wikijs-alt.webp",
+ "wikijs.webp",
+ "wikipedia-light.webp",
+ "wikipedia.webp",
+ "willow.webp",
+ "windmill.webp",
+ "windows-10.webp",
+ "windows-95-light.webp",
+ "windows-95.webp",
+ "windows-retro-light.webp",
+ "windows-retro.webp",
+ "wireguard.webp",
+ "wizarr.webp",
+ "wolfi-light.webp",
+ "wolfi.webp",
+ "woocommerce.webp",
+ "woodpecker-ci.webp",
+ "wordpress.webp",
+ "worklenz.webp",
+ "wotdle-light.webp",
+ "wotdle.webp",
+ "wownero.webp",
+ "writefreely-light.webp",
+ "writefreely.webp",
+ "x-light.webp",
+ "x.webp",
+ "xbackbone.webp",
+ "xbox-game-pass.webp",
+ "xbox.webp",
+ "xbrowsersync.webp",
+ "xmr.webp",
+ "xmrig.webp",
+ "xpipe.webp",
+ "xwiki.webp",
+ "yacht.webp",
+ "yahoo.webp",
+ "yamtrack-light.webp",
+ "yamtrack.webp",
+ "yandex.webp",
+ "yarr-light.webp",
+ "yarr.webp",
+ "ycombinator-dark.webp",
+ "ycombinator.webp",
+ "ynab.webp",
+ "your-spotify.webp",
+ "yourls.webp",
+ "youtube-dl.webp",
+ "youtube-kids.webp",
+ "youtube-music.webp",
+ "youtube.webp",
+ "yts.webp",
+ "yuno-host-light.webp",
+ "yunohost.webp",
+ "z-wave-js-ui.webp",
+ "zabbix.webp",
+ "zabka.webp",
+ "zammad.webp",
+ "zendesk.webp",
+ "zerotier-light.webp",
+ "zerotier.webp",
+ "zigbee2mqtt-light.webp",
+ "zigbee2mqtt.webp",
+ "zipcaptions.webp",
+ "zipline-light.webp",
+ "zipline.webp",
+ "zitadel-light.webp",
+ "zitadel.webp",
+ "zohomail.webp",
+ "zoom-alt.webp",
+ "zoom.webp",
+ "zoraxy.webp",
+ "zulip.webp",
+ "zyxel-communications-light.webp",
+ "zyxel-communications.webp",
+ "zyxel-networks-light.webp",
+ "zyxel-networks.webp"
+ ]
+}
\ No newline at end of file
diff --git a/webp/13ft.webp b/webp/13ft.webp
new file mode 100644
index 00000000..a1f68495
Binary files /dev/null and b/webp/13ft.webp differ
diff --git a/webp/2fauth-light.webp b/webp/2fauth-light.webp
new file mode 100644
index 00000000..270c1cb4
Binary files /dev/null and b/webp/2fauth-light.webp differ
diff --git a/webp/2fauth.webp b/webp/2fauth.webp
new file mode 100644
index 00000000..e041bc88
Binary files /dev/null and b/webp/2fauth.webp differ
diff --git a/webp/act.webp b/webp/act.webp
new file mode 100644
index 00000000..1d71af8c
Binary files /dev/null and b/webp/act.webp differ
diff --git a/webp/activepieces.webp b/webp/activepieces.webp
new file mode 100644
index 00000000..7c316e84
Binary files /dev/null and b/webp/activepieces.webp differ
diff --git a/webp/actual-budget.webp b/webp/actual-budget.webp
new file mode 100644
index 00000000..99730f82
Binary files /dev/null and b/webp/actual-budget.webp differ
diff --git a/webp/adguard-home.webp b/webp/adguard-home.webp
new file mode 100644
index 00000000..a3668e42
Binary files /dev/null and b/webp/adguard-home.webp differ
diff --git a/webp/adminer.webp b/webp/adminer.webp
new file mode 100644
index 00000000..79de206c
Binary files /dev/null and b/webp/adminer.webp differ
diff --git a/webp/adventure-log.webp b/webp/adventure-log.webp
new file mode 100644
index 00000000..1de731a9
Binary files /dev/null and b/webp/adventure-log.webp differ
diff --git a/webp/affine-light.webp b/webp/affine-light.webp
new file mode 100644
index 00000000..1cfbd9f7
Binary files /dev/null and b/webp/affine-light.webp differ
diff --git a/webp/affine.webp b/webp/affine.webp
new file mode 100644
index 00000000..81dca256
Binary files /dev/null and b/webp/affine.webp differ
diff --git a/webp/airsonic.webp b/webp/airsonic.webp
new file mode 100644
index 00000000..90d3d32c
Binary files /dev/null and b/webp/airsonic.webp differ
diff --git a/webp/airtable.webp b/webp/airtable.webp
new file mode 100644
index 00000000..3e9128a6
Binary files /dev/null and b/webp/airtable.webp differ
diff --git a/webp/airtel.webp b/webp/airtel.webp
new file mode 100644
index 00000000..039533f0
Binary files /dev/null and b/webp/airtel.webp differ
diff --git a/webp/airvpn.webp b/webp/airvpn.webp
new file mode 100644
index 00000000..6528b83b
Binary files /dev/null and b/webp/airvpn.webp differ
diff --git a/webp/akkoma-light.webp b/webp/akkoma-light.webp
new file mode 100644
index 00000000..68fe1cd1
Binary files /dev/null and b/webp/akkoma-light.webp differ
diff --git a/webp/akkoma.webp b/webp/akkoma.webp
new file mode 100644
index 00000000..d15c0695
Binary files /dev/null and b/webp/akkoma.webp differ
diff --git a/webp/albert-heijn.webp b/webp/albert-heijn.webp
new file mode 100644
index 00000000..b70a0664
Binary files /dev/null and b/webp/albert-heijn.webp differ
diff --git a/webp/alertmanager.webp b/webp/alertmanager.webp
new file mode 100644
index 00000000..51445739
Binary files /dev/null and b/webp/alertmanager.webp differ
diff --git a/webp/aliexpress.webp b/webp/aliexpress.webp
new file mode 100644
index 00000000..87234d4f
Binary files /dev/null and b/webp/aliexpress.webp differ
diff --git a/webp/alist.webp b/webp/alist.webp
new file mode 100644
index 00000000..660bde13
Binary files /dev/null and b/webp/alist.webp differ
diff --git a/webp/alloy.webp b/webp/alloy.webp
new file mode 100644
index 00000000..0e28650c
Binary files /dev/null and b/webp/alloy.webp differ
diff --git a/webp/alma-linux.webp b/webp/alma-linux.webp
new file mode 100644
index 00000000..54fa2773
Binary files /dev/null and b/webp/alma-linux.webp differ
diff --git a/webp/alpine-linux.webp b/webp/alpine-linux.webp
new file mode 100644
index 00000000..8e9b03ff
Binary files /dev/null and b/webp/alpine-linux.webp differ
diff --git a/webp/amazon-light.webp b/webp/amazon-light.webp
new file mode 100644
index 00000000..b1e0a9d6
Binary files /dev/null and b/webp/amazon-light.webp differ
diff --git a/webp/amazon-prime.webp b/webp/amazon-prime.webp
new file mode 100644
index 00000000..faf6ad59
Binary files /dev/null and b/webp/amazon-prime.webp differ
diff --git a/webp/amazon-web-services-light.webp b/webp/amazon-web-services-light.webp
new file mode 100644
index 00000000..988f62c9
Binary files /dev/null and b/webp/amazon-web-services-light.webp differ
diff --git a/webp/amazon-web-services.webp b/webp/amazon-web-services.webp
new file mode 100644
index 00000000..57f1fba1
Binary files /dev/null and b/webp/amazon-web-services.webp differ
diff --git a/webp/amazon.webp b/webp/amazon.webp
new file mode 100644
index 00000000..90a3d8a8
Binary files /dev/null and b/webp/amazon.webp differ
diff --git a/webp/amd-light.webp b/webp/amd-light.webp
new file mode 100644
index 00000000..d09008df
Binary files /dev/null and b/webp/amd-light.webp differ
diff --git a/webp/amd.webp b/webp/amd.webp
new file mode 100644
index 00000000..35a4bdbf
Binary files /dev/null and b/webp/amd.webp differ
diff --git a/webp/android-auto-dark.webp b/webp/android-auto-dark.webp
new file mode 100644
index 00000000..0dd27b02
Binary files /dev/null and b/webp/android-auto-dark.webp differ
diff --git a/webp/android-auto.webp b/webp/android-auto.webp
new file mode 100644
index 00000000..60b6ea7c
Binary files /dev/null and b/webp/android-auto.webp differ
diff --git a/webp/android-robot.webp b/webp/android-robot.webp
new file mode 100644
index 00000000..46235391
Binary files /dev/null and b/webp/android-robot.webp differ
diff --git a/webp/android.webp b/webp/android.webp
new file mode 100644
index 00000000..6e6e5d89
Binary files /dev/null and b/webp/android.webp differ
diff --git a/webp/anonaddy.webp b/webp/anonaddy.webp
new file mode 100644
index 00000000..c28fd09d
Binary files /dev/null and b/webp/anonaddy.webp differ
diff --git a/webp/ansible-light.webp b/webp/ansible-light.webp
new file mode 100644
index 00000000..32d83b9d
Binary files /dev/null and b/webp/ansible-light.webp differ
diff --git a/webp/ansible.webp b/webp/ansible.webp
new file mode 100644
index 00000000..a801bb59
Binary files /dev/null and b/webp/ansible.webp differ
diff --git a/webp/apache-airflow.webp b/webp/apache-airflow.webp
new file mode 100644
index 00000000..8d9ce331
Binary files /dev/null and b/webp/apache-airflow.webp differ
diff --git a/webp/apache-answer.webp b/webp/apache-answer.webp
new file mode 100644
index 00000000..952abdc9
Binary files /dev/null and b/webp/apache-answer.webp differ
diff --git a/webp/apache-cassandra.webp b/webp/apache-cassandra.webp
new file mode 100644
index 00000000..67c95c9f
Binary files /dev/null and b/webp/apache-cassandra.webp differ
diff --git a/webp/apache-druid.webp b/webp/apache-druid.webp
new file mode 100644
index 00000000..239b1a5a
Binary files /dev/null and b/webp/apache-druid.webp differ
diff --git a/webp/apache-openoffice.webp b/webp/apache-openoffice.webp
new file mode 100644
index 00000000..1ea0723f
Binary files /dev/null and b/webp/apache-openoffice.webp differ
diff --git a/webp/apache-solr.webp b/webp/apache-solr.webp
new file mode 100644
index 00000000..1b240b59
Binary files /dev/null and b/webp/apache-solr.webp differ
diff --git a/webp/apache-subversion.webp b/webp/apache-subversion.webp
new file mode 100644
index 00000000..aa07d0af
Binary files /dev/null and b/webp/apache-subversion.webp differ
diff --git a/webp/apache-tomcat-light.webp b/webp/apache-tomcat-light.webp
new file mode 100644
index 00000000..3fad6679
Binary files /dev/null and b/webp/apache-tomcat-light.webp differ
diff --git a/webp/apache-tomcat.webp b/webp/apache-tomcat.webp
new file mode 100644
index 00000000..010cad0e
Binary files /dev/null and b/webp/apache-tomcat.webp differ
diff --git a/webp/apache.webp b/webp/apache.webp
new file mode 100644
index 00000000..9d5121f6
Binary files /dev/null and b/webp/apache.webp differ
diff --git a/webp/apc.webp b/webp/apc.webp
new file mode 100644
index 00000000..00aefac1
Binary files /dev/null and b/webp/apc.webp differ
diff --git a/webp/apiscp.webp b/webp/apiscp.webp
new file mode 100644
index 00000000..6d2ba88e
Binary files /dev/null and b/webp/apiscp.webp differ
diff --git a/webp/app-store.webp b/webp/app-store.webp
new file mode 100644
index 00000000..59baf10a
Binary files /dev/null and b/webp/app-store.webp differ
diff --git a/webp/appflowy.webp b/webp/appflowy.webp
new file mode 100644
index 00000000..c351a9ac
Binary files /dev/null and b/webp/appflowy.webp differ
diff --git a/webp/apple-alt.webp b/webp/apple-alt.webp
new file mode 100644
index 00000000..5124ff89
Binary files /dev/null and b/webp/apple-alt.webp differ
diff --git a/webp/apple-light.webp b/webp/apple-light.webp
new file mode 100644
index 00000000..7b903c45
Binary files /dev/null and b/webp/apple-light.webp differ
diff --git a/webp/apple-music.webp b/webp/apple-music.webp
new file mode 100644
index 00000000..46e893ab
Binary files /dev/null and b/webp/apple-music.webp differ
diff --git a/webp/apple-tv-plus-light.webp b/webp/apple-tv-plus-light.webp
new file mode 100644
index 00000000..a50b3ad1
Binary files /dev/null and b/webp/apple-tv-plus-light.webp differ
diff --git a/webp/apple-tv-plus.webp b/webp/apple-tv-plus.webp
new file mode 100644
index 00000000..047d0817
Binary files /dev/null and b/webp/apple-tv-plus.webp differ
diff --git a/webp/apple.webp b/webp/apple.webp
new file mode 100644
index 00000000..bf894d1c
Binary files /dev/null and b/webp/apple.webp differ
diff --git a/webp/appwrite.webp b/webp/appwrite.webp
new file mode 100644
index 00000000..a81b864c
Binary files /dev/null and b/webp/appwrite.webp differ
diff --git a/webp/ara-records-ansible.webp b/webp/ara-records-ansible.webp
new file mode 100644
index 00000000..b63728d1
Binary files /dev/null and b/webp/ara-records-ansible.webp differ
diff --git a/webp/arch-linux.webp b/webp/arch-linux.webp
new file mode 100644
index 00000000..d9098d55
Binary files /dev/null and b/webp/arch-linux.webp differ
diff --git a/webp/arduino.webp b/webp/arduino.webp
new file mode 100644
index 00000000..ec68dff1
Binary files /dev/null and b/webp/arduino.webp differ
diff --git a/webp/argo-cd.webp b/webp/argo-cd.webp
new file mode 100644
index 00000000..f141badf
Binary files /dev/null and b/webp/argo-cd.webp differ
diff --git a/webp/arm.webp b/webp/arm.webp
new file mode 100644
index 00000000..cc338542
Binary files /dev/null and b/webp/arm.webp differ
diff --git a/webp/artifacthub.webp b/webp/artifacthub.webp
new file mode 100644
index 00000000..afef860a
Binary files /dev/null and b/webp/artifacthub.webp differ
diff --git a/webp/aruba.webp b/webp/aruba.webp
new file mode 100644
index 00000000..ba37502b
Binary files /dev/null and b/webp/aruba.webp differ
diff --git a/webp/asana.webp b/webp/asana.webp
new file mode 100644
index 00000000..25f22ae5
Binary files /dev/null and b/webp/asana.webp differ
diff --git a/webp/asciinema.webp b/webp/asciinema.webp
new file mode 100644
index 00000000..5386db39
Binary files /dev/null and b/webp/asciinema.webp differ
diff --git a/webp/astral.webp b/webp/astral.webp
new file mode 100644
index 00000000..7a35db9c
Binary files /dev/null and b/webp/astral.webp differ
diff --git a/webp/astuto-light.webp b/webp/astuto-light.webp
new file mode 100644
index 00000000..c51d7422
Binary files /dev/null and b/webp/astuto-light.webp differ
diff --git a/webp/astuto.webp b/webp/astuto.webp
new file mode 100644
index 00000000..df644d10
Binary files /dev/null and b/webp/astuto.webp differ
diff --git a/webp/asus-rog.webp b/webp/asus-rog.webp
new file mode 100644
index 00000000..823bdcbc
Binary files /dev/null and b/webp/asus-rog.webp differ
diff --git a/webp/asus-router.webp b/webp/asus-router.webp
new file mode 100644
index 00000000..e4250132
Binary files /dev/null and b/webp/asus-router.webp differ
diff --git a/webp/asus.webp b/webp/asus.webp
new file mode 100644
index 00000000..9ed39d05
Binary files /dev/null and b/webp/asus.webp differ
diff --git a/webp/asustor.webp b/webp/asustor.webp
new file mode 100644
index 00000000..4440575c
Binary files /dev/null and b/webp/asustor.webp differ
diff --git a/webp/at-t.webp b/webp/at-t.webp
new file mode 100644
index 00000000..8fe63094
Binary files /dev/null and b/webp/at-t.webp differ
diff --git a/webp/atlassian-bamboo.webp b/webp/atlassian-bamboo.webp
new file mode 100644
index 00000000..ac20f7c4
Binary files /dev/null and b/webp/atlassian-bamboo.webp differ
diff --git a/webp/atlassian-bitbucket.webp b/webp/atlassian-bitbucket.webp
new file mode 100644
index 00000000..d414ce54
Binary files /dev/null and b/webp/atlassian-bitbucket.webp differ
diff --git a/webp/atlassian-jira.webp b/webp/atlassian-jira.webp
new file mode 100644
index 00000000..4fd4691c
Binary files /dev/null and b/webp/atlassian-jira.webp differ
diff --git a/webp/atlassian-opsgenie.webp b/webp/atlassian-opsgenie.webp
new file mode 100644
index 00000000..f98f849f
Binary files /dev/null and b/webp/atlassian-opsgenie.webp differ
diff --git a/webp/atlassian-trello.webp b/webp/atlassian-trello.webp
new file mode 100644
index 00000000..43e7e5d4
Binary files /dev/null and b/webp/atlassian-trello.webp differ
diff --git a/webp/atlassian.webp b/webp/atlassian.webp
new file mode 100644
index 00000000..3b2429e1
Binary files /dev/null and b/webp/atlassian.webp differ
diff --git a/webp/atuin-light.webp b/webp/atuin-light.webp
new file mode 100644
index 00000000..cb19fb14
Binary files /dev/null and b/webp/atuin-light.webp differ
diff --git a/webp/atuin.webp b/webp/atuin.webp
new file mode 100644
index 00000000..2d2bda46
Binary files /dev/null and b/webp/atuin.webp differ
diff --git a/webp/audacity.webp b/webp/audacity.webp
new file mode 100644
index 00000000..e75dead8
Binary files /dev/null and b/webp/audacity.webp differ
diff --git a/webp/audiobookshelf.webp b/webp/audiobookshelf.webp
new file mode 100644
index 00000000..4cb99857
Binary files /dev/null and b/webp/audiobookshelf.webp differ
diff --git a/webp/auracast.webp b/webp/auracast.webp
new file mode 100644
index 00000000..8da527bd
Binary files /dev/null and b/webp/auracast.webp differ
diff --git a/webp/authelia.webp b/webp/authelia.webp
new file mode 100644
index 00000000..e49267a2
Binary files /dev/null and b/webp/authelia.webp differ
diff --git a/webp/authentik.webp b/webp/authentik.webp
new file mode 100644
index 00000000..49a8e988
Binary files /dev/null and b/webp/authentik.webp differ
diff --git a/webp/authman.webp b/webp/authman.webp
new file mode 100644
index 00000000..56da5a93
Binary files /dev/null and b/webp/authman.webp differ
diff --git a/webp/autobrr.webp b/webp/autobrr.webp
new file mode 100644
index 00000000..f669a76f
Binary files /dev/null and b/webp/autobrr.webp differ
diff --git a/webp/automad-light.webp b/webp/automad-light.webp
new file mode 100644
index 00000000..5c7b0915
Binary files /dev/null and b/webp/automad-light.webp differ
diff --git a/webp/automad.webp b/webp/automad.webp
new file mode 100644
index 00000000..ebd47bd3
Binary files /dev/null and b/webp/automad.webp differ
diff --git a/webp/avigilon.webp b/webp/avigilon.webp
new file mode 100644
index 00000000..507dbe48
Binary files /dev/null and b/webp/avigilon.webp differ
diff --git a/webp/avm-fritzbox-light.webp b/webp/avm-fritzbox-light.webp
new file mode 100644
index 00000000..0af03c7f
Binary files /dev/null and b/webp/avm-fritzbox-light.webp differ
diff --git a/webp/avm-fritzbox.webp b/webp/avm-fritzbox.webp
new file mode 100644
index 00000000..9828e229
Binary files /dev/null and b/webp/avm-fritzbox.webp differ
diff --git a/webp/aws-ecs.webp b/webp/aws-ecs.webp
new file mode 100644
index 00000000..c5535995
Binary files /dev/null and b/webp/aws-ecs.webp differ
diff --git a/webp/aws-light.webp b/webp/aws-light.webp
new file mode 100644
index 00000000..988f62c9
Binary files /dev/null and b/webp/aws-light.webp differ
diff --git a/webp/aws.webp b/webp/aws.webp
new file mode 100644
index 00000000..57f1fba1
Binary files /dev/null and b/webp/aws.webp differ
diff --git a/webp/awwesome.webp b/webp/awwesome.webp
new file mode 100644
index 00000000..76c1e846
Binary files /dev/null and b/webp/awwesome.webp differ
diff --git a/webp/azuracast.webp b/webp/azuracast.webp
new file mode 100644
index 00000000..53b6dcf5
Binary files /dev/null and b/webp/azuracast.webp differ
diff --git a/webp/azure-container-instances.webp b/webp/azure-container-instances.webp
new file mode 100644
index 00000000..3503d093
Binary files /dev/null and b/webp/azure-container-instances.webp differ
diff --git a/webp/azure-container-service.webp b/webp/azure-container-service.webp
new file mode 100644
index 00000000..43a09462
Binary files /dev/null and b/webp/azure-container-service.webp differ
diff --git a/webp/azure-devops.webp b/webp/azure-devops.webp
new file mode 100644
index 00000000..06b3699d
Binary files /dev/null and b/webp/azure-devops.webp differ
diff --git a/webp/azure-dns.webp b/webp/azure-dns.webp
new file mode 100644
index 00000000..30a7c908
Binary files /dev/null and b/webp/azure-dns.webp differ
diff --git a/webp/azure.webp b/webp/azure.webp
new file mode 100644
index 00000000..05d1f72f
Binary files /dev/null and b/webp/azure.webp differ
diff --git a/webp/backblaze.webp b/webp/backblaze.webp
new file mode 100644
index 00000000..2d682a62
Binary files /dev/null and b/webp/backblaze.webp differ
diff --git a/webp/backrest-light.webp b/webp/backrest-light.webp
new file mode 100644
index 00000000..54bd77af
Binary files /dev/null and b/webp/backrest-light.webp differ
diff --git a/webp/backrest.webp b/webp/backrest.webp
new file mode 100644
index 00000000..6eba190a
Binary files /dev/null and b/webp/backrest.webp differ
diff --git a/webp/bar-assistant.webp b/webp/bar-assistant.webp
new file mode 100644
index 00000000..038d1740
Binary files /dev/null and b/webp/bar-assistant.webp differ
diff --git a/webp/baserow.webp b/webp/baserow.webp
new file mode 100644
index 00000000..e810aac5
Binary files /dev/null and b/webp/baserow.webp differ
diff --git a/webp/bazarr-dark.webp b/webp/bazarr-dark.webp
new file mode 100644
index 00000000..ba3bb84f
Binary files /dev/null and b/webp/bazarr-dark.webp differ
diff --git a/webp/bazarr.webp b/webp/bazarr.webp
new file mode 100644
index 00000000..2aefa43a
Binary files /dev/null and b/webp/bazarr.webp differ
diff --git a/webp/beaver-habit-tracker-light.webp b/webp/beaver-habit-tracker-light.webp
new file mode 100644
index 00000000..439e4c5a
Binary files /dev/null and b/webp/beaver-habit-tracker-light.webp differ
diff --git a/webp/beaver-habit-tracker.webp b/webp/beaver-habit-tracker.webp
new file mode 100644
index 00000000..70b8f1bb
Binary files /dev/null and b/webp/beaver-habit-tracker.webp differ
diff --git a/webp/beef-light.webp b/webp/beef-light.webp
new file mode 100644
index 00000000..92ce1f55
Binary files /dev/null and b/webp/beef-light.webp differ
diff --git a/webp/beef.webp b/webp/beef.webp
new file mode 100644
index 00000000..2a89234a
Binary files /dev/null and b/webp/beef.webp differ
diff --git a/webp/beszel-light.webp b/webp/beszel-light.webp
new file mode 100644
index 00000000..97de1ad0
Binary files /dev/null and b/webp/beszel-light.webp differ
diff --git a/webp/beszel.webp b/webp/beszel.webp
new file mode 100644
index 00000000..3fb80e90
Binary files /dev/null and b/webp/beszel.webp differ
diff --git a/webp/biblioreads-light.webp b/webp/biblioreads-light.webp
new file mode 100644
index 00000000..9cc07eb5
Binary files /dev/null and b/webp/biblioreads-light.webp differ
diff --git a/webp/biblioreads.webp b/webp/biblioreads.webp
new file mode 100644
index 00000000..01c7b3c1
Binary files /dev/null and b/webp/biblioreads.webp differ
diff --git a/webp/bigcapital.webp b/webp/bigcapital.webp
new file mode 100644
index 00000000..4e15af48
Binary files /dev/null and b/webp/bigcapital.webp differ
diff --git a/webp/bing.webp b/webp/bing.webp
new file mode 100644
index 00000000..113c6308
Binary files /dev/null and b/webp/bing.webp differ
diff --git a/webp/bitbucket.webp b/webp/bitbucket.webp
new file mode 100644
index 00000000..14627b0b
Binary files /dev/null and b/webp/bitbucket.webp differ
diff --git a/webp/bitcoin.webp b/webp/bitcoin.webp
new file mode 100644
index 00000000..0c3a5205
Binary files /dev/null and b/webp/bitcoin.webp differ
diff --git a/webp/bitwarden.webp b/webp/bitwarden.webp
new file mode 100644
index 00000000..56e9531c
Binary files /dev/null and b/webp/bitwarden.webp differ
diff --git a/webp/blocky.webp b/webp/blocky.webp
new file mode 100644
index 00000000..bbb99522
Binary files /dev/null and b/webp/blocky.webp differ
diff --git a/webp/blogger.webp b/webp/blogger.webp
new file mode 100644
index 00000000..67df8e71
Binary files /dev/null and b/webp/blogger.webp differ
diff --git a/webp/bluesky.webp b/webp/bluesky.webp
new file mode 100644
index 00000000..1160635b
Binary files /dev/null and b/webp/bluesky.webp differ
diff --git a/webp/bluetooth.webp b/webp/bluetooth.webp
new file mode 100644
index 00000000..a89f9b51
Binary files /dev/null and b/webp/bluetooth.webp differ
diff --git a/webp/booklogr-light.webp b/webp/booklogr-light.webp
new file mode 100644
index 00000000..cf64ff06
Binary files /dev/null and b/webp/booklogr-light.webp differ
diff --git a/webp/booklogr.webp b/webp/booklogr.webp
new file mode 100644
index 00000000..d72bfa32
Binary files /dev/null and b/webp/booklogr.webp differ
diff --git a/webp/bookstack.webp b/webp/bookstack.webp
new file mode 100644
index 00000000..9d41a475
Binary files /dev/null and b/webp/bookstack.webp differ
diff --git a/webp/bootstrap.webp b/webp/bootstrap.webp
new file mode 100644
index 00000000..3da822b2
Binary files /dev/null and b/webp/bootstrap.webp differ
diff --git a/webp/borg.webp b/webp/borg.webp
new file mode 100644
index 00000000..58afd30b
Binary files /dev/null and b/webp/borg.webp differ
diff --git a/webp/borgmatic-light.webp b/webp/borgmatic-light.webp
new file mode 100644
index 00000000..b495ef9a
Binary files /dev/null and b/webp/borgmatic-light.webp differ
diff --git a/webp/borgmatic.webp b/webp/borgmatic.webp
new file mode 100644
index 00000000..ba273096
Binary files /dev/null and b/webp/borgmatic.webp differ
diff --git a/webp/boundary.webp b/webp/boundary.webp
new file mode 100644
index 00000000..a16847ce
Binary files /dev/null and b/webp/boundary.webp differ
diff --git a/webp/box.webp b/webp/box.webp
new file mode 100644
index 00000000..4db2b1ce
Binary files /dev/null and b/webp/box.webp differ
diff --git a/webp/brave.webp b/webp/brave.webp
new file mode 100644
index 00000000..4f5896f0
Binary files /dev/null and b/webp/brave.webp differ
diff --git a/webp/broadcastchannel-light.webp b/webp/broadcastchannel-light.webp
new file mode 100644
index 00000000..4b7486e8
Binary files /dev/null and b/webp/broadcastchannel-light.webp differ
diff --git a/webp/broadcastchannel.webp b/webp/broadcastchannel.webp
new file mode 100644
index 00000000..a8968ab5
Binary files /dev/null and b/webp/broadcastchannel.webp differ
diff --git a/webp/brocade.webp b/webp/brocade.webp
new file mode 100644
index 00000000..b2466cfb
Binary files /dev/null and b/webp/brocade.webp differ
diff --git a/webp/brother.webp b/webp/brother.webp
new file mode 100644
index 00000000..e1fae3ce
Binary files /dev/null and b/webp/brother.webp differ
diff --git a/webp/browserless-light.webp b/webp/browserless-light.webp
new file mode 100644
index 00000000..f21017fe
Binary files /dev/null and b/webp/browserless-light.webp differ
diff --git a/webp/browserless.webp b/webp/browserless.webp
new file mode 100644
index 00000000..7140bdb7
Binary files /dev/null and b/webp/browserless.webp differ
diff --git a/webp/browsh.webp b/webp/browsh.webp
new file mode 100644
index 00000000..f39b6608
Binary files /dev/null and b/webp/browsh.webp differ
diff --git a/webp/budgetbee-light.webp b/webp/budgetbee-light.webp
new file mode 100644
index 00000000..55e1225f
Binary files /dev/null and b/webp/budgetbee-light.webp differ
diff --git a/webp/budgetbee.webp b/webp/budgetbee.webp
new file mode 100644
index 00000000..181d9acf
Binary files /dev/null and b/webp/budgetbee.webp differ
diff --git a/webp/budibase.webp b/webp/budibase.webp
new file mode 100644
index 00000000..e525fa0f
Binary files /dev/null and b/webp/budibase.webp differ
diff --git a/webp/bunkerweb.webp b/webp/bunkerweb.webp
new file mode 100644
index 00000000..6ae6ec9e
Binary files /dev/null and b/webp/bunkerweb.webp differ
diff --git a/webp/c.webp b/webp/c.webp
new file mode 100644
index 00000000..d29ffea5
Binary files /dev/null and b/webp/c.webp differ
diff --git a/webp/cacti.webp b/webp/cacti.webp
new file mode 100644
index 00000000..11e21644
Binary files /dev/null and b/webp/cacti.webp differ
diff --git a/webp/caddy.webp b/webp/caddy.webp
new file mode 100644
index 00000000..634e5061
Binary files /dev/null and b/webp/caddy.webp differ
diff --git a/webp/cal-com-light.webp b/webp/cal-com-light.webp
new file mode 100644
index 00000000..d96dc599
Binary files /dev/null and b/webp/cal-com-light.webp differ
diff --git a/webp/cal-com.webp b/webp/cal-com.webp
new file mode 100644
index 00000000..fdc7ef33
Binary files /dev/null and b/webp/cal-com.webp differ
diff --git a/webp/calibre-web.webp b/webp/calibre-web.webp
new file mode 100644
index 00000000..9e26b18d
Binary files /dev/null and b/webp/calibre-web.webp differ
diff --git a/webp/calibre.webp b/webp/calibre.webp
new file mode 100644
index 00000000..462ac011
Binary files /dev/null and b/webp/calibre.webp differ
diff --git a/webp/canonical.webp b/webp/canonical.webp
new file mode 100644
index 00000000..05fb82c3
Binary files /dev/null and b/webp/canonical.webp differ
diff --git a/webp/caprover.webp b/webp/caprover.webp
new file mode 100644
index 00000000..112ebb0e
Binary files /dev/null and b/webp/caprover.webp differ
diff --git a/webp/carrefour.webp b/webp/carrefour.webp
new file mode 100644
index 00000000..7e4b4626
Binary files /dev/null and b/webp/carrefour.webp differ
diff --git a/webp/casaos.webp b/webp/casaos.webp
new file mode 100644
index 00000000..718fbf44
Binary files /dev/null and b/webp/casaos.webp differ
diff --git a/webp/castopod.webp b/webp/castopod.webp
new file mode 100644
index 00000000..9a82eb7f
Binary files /dev/null and b/webp/castopod.webp differ
diff --git a/webp/cc-light.webp b/webp/cc-light.webp
new file mode 100644
index 00000000..e9db7bdd
Binary files /dev/null and b/webp/cc-light.webp differ
diff --git a/webp/cc.webp b/webp/cc.webp
new file mode 100644
index 00000000..d1ef998a
Binary files /dev/null and b/webp/cc.webp differ
diff --git a/webp/centos.webp b/webp/centos.webp
new file mode 100644
index 00000000..7533ca35
Binary files /dev/null and b/webp/centos.webp differ
diff --git a/webp/ceph.webp b/webp/ceph.webp
new file mode 100644
index 00000000..5e2fe102
Binary files /dev/null and b/webp/ceph.webp differ
diff --git a/webp/cert-manager.webp b/webp/cert-manager.webp
new file mode 100644
index 00000000..302a70f0
Binary files /dev/null and b/webp/cert-manager.webp differ
diff --git a/webp/cert-warden-light.webp b/webp/cert-warden-light.webp
new file mode 100644
index 00000000..91e2be9f
Binary files /dev/null and b/webp/cert-warden-light.webp differ
diff --git a/webp/cert-warden.webp b/webp/cert-warden.webp
new file mode 100644
index 00000000..68d17769
Binary files /dev/null and b/webp/cert-warden.webp differ
diff --git a/webp/chainguard.webp b/webp/chainguard.webp
new file mode 100644
index 00000000..4065d03b
Binary files /dev/null and b/webp/chainguard.webp differ
diff --git a/webp/changedetection.webp b/webp/changedetection.webp
new file mode 100644
index 00000000..dcefeecc
Binary files /dev/null and b/webp/changedetection.webp differ
diff --git a/webp/channels-dvr.webp b/webp/channels-dvr.webp
new file mode 100644
index 00000000..5ee95ec8
Binary files /dev/null and b/webp/channels-dvr.webp differ
diff --git a/webp/chatgpt.webp b/webp/chatgpt.webp
new file mode 100644
index 00000000..fb27024e
Binary files /dev/null and b/webp/chatgpt.webp differ
diff --git a/webp/chatpad-ai.webp b/webp/chatpad-ai.webp
new file mode 100644
index 00000000..4145be19
Binary files /dev/null and b/webp/chatpad-ai.webp differ
diff --git a/webp/checkmk.webp b/webp/checkmk.webp
new file mode 100644
index 00000000..69f9a5af
Binary files /dev/null and b/webp/checkmk.webp differ
diff --git a/webp/chevereto.webp b/webp/chevereto.webp
new file mode 100644
index 00000000..fdc2d48c
Binary files /dev/null and b/webp/chevereto.webp differ
diff --git a/webp/chirpy.webp b/webp/chirpy.webp
new file mode 100644
index 00000000..e435c677
Binary files /dev/null and b/webp/chirpy.webp differ
diff --git a/webp/chrome-canary.webp b/webp/chrome-canary.webp
new file mode 100644
index 00000000..50f309bc
Binary files /dev/null and b/webp/chrome-canary.webp differ
diff --git a/webp/chrome-dev.webp b/webp/chrome-dev.webp
new file mode 100644
index 00000000..cf86a445
Binary files /dev/null and b/webp/chrome-dev.webp differ
diff --git a/webp/chrome-devtools.webp b/webp/chrome-devtools.webp
new file mode 100644
index 00000000..b6013c5c
Binary files /dev/null and b/webp/chrome-devtools.webp differ
diff --git a/webp/chrome-remote-desktop.webp b/webp/chrome-remote-desktop.webp
new file mode 100644
index 00000000..93d3344e
Binary files /dev/null and b/webp/chrome-remote-desktop.webp differ
diff --git a/webp/chrome.webp b/webp/chrome.webp
new file mode 100644
index 00000000..75b1d879
Binary files /dev/null and b/webp/chrome.webp differ
diff --git a/webp/chromium.webp b/webp/chromium.webp
new file mode 100644
index 00000000..29863317
Binary files /dev/null and b/webp/chromium.webp differ
diff --git a/webp/cilium-light.webp b/webp/cilium-light.webp
new file mode 100644
index 00000000..d0cc6201
Binary files /dev/null and b/webp/cilium-light.webp differ
diff --git a/webp/cilium.webp b/webp/cilium.webp
new file mode 100644
index 00000000..bc5a5347
Binary files /dev/null and b/webp/cilium.webp differ
diff --git a/webp/cinny-light.webp b/webp/cinny-light.webp
new file mode 100644
index 00000000..ea97134d
Binary files /dev/null and b/webp/cinny-light.webp differ
diff --git a/webp/cinny.webp b/webp/cinny.webp
new file mode 100644
index 00000000..39049a59
Binary files /dev/null and b/webp/cinny.webp differ
diff --git a/webp/cisco.webp b/webp/cisco.webp
new file mode 100644
index 00000000..b36a6e23
Binary files /dev/null and b/webp/cisco.webp differ
diff --git a/webp/clickhouse.webp b/webp/clickhouse.webp
new file mode 100644
index 00000000..387d8174
Binary files /dev/null and b/webp/clickhouse.webp differ
diff --git a/webp/cloud66.webp b/webp/cloud66.webp
new file mode 100644
index 00000000..32086d11
Binary files /dev/null and b/webp/cloud66.webp differ
diff --git a/webp/cloud9-light.webp b/webp/cloud9-light.webp
new file mode 100644
index 00000000..3abf573f
Binary files /dev/null and b/webp/cloud9-light.webp differ
diff --git a/webp/cloud9.webp b/webp/cloud9.webp
new file mode 100644
index 00000000..d751f9e7
Binary files /dev/null and b/webp/cloud9.webp differ
diff --git a/webp/cloudbeaver.webp b/webp/cloudbeaver.webp
new file mode 100644
index 00000000..7bfc7959
Binary files /dev/null and b/webp/cloudbeaver.webp differ
diff --git a/webp/cloudflare-pages.webp b/webp/cloudflare-pages.webp
new file mode 100644
index 00000000..563c13fa
Binary files /dev/null and b/webp/cloudflare-pages.webp differ
diff --git a/webp/cloudflare-zero-trust.webp b/webp/cloudflare-zero-trust.webp
new file mode 100644
index 00000000..1200ce7e
Binary files /dev/null and b/webp/cloudflare-zero-trust.webp differ
diff --git a/webp/cloudflare.webp b/webp/cloudflare.webp
new file mode 100644
index 00000000..a147edfe
Binary files /dev/null and b/webp/cloudflare.webp differ
diff --git a/webp/cloudpanel.webp b/webp/cloudpanel.webp
new file mode 100644
index 00000000..9aee4ea8
Binary files /dev/null and b/webp/cloudpanel.webp differ
diff --git a/webp/cockpit-cms-light.webp b/webp/cockpit-cms-light.webp
new file mode 100644
index 00000000..41515621
Binary files /dev/null and b/webp/cockpit-cms-light.webp differ
diff --git a/webp/cockpit-cms.webp b/webp/cockpit-cms.webp
new file mode 100644
index 00000000..badbd48b
Binary files /dev/null and b/webp/cockpit-cms.webp differ
diff --git a/webp/cockpit-light.webp b/webp/cockpit-light.webp
new file mode 100644
index 00000000..87bb6bde
Binary files /dev/null and b/webp/cockpit-light.webp differ
diff --git a/webp/cockpit.webp b/webp/cockpit.webp
new file mode 100644
index 00000000..6c990378
Binary files /dev/null and b/webp/cockpit.webp differ
diff --git a/webp/code.webp b/webp/code.webp
new file mode 100644
index 00000000..b2f73ff1
Binary files /dev/null and b/webp/code.webp differ
diff --git a/webp/codeberg.webp b/webp/codeberg.webp
new file mode 100644
index 00000000..4a4a4485
Binary files /dev/null and b/webp/codeberg.webp differ
diff --git a/webp/coder-light.webp b/webp/coder-light.webp
new file mode 100644
index 00000000..1fc9fbaa
Binary files /dev/null and b/webp/coder-light.webp differ
diff --git a/webp/coder.webp b/webp/coder.webp
new file mode 100644
index 00000000..1c373adb
Binary files /dev/null and b/webp/coder.webp differ
diff --git a/webp/codestats-light.webp b/webp/codestats-light.webp
new file mode 100644
index 00000000..1dae0f0c
Binary files /dev/null and b/webp/codestats-light.webp differ
diff --git a/webp/codestats.webp b/webp/codestats.webp
new file mode 100644
index 00000000..726dbc87
Binary files /dev/null and b/webp/codestats.webp differ
diff --git a/webp/codex-light.webp b/webp/codex-light.webp
new file mode 100644
index 00000000..90531933
Binary files /dev/null and b/webp/codex-light.webp differ
diff --git a/webp/codex.webp b/webp/codex.webp
new file mode 100644
index 00000000..ca7b9317
Binary files /dev/null and b/webp/codex.webp differ
diff --git a/webp/collabora-online.webp b/webp/collabora-online.webp
new file mode 100644
index 00000000..8945e8b0
Binary files /dev/null and b/webp/collabora-online.webp differ
diff --git a/webp/commafeed-light.webp b/webp/commafeed-light.webp
new file mode 100644
index 00000000..2a034042
Binary files /dev/null and b/webp/commafeed-light.webp differ
diff --git a/webp/commafeed.webp b/webp/commafeed.webp
new file mode 100644
index 00000000..3c65d85e
Binary files /dev/null and b/webp/commafeed.webp differ
diff --git a/webp/commento-light.webp b/webp/commento-light.webp
new file mode 100644
index 00000000..9623bccc
Binary files /dev/null and b/webp/commento-light.webp differ
diff --git a/webp/commento.webp b/webp/commento.webp
new file mode 100644
index 00000000..ef6cb6c3
Binary files /dev/null and b/webp/commento.webp differ
diff --git a/webp/compreface.webp b/webp/compreface.webp
new file mode 100644
index 00000000..637b0b66
Binary files /dev/null and b/webp/compreface.webp differ
diff --git a/webp/concourse.webp b/webp/concourse.webp
new file mode 100644
index 00000000..4df5e5dd
Binary files /dev/null and b/webp/concourse.webp differ
diff --git a/webp/confluence.webp b/webp/confluence.webp
new file mode 100644
index 00000000..a3b7a751
Binary files /dev/null and b/webp/confluence.webp differ
diff --git a/webp/consul.webp b/webp/consul.webp
new file mode 100644
index 00000000..b4ce585b
Binary files /dev/null and b/webp/consul.webp differ
diff --git a/webp/contabo.webp b/webp/contabo.webp
new file mode 100644
index 00000000..ebccd500
Binary files /dev/null and b/webp/contabo.webp differ
diff --git a/webp/converse-light.webp b/webp/converse-light.webp
new file mode 100644
index 00000000..8425d5e9
Binary files /dev/null and b/webp/converse-light.webp differ
diff --git a/webp/converse.webp b/webp/converse.webp
new file mode 100644
index 00000000..4550cc2f
Binary files /dev/null and b/webp/converse.webp differ
diff --git a/webp/coolify.webp b/webp/coolify.webp
new file mode 100644
index 00000000..8fb39e7b
Binary files /dev/null and b/webp/coolify.webp differ
diff --git a/webp/coredns.webp b/webp/coredns.webp
new file mode 100644
index 00000000..9a99b94a
Binary files /dev/null and b/webp/coredns.webp differ
diff --git a/webp/coreos.webp b/webp/coreos.webp
new file mode 100644
index 00000000..71968872
Binary files /dev/null and b/webp/coreos.webp differ
diff --git a/webp/cosign.webp b/webp/cosign.webp
new file mode 100644
index 00000000..70890e9f
Binary files /dev/null and b/webp/cosign.webp differ
diff --git a/webp/costco.webp b/webp/costco.webp
new file mode 100644
index 00000000..56f3378b
Binary files /dev/null and b/webp/costco.webp differ
diff --git a/webp/couchdb.webp b/webp/couchdb.webp
new file mode 100644
index 00000000..e42e6af9
Binary files /dev/null and b/webp/couchdb.webp differ
diff --git a/webp/counter-analytics.webp b/webp/counter-analytics.webp
new file mode 100644
index 00000000..171b9ea7
Binary files /dev/null and b/webp/counter-analytics.webp differ
diff --git a/webp/cozy.webp b/webp/cozy.webp
new file mode 100644
index 00000000..9f9e0372
Binary files /dev/null and b/webp/cozy.webp differ
diff --git a/webp/cpanel.webp b/webp/cpanel.webp
new file mode 100644
index 00000000..2c54e7f5
Binary files /dev/null and b/webp/cpanel.webp differ
diff --git a/webp/cpp.webp b/webp/cpp.webp
new file mode 100644
index 00000000..959604cc
Binary files /dev/null and b/webp/cpp.webp differ
diff --git a/webp/crafty-controller.webp b/webp/crafty-controller.webp
new file mode 100644
index 00000000..6e8cedbd
Binary files /dev/null and b/webp/crafty-controller.webp differ
diff --git a/webp/crowdsec.webp b/webp/crowdsec.webp
new file mode 100644
index 00000000..391403a9
Binary files /dev/null and b/webp/crowdsec.webp differ
diff --git a/webp/cryptomator.webp b/webp/cryptomator.webp
new file mode 100644
index 00000000..704fe4c9
Binary files /dev/null and b/webp/cryptomator.webp differ
diff --git a/webp/cryptpad.webp b/webp/cryptpad.webp
new file mode 100644
index 00000000..1379b18d
Binary files /dev/null and b/webp/cryptpad.webp differ
diff --git a/webp/csharp.webp b/webp/csharp.webp
new file mode 100644
index 00000000..faaf9ce1
Binary files /dev/null and b/webp/csharp.webp differ
diff --git a/webp/css-light.webp b/webp/css-light.webp
new file mode 100644
index 00000000..f7836a3c
Binary files /dev/null and b/webp/css-light.webp differ
diff --git a/webp/css.webp b/webp/css.webp
new file mode 100644
index 00000000..8036519d
Binary files /dev/null and b/webp/css.webp differ
diff --git a/webp/ctfreak.webp b/webp/ctfreak.webp
new file mode 100644
index 00000000..f8980bef
Binary files /dev/null and b/webp/ctfreak.webp differ
diff --git a/webp/cups-light.webp b/webp/cups-light.webp
new file mode 100644
index 00000000..3c83360a
Binary files /dev/null and b/webp/cups-light.webp differ
diff --git a/webp/cups.webp b/webp/cups.webp
new file mode 100644
index 00000000..bfaec895
Binary files /dev/null and b/webp/cups.webp differ
diff --git a/webp/cura.webp b/webp/cura.webp
new file mode 100644
index 00000000..8a54aeda
Binary files /dev/null and b/webp/cura.webp differ
diff --git a/webp/cyberchef.webp b/webp/cyberchef.webp
new file mode 100644
index 00000000..d9ebde34
Binary files /dev/null and b/webp/cyberchef.webp differ
diff --git a/webp/czkawka.webp b/webp/czkawka.webp
new file mode 100644
index 00000000..92058d39
Binary files /dev/null and b/webp/czkawka.webp differ
diff --git a/webp/d-link.webp b/webp/d-link.webp
new file mode 100644
index 00000000..9ece2669
Binary files /dev/null and b/webp/d-link.webp differ
diff --git a/webp/dalibo.webp b/webp/dalibo.webp
new file mode 100644
index 00000000..0c36e35c
Binary files /dev/null and b/webp/dalibo.webp differ
diff --git a/webp/dart.webp b/webp/dart.webp
new file mode 100644
index 00000000..50796729
Binary files /dev/null and b/webp/dart.webp differ
diff --git a/webp/datadog.webp b/webp/datadog.webp
new file mode 100644
index 00000000..3b603b89
Binary files /dev/null and b/webp/datadog.webp differ
diff --git a/webp/davical.webp b/webp/davical.webp
new file mode 100644
index 00000000..e3866751
Binary files /dev/null and b/webp/davical.webp differ
diff --git a/webp/dawarich.webp b/webp/dawarich.webp
new file mode 100644
index 00000000..b53a0d95
Binary files /dev/null and b/webp/dawarich.webp differ
diff --git a/webp/dc-os.webp b/webp/dc-os.webp
new file mode 100644
index 00000000..574665de
Binary files /dev/null and b/webp/dc-os.webp differ
diff --git a/webp/ddclient.webp b/webp/ddclient.webp
new file mode 100644
index 00000000..3849c75f
Binary files /dev/null and b/webp/ddclient.webp differ
diff --git a/webp/ddns-updater.webp b/webp/ddns-updater.webp
new file mode 100644
index 00000000..8ba0e104
Binary files /dev/null and b/webp/ddns-updater.webp differ
diff --git a/webp/debian-linux.webp b/webp/debian-linux.webp
new file mode 100644
index 00000000..33c18327
Binary files /dev/null and b/webp/debian-linux.webp differ
diff --git a/webp/defguard.webp b/webp/defguard.webp
new file mode 100644
index 00000000..44df287c
Binary files /dev/null and b/webp/defguard.webp differ
diff --git a/webp/dell.webp b/webp/dell.webp
new file mode 100644
index 00000000..21d9e2b9
Binary files /dev/null and b/webp/dell.webp differ
diff --git a/webp/deluge.webp b/webp/deluge.webp
new file mode 100644
index 00000000..02a5dacd
Binary files /dev/null and b/webp/deluge.webp differ
diff --git a/webp/deno-light.webp b/webp/deno-light.webp
new file mode 100644
index 00000000..d785a08d
Binary files /dev/null and b/webp/deno-light.webp differ
diff --git a/webp/deno.webp b/webp/deno.webp
new file mode 100644
index 00000000..9811c04a
Binary files /dev/null and b/webp/deno.webp differ
diff --git a/webp/denon-light.webp b/webp/denon-light.webp
new file mode 100644
index 00000000..837bf248
Binary files /dev/null and b/webp/denon-light.webp differ
diff --git a/webp/denon.webp b/webp/denon.webp
new file mode 100644
index 00000000..b9f267b6
Binary files /dev/null and b/webp/denon.webp differ
diff --git a/webp/deployarr.webp b/webp/deployarr.webp
new file mode 100644
index 00000000..0048b0c2
Binary files /dev/null and b/webp/deployarr.webp differ
diff --git a/webp/diagrams-net.webp b/webp/diagrams-net.webp
new file mode 100644
index 00000000..17614620
Binary files /dev/null and b/webp/diagrams-net.webp differ
diff --git a/webp/digital-ocean.webp b/webp/digital-ocean.webp
new file mode 100644
index 00000000..7e38e130
Binary files /dev/null and b/webp/digital-ocean.webp differ
diff --git a/webp/dillinger-light.webp b/webp/dillinger-light.webp
new file mode 100644
index 00000000..d5ab28c7
Binary files /dev/null and b/webp/dillinger-light.webp differ
diff --git a/webp/dillinger.webp b/webp/dillinger.webp
new file mode 100644
index 00000000..1d2a6e44
Binary files /dev/null and b/webp/dillinger.webp differ
diff --git a/webp/directadmin.webp b/webp/directadmin.webp
new file mode 100644
index 00000000..1d067a90
Binary files /dev/null and b/webp/directadmin.webp differ
diff --git a/webp/directus.webp b/webp/directus.webp
new file mode 100644
index 00000000..3f7dbd9d
Binary files /dev/null and b/webp/directus.webp differ
diff --git a/webp/discord.webp b/webp/discord.webp
new file mode 100644
index 00000000..581e87ce
Binary files /dev/null and b/webp/discord.webp differ
diff --git a/webp/discourse-light.webp b/webp/discourse-light.webp
new file mode 100644
index 00000000..f15980c1
Binary files /dev/null and b/webp/discourse-light.webp differ
diff --git a/webp/discourse.webp b/webp/discourse.webp
new file mode 100644
index 00000000..d556a800
Binary files /dev/null and b/webp/discourse.webp differ
diff --git a/webp/disney-plus.webp b/webp/disney-plus.webp
new file mode 100644
index 00000000..b492c1d2
Binary files /dev/null and b/webp/disney-plus.webp differ
diff --git a/webp/dlna.webp b/webp/dlna.webp
new file mode 100644
index 00000000..1d1a5ce3
Binary files /dev/null and b/webp/dlna.webp differ
diff --git a/webp/docassemble-light.webp b/webp/docassemble-light.webp
new file mode 100644
index 00000000..a365ee24
Binary files /dev/null and b/webp/docassemble-light.webp differ
diff --git a/webp/docassemble.webp b/webp/docassemble.webp
new file mode 100644
index 00000000..db034559
Binary files /dev/null and b/webp/docassemble.webp differ
diff --git a/webp/docker-engine.webp b/webp/docker-engine.webp
new file mode 100644
index 00000000..cdae0219
Binary files /dev/null and b/webp/docker-engine.webp differ
diff --git a/webp/docker-mailserver-light.webp b/webp/docker-mailserver-light.webp
new file mode 100644
index 00000000..fee78bb8
Binary files /dev/null and b/webp/docker-mailserver-light.webp differ
diff --git a/webp/docker-mailserver.webp b/webp/docker-mailserver.webp
new file mode 100644
index 00000000..eac66779
Binary files /dev/null and b/webp/docker-mailserver.webp differ
diff --git a/webp/docker-moby.webp b/webp/docker-moby.webp
new file mode 100644
index 00000000..5e448823
Binary files /dev/null and b/webp/docker-moby.webp differ
diff --git a/webp/docker-volume-backup.webp b/webp/docker-volume-backup.webp
new file mode 100644
index 00000000..bf2c9761
Binary files /dev/null and b/webp/docker-volume-backup.webp differ
diff --git a/webp/docker.webp b/webp/docker.webp
new file mode 100644
index 00000000..cdae0219
Binary files /dev/null and b/webp/docker.webp differ
diff --git a/webp/dockge.webp b/webp/dockge.webp
new file mode 100644
index 00000000..7db17d9b
Binary files /dev/null and b/webp/dockge.webp differ
diff --git a/webp/docking-station.webp b/webp/docking-station.webp
new file mode 100644
index 00000000..c0528e38
Binary files /dev/null and b/webp/docking-station.webp differ
diff --git a/webp/docsify.webp b/webp/docsify.webp
new file mode 100644
index 00000000..67ef570a
Binary files /dev/null and b/webp/docsify.webp differ
diff --git a/webp/docspell.webp b/webp/docspell.webp
new file mode 100644
index 00000000..a2ecd9ee
Binary files /dev/null and b/webp/docspell.webp differ
diff --git a/webp/documenso.webp b/webp/documenso.webp
new file mode 100644
index 00000000..f733ed6b
Binary files /dev/null and b/webp/documenso.webp differ
diff --git a/webp/docusaurus.webp b/webp/docusaurus.webp
new file mode 100644
index 00000000..9d7131b8
Binary files /dev/null and b/webp/docusaurus.webp differ
diff --git a/webp/docuseal.webp b/webp/docuseal.webp
new file mode 100644
index 00000000..66c6cec6
Binary files /dev/null and b/webp/docuseal.webp differ
diff --git a/webp/dokemon.webp b/webp/dokemon.webp
new file mode 100644
index 00000000..54cfbea7
Binary files /dev/null and b/webp/dokemon.webp differ
diff --git a/webp/dokuwiki.webp b/webp/dokuwiki.webp
new file mode 100644
index 00000000..27564d78
Binary files /dev/null and b/webp/dokuwiki.webp differ
diff --git a/webp/double-take-dark.webp b/webp/double-take-dark.webp
new file mode 100644
index 00000000..cb058a6c
Binary files /dev/null and b/webp/double-take-dark.webp differ
diff --git a/webp/double-take.webp b/webp/double-take.webp
new file mode 100644
index 00000000..0ff4d42e
Binary files /dev/null and b/webp/double-take.webp differ
diff --git a/webp/dovecot.webp b/webp/dovecot.webp
new file mode 100644
index 00000000..f9605a50
Binary files /dev/null and b/webp/dovecot.webp differ
diff --git a/webp/dozzle.webp b/webp/dozzle.webp
new file mode 100644
index 00000000..54ae9f6a
Binary files /dev/null and b/webp/dozzle.webp differ
diff --git a/webp/draw-io.webp b/webp/draw-io.webp
new file mode 100644
index 00000000..e8c1e316
Binary files /dev/null and b/webp/draw-io.webp differ
diff --git a/webp/draytek.webp b/webp/draytek.webp
new file mode 100644
index 00000000..a0f5aae8
Binary files /dev/null and b/webp/draytek.webp differ
diff --git a/webp/dropbox.webp b/webp/dropbox.webp
new file mode 100644
index 00000000..ac8c7ebc
Binary files /dev/null and b/webp/dropbox.webp differ
diff --git a/webp/dropout-light.webp b/webp/dropout-light.webp
new file mode 100644
index 00000000..999f0694
Binary files /dev/null and b/webp/dropout-light.webp differ
diff --git a/webp/dropout.webp b/webp/dropout.webp
new file mode 100644
index 00000000..60259b1a
Binary files /dev/null and b/webp/dropout.webp differ
diff --git a/webp/droppy-dark.webp b/webp/droppy-dark.webp
new file mode 100644
index 00000000..02dd301b
Binary files /dev/null and b/webp/droppy-dark.webp differ
diff --git a/webp/droppy.webp b/webp/droppy.webp
new file mode 100644
index 00000000..ff090bd8
Binary files /dev/null and b/webp/droppy.webp differ
diff --git a/webp/dub-light.webp b/webp/dub-light.webp
new file mode 100644
index 00000000..18b5c593
Binary files /dev/null and b/webp/dub-light.webp differ
diff --git a/webp/dub.webp b/webp/dub.webp
new file mode 100644
index 00000000..008d8461
Binary files /dev/null and b/webp/dub.webp differ
diff --git a/webp/duckdns-light.webp b/webp/duckdns-light.webp
new file mode 100644
index 00000000..6764f2d1
Binary files /dev/null and b/webp/duckdns-light.webp differ
diff --git a/webp/duckdns.webp b/webp/duckdns.webp
new file mode 100644
index 00000000..bf2aeda3
Binary files /dev/null and b/webp/duckdns.webp differ
diff --git a/webp/duckduckgo.webp b/webp/duckduckgo.webp
new file mode 100644
index 00000000..8af3a5ac
Binary files /dev/null and b/webp/duckduckgo.webp differ
diff --git a/webp/duo.webp b/webp/duo.webp
new file mode 100644
index 00000000..8e6be796
Binary files /dev/null and b/webp/duo.webp differ
diff --git a/webp/duplicati.webp b/webp/duplicati.webp
new file mode 100644
index 00000000..1e5f7b80
Binary files /dev/null and b/webp/duplicati.webp differ
diff --git a/webp/easy-gate-light.webp b/webp/easy-gate-light.webp
new file mode 100644
index 00000000..6dd73050
Binary files /dev/null and b/webp/easy-gate-light.webp differ
diff --git a/webp/easy-gate.webp b/webp/easy-gate.webp
new file mode 100644
index 00000000..2fc21bb2
Binary files /dev/null and b/webp/easy-gate.webp differ
diff --git a/webp/ebay.webp b/webp/ebay.webp
new file mode 100644
index 00000000..96b027ed
Binary files /dev/null and b/webp/ebay.webp differ
diff --git a/webp/eblocker.webp b/webp/eblocker.webp
new file mode 100644
index 00000000..d75a4d5a
Binary files /dev/null and b/webp/eblocker.webp differ
diff --git a/webp/edge-dev.webp b/webp/edge-dev.webp
new file mode 100644
index 00000000..826cafe0
Binary files /dev/null and b/webp/edge-dev.webp differ
diff --git a/webp/edge.webp b/webp/edge.webp
new file mode 100644
index 00000000..be071ee8
Binary files /dev/null and b/webp/edge.webp differ
diff --git a/webp/elastic-beats.webp b/webp/elastic-beats.webp
new file mode 100644
index 00000000..266fa4e1
Binary files /dev/null and b/webp/elastic-beats.webp differ
diff --git a/webp/elastic-kibana.webp b/webp/elastic-kibana.webp
new file mode 100644
index 00000000..2c273423
Binary files /dev/null and b/webp/elastic-kibana.webp differ
diff --git a/webp/elastic-logstash.webp b/webp/elastic-logstash.webp
new file mode 100644
index 00000000..433cec9e
Binary files /dev/null and b/webp/elastic-logstash.webp differ
diff --git a/webp/elastic.webp b/webp/elastic.webp
new file mode 100644
index 00000000..571978db
Binary files /dev/null and b/webp/elastic.webp differ
diff --git a/webp/elasticsearch.webp b/webp/elasticsearch.webp
new file mode 100644
index 00000000..571978db
Binary files /dev/null and b/webp/elasticsearch.webp differ
diff --git a/webp/electron.webp b/webp/electron.webp
new file mode 100644
index 00000000..dcd5028c
Binary files /dev/null and b/webp/electron.webp differ
diff --git a/webp/electronic-arts.webp b/webp/electronic-arts.webp
new file mode 100644
index 00000000..59aaa0bd
Binary files /dev/null and b/webp/electronic-arts.webp differ
diff --git a/webp/element.webp b/webp/element.webp
new file mode 100644
index 00000000..ec0a502f
Binary files /dev/null and b/webp/element.webp differ
diff --git a/webp/eleventy-light.webp b/webp/eleventy-light.webp
new file mode 100644
index 00000000..57b5ffee
Binary files /dev/null and b/webp/eleventy-light.webp differ
diff --git a/webp/eleventy.webp b/webp/eleventy.webp
new file mode 100644
index 00000000..592b9ed4
Binary files /dev/null and b/webp/eleventy.webp differ
diff --git a/webp/elysian.webp b/webp/elysian.webp
new file mode 100644
index 00000000..9dec1949
Binary files /dev/null and b/webp/elysian.webp differ
diff --git a/webp/emacs.webp b/webp/emacs.webp
new file mode 100644
index 00000000..76cefb29
Binary files /dev/null and b/webp/emacs.webp differ
diff --git a/webp/emby.webp b/webp/emby.webp
new file mode 100644
index 00000000..53c85e10
Binary files /dev/null and b/webp/emby.webp differ
diff --git a/webp/emq-light.webp b/webp/emq-light.webp
new file mode 100644
index 00000000..0cff9b41
Binary files /dev/null and b/webp/emq-light.webp differ
diff --git a/webp/emq.webp b/webp/emq.webp
new file mode 100644
index 00000000..ec6dd258
Binary files /dev/null and b/webp/emq.webp differ
diff --git a/webp/emqx.webp b/webp/emqx.webp
new file mode 100644
index 00000000..30a73848
Binary files /dev/null and b/webp/emqx.webp differ
diff --git a/webp/emulatorjs.webp b/webp/emulatorjs.webp
new file mode 100644
index 00000000..26a3bba6
Binary files /dev/null and b/webp/emulatorjs.webp differ
diff --git a/webp/enbizcard.webp b/webp/enbizcard.webp
new file mode 100644
index 00000000..05a370ef
Binary files /dev/null and b/webp/enbizcard.webp differ
diff --git a/webp/enclosed-light.webp b/webp/enclosed-light.webp
new file mode 100644
index 00000000..1eafec71
Binary files /dev/null and b/webp/enclosed-light.webp differ
diff --git a/webp/enclosed.webp b/webp/enclosed.webp
new file mode 100644
index 00000000..9530e7ec
Binary files /dev/null and b/webp/enclosed.webp differ
diff --git a/webp/endless-light.webp b/webp/endless-light.webp
new file mode 100644
index 00000000..8132b8e7
Binary files /dev/null and b/webp/endless-light.webp differ
diff --git a/webp/endless.webp b/webp/endless.webp
new file mode 100644
index 00000000..b2100549
Binary files /dev/null and b/webp/endless.webp differ
diff --git a/webp/endurain.webp b/webp/endurain.webp
new file mode 100644
index 00000000..691f8be6
Binary files /dev/null and b/webp/endurain.webp differ
diff --git a/webp/epic-games-light.webp b/webp/epic-games-light.webp
new file mode 100644
index 00000000..e7ba6e2b
Binary files /dev/null and b/webp/epic-games-light.webp differ
diff --git a/webp/epic-games.webp b/webp/epic-games.webp
new file mode 100644
index 00000000..3e5c25e5
Binary files /dev/null and b/webp/epic-games.webp differ
diff --git a/webp/erste-george.webp b/webp/erste-george.webp
new file mode 100644
index 00000000..3fe07388
Binary files /dev/null and b/webp/erste-george.webp differ
diff --git a/webp/erste.webp b/webp/erste.webp
new file mode 100644
index 00000000..af2be6ba
Binary files /dev/null and b/webp/erste.webp differ
diff --git a/webp/esphome-alt-light.webp b/webp/esphome-alt-light.webp
new file mode 100644
index 00000000..e3bd6c3e
Binary files /dev/null and b/webp/esphome-alt-light.webp differ
diff --git a/webp/esphome-alt.webp b/webp/esphome-alt.webp
new file mode 100644
index 00000000..d1f4d11f
Binary files /dev/null and b/webp/esphome-alt.webp differ
diff --git a/webp/esphome-light.webp b/webp/esphome-light.webp
new file mode 100644
index 00000000..698ebe47
Binary files /dev/null and b/webp/esphome-light.webp differ
diff --git a/webp/esphome.webp b/webp/esphome.webp
new file mode 100644
index 00000000..0e0f3fa3
Binary files /dev/null and b/webp/esphome.webp differ
diff --git a/webp/espressif.webp b/webp/espressif.webp
new file mode 100644
index 00000000..d2ebe75a
Binary files /dev/null and b/webp/espressif.webp differ
diff --git a/webp/etcd.webp b/webp/etcd.webp
new file mode 100644
index 00000000..702cf26b
Binary files /dev/null and b/webp/etcd.webp differ
diff --git a/webp/etesync.webp b/webp/etesync.webp
new file mode 100644
index 00000000..0f8373f1
Binary files /dev/null and b/webp/etesync.webp differ
diff --git a/webp/ethereum.webp b/webp/ethereum.webp
new file mode 100644
index 00000000..65e3ff55
Binary files /dev/null and b/webp/ethereum.webp differ
diff --git a/webp/etherpad.webp b/webp/etherpad.webp
new file mode 100644
index 00000000..0ba2d0ce
Binary files /dev/null and b/webp/etherpad.webp differ
diff --git a/webp/evcc.webp b/webp/evcc.webp
new file mode 100644
index 00000000..0438bd05
Binary files /dev/null and b/webp/evcc.webp differ
diff --git a/webp/excalidraw.webp b/webp/excalidraw.webp
new file mode 100644
index 00000000..c9bd5f06
Binary files /dev/null and b/webp/excalidraw.webp differ
diff --git a/webp/f-droid.webp b/webp/f-droid.webp
new file mode 100644
index 00000000..aaad9388
Binary files /dev/null and b/webp/f-droid.webp differ
diff --git a/webp/facebook-messenger.webp b/webp/facebook-messenger.webp
new file mode 100644
index 00000000..22c9e402
Binary files /dev/null and b/webp/facebook-messenger.webp differ
diff --git a/webp/facebook.webp b/webp/facebook.webp
new file mode 100644
index 00000000..ab51b6d0
Binary files /dev/null and b/webp/facebook.webp differ
diff --git a/webp/fast-com-light.webp b/webp/fast-com-light.webp
new file mode 100644
index 00000000..6e7113ae
Binary files /dev/null and b/webp/fast-com-light.webp differ
diff --git a/webp/fast-com.webp b/webp/fast-com.webp
new file mode 100644
index 00000000..a2d93b34
Binary files /dev/null and b/webp/fast-com.webp differ
diff --git a/webp/fasten-health.webp b/webp/fasten-health.webp
new file mode 100644
index 00000000..cf789562
Binary files /dev/null and b/webp/fasten-health.webp differ
diff --git a/webp/fastmail.webp b/webp/fastmail.webp
new file mode 100644
index 00000000..93e6a10b
Binary files /dev/null and b/webp/fastmail.webp differ
diff --git a/webp/fedora-alt.webp b/webp/fedora-alt.webp
new file mode 100644
index 00000000..de0266c7
Binary files /dev/null and b/webp/fedora-alt.webp differ
diff --git a/webp/fedora.webp b/webp/fedora.webp
new file mode 100644
index 00000000..eb2588a3
Binary files /dev/null and b/webp/fedora.webp differ
diff --git a/webp/feedbase-light.webp b/webp/feedbase-light.webp
new file mode 100644
index 00000000..fc11b51c
Binary files /dev/null and b/webp/feedbase-light.webp differ
diff --git a/webp/feedbase.webp b/webp/feedbase.webp
new file mode 100644
index 00000000..0a841594
Binary files /dev/null and b/webp/feedbase.webp differ
diff --git a/webp/feedbin-light.webp b/webp/feedbin-light.webp
new file mode 100644
index 00000000..506101be
Binary files /dev/null and b/webp/feedbin-light.webp differ
diff --git a/webp/feedbin.webp b/webp/feedbin.webp
new file mode 100644
index 00000000..24c58436
Binary files /dev/null and b/webp/feedbin.webp differ
diff --git a/webp/feedly.webp b/webp/feedly.webp
new file mode 100644
index 00000000..26ba2f63
Binary files /dev/null and b/webp/feedly.webp differ
diff --git a/webp/feedlynx-light.webp b/webp/feedlynx-light.webp
new file mode 100644
index 00000000..8127de62
Binary files /dev/null and b/webp/feedlynx-light.webp differ
diff --git a/webp/feedlynx.webp b/webp/feedlynx.webp
new file mode 100644
index 00000000..03580ae0
Binary files /dev/null and b/webp/feedlynx.webp differ
diff --git a/webp/fenrus.webp b/webp/fenrus.webp
new file mode 100644
index 00000000..b5607ff2
Binary files /dev/null and b/webp/fenrus.webp differ
diff --git a/webp/ferdium.webp b/webp/ferdium.webp
new file mode 100644
index 00000000..0f99eaa3
Binary files /dev/null and b/webp/ferdium.webp differ
diff --git a/webp/ferretdb.webp b/webp/ferretdb.webp
new file mode 100644
index 00000000..91e8a167
Binary files /dev/null and b/webp/ferretdb.webp differ
diff --git a/webp/fider.webp b/webp/fider.webp
new file mode 100644
index 00000000..189d1b38
Binary files /dev/null and b/webp/fider.webp differ
diff --git a/webp/filebot.webp b/webp/filebot.webp
new file mode 100644
index 00000000..12f517fc
Binary files /dev/null and b/webp/filebot.webp differ
diff --git a/webp/filebrowser.webp b/webp/filebrowser.webp
new file mode 100644
index 00000000..917c95f1
Binary files /dev/null and b/webp/filebrowser.webp differ
diff --git a/webp/filecloud.webp b/webp/filecloud.webp
new file mode 100644
index 00000000..f7152fb0
Binary files /dev/null and b/webp/filecloud.webp differ
diff --git a/webp/fileflows.webp b/webp/fileflows.webp
new file mode 100644
index 00000000..8e77161d
Binary files /dev/null and b/webp/fileflows.webp differ
diff --git a/webp/filegator.webp b/webp/filegator.webp
new file mode 100644
index 00000000..55a7f030
Binary files /dev/null and b/webp/filegator.webp differ
diff --git a/webp/filerun.webp b/webp/filerun.webp
new file mode 100644
index 00000000..3561a6c2
Binary files /dev/null and b/webp/filerun.webp differ
diff --git a/webp/files.webp b/webp/files.webp
new file mode 100644
index 00000000..d477740c
Binary files /dev/null and b/webp/files.webp differ
diff --git a/webp/filestash.webp b/webp/filestash.webp
new file mode 100644
index 00000000..aac21885
Binary files /dev/null and b/webp/filestash.webp differ
diff --git a/webp/filezilla.webp b/webp/filezilla.webp
new file mode 100644
index 00000000..5ca4a4ea
Binary files /dev/null and b/webp/filezilla.webp differ
diff --git a/webp/finamp.webp b/webp/finamp.webp
new file mode 100644
index 00000000..735c4216
Binary files /dev/null and b/webp/finamp.webp differ
diff --git a/webp/findroid.webp b/webp/findroid.webp
new file mode 100644
index 00000000..8bfb6aa3
Binary files /dev/null and b/webp/findroid.webp differ
diff --git a/webp/fios-light.webp b/webp/fios-light.webp
new file mode 100644
index 00000000..27bcb430
Binary files /dev/null and b/webp/fios-light.webp differ
diff --git a/webp/fios.webp b/webp/fios.webp
new file mode 100644
index 00000000..d3415dc1
Binary files /dev/null and b/webp/fios.webp differ
diff --git a/webp/firebase.webp b/webp/firebase.webp
new file mode 100644
index 00000000..23d1f912
Binary files /dev/null and b/webp/firebase.webp differ
diff --git a/webp/firefly-iii.webp b/webp/firefly-iii.webp
new file mode 100644
index 00000000..872782a9
Binary files /dev/null and b/webp/firefly-iii.webp differ
diff --git a/webp/firefly.webp b/webp/firefly.webp
new file mode 100644
index 00000000..872782a9
Binary files /dev/null and b/webp/firefly.webp differ
diff --git a/webp/firefox-beta.webp b/webp/firefox-beta.webp
new file mode 100644
index 00000000..34716017
Binary files /dev/null and b/webp/firefox-beta.webp differ
diff --git a/webp/firefox-developer-edition.webp b/webp/firefox-developer-edition.webp
new file mode 100644
index 00000000..67e99746
Binary files /dev/null and b/webp/firefox-developer-edition.webp differ
diff --git a/webp/firefox-lite.webp b/webp/firefox-lite.webp
new file mode 100644
index 00000000..68b8f124
Binary files /dev/null and b/webp/firefox-lite.webp differ
diff --git a/webp/firefox-nightly.webp b/webp/firefox-nightly.webp
new file mode 100644
index 00000000..cbccaf96
Binary files /dev/null and b/webp/firefox-nightly.webp differ
diff --git a/webp/firefox-reality.webp b/webp/firefox-reality.webp
new file mode 100644
index 00000000..85b0d1a0
Binary files /dev/null and b/webp/firefox-reality.webp differ
diff --git a/webp/firefox-send.webp b/webp/firefox-send.webp
new file mode 100644
index 00000000..01809e0e
Binary files /dev/null and b/webp/firefox-send.webp differ
diff --git a/webp/firefox.webp b/webp/firefox.webp
new file mode 100644
index 00000000..81d1c24f
Binary files /dev/null and b/webp/firefox.webp differ
diff --git a/webp/firewalla.webp b/webp/firewalla.webp
new file mode 100644
index 00000000..1c9057db
Binary files /dev/null and b/webp/firewalla.webp differ
diff --git a/webp/fittrackee.webp b/webp/fittrackee.webp
new file mode 100644
index 00000000..27bc22ef
Binary files /dev/null and b/webp/fittrackee.webp differ
diff --git a/webp/fladder.webp b/webp/fladder.webp
new file mode 100644
index 00000000..2a62ca5b
Binary files /dev/null and b/webp/fladder.webp differ
diff --git a/webp/flaresolverr.webp b/webp/flaresolverr.webp
new file mode 100644
index 00000000..83327cdf
Binary files /dev/null and b/webp/flaresolverr.webp differ
diff --git a/webp/flarum.webp b/webp/flarum.webp
new file mode 100644
index 00000000..12fd20aa
Binary files /dev/null and b/webp/flarum.webp differ
diff --git a/webp/flathub.webp b/webp/flathub.webp
new file mode 100644
index 00000000..9673f397
Binary files /dev/null and b/webp/flathub.webp differ
diff --git a/webp/flatnotes.webp b/webp/flatnotes.webp
new file mode 100644
index 00000000..7365b4cc
Binary files /dev/null and b/webp/flatnotes.webp differ
diff --git a/webp/flatpak.webp b/webp/flatpak.webp
new file mode 100644
index 00000000..c7f077b7
Binary files /dev/null and b/webp/flatpak.webp differ
diff --git a/webp/flightradar24-light.webp b/webp/flightradar24-light.webp
new file mode 100644
index 00000000..223c6be4
Binary files /dev/null and b/webp/flightradar24-light.webp differ
diff --git a/webp/flightradar24.webp b/webp/flightradar24.webp
new file mode 100644
index 00000000..057a36ec
Binary files /dev/null and b/webp/flightradar24.webp differ
diff --git a/webp/flood.webp b/webp/flood.webp
new file mode 100644
index 00000000..ad3fbb34
Binary files /dev/null and b/webp/flood.webp differ
diff --git a/webp/fluffychat-dark.webp b/webp/fluffychat-dark.webp
new file mode 100644
index 00000000..94ce7fc9
Binary files /dev/null and b/webp/fluffychat-dark.webp differ
diff --git a/webp/fluffychat.webp b/webp/fluffychat.webp
new file mode 100644
index 00000000..583d7c9d
Binary files /dev/null and b/webp/fluffychat.webp differ
diff --git a/webp/fluidd.webp b/webp/fluidd.webp
new file mode 100644
index 00000000..0ad93d05
Binary files /dev/null and b/webp/fluidd.webp differ
diff --git a/webp/flux-cd.webp b/webp/flux-cd.webp
new file mode 100644
index 00000000..2ed139de
Binary files /dev/null and b/webp/flux-cd.webp differ
diff --git a/webp/fly-io.webp b/webp/fly-io.webp
new file mode 100644
index 00000000..c394e498
Binary files /dev/null and b/webp/fly-io.webp differ
diff --git a/webp/focalboard.webp b/webp/focalboard.webp
new file mode 100644
index 00000000..f2286c2f
Binary files /dev/null and b/webp/focalboard.webp differ
diff --git a/webp/foldingathome.webp b/webp/foldingathome.webp
new file mode 100644
index 00000000..e3bf43e4
Binary files /dev/null and b/webp/foldingathome.webp differ
diff --git a/webp/fontawesome.webp b/webp/fontawesome.webp
new file mode 100644
index 00000000..e9b184ae
Binary files /dev/null and b/webp/fontawesome.webp differ
diff --git a/webp/forgejo.webp b/webp/forgejo.webp
new file mode 100644
index 00000000..ff79e566
Binary files /dev/null and b/webp/forgejo.webp differ
diff --git a/webp/forte-light.webp b/webp/forte-light.webp
new file mode 100644
index 00000000..6199b772
Binary files /dev/null and b/webp/forte-light.webp differ
diff --git a/webp/forte.webp b/webp/forte.webp
new file mode 100644
index 00000000..20a9a7aa
Binary files /dev/null and b/webp/forte.webp differ
diff --git a/webp/fortinet.webp b/webp/fortinet.webp
new file mode 100644
index 00000000..8b7181ea
Binary files /dev/null and b/webp/fortinet.webp differ
diff --git a/webp/fossil.webp b/webp/fossil.webp
new file mode 100644
index 00000000..2b12b323
Binary files /dev/null and b/webp/fossil.webp differ
diff --git a/webp/franz.webp b/webp/franz.webp
new file mode 100644
index 00000000..a44f5678
Binary files /dev/null and b/webp/franz.webp differ
diff --git a/webp/freedombox.webp b/webp/freedombox.webp
new file mode 100644
index 00000000..7abae455
Binary files /dev/null and b/webp/freedombox.webp differ
diff --git a/webp/freeipa.webp b/webp/freeipa.webp
new file mode 100644
index 00000000..275d931d
Binary files /dev/null and b/webp/freeipa.webp differ
diff --git a/webp/freenas.webp b/webp/freenas.webp
new file mode 100644
index 00000000..d168d93e
Binary files /dev/null and b/webp/freenas.webp differ
diff --git a/webp/freenom.webp b/webp/freenom.webp
new file mode 100644
index 00000000..d372b4fb
Binary files /dev/null and b/webp/freenom.webp differ
diff --git a/webp/freepbx.webp b/webp/freepbx.webp
new file mode 100644
index 00000000..78e1010b
Binary files /dev/null and b/webp/freepbx.webp differ
diff --git a/webp/freshping-dark.webp b/webp/freshping-dark.webp
new file mode 100644
index 00000000..8461e997
Binary files /dev/null and b/webp/freshping-dark.webp differ
diff --git a/webp/freshping.webp b/webp/freshping.webp
new file mode 100644
index 00000000..c5094931
Binary files /dev/null and b/webp/freshping.webp differ
diff --git a/webp/freshrss.webp b/webp/freshrss.webp
new file mode 100644
index 00000000..af0dc551
Binary files /dev/null and b/webp/freshrss.webp differ
diff --git a/webp/friendica.webp b/webp/friendica.webp
new file mode 100644
index 00000000..30761f12
Binary files /dev/null and b/webp/friendica.webp differ
diff --git a/webp/frigate-light.webp b/webp/frigate-light.webp
new file mode 100644
index 00000000..1a95d51a
Binary files /dev/null and b/webp/frigate-light.webp differ
diff --git a/webp/frigate.webp b/webp/frigate.webp
new file mode 100644
index 00000000..8589b93b
Binary files /dev/null and b/webp/frigate.webp differ
diff --git a/webp/fritzbox-light.webp b/webp/fritzbox-light.webp
new file mode 100644
index 00000000..0af03c7f
Binary files /dev/null and b/webp/fritzbox-light.webp differ
diff --git a/webp/fritzbox.webp b/webp/fritzbox.webp
new file mode 100644
index 00000000..9828e229
Binary files /dev/null and b/webp/fritzbox.webp differ
diff --git a/webp/fronius.webp b/webp/fronius.webp
new file mode 100644
index 00000000..d6078b7d
Binary files /dev/null and b/webp/fronius.webp differ
diff --git a/webp/fulcio.webp b/webp/fulcio.webp
new file mode 100644
index 00000000..48be5010
Binary files /dev/null and b/webp/fulcio.webp differ
diff --git a/webp/funkwhale-light.webp b/webp/funkwhale-light.webp
new file mode 100644
index 00000000..78aab035
Binary files /dev/null and b/webp/funkwhale-light.webp differ
diff --git a/webp/funkwhale.webp b/webp/funkwhale.webp
new file mode 100644
index 00000000..9c729eff
Binary files /dev/null and b/webp/funkwhale.webp differ
diff --git a/webp/fusionauth.webp b/webp/fusionauth.webp
new file mode 100644
index 00000000..fd217890
Binary files /dev/null and b/webp/fusionauth.webp differ
diff --git a/webp/garage.webp b/webp/garage.webp
new file mode 100644
index 00000000..165f0bc8
Binary files /dev/null and b/webp/garage.webp differ
diff --git a/webp/gatsby.webp b/webp/gatsby.webp
new file mode 100644
index 00000000..82519a62
Binary files /dev/null and b/webp/gatsby.webp differ
diff --git a/webp/gatus.webp b/webp/gatus.webp
new file mode 100644
index 00000000..c11ecc2c
Binary files /dev/null and b/webp/gatus.webp differ
diff --git a/webp/gboard.webp b/webp/gboard.webp
new file mode 100644
index 00000000..a9993251
Binary files /dev/null and b/webp/gboard.webp differ
diff --git a/webp/geckoview.webp b/webp/geckoview.webp
new file mode 100644
index 00000000..62d259d8
Binary files /dev/null and b/webp/geckoview.webp differ
diff --git a/webp/gentoo-linux.webp b/webp/gentoo-linux.webp
new file mode 100644
index 00000000..3ac876f7
Binary files /dev/null and b/webp/gentoo-linux.webp differ
diff --git a/webp/gerbera.webp b/webp/gerbera.webp
new file mode 100644
index 00000000..5cd9719b
Binary files /dev/null and b/webp/gerbera.webp differ
diff --git a/webp/get-iplayer.webp b/webp/get-iplayer.webp
new file mode 100644
index 00000000..187c13af
Binary files /dev/null and b/webp/get-iplayer.webp differ
diff --git a/webp/ghostfolio.webp b/webp/ghostfolio.webp
new file mode 100644
index 00000000..6fa17cb0
Binary files /dev/null and b/webp/ghostfolio.webp differ
diff --git a/webp/gigaset.webp b/webp/gigaset.webp
new file mode 100644
index 00000000..ecaf29b2
Binary files /dev/null and b/webp/gigaset.webp differ
diff --git a/webp/gimp.webp b/webp/gimp.webp
new file mode 100644
index 00000000..7ceeffcb
Binary files /dev/null and b/webp/gimp.webp differ
diff --git a/webp/git.webp b/webp/git.webp
new file mode 100644
index 00000000..6fb6662f
Binary files /dev/null and b/webp/git.webp differ
diff --git a/webp/gitbook.webp b/webp/gitbook.webp
new file mode 100644
index 00000000..18c8d2a6
Binary files /dev/null and b/webp/gitbook.webp differ
diff --git a/webp/gitea.webp b/webp/gitea.webp
new file mode 100644
index 00000000..8bbc7365
Binary files /dev/null and b/webp/gitea.webp differ
diff --git a/webp/gitee.webp b/webp/gitee.webp
new file mode 100644
index 00000000..52bcf2f6
Binary files /dev/null and b/webp/gitee.webp differ
diff --git a/webp/github-light.webp b/webp/github-light.webp
new file mode 100644
index 00000000..48091c02
Binary files /dev/null and b/webp/github-light.webp differ
diff --git a/webp/github.webp b/webp/github.webp
new file mode 100644
index 00000000..798f10c0
Binary files /dev/null and b/webp/github.webp differ
diff --git a/webp/gitlab.webp b/webp/gitlab.webp
new file mode 100644
index 00000000..cb512a96
Binary files /dev/null and b/webp/gitlab.webp differ
diff --git a/webp/gitsign.webp b/webp/gitsign.webp
new file mode 100644
index 00000000..be48f468
Binary files /dev/null and b/webp/gitsign.webp differ
diff --git a/webp/gladys-assistant.webp b/webp/gladys-assistant.webp
new file mode 100644
index 00000000..f5d28ebe
Binary files /dev/null and b/webp/gladys-assistant.webp differ
diff --git a/webp/glance-light.webp b/webp/glance-light.webp
new file mode 100644
index 00000000..8209edd8
Binary files /dev/null and b/webp/glance-light.webp differ
diff --git a/webp/glance.webp b/webp/glance.webp
new file mode 100644
index 00000000..1766d69e
Binary files /dev/null and b/webp/glance.webp differ
diff --git a/webp/glances-light.webp b/webp/glances-light.webp
new file mode 100644
index 00000000..0d8ce6c6
Binary files /dev/null and b/webp/glances-light.webp differ
diff --git a/webp/glances.webp b/webp/glances.webp
new file mode 100644
index 00000000..a3a2bd82
Binary files /dev/null and b/webp/glances.webp differ
diff --git a/webp/glpi.webp b/webp/glpi.webp
new file mode 100644
index 00000000..46fbf2f0
Binary files /dev/null and b/webp/glpi.webp differ
diff --git a/webp/gluetun.webp b/webp/gluetun.webp
new file mode 100644
index 00000000..abf746f0
Binary files /dev/null and b/webp/gluetun.webp differ
diff --git a/webp/gmail.webp b/webp/gmail.webp
new file mode 100644
index 00000000..3c3ea982
Binary files /dev/null and b/webp/gmail.webp differ
diff --git a/webp/go.webp b/webp/go.webp
new file mode 100644
index 00000000..b3bd6c16
Binary files /dev/null and b/webp/go.webp differ
diff --git a/webp/goaccess-light.webp b/webp/goaccess-light.webp
new file mode 100644
index 00000000..63280fb1
Binary files /dev/null and b/webp/goaccess-light.webp differ
diff --git a/webp/goaccess.webp b/webp/goaccess.webp
new file mode 100644
index 00000000..7d2f8fbf
Binary files /dev/null and b/webp/goaccess.webp differ
diff --git a/webp/godaddy-alt.webp b/webp/godaddy-alt.webp
new file mode 100644
index 00000000..625b994b
Binary files /dev/null and b/webp/godaddy-alt.webp differ
diff --git a/webp/godaddy.webp b/webp/godaddy.webp
new file mode 100644
index 00000000..ccd16c9f
Binary files /dev/null and b/webp/godaddy.webp differ
diff --git a/webp/gollum.webp b/webp/gollum.webp
new file mode 100644
index 00000000..2775e123
Binary files /dev/null and b/webp/gollum.webp differ
diff --git a/webp/goodreads.webp b/webp/goodreads.webp
new file mode 100644
index 00000000..62e97987
Binary files /dev/null and b/webp/goodreads.webp differ
diff --git a/webp/google-admin.webp b/webp/google-admin.webp
new file mode 100644
index 00000000..cbecbee9
Binary files /dev/null and b/webp/google-admin.webp differ
diff --git a/webp/google-admob.webp b/webp/google-admob.webp
new file mode 100644
index 00000000..f627bac4
Binary files /dev/null and b/webp/google-admob.webp differ
diff --git a/webp/google-alerts.webp b/webp/google-alerts.webp
new file mode 100644
index 00000000..eb3eaef4
Binary files /dev/null and b/webp/google-alerts.webp differ
diff --git a/webp/google-analytics.webp b/webp/google-analytics.webp
new file mode 100644
index 00000000..c09cdf80
Binary files /dev/null and b/webp/google-analytics.webp differ
diff --git a/webp/google-assistant.webp b/webp/google-assistant.webp
new file mode 100644
index 00000000..915630d6
Binary files /dev/null and b/webp/google-assistant.webp differ
diff --git a/webp/google-calendar.webp b/webp/google-calendar.webp
new file mode 100644
index 00000000..95e17f01
Binary files /dev/null and b/webp/google-calendar.webp differ
diff --git a/webp/google-chat.webp b/webp/google-chat.webp
new file mode 100644
index 00000000..eb153313
Binary files /dev/null and b/webp/google-chat.webp differ
diff --git a/webp/google-chrome.webp b/webp/google-chrome.webp
new file mode 100644
index 00000000..ffccfbd1
Binary files /dev/null and b/webp/google-chrome.webp differ
diff --git a/webp/google-classroom.webp b/webp/google-classroom.webp
new file mode 100644
index 00000000..f978e6ee
Binary files /dev/null and b/webp/google-classroom.webp differ
diff --git a/webp/google-cloud-platform.webp b/webp/google-cloud-platform.webp
new file mode 100644
index 00000000..5d19e72d
Binary files /dev/null and b/webp/google-cloud-platform.webp differ
diff --git a/webp/google-cloud-print.webp b/webp/google-cloud-print.webp
new file mode 100644
index 00000000..b208ead3
Binary files /dev/null and b/webp/google-cloud-print.webp differ
diff --git a/webp/google-compute-engine.webp b/webp/google-compute-engine.webp
new file mode 100644
index 00000000..bc8754e4
Binary files /dev/null and b/webp/google-compute-engine.webp differ
diff --git a/webp/google-contacts.webp b/webp/google-contacts.webp
new file mode 100644
index 00000000..884a4f42
Binary files /dev/null and b/webp/google-contacts.webp differ
diff --git a/webp/google-docs.webp b/webp/google-docs.webp
new file mode 100644
index 00000000..bee623ec
Binary files /dev/null and b/webp/google-docs.webp differ
diff --git a/webp/google-domains.webp b/webp/google-domains.webp
new file mode 100644
index 00000000..2990d7f8
Binary files /dev/null and b/webp/google-domains.webp differ
diff --git a/webp/google-drive.webp b/webp/google-drive.webp
new file mode 100644
index 00000000..3be9d35a
Binary files /dev/null and b/webp/google-drive.webp differ
diff --git a/webp/google-earth.webp b/webp/google-earth.webp
new file mode 100644
index 00000000..2b4e1464
Binary files /dev/null and b/webp/google-earth.webp differ
diff --git a/webp/google-fi.webp b/webp/google-fi.webp
new file mode 100644
index 00000000..ab18e18a
Binary files /dev/null and b/webp/google-fi.webp differ
diff --git a/webp/google-fit.webp b/webp/google-fit.webp
new file mode 100644
index 00000000..982b8d90
Binary files /dev/null and b/webp/google-fit.webp differ
diff --git a/webp/google-fonts.webp b/webp/google-fonts.webp
new file mode 100644
index 00000000..c65063c4
Binary files /dev/null and b/webp/google-fonts.webp differ
diff --git a/webp/google-forms.webp b/webp/google-forms.webp
new file mode 100644
index 00000000..b63793ef
Binary files /dev/null and b/webp/google-forms.webp differ
diff --git a/webp/google-gemini.webp b/webp/google-gemini.webp
new file mode 100644
index 00000000..48170eb3
Binary files /dev/null and b/webp/google-gemini.webp differ
diff --git a/webp/google-home.webp b/webp/google-home.webp
new file mode 100644
index 00000000..cfa68899
Binary files /dev/null and b/webp/google-home.webp differ
diff --git a/webp/google-keep.webp b/webp/google-keep.webp
new file mode 100644
index 00000000..18b80c5e
Binary files /dev/null and b/webp/google-keep.webp differ
diff --git a/webp/google-lens.webp b/webp/google-lens.webp
new file mode 100644
index 00000000..c904e58f
Binary files /dev/null and b/webp/google-lens.webp differ
diff --git a/webp/google-maps.webp b/webp/google-maps.webp
new file mode 100644
index 00000000..aa28d3d7
Binary files /dev/null and b/webp/google-maps.webp differ
diff --git a/webp/google-meet.webp b/webp/google-meet.webp
new file mode 100644
index 00000000..c9760db5
Binary files /dev/null and b/webp/google-meet.webp differ
diff --git a/webp/google-messages.webp b/webp/google-messages.webp
new file mode 100644
index 00000000..c592cc61
Binary files /dev/null and b/webp/google-messages.webp differ
diff --git a/webp/google-news.webp b/webp/google-news.webp
new file mode 100644
index 00000000..081bde3b
Binary files /dev/null and b/webp/google-news.webp differ
diff --git a/webp/google-one.webp b/webp/google-one.webp
new file mode 100644
index 00000000..938aa03c
Binary files /dev/null and b/webp/google-one.webp differ
diff --git a/webp/google-pay.webp b/webp/google-pay.webp
new file mode 100644
index 00000000..3972bc88
Binary files /dev/null and b/webp/google-pay.webp differ
diff --git a/webp/google-photos.webp b/webp/google-photos.webp
new file mode 100644
index 00000000..5f347e16
Binary files /dev/null and b/webp/google-photos.webp differ
diff --git a/webp/google-play-books.webp b/webp/google-play-books.webp
new file mode 100644
index 00000000..49bb8aa4
Binary files /dev/null and b/webp/google-play-books.webp differ
diff --git a/webp/google-play-games.webp b/webp/google-play-games.webp
new file mode 100644
index 00000000..9508dfd2
Binary files /dev/null and b/webp/google-play-games.webp differ
diff --git a/webp/google-play.webp b/webp/google-play.webp
new file mode 100644
index 00000000..3d8504b1
Binary files /dev/null and b/webp/google-play.webp differ
diff --git a/webp/google-podcasts.webp b/webp/google-podcasts.webp
new file mode 100644
index 00000000..09ac0a2d
Binary files /dev/null and b/webp/google-podcasts.webp differ
diff --git a/webp/google-scholar.webp b/webp/google-scholar.webp
new file mode 100644
index 00000000..54b86793
Binary files /dev/null and b/webp/google-scholar.webp differ
diff --git a/webp/google-search-console.webp b/webp/google-search-console.webp
new file mode 100644
index 00000000..ffe94190
Binary files /dev/null and b/webp/google-search-console.webp differ
diff --git a/webp/google-sheets.webp b/webp/google-sheets.webp
new file mode 100644
index 00000000..b210c2ca
Binary files /dev/null and b/webp/google-sheets.webp differ
diff --git a/webp/google-shopping.webp b/webp/google-shopping.webp
new file mode 100644
index 00000000..086b67b8
Binary files /dev/null and b/webp/google-shopping.webp differ
diff --git a/webp/google-sites.webp b/webp/google-sites.webp
new file mode 100644
index 00000000..05b701a6
Binary files /dev/null and b/webp/google-sites.webp differ
diff --git a/webp/google-slides.webp b/webp/google-slides.webp
new file mode 100644
index 00000000..8666a864
Binary files /dev/null and b/webp/google-slides.webp differ
diff --git a/webp/google-street-view.webp b/webp/google-street-view.webp
new file mode 100644
index 00000000..6b5699df
Binary files /dev/null and b/webp/google-street-view.webp differ
diff --git a/webp/google-tag-manager.webp b/webp/google-tag-manager.webp
new file mode 100644
index 00000000..504a675b
Binary files /dev/null and b/webp/google-tag-manager.webp differ
diff --git a/webp/google-translate.webp b/webp/google-translate.webp
new file mode 100644
index 00000000..3cdd9f82
Binary files /dev/null and b/webp/google-translate.webp differ
diff --git a/webp/google-tv.webp b/webp/google-tv.webp
new file mode 100644
index 00000000..2ea9d558
Binary files /dev/null and b/webp/google-tv.webp differ
diff --git a/webp/google-voice.webp b/webp/google-voice.webp
new file mode 100644
index 00000000..27297491
Binary files /dev/null and b/webp/google-voice.webp differ
diff --git a/webp/google-wallet.webp b/webp/google-wallet.webp
new file mode 100644
index 00000000..ef43ced7
Binary files /dev/null and b/webp/google-wallet.webp differ
diff --git a/webp/google-wifi.webp b/webp/google-wifi.webp
new file mode 100644
index 00000000..66d11ee5
Binary files /dev/null and b/webp/google-wifi.webp differ
diff --git a/webp/google.webp b/webp/google.webp
new file mode 100644
index 00000000..66bfcf93
Binary files /dev/null and b/webp/google.webp differ
diff --git a/webp/gotify.webp b/webp/gotify.webp
new file mode 100644
index 00000000..e3d1a310
Binary files /dev/null and b/webp/gotify.webp differ
diff --git a/webp/gotosocial.webp b/webp/gotosocial.webp
new file mode 100644
index 00000000..144b72e6
Binary files /dev/null and b/webp/gotosocial.webp differ
diff --git a/webp/gpt4free.webp b/webp/gpt4free.webp
new file mode 100644
index 00000000..5fce90bd
Binary files /dev/null and b/webp/gpt4free.webp differ
diff --git a/webp/grafana.webp b/webp/grafana.webp
new file mode 100644
index 00000000..030e9860
Binary files /dev/null and b/webp/grafana.webp differ
diff --git a/webp/gramps.webp b/webp/gramps.webp
new file mode 100644
index 00000000..51b7f23b
Binary files /dev/null and b/webp/gramps.webp differ
diff --git a/webp/grandstream.webp b/webp/grandstream.webp
new file mode 100644
index 00000000..7bc14593
Binary files /dev/null and b/webp/grandstream.webp differ
diff --git a/webp/grav-light.webp b/webp/grav-light.webp
new file mode 100644
index 00000000..f9fa9463
Binary files /dev/null and b/webp/grav-light.webp differ
diff --git a/webp/grav.webp b/webp/grav.webp
new file mode 100644
index 00000000..07f58560
Binary files /dev/null and b/webp/grav.webp differ
diff --git a/webp/graylog.webp b/webp/graylog.webp
new file mode 100644
index 00000000..e379b9a9
Binary files /dev/null and b/webp/graylog.webp differ
diff --git a/webp/greenbone-light.webp b/webp/greenbone-light.webp
new file mode 100644
index 00000000..ee74577b
Binary files /dev/null and b/webp/greenbone-light.webp differ
diff --git a/webp/greenbone.webp b/webp/greenbone.webp
new file mode 100644
index 00000000..477f4090
Binary files /dev/null and b/webp/greenbone.webp differ
diff --git a/webp/grimoire.webp b/webp/grimoire.webp
new file mode 100644
index 00000000..af92762c
Binary files /dev/null and b/webp/grimoire.webp differ
diff --git a/webp/grist.webp b/webp/grist.webp
new file mode 100644
index 00000000..41bba0c9
Binary files /dev/null and b/webp/grist.webp differ
diff --git a/webp/grocy.webp b/webp/grocy.webp
new file mode 100644
index 00000000..761823ad
Binary files /dev/null and b/webp/grocy.webp differ
diff --git a/webp/guacamole-light.webp b/webp/guacamole-light.webp
new file mode 100644
index 00000000..2a4f2aef
Binary files /dev/null and b/webp/guacamole-light.webp differ
diff --git a/webp/guacamole.webp b/webp/guacamole.webp
new file mode 100644
index 00000000..f418f85d
Binary files /dev/null and b/webp/guacamole.webp differ
diff --git a/webp/hacker-news.webp b/webp/hacker-news.webp
new file mode 100644
index 00000000..e138bf1f
Binary files /dev/null and b/webp/hacker-news.webp differ
diff --git a/webp/hammond-light.webp b/webp/hammond-light.webp
new file mode 100644
index 00000000..341a3829
Binary files /dev/null and b/webp/hammond-light.webp differ
diff --git a/webp/hammond.webp b/webp/hammond.webp
new file mode 100644
index 00000000..18866bdc
Binary files /dev/null and b/webp/hammond.webp differ
diff --git a/webp/handbrake.webp b/webp/handbrake.webp
new file mode 100644
index 00000000..afd36efb
Binary files /dev/null and b/webp/handbrake.webp differ
diff --git a/webp/haproxy.webp b/webp/haproxy.webp
new file mode 100644
index 00000000..d9445151
Binary files /dev/null and b/webp/haproxy.webp differ
diff --git a/webp/haptic-light.webp b/webp/haptic-light.webp
new file mode 100644
index 00000000..a7b7a075
Binary files /dev/null and b/webp/haptic-light.webp differ
diff --git a/webp/haptic.webp b/webp/haptic.webp
new file mode 100644
index 00000000..0cf59b54
Binary files /dev/null and b/webp/haptic.webp differ
diff --git a/webp/harbor.webp b/webp/harbor.webp
new file mode 100644
index 00000000..69cf60de
Binary files /dev/null and b/webp/harbor.webp differ
diff --git a/webp/harvester.webp b/webp/harvester.webp
new file mode 100644
index 00000000..cb89b5cc
Binary files /dev/null and b/webp/harvester.webp differ
diff --git a/webp/hashicorp-boundary.webp b/webp/hashicorp-boundary.webp
new file mode 100644
index 00000000..3e3ba38a
Binary files /dev/null and b/webp/hashicorp-boundary.webp differ
diff --git a/webp/hashicorp-consul.webp b/webp/hashicorp-consul.webp
new file mode 100644
index 00000000..a5e07744
Binary files /dev/null and b/webp/hashicorp-consul.webp differ
diff --git a/webp/hashicorp-nomad.webp b/webp/hashicorp-nomad.webp
new file mode 100644
index 00000000..0741b1e1
Binary files /dev/null and b/webp/hashicorp-nomad.webp differ
diff --git a/webp/hashicorp-packer.webp b/webp/hashicorp-packer.webp
new file mode 100644
index 00000000..9d0544a3
Binary files /dev/null and b/webp/hashicorp-packer.webp differ
diff --git a/webp/hashicorp-terraform.webp b/webp/hashicorp-terraform.webp
new file mode 100644
index 00000000..6699f911
Binary files /dev/null and b/webp/hashicorp-terraform.webp differ
diff --git a/webp/hashicorp-vagrant.webp b/webp/hashicorp-vagrant.webp
new file mode 100644
index 00000000..9cb2bdf2
Binary files /dev/null and b/webp/hashicorp-vagrant.webp differ
diff --git a/webp/hashicorp-vault.webp b/webp/hashicorp-vault.webp
new file mode 100644
index 00000000..f5ad4b49
Binary files /dev/null and b/webp/hashicorp-vault.webp differ
diff --git a/webp/hashicorp-waypoint.webp b/webp/hashicorp-waypoint.webp
new file mode 100644
index 00000000..48990d83
Binary files /dev/null and b/webp/hashicorp-waypoint.webp differ
diff --git a/webp/hastypaste.webp b/webp/hastypaste.webp
new file mode 100644
index 00000000..333fb483
Binary files /dev/null and b/webp/hastypaste.webp differ
diff --git a/webp/hasura.webp b/webp/hasura.webp
new file mode 100644
index 00000000..a7826c8f
Binary files /dev/null and b/webp/hasura.webp differ
diff --git a/webp/hatsh-light.webp b/webp/hatsh-light.webp
new file mode 100644
index 00000000..c4f1e0da
Binary files /dev/null and b/webp/hatsh-light.webp differ
diff --git a/webp/hatsh.webp b/webp/hatsh.webp
new file mode 100644
index 00000000..f92770ae
Binary files /dev/null and b/webp/hatsh.webp differ
diff --git a/webp/hbo-light.webp b/webp/hbo-light.webp
new file mode 100644
index 00000000..247673a7
Binary files /dev/null and b/webp/hbo-light.webp differ
diff --git a/webp/hbo.webp b/webp/hbo.webp
new file mode 100644
index 00000000..d31912ab
Binary files /dev/null and b/webp/hbo.webp differ
diff --git a/webp/hdhomerun-light.webp b/webp/hdhomerun-light.webp
new file mode 100644
index 00000000..419efac3
Binary files /dev/null and b/webp/hdhomerun-light.webp differ
diff --git a/webp/hdhomerun.webp b/webp/hdhomerun.webp
new file mode 100644
index 00000000..4f732287
Binary files /dev/null and b/webp/hdhomerun.webp differ
diff --git a/webp/headscale.webp b/webp/headscale.webp
new file mode 100644
index 00000000..da0ce095
Binary files /dev/null and b/webp/headscale.webp differ
diff --git a/webp/healthchecks.webp b/webp/healthchecks.webp
new file mode 100644
index 00000000..657c5fbf
Binary files /dev/null and b/webp/healthchecks.webp differ
diff --git a/webp/hedgedoc.webp b/webp/hedgedoc.webp
new file mode 100644
index 00000000..e224265a
Binary files /dev/null and b/webp/hedgedoc.webp differ
diff --git a/webp/heimdall-light.webp b/webp/heimdall-light.webp
new file mode 100644
index 00000000..84b90f96
Binary files /dev/null and b/webp/heimdall-light.webp differ
diff --git a/webp/heimdall.webp b/webp/heimdall.webp
new file mode 100644
index 00000000..bca80e02
Binary files /dev/null and b/webp/heimdall.webp differ
diff --git a/webp/helium-token.webp b/webp/helium-token.webp
new file mode 100644
index 00000000..a752b5a3
Binary files /dev/null and b/webp/helium-token.webp differ
diff --git a/webp/helm.webp b/webp/helm.webp
new file mode 100644
index 00000000..6b8de472
Binary files /dev/null and b/webp/helm.webp differ
diff --git a/webp/hetzner.webp b/webp/hetzner.webp
new file mode 100644
index 00000000..8593264b
Binary files /dev/null and b/webp/hetzner.webp differ
diff --git a/webp/hexo.webp b/webp/hexo.webp
new file mode 100644
index 00000000..924941b4
Binary files /dev/null and b/webp/hexo.webp differ
diff --git a/webp/heyform.webp b/webp/heyform.webp
new file mode 100644
index 00000000..8921a9ae
Binary files /dev/null and b/webp/heyform.webp differ
diff --git a/webp/hifiberry.webp b/webp/hifiberry.webp
new file mode 100644
index 00000000..87db14c5
Binary files /dev/null and b/webp/hifiberry.webp differ
diff --git a/webp/hikvision.webp b/webp/hikvision.webp
new file mode 100644
index 00000000..253edc20
Binary files /dev/null and b/webp/hikvision.webp differ
diff --git a/webp/hilook.webp b/webp/hilook.webp
new file mode 100644
index 00000000..c6a2cc65
Binary files /dev/null and b/webp/hilook.webp differ
diff --git a/webp/hivedav.webp b/webp/hivedav.webp
new file mode 100644
index 00000000..af212120
Binary files /dev/null and b/webp/hivedav.webp differ
diff --git a/webp/hoarder-light.webp b/webp/hoarder-light.webp
new file mode 100644
index 00000000..f7ecc675
Binary files /dev/null and b/webp/hoarder-light.webp differ
diff --git a/webp/hoarder.webp b/webp/hoarder.webp
new file mode 100644
index 00000000..7053b3e6
Binary files /dev/null and b/webp/hoarder.webp differ
diff --git a/webp/hollo-light.webp b/webp/hollo-light.webp
new file mode 100644
index 00000000..e3fb3027
Binary files /dev/null and b/webp/hollo-light.webp differ
diff --git a/webp/hollo.webp b/webp/hollo.webp
new file mode 100644
index 00000000..d7f52b55
Binary files /dev/null and b/webp/hollo.webp differ
diff --git a/webp/homarr.webp b/webp/homarr.webp
new file mode 100644
index 00000000..e48892e0
Binary files /dev/null and b/webp/homarr.webp differ
diff --git a/webp/home-assistant-alt.webp b/webp/home-assistant-alt.webp
new file mode 100644
index 00000000..cfdb5101
Binary files /dev/null and b/webp/home-assistant-alt.webp differ
diff --git a/webp/home-assistant.webp b/webp/home-assistant.webp
new file mode 100644
index 00000000..75829767
Binary files /dev/null and b/webp/home-assistant.webp differ
diff --git a/webp/homebox-light.webp b/webp/homebox-light.webp
new file mode 100644
index 00000000..477e2743
Binary files /dev/null and b/webp/homebox-light.webp differ
diff --git a/webp/homebox.webp b/webp/homebox.webp
new file mode 100644
index 00000000..e05c49bc
Binary files /dev/null and b/webp/homebox.webp differ
diff --git a/webp/homebridge.webp b/webp/homebridge.webp
new file mode 100644
index 00000000..492872db
Binary files /dev/null and b/webp/homebridge.webp differ
diff --git a/webp/homer.webp b/webp/homer.webp
new file mode 100644
index 00000000..a034cfde
Binary files /dev/null and b/webp/homer.webp differ
diff --git a/webp/homey.webp b/webp/homey.webp
new file mode 100644
index 00000000..424fdba4
Binary files /dev/null and b/webp/homey.webp differ
diff --git a/webp/hoobs.webp b/webp/hoobs.webp
new file mode 100644
index 00000000..6271c1b5
Binary files /dev/null and b/webp/hoobs.webp differ
diff --git a/webp/hoppscotch.webp b/webp/hoppscotch.webp
new file mode 100644
index 00000000..491b01fa
Binary files /dev/null and b/webp/hoppscotch.webp differ
diff --git a/webp/hostinger.webp b/webp/hostinger.webp
new file mode 100644
index 00000000..56872aba
Binary files /dev/null and b/webp/hostinger.webp differ
diff --git a/webp/hotio.webp b/webp/hotio.webp
new file mode 100644
index 00000000..3da740d9
Binary files /dev/null and b/webp/hotio.webp differ
diff --git a/webp/hp.webp b/webp/hp.webp
new file mode 100644
index 00000000..253aec25
Binary files /dev/null and b/webp/hp.webp differ
diff --git a/webp/html-light.webp b/webp/html-light.webp
new file mode 100644
index 00000000..5c4b209e
Binary files /dev/null and b/webp/html-light.webp differ
diff --git a/webp/html.webp b/webp/html.webp
new file mode 100644
index 00000000..1a5003ab
Binary files /dev/null and b/webp/html.webp differ
diff --git a/webp/huawei.webp b/webp/huawei.webp
new file mode 100644
index 00000000..02f65038
Binary files /dev/null and b/webp/huawei.webp differ
diff --git a/webp/hubitat.webp b/webp/hubitat.webp
new file mode 100644
index 00000000..3a582d1a
Binary files /dev/null and b/webp/hubitat.webp differ
diff --git a/webp/hubzilla.webp b/webp/hubzilla.webp
new file mode 100644
index 00000000..815645b1
Binary files /dev/null and b/webp/hubzilla.webp differ
diff --git a/webp/hugging-face.webp b/webp/hugging-face.webp
new file mode 100644
index 00000000..7f566f4f
Binary files /dev/null and b/webp/hugging-face.webp differ
diff --git a/webp/huginn.webp b/webp/huginn.webp
new file mode 100644
index 00000000..9cad3357
Binary files /dev/null and b/webp/huginn.webp differ
diff --git a/webp/hugo.webp b/webp/hugo.webp
new file mode 100644
index 00000000..de9bfe48
Binary files /dev/null and b/webp/hugo.webp differ
diff --git a/webp/hulu.webp b/webp/hulu.webp
new file mode 100644
index 00000000..7d02038b
Binary files /dev/null and b/webp/hulu.webp differ
diff --git a/webp/humhub.webp b/webp/humhub.webp
new file mode 100644
index 00000000..d750f497
Binary files /dev/null and b/webp/humhub.webp differ
diff --git a/webp/hydra.webp b/webp/hydra.webp
new file mode 100644
index 00000000..b662e525
Binary files /dev/null and b/webp/hydra.webp differ
diff --git a/webp/hyperpipe-light.webp b/webp/hyperpipe-light.webp
new file mode 100644
index 00000000..152061ec
Binary files /dev/null and b/webp/hyperpipe-light.webp differ
diff --git a/webp/hyperpipe.webp b/webp/hyperpipe.webp
new file mode 100644
index 00000000..97aa9fc3
Binary files /dev/null and b/webp/hyperpipe.webp differ
diff --git a/webp/i2p-light.webp b/webp/i2p-light.webp
new file mode 100644
index 00000000..0e35d8bc
Binary files /dev/null and b/webp/i2p-light.webp differ
diff --git a/webp/i2p.webp b/webp/i2p.webp
new file mode 100644
index 00000000..a595c012
Binary files /dev/null and b/webp/i2p.webp differ
diff --git a/webp/i2pd.webp b/webp/i2pd.webp
new file mode 100644
index 00000000..afcd6afc
Binary files /dev/null and b/webp/i2pd.webp differ
diff --git a/webp/icecast.webp b/webp/icecast.webp
new file mode 100644
index 00000000..758cfdcd
Binary files /dev/null and b/webp/icecast.webp differ
diff --git a/webp/icinga-light.webp b/webp/icinga-light.webp
new file mode 100644
index 00000000..65332546
Binary files /dev/null and b/webp/icinga-light.webp differ
diff --git a/webp/icinga.webp b/webp/icinga.webp
new file mode 100644
index 00000000..980676bb
Binary files /dev/null and b/webp/icinga.webp differ
diff --git a/webp/idrac.webp b/webp/idrac.webp
new file mode 100644
index 00000000..21d9e2b9
Binary files /dev/null and b/webp/idrac.webp differ
diff --git a/webp/ilo.webp b/webp/ilo.webp
new file mode 100644
index 00000000..253aec25
Binary files /dev/null and b/webp/ilo.webp differ
diff --git a/webp/immich-frame-light.webp b/webp/immich-frame-light.webp
new file mode 100644
index 00000000..686c7486
Binary files /dev/null and b/webp/immich-frame-light.webp differ
diff --git a/webp/immich-frame.webp b/webp/immich-frame.webp
new file mode 100644
index 00000000..667aa543
Binary files /dev/null and b/webp/immich-frame.webp differ
diff --git a/webp/immich-kiosk-light.webp b/webp/immich-kiosk-light.webp
new file mode 100644
index 00000000..b28c9a8b
Binary files /dev/null and b/webp/immich-kiosk-light.webp differ
diff --git a/webp/immich-kiosk.webp b/webp/immich-kiosk.webp
new file mode 100644
index 00000000..eedd975c
Binary files /dev/null and b/webp/immich-kiosk.webp differ
diff --git a/webp/immich.webp b/webp/immich.webp
new file mode 100644
index 00000000..8570d30a
Binary files /dev/null and b/webp/immich.webp differ
diff --git a/webp/influxdb.webp b/webp/influxdb.webp
new file mode 100644
index 00000000..530423fc
Binary files /dev/null and b/webp/influxdb.webp differ
diff --git a/webp/infoblox.webp b/webp/infoblox.webp
new file mode 100644
index 00000000..20038f09
Binary files /dev/null and b/webp/infoblox.webp differ
diff --git a/webp/inoreader.webp b/webp/inoreader.webp
new file mode 100644
index 00000000..52ca392c
Binary files /dev/null and b/webp/inoreader.webp differ
diff --git a/webp/instagram.webp b/webp/instagram.webp
new file mode 100644
index 00000000..c9d8001c
Binary files /dev/null and b/webp/instagram.webp differ
diff --git a/webp/inventree.webp b/webp/inventree.webp
new file mode 100644
index 00000000..e2df0d12
Binary files /dev/null and b/webp/inventree.webp differ
diff --git a/webp/invidious.webp b/webp/invidious.webp
new file mode 100644
index 00000000..744ed72f
Binary files /dev/null and b/webp/invidious.webp differ
diff --git a/webp/invisioncommunity.webp b/webp/invisioncommunity.webp
new file mode 100644
index 00000000..e3bc3c5c
Binary files /dev/null and b/webp/invisioncommunity.webp differ
diff --git a/webp/invoice-ninja-light.webp b/webp/invoice-ninja-light.webp
new file mode 100644
index 00000000..65bd5cec
Binary files /dev/null and b/webp/invoice-ninja-light.webp differ
diff --git a/webp/invoice-ninja.webp b/webp/invoice-ninja.webp
new file mode 100644
index 00000000..0b89b9b6
Binary files /dev/null and b/webp/invoice-ninja.webp differ
diff --git a/webp/invoke-ai.webp b/webp/invoke-ai.webp
new file mode 100644
index 00000000..bcb2ddf2
Binary files /dev/null and b/webp/invoke-ai.webp differ
diff --git a/webp/iobroker.webp b/webp/iobroker.webp
new file mode 100644
index 00000000..a6cf39e4
Binary files /dev/null and b/webp/iobroker.webp differ
diff --git a/webp/ionos.webp b/webp/ionos.webp
new file mode 100644
index 00000000..41ec5aa5
Binary files /dev/null and b/webp/ionos.webp differ
diff --git a/webp/ipboard.webp b/webp/ipboard.webp
new file mode 100644
index 00000000..e3bc3c5c
Binary files /dev/null and b/webp/ipboard.webp differ
diff --git a/webp/ipfs-light.webp b/webp/ipfs-light.webp
new file mode 100644
index 00000000..9019c4e4
Binary files /dev/null and b/webp/ipfs-light.webp differ
diff --git a/webp/ipfs.webp b/webp/ipfs.webp
new file mode 100644
index 00000000..dd8ce12a
Binary files /dev/null and b/webp/ipfs.webp differ
diff --git a/webp/ispconfig.webp b/webp/ispconfig.webp
new file mode 100644
index 00000000..f2b7422c
Binary files /dev/null and b/webp/ispconfig.webp differ
diff --git a/webp/it-tools-light.webp b/webp/it-tools-light.webp
new file mode 100644
index 00000000..eda7161b
Binary files /dev/null and b/webp/it-tools-light.webp differ
diff --git a/webp/it-tools.webp b/webp/it-tools.webp
new file mode 100644
index 00000000..9f879de7
Binary files /dev/null and b/webp/it-tools.webp differ
diff --git a/webp/jackett-light.webp b/webp/jackett-light.webp
new file mode 100644
index 00000000..abd0b325
Binary files /dev/null and b/webp/jackett-light.webp differ
diff --git a/webp/jackett.webp b/webp/jackett.webp
new file mode 100644
index 00000000..46b582f2
Binary files /dev/null and b/webp/jackett.webp differ
diff --git a/webp/jaeger.webp b/webp/jaeger.webp
new file mode 100644
index 00000000..05a70a05
Binary files /dev/null and b/webp/jaeger.webp differ
diff --git a/webp/jamstack.webp b/webp/jamstack.webp
new file mode 100644
index 00000000..67663496
Binary files /dev/null and b/webp/jamstack.webp differ
diff --git a/webp/java.webp b/webp/java.webp
new file mode 100644
index 00000000..ce9cfadf
Binary files /dev/null and b/webp/java.webp differ
diff --git a/webp/javascript-light.webp b/webp/javascript-light.webp
new file mode 100644
index 00000000..436898c3
Binary files /dev/null and b/webp/javascript-light.webp differ
diff --git a/webp/javascript.webp b/webp/javascript.webp
new file mode 100644
index 00000000..99aa9e48
Binary files /dev/null and b/webp/javascript.webp differ
diff --git a/webp/jeedom.webp b/webp/jeedom.webp
new file mode 100644
index 00000000..246db4b1
Binary files /dev/null and b/webp/jeedom.webp differ
diff --git a/webp/jekyll.webp b/webp/jekyll.webp
new file mode 100644
index 00000000..2c000af1
Binary files /dev/null and b/webp/jekyll.webp differ
diff --git a/webp/jellyfin.webp b/webp/jellyfin.webp
new file mode 100644
index 00000000..596a0e98
Binary files /dev/null and b/webp/jellyfin.webp differ
diff --git a/webp/jellyseerr.webp b/webp/jellyseerr.webp
new file mode 100644
index 00000000..78971648
Binary files /dev/null and b/webp/jellyseerr.webp differ
diff --git a/webp/jellystat.webp b/webp/jellystat.webp
new file mode 100644
index 00000000..b6013c5c
Binary files /dev/null and b/webp/jellystat.webp differ
diff --git a/webp/jelu.webp b/webp/jelu.webp
new file mode 100644
index 00000000..144c6c32
Binary files /dev/null and b/webp/jelu.webp differ
diff --git a/webp/jenkins.webp b/webp/jenkins.webp
new file mode 100644
index 00000000..fc53016c
Binary files /dev/null and b/webp/jenkins.webp differ
diff --git a/webp/jetbrains-youtrack.webp b/webp/jetbrains-youtrack.webp
new file mode 100644
index 00000000..cfb53722
Binary files /dev/null and b/webp/jetbrains-youtrack.webp differ
diff --git a/webp/jio.webp b/webp/jio.webp
new file mode 100644
index 00000000..f3fcf9bb
Binary files /dev/null and b/webp/jio.webp differ
diff --git a/webp/jira.webp b/webp/jira.webp
new file mode 100644
index 00000000..6eb7e945
Binary files /dev/null and b/webp/jira.webp differ
diff --git a/webp/jitsi-meet.webp b/webp/jitsi-meet.webp
new file mode 100644
index 00000000..dac5ed10
Binary files /dev/null and b/webp/jitsi-meet.webp differ
diff --git a/webp/jitsi.webp b/webp/jitsi.webp
new file mode 100644
index 00000000..71860ec2
Binary files /dev/null and b/webp/jitsi.webp differ
diff --git a/webp/joomla.webp b/webp/joomla.webp
new file mode 100644
index 00000000..aeb61ecf
Binary files /dev/null and b/webp/joomla.webp differ
diff --git a/webp/joplin.webp b/webp/joplin.webp
new file mode 100644
index 00000000..b6013c5c
Binary files /dev/null and b/webp/joplin.webp differ
diff --git a/webp/julia.webp b/webp/julia.webp
new file mode 100644
index 00000000..2bd56aa8
Binary files /dev/null and b/webp/julia.webp differ
diff --git a/webp/jupyter.webp b/webp/jupyter.webp
new file mode 100644
index 00000000..7e003501
Binary files /dev/null and b/webp/jupyter.webp differ
diff --git a/webp/jwt-io-light.webp b/webp/jwt-io-light.webp
new file mode 100644
index 00000000..96211aa6
Binary files /dev/null and b/webp/jwt-io-light.webp differ
diff --git a/webp/jwt-io.webp b/webp/jwt-io.webp
new file mode 100644
index 00000000..b67d9c99
Binary files /dev/null and b/webp/jwt-io.webp differ
diff --git a/webp/kagi.webp b/webp/kagi.webp
new file mode 100644
index 00000000..548308bc
Binary files /dev/null and b/webp/kagi.webp differ
diff --git a/webp/kamatera.webp b/webp/kamatera.webp
new file mode 100644
index 00000000..f85c69b7
Binary files /dev/null and b/webp/kamatera.webp differ
diff --git a/webp/kanboard-light.webp b/webp/kanboard-light.webp
new file mode 100644
index 00000000..bfb61428
Binary files /dev/null and b/webp/kanboard-light.webp differ
diff --git a/webp/kanboard.webp b/webp/kanboard.webp
new file mode 100644
index 00000000..8e48bdee
Binary files /dev/null and b/webp/kanboard.webp differ
diff --git a/webp/kanidm.webp b/webp/kanidm.webp
new file mode 100644
index 00000000..d19dc3e6
Binary files /dev/null and b/webp/kanidm.webp differ
diff --git a/webp/kapowarr.webp b/webp/kapowarr.webp
new file mode 100644
index 00000000..7448bdd3
Binary files /dev/null and b/webp/kapowarr.webp differ
diff --git a/webp/kasm-workspaces.webp b/webp/kasm-workspaces.webp
new file mode 100644
index 00000000..2cb1bf3f
Binary files /dev/null and b/webp/kasm-workspaces.webp differ
diff --git a/webp/kasm.webp b/webp/kasm.webp
new file mode 100644
index 00000000..2cb1bf3f
Binary files /dev/null and b/webp/kasm.webp differ
diff --git a/webp/kasten-k10.webp b/webp/kasten-k10.webp
new file mode 100644
index 00000000..8b758d57
Binary files /dev/null and b/webp/kasten-k10.webp differ
diff --git a/webp/kaufland.webp b/webp/kaufland.webp
new file mode 100644
index 00000000..11f32800
Binary files /dev/null and b/webp/kaufland.webp differ
diff --git a/webp/kavita.webp b/webp/kavita.webp
new file mode 100644
index 00000000..af51c556
Binary files /dev/null and b/webp/kavita.webp differ
diff --git a/webp/kbin.webp b/webp/kbin.webp
new file mode 100644
index 00000000..ceb96e7a
Binary files /dev/null and b/webp/kbin.webp differ
diff --git a/webp/keenetic-alt.webp b/webp/keenetic-alt.webp
new file mode 100644
index 00000000..51ffc092
Binary files /dev/null and b/webp/keenetic-alt.webp differ
diff --git a/webp/keenetic.webp b/webp/keenetic.webp
new file mode 100644
index 00000000..1c6fec3e
Binary files /dev/null and b/webp/keenetic.webp differ
diff --git a/webp/keepassxc.webp b/webp/keepassxc.webp
new file mode 100644
index 00000000..ccf2e893
Binary files /dev/null and b/webp/keepassxc.webp differ
diff --git a/webp/keila.webp b/webp/keila.webp
new file mode 100644
index 00000000..bc1bcbdd
Binary files /dev/null and b/webp/keila.webp differ
diff --git a/webp/kerberos.webp b/webp/kerberos.webp
new file mode 100644
index 00000000..ddcc2bd6
Binary files /dev/null and b/webp/kerberos.webp differ
diff --git a/webp/kestra.webp b/webp/kestra.webp
new file mode 100644
index 00000000..8498db8a
Binary files /dev/null and b/webp/kestra.webp differ
diff --git a/webp/keycloak.webp b/webp/keycloak.webp
new file mode 100644
index 00000000..b1cbf524
Binary files /dev/null and b/webp/keycloak.webp differ
diff --git a/webp/keyoxide-alt.webp b/webp/keyoxide-alt.webp
new file mode 100644
index 00000000..9ba7c75a
Binary files /dev/null and b/webp/keyoxide-alt.webp differ
diff --git a/webp/keyoxide.webp b/webp/keyoxide.webp
new file mode 100644
index 00000000..6081ea24
Binary files /dev/null and b/webp/keyoxide.webp differ
diff --git a/webp/kibana.webp b/webp/kibana.webp
new file mode 100644
index 00000000..2c273423
Binary files /dev/null and b/webp/kibana.webp differ
diff --git a/webp/kick-light.webp b/webp/kick-light.webp
new file mode 100644
index 00000000..1b5b2ca6
Binary files /dev/null and b/webp/kick-light.webp differ
diff --git a/webp/kick.webp b/webp/kick.webp
new file mode 100644
index 00000000..288dbdc7
Binary files /dev/null and b/webp/kick.webp differ
diff --git a/webp/kimai.webp b/webp/kimai.webp
new file mode 100644
index 00000000..9cc1a3e5
Binary files /dev/null and b/webp/kimai.webp differ
diff --git a/webp/kinto.webp b/webp/kinto.webp
new file mode 100644
index 00000000..7aa3db3a
Binary files /dev/null and b/webp/kinto.webp differ
diff --git a/webp/kitana.webp b/webp/kitana.webp
new file mode 100644
index 00000000..ac69e6a0
Binary files /dev/null and b/webp/kitana.webp differ
diff --git a/webp/kitchenowl.webp b/webp/kitchenowl.webp
new file mode 100644
index 00000000..13cb46c1
Binary files /dev/null and b/webp/kitchenowl.webp differ
diff --git a/webp/kiwix-light.webp b/webp/kiwix-light.webp
new file mode 100644
index 00000000..a2a1b1d2
Binary files /dev/null and b/webp/kiwix-light.webp differ
diff --git a/webp/kiwix.webp b/webp/kiwix.webp
new file mode 100644
index 00000000..0503735d
Binary files /dev/null and b/webp/kiwix.webp differ
diff --git a/webp/klipper.webp b/webp/klipper.webp
new file mode 100644
index 00000000..721fcda5
Binary files /dev/null and b/webp/klipper.webp differ
diff --git a/webp/ko-fi.webp b/webp/ko-fi.webp
new file mode 100644
index 00000000..3e2e1c8c
Binary files /dev/null and b/webp/ko-fi.webp differ
diff --git a/webp/kodi.webp b/webp/kodi.webp
new file mode 100644
index 00000000..baf3a105
Binary files /dev/null and b/webp/kodi.webp differ
diff --git a/webp/koel.webp b/webp/koel.webp
new file mode 100644
index 00000000..f9e061bc
Binary files /dev/null and b/webp/koel.webp differ
diff --git a/webp/koillection-light.webp b/webp/koillection-light.webp
new file mode 100644
index 00000000..30bcc3a0
Binary files /dev/null and b/webp/koillection-light.webp differ
diff --git a/webp/koillection.webp b/webp/koillection.webp
new file mode 100644
index 00000000..92f7ea3b
Binary files /dev/null and b/webp/koillection.webp differ
diff --git a/webp/komga.webp b/webp/komga.webp
new file mode 100644
index 00000000..e354e016
Binary files /dev/null and b/webp/komga.webp differ
diff --git a/webp/kontoj.webp b/webp/kontoj.webp
new file mode 100644
index 00000000..ebef3a58
Binary files /dev/null and b/webp/kontoj.webp differ
diff --git a/webp/kopia.webp b/webp/kopia.webp
new file mode 100644
index 00000000..a7a33ad5
Binary files /dev/null and b/webp/kopia.webp differ
diff --git a/webp/kotlin.webp b/webp/kotlin.webp
new file mode 100644
index 00000000..4ec614de
Binary files /dev/null and b/webp/kotlin.webp differ
diff --git a/webp/kpn.webp b/webp/kpn.webp
new file mode 100644
index 00000000..a2fc6f80
Binary files /dev/null and b/webp/kpn.webp differ
diff --git a/webp/krakend.webp b/webp/krakend.webp
new file mode 100644
index 00000000..dd502c4f
Binary files /dev/null and b/webp/krakend.webp differ
diff --git a/webp/krusader.webp b/webp/krusader.webp
new file mode 100644
index 00000000..c608d1f4
Binary files /dev/null and b/webp/krusader.webp differ
diff --git a/webp/kubernetes-dashboard.webp b/webp/kubernetes-dashboard.webp
new file mode 100644
index 00000000..0dc3912b
Binary files /dev/null and b/webp/kubernetes-dashboard.webp differ
diff --git a/webp/kubernetes.webp b/webp/kubernetes.webp
new file mode 100644
index 00000000..0dc3912b
Binary files /dev/null and b/webp/kubernetes.webp differ
diff --git a/webp/kutt.webp b/webp/kutt.webp
new file mode 100644
index 00000000..4255a07d
Binary files /dev/null and b/webp/kutt.webp differ
diff --git a/webp/kyoo.webp b/webp/kyoo.webp
new file mode 100644
index 00000000..596eb797
Binary files /dev/null and b/webp/kyoo.webp differ
diff --git a/webp/lancommander-light.webp b/webp/lancommander-light.webp
new file mode 100644
index 00000000..fbaaf60d
Binary files /dev/null and b/webp/lancommander-light.webp differ
diff --git a/webp/lancommander.webp b/webp/lancommander.webp
new file mode 100644
index 00000000..13254dcc
Binary files /dev/null and b/webp/lancommander.webp differ
diff --git a/webp/lark.webp b/webp/lark.webp
new file mode 100644
index 00000000..f19a87b5
Binary files /dev/null and b/webp/lark.webp differ
diff --git a/webp/lastpass.webp b/webp/lastpass.webp
new file mode 100644
index 00000000..1c7b7460
Binary files /dev/null and b/webp/lastpass.webp differ
diff --git a/webp/leanote.webp b/webp/leanote.webp
new file mode 100644
index 00000000..1ef3eec5
Binary files /dev/null and b/webp/leanote.webp differ
diff --git a/webp/leantime.webp b/webp/leantime.webp
new file mode 100644
index 00000000..5ea14f64
Binary files /dev/null and b/webp/leantime.webp differ
diff --git a/webp/lemmy-light.webp b/webp/lemmy-light.webp
new file mode 100644
index 00000000..35674dc3
Binary files /dev/null and b/webp/lemmy-light.webp differ
diff --git a/webp/lemmy.webp b/webp/lemmy.webp
new file mode 100644
index 00000000..600f9e40
Binary files /dev/null and b/webp/lemmy.webp differ
diff --git a/webp/lets-encrypt.webp b/webp/lets-encrypt.webp
new file mode 100644
index 00000000..3776aa92
Binary files /dev/null and b/webp/lets-encrypt.webp differ
diff --git a/webp/libreddit-light.webp b/webp/libreddit-light.webp
new file mode 100644
index 00000000..45ff418b
Binary files /dev/null and b/webp/libreddit-light.webp differ
diff --git a/webp/libreddit.webp b/webp/libreddit.webp
new file mode 100644
index 00000000..37ab5dc1
Binary files /dev/null and b/webp/libreddit.webp differ
diff --git a/webp/librenms.webp b/webp/librenms.webp
new file mode 100644
index 00000000..6934b691
Binary files /dev/null and b/webp/librenms.webp differ
diff --git a/webp/libreoffice-light.webp b/webp/libreoffice-light.webp
new file mode 100644
index 00000000..3743d4c7
Binary files /dev/null and b/webp/libreoffice-light.webp differ
diff --git a/webp/libreoffice.webp b/webp/libreoffice.webp
new file mode 100644
index 00000000..486080a7
Binary files /dev/null and b/webp/libreoffice.webp differ
diff --git a/webp/librespeed-light.webp b/webp/librespeed-light.webp
new file mode 100644
index 00000000..7c78b2b5
Binary files /dev/null and b/webp/librespeed-light.webp differ
diff --git a/webp/librespeed.webp b/webp/librespeed.webp
new file mode 100644
index 00000000..cb53797b
Binary files /dev/null and b/webp/librespeed.webp differ
diff --git a/webp/librewolf.webp b/webp/librewolf.webp
new file mode 100644
index 00000000..ce655204
Binary files /dev/null and b/webp/librewolf.webp differ
diff --git a/webp/librum.webp b/webp/librum.webp
new file mode 100644
index 00000000..ec9733d1
Binary files /dev/null and b/webp/librum.webp differ
diff --git a/webp/lidarr.webp b/webp/lidarr.webp
new file mode 100644
index 00000000..ac5b2a90
Binary files /dev/null and b/webp/lidarr.webp differ
diff --git a/webp/lidl.webp b/webp/lidl.webp
new file mode 100644
index 00000000..51570eed
Binary files /dev/null and b/webp/lidl.webp differ
diff --git a/webp/lighttpd.webp b/webp/lighttpd.webp
new file mode 100644
index 00000000..8a12adf8
Binary files /dev/null and b/webp/lighttpd.webp differ
diff --git a/webp/limesurvey.webp b/webp/limesurvey.webp
new file mode 100644
index 00000000..b1d37288
Binary files /dev/null and b/webp/limesurvey.webp differ
diff --git a/webp/linguacafe.webp b/webp/linguacafe.webp
new file mode 100644
index 00000000..44c7608c
Binary files /dev/null and b/webp/linguacafe.webp differ
diff --git a/webp/linkace.webp b/webp/linkace.webp
new file mode 100644
index 00000000..5abad9bb
Binary files /dev/null and b/webp/linkace.webp differ
diff --git a/webp/linkding.webp b/webp/linkding.webp
new file mode 100644
index 00000000..c251ce3f
Binary files /dev/null and b/webp/linkding.webp differ
diff --git a/webp/linkedin.webp b/webp/linkedin.webp
new file mode 100644
index 00000000..9a7a6427
Binary files /dev/null and b/webp/linkedin.webp differ
diff --git a/webp/linkstack.webp b/webp/linkstack.webp
new file mode 100644
index 00000000..9d9ee245
Binary files /dev/null and b/webp/linkstack.webp differ
diff --git a/webp/linode.webp b/webp/linode.webp
new file mode 100644
index 00000000..1eb36ef1
Binary files /dev/null and b/webp/linode.webp differ
diff --git a/webp/linux-mint.webp b/webp/linux-mint.webp
new file mode 100644
index 00000000..9144454c
Binary files /dev/null and b/webp/linux-mint.webp differ
diff --git a/webp/linux.webp b/webp/linux.webp
new file mode 100644
index 00000000..0634dbcd
Binary files /dev/null and b/webp/linux.webp differ
diff --git a/webp/linuxgsm.webp b/webp/linuxgsm.webp
new file mode 100644
index 00000000..306cb788
Binary files /dev/null and b/webp/linuxgsm.webp differ
diff --git a/webp/linuxserver-io.webp b/webp/linuxserver-io.webp
new file mode 100644
index 00000000..4a100905
Binary files /dev/null and b/webp/linuxserver-io.webp differ
diff --git a/webp/liremdb.webp b/webp/liremdb.webp
new file mode 100644
index 00000000..a0c605ce
Binary files /dev/null and b/webp/liremdb.webp differ
diff --git a/webp/listmonk.webp b/webp/listmonk.webp
new file mode 100644
index 00000000..f1887f80
Binary files /dev/null and b/webp/listmonk.webp differ
diff --git a/webp/littlelink-custom.webp b/webp/littlelink-custom.webp
new file mode 100644
index 00000000..8efbf627
Binary files /dev/null and b/webp/littlelink-custom.webp differ
diff --git a/webp/lnbits.webp b/webp/lnbits.webp
new file mode 100644
index 00000000..e20b6cc1
Binary files /dev/null and b/webp/lnbits.webp differ
diff --git a/webp/locals-light.webp b/webp/locals-light.webp
new file mode 100644
index 00000000..398c97e1
Binary files /dev/null and b/webp/locals-light.webp differ
diff --git a/webp/locals.webp b/webp/locals.webp
new file mode 100644
index 00000000..7fb0e67d
Binary files /dev/null and b/webp/locals.webp differ
diff --git a/webp/lodestone.webp b/webp/lodestone.webp
new file mode 100644
index 00000000..d4b3d259
Binary files /dev/null and b/webp/lodestone.webp differ
diff --git a/webp/logitech-gaming.webp b/webp/logitech-gaming.webp
new file mode 100644
index 00000000..1cb0d93a
Binary files /dev/null and b/webp/logitech-gaming.webp differ
diff --git a/webp/logitech-legacy.webp b/webp/logitech-legacy.webp
new file mode 100644
index 00000000..93f17efe
Binary files /dev/null and b/webp/logitech-legacy.webp differ
diff --git a/webp/logitech-light.webp b/webp/logitech-light.webp
new file mode 100644
index 00000000..00113079
Binary files /dev/null and b/webp/logitech-light.webp differ
diff --git a/webp/logitech.webp b/webp/logitech.webp
new file mode 100644
index 00000000..6039334a
Binary files /dev/null and b/webp/logitech.webp differ
diff --git a/webp/logseq.webp b/webp/logseq.webp
new file mode 100644
index 00000000..9faec1e1
Binary files /dev/null and b/webp/logseq.webp differ
diff --git a/webp/logstash.webp b/webp/logstash.webp
new file mode 100644
index 00000000..433cec9e
Binary files /dev/null and b/webp/logstash.webp differ
diff --git a/webp/logto.webp b/webp/logto.webp
new file mode 100644
index 00000000..d2db8f93
Binary files /dev/null and b/webp/logto.webp differ
diff --git a/webp/loki.webp b/webp/loki.webp
new file mode 100644
index 00000000..5b1256b2
Binary files /dev/null and b/webp/loki.webp differ
diff --git a/webp/longhorn.webp b/webp/longhorn.webp
new file mode 100644
index 00000000..0b71b351
Binary files /dev/null and b/webp/longhorn.webp differ
diff --git a/webp/lua.webp b/webp/lua.webp
new file mode 100644
index 00000000..f2dc8e1c
Binary files /dev/null and b/webp/lua.webp differ
diff --git a/webp/lunasea.webp b/webp/lunasea.webp
new file mode 100644
index 00000000..7d1e1c4b
Binary files /dev/null and b/webp/lunasea.webp differ
diff --git a/webp/lynx-light.webp b/webp/lynx-light.webp
new file mode 100644
index 00000000..4db1a873
Binary files /dev/null and b/webp/lynx-light.webp differ
diff --git a/webp/lynx.webp b/webp/lynx.webp
new file mode 100644
index 00000000..32bcbdc7
Binary files /dev/null and b/webp/lynx.webp differ
diff --git a/webp/mail-in-a-box.webp b/webp/mail-in-a-box.webp
new file mode 100644
index 00000000..92995a2c
Binary files /dev/null and b/webp/mail-in-a-box.webp differ
diff --git a/webp/mailchimp-light.webp b/webp/mailchimp-light.webp
new file mode 100644
index 00000000..d14ea47a
Binary files /dev/null and b/webp/mailchimp-light.webp differ
diff --git a/webp/mailchimp.webp b/webp/mailchimp.webp
new file mode 100644
index 00000000..c7cc65bc
Binary files /dev/null and b/webp/mailchimp.webp differ
diff --git a/webp/mailcow.webp b/webp/mailcow.webp
new file mode 100644
index 00000000..318dac55
Binary files /dev/null and b/webp/mailcow.webp differ
diff --git a/webp/mailfence.webp b/webp/mailfence.webp
new file mode 100644
index 00000000..12651e3e
Binary files /dev/null and b/webp/mailfence.webp differ
diff --git a/webp/mailgun.webp b/webp/mailgun.webp
new file mode 100644
index 00000000..aa00487c
Binary files /dev/null and b/webp/mailgun.webp differ
diff --git a/webp/mailjet.webp b/webp/mailjet.webp
new file mode 100644
index 00000000..8413eef3
Binary files /dev/null and b/webp/mailjet.webp differ
diff --git a/webp/mainsail.webp b/webp/mainsail.webp
new file mode 100644
index 00000000..ff9a0296
Binary files /dev/null and b/webp/mainsail.webp differ
diff --git a/webp/maintainerr.webp b/webp/maintainerr.webp
new file mode 100644
index 00000000..0a322acb
Binary files /dev/null and b/webp/maintainerr.webp differ
diff --git a/webp/manjaro-linux.webp b/webp/manjaro-linux.webp
new file mode 100644
index 00000000..d5a2d7c0
Binary files /dev/null and b/webp/manjaro-linux.webp differ
diff --git a/webp/manyfold.webp b/webp/manyfold.webp
new file mode 100644
index 00000000..2342eaa4
Binary files /dev/null and b/webp/manyfold.webp differ
diff --git a/webp/maptiler.webp b/webp/maptiler.webp
new file mode 100644
index 00000000..5aa6629e
Binary files /dev/null and b/webp/maptiler.webp differ
diff --git a/webp/mariadb.webp b/webp/mariadb.webp
new file mode 100644
index 00000000..a5d5ade0
Binary files /dev/null and b/webp/mariadb.webp differ
diff --git a/webp/mastodon.webp b/webp/mastodon.webp
new file mode 100644
index 00000000..8bc1d10e
Binary files /dev/null and b/webp/mastodon.webp differ
diff --git a/webp/matomo.webp b/webp/matomo.webp
new file mode 100644
index 00000000..79efddf4
Binary files /dev/null and b/webp/matomo.webp differ
diff --git a/webp/matrix-light.webp b/webp/matrix-light.webp
new file mode 100644
index 00000000..0bf549ce
Binary files /dev/null and b/webp/matrix-light.webp differ
diff --git a/webp/matrix-synapse-light.webp b/webp/matrix-synapse-light.webp
new file mode 100644
index 00000000..643a3552
Binary files /dev/null and b/webp/matrix-synapse-light.webp differ
diff --git a/webp/matrix-synapse.webp b/webp/matrix-synapse.webp
new file mode 100644
index 00000000..105370c8
Binary files /dev/null and b/webp/matrix-synapse.webp differ
diff --git a/webp/matrix.webp b/webp/matrix.webp
new file mode 100644
index 00000000..7e8e00a7
Binary files /dev/null and b/webp/matrix.webp differ
diff --git a/webp/mattermost.webp b/webp/mattermost.webp
new file mode 100644
index 00000000..b9181e26
Binary files /dev/null and b/webp/mattermost.webp differ
diff --git a/webp/mautic.webp b/webp/mautic.webp
new file mode 100644
index 00000000..0837100b
Binary files /dev/null and b/webp/mautic.webp differ
diff --git a/webp/max.webp b/webp/max.webp
new file mode 100644
index 00000000..df092a8b
Binary files /dev/null and b/webp/max.webp differ
diff --git a/webp/mayan-edms-light.webp b/webp/mayan-edms-light.webp
new file mode 100644
index 00000000..e525b831
Binary files /dev/null and b/webp/mayan-edms-light.webp differ
diff --git a/webp/mayan-edms.webp b/webp/mayan-edms.webp
new file mode 100644
index 00000000..93fb97d0
Binary files /dev/null and b/webp/mayan-edms.webp differ
diff --git a/webp/maybe.webp b/webp/maybe.webp
new file mode 100644
index 00000000..0c161042
Binary files /dev/null and b/webp/maybe.webp differ
diff --git a/webp/mbin.webp b/webp/mbin.webp
new file mode 100644
index 00000000..c297f183
Binary files /dev/null and b/webp/mbin.webp differ
diff --git a/webp/mealie.webp b/webp/mealie.webp
new file mode 100644
index 00000000..68d75ca0
Binary files /dev/null and b/webp/mealie.webp differ
diff --git a/webp/medama.webp b/webp/medama.webp
new file mode 100644
index 00000000..de5a892e
Binary files /dev/null and b/webp/medama.webp differ
diff --git a/webp/mediathekview.webp b/webp/mediathekview.webp
new file mode 100644
index 00000000..70e6f46c
Binary files /dev/null and b/webp/mediathekview.webp differ
diff --git a/webp/mediawiki.webp b/webp/mediawiki.webp
new file mode 100644
index 00000000..3e9a0204
Binary files /dev/null and b/webp/mediawiki.webp differ
diff --git a/webp/mediux.webp b/webp/mediux.webp
new file mode 100644
index 00000000..54ce6e76
Binary files /dev/null and b/webp/mediux.webp differ
diff --git a/webp/medusa-light.webp b/webp/medusa-light.webp
new file mode 100644
index 00000000..26b13101
Binary files /dev/null and b/webp/medusa-light.webp differ
diff --git a/webp/medusa.webp b/webp/medusa.webp
new file mode 100644
index 00000000..20918f02
Binary files /dev/null and b/webp/medusa.webp differ
diff --git a/webp/mega-nz-dark.webp b/webp/mega-nz-dark.webp
new file mode 100644
index 00000000..43a69f01
Binary files /dev/null and b/webp/mega-nz-dark.webp differ
diff --git a/webp/mega-nz.webp b/webp/mega-nz.webp
new file mode 100644
index 00000000..6aaf102d
Binary files /dev/null and b/webp/mega-nz.webp differ
diff --git a/webp/meilisearch.webp b/webp/meilisearch.webp
new file mode 100644
index 00000000..1a38d5fc
Binary files /dev/null and b/webp/meilisearch.webp differ
diff --git a/webp/memories-light.webp b/webp/memories-light.webp
new file mode 100644
index 00000000..ac7b810f
Binary files /dev/null and b/webp/memories-light.webp differ
diff --git a/webp/memories.webp b/webp/memories.webp
new file mode 100644
index 00000000..be0e237e
Binary files /dev/null and b/webp/memories.webp differ
diff --git a/webp/meraki.webp b/webp/meraki.webp
new file mode 100644
index 00000000..82680420
Binary files /dev/null and b/webp/meraki.webp differ
diff --git a/webp/mercusys.webp b/webp/mercusys.webp
new file mode 100644
index 00000000..dc947860
Binary files /dev/null and b/webp/mercusys.webp differ
diff --git a/webp/mergeable-dark.webp b/webp/mergeable-dark.webp
new file mode 100644
index 00000000..7fc89abd
Binary files /dev/null and b/webp/mergeable-dark.webp differ
diff --git a/webp/mergeable.webp b/webp/mergeable.webp
new file mode 100644
index 00000000..9916ed7e
Binary files /dev/null and b/webp/mergeable.webp differ
diff --git a/webp/meshping-light.webp b/webp/meshping-light.webp
new file mode 100644
index 00000000..c3e28d0f
Binary files /dev/null and b/webp/meshping-light.webp differ
diff --git a/webp/meshping.webp b/webp/meshping.webp
new file mode 100644
index 00000000..f3bd5326
Binary files /dev/null and b/webp/meshping.webp differ
diff --git a/webp/meshtastic.webp b/webp/meshtastic.webp
new file mode 100644
index 00000000..98ccc807
Binary files /dev/null and b/webp/meshtastic.webp differ
diff --git a/webp/meta.webp b/webp/meta.webp
new file mode 100644
index 00000000..107b0fc4
Binary files /dev/null and b/webp/meta.webp differ
diff --git a/webp/metabase.webp b/webp/metabase.webp
new file mode 100644
index 00000000..16fd956f
Binary files /dev/null and b/webp/metabase.webp differ
diff --git a/webp/metube.webp b/webp/metube.webp
new file mode 100644
index 00000000..e74b9be5
Binary files /dev/null and b/webp/metube.webp differ
diff --git a/webp/microsoft-365-admin-center.webp b/webp/microsoft-365-admin-center.webp
new file mode 100644
index 00000000..e0f4bc91
Binary files /dev/null and b/webp/microsoft-365-admin-center.webp differ
diff --git a/webp/microsoft-365.webp b/webp/microsoft-365.webp
new file mode 100644
index 00000000..eee36f66
Binary files /dev/null and b/webp/microsoft-365.webp differ
diff --git a/webp/microsoft-access.webp b/webp/microsoft-access.webp
new file mode 100644
index 00000000..3b1af603
Binary files /dev/null and b/webp/microsoft-access.webp differ
diff --git a/webp/microsoft-azure.webp b/webp/microsoft-azure.webp
new file mode 100644
index 00000000..2cbe6ad7
Binary files /dev/null and b/webp/microsoft-azure.webp differ
diff --git a/webp/microsoft-bing.webp b/webp/microsoft-bing.webp
new file mode 100644
index 00000000..8c4401a2
Binary files /dev/null and b/webp/microsoft-bing.webp differ
diff --git a/webp/microsoft-copilot.webp b/webp/microsoft-copilot.webp
new file mode 100644
index 00000000..e83cc40d
Binary files /dev/null and b/webp/microsoft-copilot.webp differ
diff --git a/webp/microsoft-edge.webp b/webp/microsoft-edge.webp
new file mode 100644
index 00000000..f136275c
Binary files /dev/null and b/webp/microsoft-edge.webp differ
diff --git a/webp/microsoft-excel.webp b/webp/microsoft-excel.webp
new file mode 100644
index 00000000..126f7cd5
Binary files /dev/null and b/webp/microsoft-excel.webp differ
diff --git a/webp/microsoft-exchange.webp b/webp/microsoft-exchange.webp
new file mode 100644
index 00000000..d138ea68
Binary files /dev/null and b/webp/microsoft-exchange.webp differ
diff --git a/webp/microsoft-office.webp b/webp/microsoft-office.webp
new file mode 100644
index 00000000..21a47e11
Binary files /dev/null and b/webp/microsoft-office.webp differ
diff --git a/webp/microsoft-onedrive.webp b/webp/microsoft-onedrive.webp
new file mode 100644
index 00000000..9a8880e2
Binary files /dev/null and b/webp/microsoft-onedrive.webp differ
diff --git a/webp/microsoft-onenote.webp b/webp/microsoft-onenote.webp
new file mode 100644
index 00000000..d7dbd646
Binary files /dev/null and b/webp/microsoft-onenote.webp differ
diff --git a/webp/microsoft-outlook.webp b/webp/microsoft-outlook.webp
new file mode 100644
index 00000000..ecedd7c4
Binary files /dev/null and b/webp/microsoft-outlook.webp differ
diff --git a/webp/microsoft-powerpoint.webp b/webp/microsoft-powerpoint.webp
new file mode 100644
index 00000000..d8549051
Binary files /dev/null and b/webp/microsoft-powerpoint.webp differ
diff --git a/webp/microsoft-sharepoint.webp b/webp/microsoft-sharepoint.webp
new file mode 100644
index 00000000..4be46434
Binary files /dev/null and b/webp/microsoft-sharepoint.webp differ
diff --git a/webp/microsoft-sql-server-light.webp b/webp/microsoft-sql-server-light.webp
new file mode 100644
index 00000000..6e3a913f
Binary files /dev/null and b/webp/microsoft-sql-server-light.webp differ
diff --git a/webp/microsoft-sql-server.webp b/webp/microsoft-sql-server.webp
new file mode 100644
index 00000000..b0a3db04
Binary files /dev/null and b/webp/microsoft-sql-server.webp differ
diff --git a/webp/microsoft-teams.webp b/webp/microsoft-teams.webp
new file mode 100644
index 00000000..ce23aac7
Binary files /dev/null and b/webp/microsoft-teams.webp differ
diff --git a/webp/microsoft-to-do.webp b/webp/microsoft-to-do.webp
new file mode 100644
index 00000000..98d3d657
Binary files /dev/null and b/webp/microsoft-to-do.webp differ
diff --git a/webp/microsoft-windows.webp b/webp/microsoft-windows.webp
new file mode 100644
index 00000000..30120275
Binary files /dev/null and b/webp/microsoft-windows.webp differ
diff --git a/webp/microsoft-word.webp b/webp/microsoft-word.webp
new file mode 100644
index 00000000..fdb44e53
Binary files /dev/null and b/webp/microsoft-word.webp differ
diff --git a/webp/microsoft.webp b/webp/microsoft.webp
new file mode 100644
index 00000000..6cb05922
Binary files /dev/null and b/webp/microsoft.webp differ
diff --git a/webp/mikrotik-light.webp b/webp/mikrotik-light.webp
new file mode 100644
index 00000000..caf5f1a1
Binary files /dev/null and b/webp/mikrotik-light.webp differ
diff --git a/webp/mikrotik.webp b/webp/mikrotik.webp
new file mode 100644
index 00000000..baa657df
Binary files /dev/null and b/webp/mikrotik.webp differ
diff --git a/webp/minecraft.webp b/webp/minecraft.webp
new file mode 100644
index 00000000..a8bdb4a6
Binary files /dev/null and b/webp/minecraft.webp differ
diff --git a/webp/miniflux-light.webp b/webp/miniflux-light.webp
new file mode 100644
index 00000000..b578e715
Binary files /dev/null and b/webp/miniflux-light.webp differ
diff --git a/webp/miniflux.webp b/webp/miniflux.webp
new file mode 100644
index 00000000..714cad7d
Binary files /dev/null and b/webp/miniflux.webp differ
diff --git a/webp/minio-light.webp b/webp/minio-light.webp
new file mode 100644
index 00000000..3b6ebea5
Binary files /dev/null and b/webp/minio-light.webp differ
diff --git a/webp/minio.webp b/webp/minio.webp
new file mode 100644
index 00000000..d6a5caf3
Binary files /dev/null and b/webp/minio.webp differ
diff --git a/webp/misskey-light.webp b/webp/misskey-light.webp
new file mode 100644
index 00000000..1a63c462
Binary files /dev/null and b/webp/misskey-light.webp differ
diff --git a/webp/misskey.webp b/webp/misskey.webp
new file mode 100644
index 00000000..12ec6ae2
Binary files /dev/null and b/webp/misskey.webp differ
diff --git a/webp/mitra.webp b/webp/mitra.webp
new file mode 100644
index 00000000..32d82c4f
Binary files /dev/null and b/webp/mitra.webp differ
diff --git a/webp/mixpost.webp b/webp/mixpost.webp
new file mode 100644
index 00000000..6875c7d7
Binary files /dev/null and b/webp/mixpost.webp differ
diff --git a/webp/mkdocs-light.webp b/webp/mkdocs-light.webp
new file mode 100644
index 00000000..4c234ae3
Binary files /dev/null and b/webp/mkdocs-light.webp differ
diff --git a/webp/mkdocs.webp b/webp/mkdocs.webp
new file mode 100644
index 00000000..5fc98824
Binary files /dev/null and b/webp/mkdocs.webp differ
diff --git a/webp/mobilizon.webp b/webp/mobilizon.webp
new file mode 100644
index 00000000..46a235be
Binary files /dev/null and b/webp/mobilizon.webp differ
diff --git a/webp/mobotix-light.webp b/webp/mobotix-light.webp
new file mode 100644
index 00000000..71f63a73
Binary files /dev/null and b/webp/mobotix-light.webp differ
diff --git a/webp/mobotix.webp b/webp/mobotix.webp
new file mode 100644
index 00000000..c58d90b3
Binary files /dev/null and b/webp/mobotix.webp differ
diff --git a/webp/modrinth.webp b/webp/modrinth.webp
new file mode 100644
index 00000000..68350f2f
Binary files /dev/null and b/webp/modrinth.webp differ
diff --git a/webp/mojeek.webp b/webp/mojeek.webp
new file mode 100644
index 00000000..7117fd6b
Binary files /dev/null and b/webp/mojeek.webp differ
diff --git a/webp/monero.webp b/webp/monero.webp
new file mode 100644
index 00000000..da3bd483
Binary files /dev/null and b/webp/monero.webp differ
diff --git a/webp/mongodb.webp b/webp/mongodb.webp
new file mode 100644
index 00000000..5a6b4c64
Binary files /dev/null and b/webp/mongodb.webp differ
diff --git a/webp/monica-light.webp b/webp/monica-light.webp
new file mode 100644
index 00000000..4cab835a
Binary files /dev/null and b/webp/monica-light.webp differ
diff --git a/webp/monica.webp b/webp/monica.webp
new file mode 100644
index 00000000..960ce8e9
Binary files /dev/null and b/webp/monica.webp differ
diff --git a/webp/moodle-light.webp b/webp/moodle-light.webp
new file mode 100644
index 00000000..e7fdd747
Binary files /dev/null and b/webp/moodle-light.webp differ
diff --git a/webp/moodle.webp b/webp/moodle.webp
new file mode 100644
index 00000000..ffb1079e
Binary files /dev/null and b/webp/moodle.webp differ
diff --git a/webp/morphos.webp b/webp/morphos.webp
new file mode 100644
index 00000000..e9f47044
Binary files /dev/null and b/webp/morphos.webp differ
diff --git a/webp/mosquitto.webp b/webp/mosquitto.webp
new file mode 100644
index 00000000..3f73fcd7
Binary files /dev/null and b/webp/mosquitto.webp differ
diff --git a/webp/motioneye-dark.webp b/webp/motioneye-dark.webp
new file mode 100644
index 00000000..de4fa728
Binary files /dev/null and b/webp/motioneye-dark.webp differ
diff --git a/webp/motioneye.webp b/webp/motioneye.webp
new file mode 100644
index 00000000..658d4a43
Binary files /dev/null and b/webp/motioneye.webp differ
diff --git a/webp/mqtt.webp b/webp/mqtt.webp
new file mode 100644
index 00000000..759e8a41
Binary files /dev/null and b/webp/mqtt.webp differ
diff --git a/webp/mstream.webp b/webp/mstream.webp
new file mode 100644
index 00000000..b03b09ab
Binary files /dev/null and b/webp/mstream.webp differ
diff --git a/webp/mullvad-browser.webp b/webp/mullvad-browser.webp
new file mode 100644
index 00000000..b928f25d
Binary files /dev/null and b/webp/mullvad-browser.webp differ
diff --git a/webp/mullvad-vpn.webp b/webp/mullvad-vpn.webp
new file mode 100644
index 00000000..f738a062
Binary files /dev/null and b/webp/mullvad-vpn.webp differ
diff --git a/webp/mullvad.webp b/webp/mullvad.webp
new file mode 100644
index 00000000..d812ec32
Binary files /dev/null and b/webp/mullvad.webp differ
diff --git a/webp/multi-scrobbler.webp b/webp/multi-scrobbler.webp
new file mode 100644
index 00000000..c8b4996a
Binary files /dev/null and b/webp/multi-scrobbler.webp differ
diff --git a/webp/mumble-light.webp b/webp/mumble-light.webp
new file mode 100644
index 00000000..cb369d92
Binary files /dev/null and b/webp/mumble-light.webp differ
diff --git a/webp/mumble.webp b/webp/mumble.webp
new file mode 100644
index 00000000..8b7591a9
Binary files /dev/null and b/webp/mumble.webp differ
diff --git a/webp/music-assistant-light.webp b/webp/music-assistant-light.webp
new file mode 100644
index 00000000..28d9cadc
Binary files /dev/null and b/webp/music-assistant-light.webp differ
diff --git a/webp/music-assistant.webp b/webp/music-assistant.webp
new file mode 100644
index 00000000..82e2a3ae
Binary files /dev/null and b/webp/music-assistant.webp differ
diff --git a/webp/musicbrainz.webp b/webp/musicbrainz.webp
new file mode 100644
index 00000000..4e261c55
Binary files /dev/null and b/webp/musicbrainz.webp differ
diff --git a/webp/myheats-light.webp b/webp/myheats-light.webp
new file mode 100644
index 00000000..35a0cea3
Binary files /dev/null and b/webp/myheats-light.webp differ
diff --git a/webp/myheats.webp b/webp/myheats.webp
new file mode 100644
index 00000000..07df6e5b
Binary files /dev/null and b/webp/myheats.webp differ
diff --git a/webp/myspeed.webp b/webp/myspeed.webp
new file mode 100644
index 00000000..3cc2e3c9
Binary files /dev/null and b/webp/myspeed.webp differ
diff --git a/webp/mysql.webp b/webp/mysql.webp
new file mode 100644
index 00000000..a8ac7f6b
Binary files /dev/null and b/webp/mysql.webp differ
diff --git a/webp/n8n.webp b/webp/n8n.webp
new file mode 100644
index 00000000..c0415750
Binary files /dev/null and b/webp/n8n.webp differ
diff --git a/webp/nagios.webp b/webp/nagios.webp
new file mode 100644
index 00000000..74d19371
Binary files /dev/null and b/webp/nagios.webp differ
diff --git a/webp/nasa.webp b/webp/nasa.webp
new file mode 100644
index 00000000..ec532a40
Binary files /dev/null and b/webp/nasa.webp differ
diff --git a/webp/navidrome-light.webp b/webp/navidrome-light.webp
new file mode 100644
index 00000000..82450d84
Binary files /dev/null and b/webp/navidrome-light.webp differ
diff --git a/webp/navidrome.webp b/webp/navidrome.webp
new file mode 100644
index 00000000..23cd47ae
Binary files /dev/null and b/webp/navidrome.webp differ
diff --git a/webp/neko-light.webp b/webp/neko-light.webp
new file mode 100644
index 00000000..6e6798c3
Binary files /dev/null and b/webp/neko-light.webp differ
diff --git a/webp/neko.webp b/webp/neko.webp
new file mode 100644
index 00000000..5bbff39a
Binary files /dev/null and b/webp/neko.webp differ
diff --git a/webp/neo4j.webp b/webp/neo4j.webp
new file mode 100644
index 00000000..80bf5232
Binary files /dev/null and b/webp/neo4j.webp differ
diff --git a/webp/neocities.webp b/webp/neocities.webp
new file mode 100644
index 00000000..f9d775e2
Binary files /dev/null and b/webp/neocities.webp differ
diff --git a/webp/neodb.webp b/webp/neodb.webp
new file mode 100644
index 00000000..d41c72f6
Binary files /dev/null and b/webp/neodb.webp differ
diff --git a/webp/neonlink.webp b/webp/neonlink.webp
new file mode 100644
index 00000000..383e3d69
Binary files /dev/null and b/webp/neonlink.webp differ
diff --git a/webp/netalertx-light.webp b/webp/netalertx-light.webp
new file mode 100644
index 00000000..4811f871
Binary files /dev/null and b/webp/netalertx-light.webp differ
diff --git a/webp/netalertx.webp b/webp/netalertx.webp
new file mode 100644
index 00000000..a8b5b1b8
Binary files /dev/null and b/webp/netalertx.webp differ
diff --git a/webp/netapp-light.webp b/webp/netapp-light.webp
new file mode 100644
index 00000000..8f4f32a4
Binary files /dev/null and b/webp/netapp-light.webp differ
diff --git a/webp/netapp.webp b/webp/netapp.webp
new file mode 100644
index 00000000..94fe7816
Binary files /dev/null and b/webp/netapp.webp differ
diff --git a/webp/netatmo.webp b/webp/netatmo.webp
new file mode 100644
index 00000000..3360b29f
Binary files /dev/null and b/webp/netatmo.webp differ
diff --git a/webp/netbird.webp b/webp/netbird.webp
new file mode 100644
index 00000000..a2f8b786
Binary files /dev/null and b/webp/netbird.webp differ
diff --git a/webp/netboot.webp b/webp/netboot.webp
new file mode 100644
index 00000000..c5f9644e
Binary files /dev/null and b/webp/netboot.webp differ
diff --git a/webp/netbox.webp b/webp/netbox.webp
new file mode 100644
index 00000000..521dd782
Binary files /dev/null and b/webp/netbox.webp differ
diff --git a/webp/netdata.webp b/webp/netdata.webp
new file mode 100644
index 00000000..4d8b8a00
Binary files /dev/null and b/webp/netdata.webp differ
diff --git a/webp/netflix.webp b/webp/netflix.webp
new file mode 100644
index 00000000..ac587454
Binary files /dev/null and b/webp/netflix.webp differ
diff --git a/webp/netgear-light.webp b/webp/netgear-light.webp
new file mode 100644
index 00000000..a336aa3a
Binary files /dev/null and b/webp/netgear-light.webp differ
diff --git a/webp/netgear.webp b/webp/netgear.webp
new file mode 100644
index 00000000..3a9790e4
Binary files /dev/null and b/webp/netgear.webp differ
diff --git a/webp/netlify.webp b/webp/netlify.webp
new file mode 100644
index 00000000..158234f2
Binary files /dev/null and b/webp/netlify.webp differ
diff --git a/webp/netsurf-light.webp b/webp/netsurf-light.webp
new file mode 100644
index 00000000..74a20056
Binary files /dev/null and b/webp/netsurf-light.webp differ
diff --git a/webp/netsurf.webp b/webp/netsurf.webp
new file mode 100644
index 00000000..f48ad7e3
Binary files /dev/null and b/webp/netsurf.webp differ
diff --git a/webp/network-ups-tools.webp b/webp/network-ups-tools.webp
new file mode 100644
index 00000000..474a8ff9
Binary files /dev/null and b/webp/network-ups-tools.webp differ
diff --git a/webp/newegg.webp b/webp/newegg.webp
new file mode 100644
index 00000000..0dd3e34b
Binary files /dev/null and b/webp/newegg.webp differ
diff --git a/webp/newsblur.webp b/webp/newsblur.webp
new file mode 100644
index 00000000..fd2d1ea4
Binary files /dev/null and b/webp/newsblur.webp differ
diff --git a/webp/nextcloud-blue.webp b/webp/nextcloud-blue.webp
new file mode 100644
index 00000000..539351cb
Binary files /dev/null and b/webp/nextcloud-blue.webp differ
diff --git a/webp/nextcloud-calendar.webp b/webp/nextcloud-calendar.webp
new file mode 100644
index 00000000..90e2ac48
Binary files /dev/null and b/webp/nextcloud-calendar.webp differ
diff --git a/webp/nextcloud-contacts.webp b/webp/nextcloud-contacts.webp
new file mode 100644
index 00000000..8c70bca0
Binary files /dev/null and b/webp/nextcloud-contacts.webp differ
diff --git a/webp/nextcloud-cookbook.webp b/webp/nextcloud-cookbook.webp
new file mode 100644
index 00000000..df3f0655
Binary files /dev/null and b/webp/nextcloud-cookbook.webp differ
diff --git a/webp/nextcloud-cospend.webp b/webp/nextcloud-cospend.webp
new file mode 100644
index 00000000..d9583de1
Binary files /dev/null and b/webp/nextcloud-cospend.webp differ
diff --git a/webp/nextcloud-deck.webp b/webp/nextcloud-deck.webp
new file mode 100644
index 00000000..363542a8
Binary files /dev/null and b/webp/nextcloud-deck.webp differ
diff --git a/webp/nextcloud-files.webp b/webp/nextcloud-files.webp
new file mode 100644
index 00000000..8d983de6
Binary files /dev/null and b/webp/nextcloud-files.webp differ
diff --git a/webp/nextcloud-ncdownloader.webp b/webp/nextcloud-ncdownloader.webp
new file mode 100644
index 00000000..8d1fa603
Binary files /dev/null and b/webp/nextcloud-ncdownloader.webp differ
diff --git a/webp/nextcloud-news.webp b/webp/nextcloud-news.webp
new file mode 100644
index 00000000..a891eccc
Binary files /dev/null and b/webp/nextcloud-news.webp differ
diff --git a/webp/nextcloud-notes.webp b/webp/nextcloud-notes.webp
new file mode 100644
index 00000000..2490d8f8
Binary files /dev/null and b/webp/nextcloud-notes.webp differ
diff --git a/webp/nextcloud-photos.webp b/webp/nextcloud-photos.webp
new file mode 100644
index 00000000..af087d33
Binary files /dev/null and b/webp/nextcloud-photos.webp differ
diff --git a/webp/nextcloud-social.webp b/webp/nextcloud-social.webp
new file mode 100644
index 00000000..8ad39ead
Binary files /dev/null and b/webp/nextcloud-social.webp differ
diff --git a/webp/nextcloud-tables.webp b/webp/nextcloud-tables.webp
new file mode 100644
index 00000000..15d686cf
Binary files /dev/null and b/webp/nextcloud-tables.webp differ
diff --git a/webp/nextcloud-tasks.webp b/webp/nextcloud-tasks.webp
new file mode 100644
index 00000000..d07680cb
Binary files /dev/null and b/webp/nextcloud-tasks.webp differ
diff --git a/webp/nextcloud-timemanager.webp b/webp/nextcloud-timemanager.webp
new file mode 100644
index 00000000..c537fff6
Binary files /dev/null and b/webp/nextcloud-timemanager.webp differ
diff --git a/webp/nextcloud-white.webp b/webp/nextcloud-white.webp
new file mode 100644
index 00000000..ee54ea03
Binary files /dev/null and b/webp/nextcloud-white.webp differ
diff --git a/webp/nextcloud.webp b/webp/nextcloud.webp
new file mode 100644
index 00000000..f808a610
Binary files /dev/null and b/webp/nextcloud.webp differ
diff --git a/webp/nextcloudpi.webp b/webp/nextcloudpi.webp
new file mode 100644
index 00000000..04b47a0f
Binary files /dev/null and b/webp/nextcloudpi.webp differ
diff --git a/webp/nextdns.webp b/webp/nextdns.webp
new file mode 100644
index 00000000..d4e98f59
Binary files /dev/null and b/webp/nextdns.webp differ
diff --git a/webp/nexterm.webp b/webp/nexterm.webp
new file mode 100644
index 00000000..6dcf9253
Binary files /dev/null and b/webp/nexterm.webp differ
diff --git a/webp/nextjs-light.webp b/webp/nextjs-light.webp
new file mode 100644
index 00000000..f6ebff94
Binary files /dev/null and b/webp/nextjs-light.webp differ
diff --git a/webp/nextjs.webp b/webp/nextjs.webp
new file mode 100644
index 00000000..57654534
Binary files /dev/null and b/webp/nextjs.webp differ
diff --git a/webp/nginx-proxy-manager.webp b/webp/nginx-proxy-manager.webp
new file mode 100644
index 00000000..64b297c4
Binary files /dev/null and b/webp/nginx-proxy-manager.webp differ
diff --git a/webp/nginx.webp b/webp/nginx.webp
new file mode 100644
index 00000000..26242dc9
Binary files /dev/null and b/webp/nginx.webp differ
diff --git a/webp/nicotine-plus.webp b/webp/nicotine-plus.webp
new file mode 100644
index 00000000..9e1f7b4f
Binary files /dev/null and b/webp/nicotine-plus.webp differ
diff --git a/webp/nightscout-light.webp b/webp/nightscout-light.webp
new file mode 100644
index 00000000..487153a2
Binary files /dev/null and b/webp/nightscout-light.webp differ
diff --git a/webp/nightscout.webp b/webp/nightscout.webp
new file mode 100644
index 00000000..2410e011
Binary files /dev/null and b/webp/nightscout.webp differ
diff --git a/webp/nintendo-switch.webp b/webp/nintendo-switch.webp
new file mode 100644
index 00000000..6309c28b
Binary files /dev/null and b/webp/nintendo-switch.webp differ
diff --git a/webp/nitter.webp b/webp/nitter.webp
new file mode 100644
index 00000000..a50bff91
Binary files /dev/null and b/webp/nitter.webp differ
diff --git a/webp/nixos.webp b/webp/nixos.webp
new file mode 100644
index 00000000..dfbabb34
Binary files /dev/null and b/webp/nixos.webp differ
diff --git a/webp/nocodb.webp b/webp/nocodb.webp
new file mode 100644
index 00000000..cb7642ac
Binary files /dev/null and b/webp/nocodb.webp differ
diff --git a/webp/node-red.webp b/webp/node-red.webp
new file mode 100644
index 00000000..51389d81
Binary files /dev/null and b/webp/node-red.webp differ
diff --git a/webp/nodebb.webp b/webp/nodebb.webp
new file mode 100644
index 00000000..058f5d23
Binary files /dev/null and b/webp/nodebb.webp differ
diff --git a/webp/nodejs-alt.webp b/webp/nodejs-alt.webp
new file mode 100644
index 00000000..63382d6c
Binary files /dev/null and b/webp/nodejs-alt.webp differ
diff --git a/webp/nodejs.webp b/webp/nodejs.webp
new file mode 100644
index 00000000..f0b9cdbf
Binary files /dev/null and b/webp/nodejs.webp differ
diff --git a/webp/nomad.webp b/webp/nomad.webp
new file mode 100644
index 00000000..a58c18d1
Binary files /dev/null and b/webp/nomad.webp differ
diff --git a/webp/nomie.webp b/webp/nomie.webp
new file mode 100644
index 00000000..ac3147e9
Binary files /dev/null and b/webp/nomie.webp differ
diff --git a/webp/nordvpn.webp b/webp/nordvpn.webp
new file mode 100644
index 00000000..ed541640
Binary files /dev/null and b/webp/nordvpn.webp differ
diff --git a/webp/note-mark.webp b/webp/note-mark.webp
new file mode 100644
index 00000000..eac515df
Binary files /dev/null and b/webp/note-mark.webp differ
diff --git a/webp/notesnook-light.webp b/webp/notesnook-light.webp
new file mode 100644
index 00000000..02fcf7b0
Binary files /dev/null and b/webp/notesnook-light.webp differ
diff --git a/webp/notesnook.webp b/webp/notesnook.webp
new file mode 100644
index 00000000..c2a9cf5c
Binary files /dev/null and b/webp/notesnook.webp differ
diff --git a/webp/notion-light.webp b/webp/notion-light.webp
new file mode 100644
index 00000000..13d3b1bb
Binary files /dev/null and b/webp/notion-light.webp differ
diff --git a/webp/notion.webp b/webp/notion.webp
new file mode 100644
index 00000000..c63699a4
Binary files /dev/null and b/webp/notion.webp differ
diff --git a/webp/ntfy.webp b/webp/ntfy.webp
new file mode 100644
index 00000000..549fc48a
Binary files /dev/null and b/webp/ntfy.webp differ
diff --git a/webp/nut.webp b/webp/nut.webp
new file mode 100644
index 00000000..5b726d7c
Binary files /dev/null and b/webp/nut.webp differ
diff --git a/webp/nvidia.webp b/webp/nvidia.webp
new file mode 100644
index 00000000..9991244a
Binary files /dev/null and b/webp/nvidia.webp differ
diff --git a/webp/nzbhydra2-light.webp b/webp/nzbhydra2-light.webp
new file mode 100644
index 00000000..0c001517
Binary files /dev/null and b/webp/nzbhydra2-light.webp differ
diff --git a/webp/nzbhydra2.webp b/webp/nzbhydra2.webp
new file mode 100644
index 00000000..d4505dcd
Binary files /dev/null and b/webp/nzbhydra2.webp differ
diff --git a/webp/obico.webp b/webp/obico.webp
new file mode 100644
index 00000000..1dd88f74
Binary files /dev/null and b/webp/obico.webp differ
diff --git a/webp/obsidian.webp b/webp/obsidian.webp
new file mode 100644
index 00000000..133d54db
Binary files /dev/null and b/webp/obsidian.webp differ
diff --git a/webp/obtainium.webp b/webp/obtainium.webp
new file mode 100644
index 00000000..ce23d9fe
Binary files /dev/null and b/webp/obtainium.webp differ
diff --git a/webp/octoprint.webp b/webp/octoprint.webp
new file mode 100644
index 00000000..984bb60f
Binary files /dev/null and b/webp/octoprint.webp differ
diff --git a/webp/oculus-light.webp b/webp/oculus-light.webp
new file mode 100644
index 00000000..4be4fb96
Binary files /dev/null and b/webp/oculus-light.webp differ
diff --git a/webp/oculus.webp b/webp/oculus.webp
new file mode 100644
index 00000000..2d4a8bdd
Binary files /dev/null and b/webp/oculus.webp differ
diff --git a/webp/odoo.webp b/webp/odoo.webp
new file mode 100644
index 00000000..498ab9de
Binary files /dev/null and b/webp/odoo.webp differ
diff --git a/webp/office-365.webp b/webp/office-365.webp
new file mode 100644
index 00000000..d3735fb9
Binary files /dev/null and b/webp/office-365.webp differ
diff --git a/webp/olivetin-light.webp b/webp/olivetin-light.webp
new file mode 100644
index 00000000..87f6d9a8
Binary files /dev/null and b/webp/olivetin-light.webp differ
diff --git a/webp/olivetin.webp b/webp/olivetin.webp
new file mode 100644
index 00000000..4f656b68
Binary files /dev/null and b/webp/olivetin.webp differ
diff --git a/webp/ollama.webp b/webp/ollama.webp
new file mode 100644
index 00000000..6b418508
Binary files /dev/null and b/webp/ollama.webp differ
diff --git a/webp/omada.webp b/webp/omada.webp
new file mode 100644
index 00000000..624d2ddf
Binary files /dev/null and b/webp/omada.webp differ
diff --git a/webp/ombi.webp b/webp/ombi.webp
new file mode 100644
index 00000000..5926ae7d
Binary files /dev/null and b/webp/ombi.webp differ
diff --git a/webp/omnidb.webp b/webp/omnidb.webp
new file mode 100644
index 00000000..0df5095c
Binary files /dev/null and b/webp/omnidb.webp differ
diff --git a/webp/omnivore.webp b/webp/omnivore.webp
new file mode 100644
index 00000000..34781217
Binary files /dev/null and b/webp/omnivore.webp differ
diff --git a/webp/onedev-light.webp b/webp/onedev-light.webp
new file mode 100644
index 00000000..c73f4b23
Binary files /dev/null and b/webp/onedev-light.webp differ
diff --git a/webp/onedev.webp b/webp/onedev.webp
new file mode 100644
index 00000000..9a83493f
Binary files /dev/null and b/webp/onedev.webp differ
diff --git a/webp/oneuptime-light.webp b/webp/oneuptime-light.webp
new file mode 100644
index 00000000..4c9bce62
Binary files /dev/null and b/webp/oneuptime-light.webp differ
diff --git a/webp/oneuptime.webp b/webp/oneuptime.webp
new file mode 100644
index 00000000..bf29ef14
Binary files /dev/null and b/webp/oneuptime.webp differ
diff --git a/webp/onlyoffice.webp b/webp/onlyoffice.webp
new file mode 100644
index 00000000..70c482ba
Binary files /dev/null and b/webp/onlyoffice.webp differ
diff --git a/webp/open-resume.webp b/webp/open-resume.webp
new file mode 100644
index 00000000..a15e8093
Binary files /dev/null and b/webp/open-resume.webp differ
diff --git a/webp/open-source-initiative.webp b/webp/open-source-initiative.webp
new file mode 100644
index 00000000..b890073a
Binary files /dev/null and b/webp/open-source-initiative.webp differ
diff --git a/webp/openai-light.webp b/webp/openai-light.webp
new file mode 100644
index 00000000..bc8b586c
Binary files /dev/null and b/webp/openai-light.webp differ
diff --git a/webp/openai.webp b/webp/openai.webp
new file mode 100644
index 00000000..051fe5b7
Binary files /dev/null and b/webp/openai.webp differ
diff --git a/webp/openchangelog-light.webp b/webp/openchangelog-light.webp
new file mode 100644
index 00000000..aada8b10
Binary files /dev/null and b/webp/openchangelog-light.webp differ
diff --git a/webp/openchangelog.webp b/webp/openchangelog.webp
new file mode 100644
index 00000000..df048205
Binary files /dev/null and b/webp/openchangelog.webp differ
diff --git a/webp/openeats-light.webp b/webp/openeats-light.webp
new file mode 100644
index 00000000..b1cf0014
Binary files /dev/null and b/webp/openeats-light.webp differ
diff --git a/webp/openeats.webp b/webp/openeats.webp
new file mode 100644
index 00000000..a53b6247
Binary files /dev/null and b/webp/openeats.webp differ
diff --git a/webp/openemr-light.webp b/webp/openemr-light.webp
new file mode 100644
index 00000000..f0a78b40
Binary files /dev/null and b/webp/openemr-light.webp differ
diff --git a/webp/openemr.webp b/webp/openemr.webp
new file mode 100644
index 00000000..076489d3
Binary files /dev/null and b/webp/openemr.webp differ
diff --git a/webp/opengist-light.webp b/webp/opengist-light.webp
new file mode 100644
index 00000000..19fd6095
Binary files /dev/null and b/webp/opengist-light.webp differ
diff --git a/webp/opengist.webp b/webp/opengist.webp
new file mode 100644
index 00000000..6978902e
Binary files /dev/null and b/webp/opengist.webp differ
diff --git a/webp/openhab.webp b/webp/openhab.webp
new file mode 100644
index 00000000..e6efd625
Binary files /dev/null and b/webp/openhab.webp differ
diff --git a/webp/openldap.webp b/webp/openldap.webp
new file mode 100644
index 00000000..8eb7639a
Binary files /dev/null and b/webp/openldap.webp differ
diff --git a/webp/openmediavault.webp b/webp/openmediavault.webp
new file mode 100644
index 00000000..e372d087
Binary files /dev/null and b/webp/openmediavault.webp differ
diff --git a/webp/openoffice.webp b/webp/openoffice.webp
new file mode 100644
index 00000000..2a673295
Binary files /dev/null and b/webp/openoffice.webp differ
diff --git a/webp/openpanel-light.webp b/webp/openpanel-light.webp
new file mode 100644
index 00000000..84636154
Binary files /dev/null and b/webp/openpanel-light.webp differ
diff --git a/webp/openpanel.webp b/webp/openpanel.webp
new file mode 100644
index 00000000..1c178e37
Binary files /dev/null and b/webp/openpanel.webp differ
diff --git a/webp/openproject.webp b/webp/openproject.webp
new file mode 100644
index 00000000..91ea12fa
Binary files /dev/null and b/webp/openproject.webp differ
diff --git a/webp/openreads.webp b/webp/openreads.webp
new file mode 100644
index 00000000..7fb21dd5
Binary files /dev/null and b/webp/openreads.webp differ
diff --git a/webp/opensearch.webp b/webp/opensearch.webp
new file mode 100644
index 00000000..fd43236f
Binary files /dev/null and b/webp/opensearch.webp differ
diff --git a/webp/openspeedtest.webp b/webp/openspeedtest.webp
new file mode 100644
index 00000000..f7603497
Binary files /dev/null and b/webp/openspeedtest.webp differ
diff --git a/webp/openstack.webp b/webp/openstack.webp
new file mode 100644
index 00000000..0313e470
Binary files /dev/null and b/webp/openstack.webp differ
diff --git a/webp/openstreetmap.webp b/webp/openstreetmap.webp
new file mode 100644
index 00000000..b2a5ee49
Binary files /dev/null and b/webp/openstreetmap.webp differ
diff --git a/webp/opensuse.webp b/webp/opensuse.webp
new file mode 100644
index 00000000..012e9108
Binary files /dev/null and b/webp/opensuse.webp differ
diff --git a/webp/opentalk.webp b/webp/opentalk.webp
new file mode 100644
index 00000000..f83360ab
Binary files /dev/null and b/webp/opentalk.webp differ
diff --git a/webp/opentofu.webp b/webp/opentofu.webp
new file mode 100644
index 00000000..c3fee4a9
Binary files /dev/null and b/webp/opentofu.webp differ
diff --git a/webp/openvas.webp b/webp/openvas.webp
new file mode 100644
index 00000000..477f4090
Binary files /dev/null and b/webp/openvas.webp differ
diff --git a/webp/openvpn.webp b/webp/openvpn.webp
new file mode 100644
index 00000000..8e127dc9
Binary files /dev/null and b/webp/openvpn.webp differ
diff --git a/webp/openwrt.webp b/webp/openwrt.webp
new file mode 100644
index 00000000..ff8d327e
Binary files /dev/null and b/webp/openwrt.webp differ
diff --git a/webp/opera-touch.webp b/webp/opera-touch.webp
new file mode 100644
index 00000000..03056a39
Binary files /dev/null and b/webp/opera-touch.webp differ
diff --git a/webp/opera.webp b/webp/opera.webp
new file mode 100644
index 00000000..37b2f18f
Binary files /dev/null and b/webp/opera.webp differ
diff --git a/webp/opnform.webp b/webp/opnform.webp
new file mode 100644
index 00000000..2d2b232c
Binary files /dev/null and b/webp/opnform.webp differ
diff --git a/webp/opnsense.webp b/webp/opnsense.webp
new file mode 100644
index 00000000..512934e3
Binary files /dev/null and b/webp/opnsense.webp differ
diff --git a/webp/oracle-cloud.webp b/webp/oracle-cloud.webp
new file mode 100644
index 00000000..24dbbd00
Binary files /dev/null and b/webp/oracle-cloud.webp differ
diff --git a/webp/oracle.webp b/webp/oracle.webp
new file mode 100644
index 00000000..24dbbd00
Binary files /dev/null and b/webp/oracle.webp differ
diff --git a/webp/orange.webp b/webp/orange.webp
new file mode 100644
index 00000000..d59c717a
Binary files /dev/null and b/webp/orange.webp differ
diff --git a/webp/origin.webp b/webp/origin.webp
new file mode 100644
index 00000000..a06e0efa
Binary files /dev/null and b/webp/origin.webp differ
diff --git a/webp/oscarr-light.webp b/webp/oscarr-light.webp
new file mode 100644
index 00000000..845b1627
Binary files /dev/null and b/webp/oscarr-light.webp differ
diff --git a/webp/oscarr.webp b/webp/oscarr.webp
new file mode 100644
index 00000000..b7108ec2
Binary files /dev/null and b/webp/oscarr.webp differ
diff --git a/webp/osticket.webp b/webp/osticket.webp
new file mode 100644
index 00000000..413e2b63
Binary files /dev/null and b/webp/osticket.webp differ
diff --git a/webp/outline-light.webp b/webp/outline-light.webp
new file mode 100644
index 00000000..9cb3c31f
Binary files /dev/null and b/webp/outline-light.webp differ
diff --git a/webp/outline.webp b/webp/outline.webp
new file mode 100644
index 00000000..469e4d48
Binary files /dev/null and b/webp/outline.webp differ
diff --git a/webp/overleaf.webp b/webp/overleaf.webp
new file mode 100644
index 00000000..d10faca9
Binary files /dev/null and b/webp/overleaf.webp differ
diff --git a/webp/overseerr.webp b/webp/overseerr.webp
new file mode 100644
index 00000000..26468086
Binary files /dev/null and b/webp/overseerr.webp differ
diff --git a/webp/ovh.webp b/webp/ovh.webp
new file mode 100644
index 00000000..e0130765
Binary files /dev/null and b/webp/ovh.webp differ
diff --git a/webp/ovirt-light.webp b/webp/ovirt-light.webp
new file mode 100644
index 00000000..906edceb
Binary files /dev/null and b/webp/ovirt-light.webp differ
diff --git a/webp/ovirt.webp b/webp/ovirt.webp
new file mode 100644
index 00000000..e69e8667
Binary files /dev/null and b/webp/ovirt.webp differ
diff --git a/webp/owncast.webp b/webp/owncast.webp
new file mode 100644
index 00000000..01c84e10
Binary files /dev/null and b/webp/owncast.webp differ
diff --git a/webp/owncloud.webp b/webp/owncloud.webp
new file mode 100644
index 00000000..251f9448
Binary files /dev/null and b/webp/owncloud.webp differ
diff --git a/webp/owntone.webp b/webp/owntone.webp
new file mode 100644
index 00000000..2577d0ab
Binary files /dev/null and b/webp/owntone.webp differ
diff --git a/webp/owntracks.webp b/webp/owntracks.webp
new file mode 100644
index 00000000..4a65fdd6
Binary files /dev/null and b/webp/owntracks.webp differ
diff --git a/webp/oxker-light.webp b/webp/oxker-light.webp
new file mode 100644
index 00000000..c2176b0c
Binary files /dev/null and b/webp/oxker-light.webp differ
diff --git a/webp/oxker.webp b/webp/oxker.webp
new file mode 100644
index 00000000..c90215e5
Binary files /dev/null and b/webp/oxker.webp differ
diff --git a/webp/p1ib.webp b/webp/p1ib.webp
new file mode 100644
index 00000000..c59d1b37
Binary files /dev/null and b/webp/p1ib.webp differ
diff --git a/webp/pagerduty.webp b/webp/pagerduty.webp
new file mode 100644
index 00000000..4371ef15
Binary files /dev/null and b/webp/pagerduty.webp differ
diff --git a/webp/palemoon.webp b/webp/palemoon.webp
new file mode 100644
index 00000000..5033a947
Binary files /dev/null and b/webp/palemoon.webp differ
diff --git a/webp/palo-alto.webp b/webp/palo-alto.webp
new file mode 100644
index 00000000..7b74dab2
Binary files /dev/null and b/webp/palo-alto.webp differ
diff --git a/webp/paperless-ng.webp b/webp/paperless-ng.webp
new file mode 100644
index 00000000..10923d7d
Binary files /dev/null and b/webp/paperless-ng.webp differ
diff --git a/webp/paperless-ngx.webp b/webp/paperless-ngx.webp
new file mode 100644
index 00000000..460956a1
Binary files /dev/null and b/webp/paperless-ngx.webp differ
diff --git a/webp/paperless.webp b/webp/paperless.webp
new file mode 100644
index 00000000..3919f71d
Binary files /dev/null and b/webp/paperless.webp differ
diff --git a/webp/papermark-light.webp b/webp/papermark-light.webp
new file mode 100644
index 00000000..cf31541b
Binary files /dev/null and b/webp/papermark-light.webp differ
diff --git a/webp/papermark.webp b/webp/papermark.webp
new file mode 100644
index 00000000..0ca3e25f
Binary files /dev/null and b/webp/papermark.webp differ
diff --git a/webp/papermerge-light.webp b/webp/papermerge-light.webp
new file mode 100644
index 00000000..3b564d06
Binary files /dev/null and b/webp/papermerge-light.webp differ
diff --git a/webp/papermerge.webp b/webp/papermerge.webp
new file mode 100644
index 00000000..abd0d1e5
Binary files /dev/null and b/webp/papermerge.webp differ
diff --git a/webp/parseable.webp b/webp/parseable.webp
new file mode 100644
index 00000000..75814018
Binary files /dev/null and b/webp/parseable.webp differ
diff --git a/webp/part-db-light.webp b/webp/part-db-light.webp
new file mode 100644
index 00000000..0b9d7e6c
Binary files /dev/null and b/webp/part-db-light.webp differ
diff --git a/webp/part-db.webp b/webp/part-db.webp
new file mode 100644
index 00000000..4957f317
Binary files /dev/null and b/webp/part-db.webp differ
diff --git a/webp/partkeepr.webp b/webp/partkeepr.webp
new file mode 100644
index 00000000..0231744e
Binary files /dev/null and b/webp/partkeepr.webp differ
diff --git a/webp/passbolt.webp b/webp/passbolt.webp
new file mode 100644
index 00000000..23861477
Binary files /dev/null and b/webp/passbolt.webp differ
diff --git a/webp/passwork.webp b/webp/passwork.webp
new file mode 100644
index 00000000..9c61d4b8
Binary files /dev/null and b/webp/passwork.webp differ
diff --git a/webp/pastebin-dark.webp b/webp/pastebin-dark.webp
new file mode 100644
index 00000000..6ffc4960
Binary files /dev/null and b/webp/pastebin-dark.webp differ
diff --git a/webp/pastebin.webp b/webp/pastebin.webp
new file mode 100644
index 00000000..edc0db56
Binary files /dev/null and b/webp/pastebin.webp differ
diff --git a/webp/patreon-light.webp b/webp/patreon-light.webp
new file mode 100644
index 00000000..04e2c4f1
Binary files /dev/null and b/webp/patreon-light.webp differ
diff --git a/webp/patreon.webp b/webp/patreon.webp
new file mode 100644
index 00000000..7ee36fc8
Binary files /dev/null and b/webp/patreon.webp differ
diff --git a/webp/payload-light.webp b/webp/payload-light.webp
new file mode 100644
index 00000000..51df803a
Binary files /dev/null and b/webp/payload-light.webp differ
diff --git a/webp/payload.webp b/webp/payload.webp
new file mode 100644
index 00000000..610bbe3f
Binary files /dev/null and b/webp/payload.webp differ
diff --git a/webp/paypal.webp b/webp/paypal.webp
new file mode 100644
index 00000000..31b2092b
Binary files /dev/null and b/webp/paypal.webp differ
diff --git a/webp/pdfding-light.webp b/webp/pdfding-light.webp
new file mode 100644
index 00000000..e666c45e
Binary files /dev/null and b/webp/pdfding-light.webp differ
diff --git a/webp/pdfding.webp b/webp/pdfding.webp
new file mode 100644
index 00000000..bd19e4ff
Binary files /dev/null and b/webp/pdfding.webp differ
diff --git a/webp/peacock-light.webp b/webp/peacock-light.webp
new file mode 100644
index 00000000..aab514a9
Binary files /dev/null and b/webp/peacock-light.webp differ
diff --git a/webp/peacock.webp b/webp/peacock.webp
new file mode 100644
index 00000000..78c00e25
Binary files /dev/null and b/webp/peacock.webp differ
diff --git a/webp/peanut-light.webp b/webp/peanut-light.webp
new file mode 100644
index 00000000..6376e49b
Binary files /dev/null and b/webp/peanut-light.webp differ
diff --git a/webp/peanut.webp b/webp/peanut.webp
new file mode 100644
index 00000000..2d51f232
Binary files /dev/null and b/webp/peanut.webp differ
diff --git a/webp/peertube.webp b/webp/peertube.webp
new file mode 100644
index 00000000..e7e5a1fd
Binary files /dev/null and b/webp/peertube.webp differ
diff --git a/webp/pelican-panel.webp b/webp/pelican-panel.webp
new file mode 100644
index 00000000..e634ec26
Binary files /dev/null and b/webp/pelican-panel.webp differ
diff --git a/webp/penpot-light.webp b/webp/penpot-light.webp
new file mode 100644
index 00000000..db11e075
Binary files /dev/null and b/webp/penpot-light.webp differ
diff --git a/webp/penpot.webp b/webp/penpot.webp
new file mode 100644
index 00000000..adae3786
Binary files /dev/null and b/webp/penpot.webp differ
diff --git a/webp/peppermint.webp b/webp/peppermint.webp
new file mode 100644
index 00000000..7e22bd27
Binary files /dev/null and b/webp/peppermint.webp differ
diff --git a/webp/pepperminty-wiki.webp b/webp/pepperminty-wiki.webp
new file mode 100644
index 00000000..55566ca0
Binary files /dev/null and b/webp/pepperminty-wiki.webp differ
diff --git a/webp/perlite.webp b/webp/perlite.webp
new file mode 100644
index 00000000..c035bf7f
Binary files /dev/null and b/webp/perlite.webp differ
diff --git a/webp/pfsense-light.webp b/webp/pfsense-light.webp
new file mode 100644
index 00000000..3ffcd751
Binary files /dev/null and b/webp/pfsense-light.webp differ
diff --git a/webp/pfsense.webp b/webp/pfsense.webp
new file mode 100644
index 00000000..c4a579a0
Binary files /dev/null and b/webp/pfsense.webp differ
diff --git a/webp/pg-back-web.webp b/webp/pg-back-web.webp
new file mode 100644
index 00000000..d969c8d5
Binary files /dev/null and b/webp/pg-back-web.webp differ
diff --git a/webp/pgadmin.webp b/webp/pgadmin.webp
new file mode 100644
index 00000000..3ad8056d
Binary files /dev/null and b/webp/pgadmin.webp differ
diff --git a/webp/phanpy.webp b/webp/phanpy.webp
new file mode 100644
index 00000000..3cfba45b
Binary files /dev/null and b/webp/phanpy.webp differ
diff --git a/webp/phoneinfoga-light.webp b/webp/phoneinfoga-light.webp
new file mode 100644
index 00000000..00824fb9
Binary files /dev/null and b/webp/phoneinfoga-light.webp differ
diff --git a/webp/phoneinfoga.webp b/webp/phoneinfoga.webp
new file mode 100644
index 00000000..697d5a00
Binary files /dev/null and b/webp/phoneinfoga.webp differ
diff --git a/webp/phorge-light.webp b/webp/phorge-light.webp
new file mode 100644
index 00000000..27737626
Binary files /dev/null and b/webp/phorge-light.webp differ
diff --git a/webp/phorge.webp b/webp/phorge.webp
new file mode 100644
index 00000000..51d836a6
Binary files /dev/null and b/webp/phorge.webp differ
diff --git a/webp/phoscon-light.webp b/webp/phoscon-light.webp
new file mode 100644
index 00000000..afdef2ca
Binary files /dev/null and b/webp/phoscon-light.webp differ
diff --git a/webp/phoscon.webp b/webp/phoscon.webp
new file mode 100644
index 00000000..49b411b3
Binary files /dev/null and b/webp/phoscon.webp differ
diff --git a/webp/photonix-light.webp b/webp/photonix-light.webp
new file mode 100644
index 00000000..5fd1e94b
Binary files /dev/null and b/webp/photonix-light.webp differ
diff --git a/webp/photonix.webp b/webp/photonix.webp
new file mode 100644
index 00000000..c63b8a54
Binary files /dev/null and b/webp/photonix.webp differ
diff --git a/webp/photopea.webp b/webp/photopea.webp
new file mode 100644
index 00000000..72f82fab
Binary files /dev/null and b/webp/photopea.webp differ
diff --git a/webp/photoprism-light.webp b/webp/photoprism-light.webp
new file mode 100644
index 00000000..f1aa2fb1
Binary files /dev/null and b/webp/photoprism-light.webp differ
diff --git a/webp/photoprism.webp b/webp/photoprism.webp
new file mode 100644
index 00000000..a3b4e562
Binary files /dev/null and b/webp/photoprism.webp differ
diff --git a/webp/photostructure-dark.webp b/webp/photostructure-dark.webp
new file mode 100644
index 00000000..7bbb8679
Binary files /dev/null and b/webp/photostructure-dark.webp differ
diff --git a/webp/photostructure.webp b/webp/photostructure.webp
new file mode 100644
index 00000000..6c326ae6
Binary files /dev/null and b/webp/photostructure.webp differ
diff --git a/webp/photoview.webp b/webp/photoview.webp
new file mode 100644
index 00000000..72227be2
Binary files /dev/null and b/webp/photoview.webp differ
diff --git a/webp/php-light.webp b/webp/php-light.webp
new file mode 100644
index 00000000..c7c5718c
Binary files /dev/null and b/webp/php-light.webp differ
diff --git a/webp/php.webp b/webp/php.webp
new file mode 100644
index 00000000..2b1106d0
Binary files /dev/null and b/webp/php.webp differ
diff --git a/webp/phpmyadmin.webp b/webp/phpmyadmin.webp
new file mode 100644
index 00000000..fc773c4e
Binary files /dev/null and b/webp/phpmyadmin.webp differ
diff --git a/webp/pi-hole.webp b/webp/pi-hole.webp
new file mode 100644
index 00000000..87a7e318
Binary files /dev/null and b/webp/pi-hole.webp differ
diff --git a/webp/pia.webp b/webp/pia.webp
new file mode 100644
index 00000000..e700d0da
Binary files /dev/null and b/webp/pia.webp differ
diff --git a/webp/picsur-light.webp b/webp/picsur-light.webp
new file mode 100644
index 00000000..610cf3be
Binary files /dev/null and b/webp/picsur-light.webp differ
diff --git a/webp/picsur.webp b/webp/picsur.webp
new file mode 100644
index 00000000..334df6d4
Binary files /dev/null and b/webp/picsur.webp differ
diff --git a/webp/pigallery2.webp b/webp/pigallery2.webp
new file mode 100644
index 00000000..63cdc582
Binary files /dev/null and b/webp/pigallery2.webp differ
diff --git a/webp/pikapods.webp b/webp/pikapods.webp
new file mode 100644
index 00000000..eb317bfa
Binary files /dev/null and b/webp/pikapods.webp differ
diff --git a/webp/pingdom-light.webp b/webp/pingdom-light.webp
new file mode 100644
index 00000000..993b7463
Binary files /dev/null and b/webp/pingdom-light.webp differ
diff --git a/webp/pingdom.webp b/webp/pingdom.webp
new file mode 100644
index 00000000..9c7c7d25
Binary files /dev/null and b/webp/pingdom.webp differ
diff --git a/webp/pingvin-dark.webp b/webp/pingvin-dark.webp
new file mode 100644
index 00000000..9fab675f
Binary files /dev/null and b/webp/pingvin-dark.webp differ
diff --git a/webp/pingvin-share-dark.webp b/webp/pingvin-share-dark.webp
new file mode 100644
index 00000000..9fab675f
Binary files /dev/null and b/webp/pingvin-share-dark.webp differ
diff --git a/webp/pingvin-share.webp b/webp/pingvin-share.webp
new file mode 100644
index 00000000..a24a8de3
Binary files /dev/null and b/webp/pingvin-share.webp differ
diff --git a/webp/pingvin.webp b/webp/pingvin.webp
new file mode 100644
index 00000000..5af94fd7
Binary files /dev/null and b/webp/pingvin.webp differ
diff --git a/webp/pinkary.webp b/webp/pinkary.webp
new file mode 100644
index 00000000..9db6d73f
Binary files /dev/null and b/webp/pinkary.webp differ
diff --git a/webp/pinterest.webp b/webp/pinterest.webp
new file mode 100644
index 00000000..536b134a
Binary files /dev/null and b/webp/pinterest.webp differ
diff --git a/webp/pioneer-light.webp b/webp/pioneer-light.webp
new file mode 100644
index 00000000..ac98f9ae
Binary files /dev/null and b/webp/pioneer-light.webp differ
diff --git a/webp/pioneer.webp b/webp/pioneer.webp
new file mode 100644
index 00000000..71cca6a4
Binary files /dev/null and b/webp/pioneer.webp differ
diff --git a/webp/piped.webp b/webp/piped.webp
new file mode 100644
index 00000000..0f531cd4
Binary files /dev/null and b/webp/piped.webp differ
diff --git a/webp/pirate-proxy.webp b/webp/pirate-proxy.webp
new file mode 100644
index 00000000..13a7c59c
Binary files /dev/null and b/webp/pirate-proxy.webp differ
diff --git a/webp/piwigo.webp b/webp/piwigo.webp
new file mode 100644
index 00000000..f74ee4e5
Binary files /dev/null and b/webp/piwigo.webp differ
diff --git a/webp/pixelfed.webp b/webp/pixelfed.webp
new file mode 100644
index 00000000..bebfd850
Binary files /dev/null and b/webp/pixelfed.webp differ
diff --git a/webp/plane.webp b/webp/plane.webp
new file mode 100644
index 00000000..99c5a020
Binary files /dev/null and b/webp/plane.webp differ
diff --git a/webp/planka-dark.webp b/webp/planka-dark.webp
new file mode 100644
index 00000000..737aa35a
Binary files /dev/null and b/webp/planka-dark.webp differ
diff --git a/webp/planka.webp b/webp/planka.webp
new file mode 100644
index 00000000..e18658a5
Binary files /dev/null and b/webp/planka.webp differ
diff --git a/webp/plausible.webp b/webp/plausible.webp
new file mode 100644
index 00000000..d39386b9
Binary files /dev/null and b/webp/plausible.webp differ
diff --git a/webp/playstation.webp b/webp/playstation.webp
new file mode 100644
index 00000000..af74cc1e
Binary files /dev/null and b/webp/playstation.webp differ
diff --git a/webp/pleroma.webp b/webp/pleroma.webp
new file mode 100644
index 00000000..f8f76c98
Binary files /dev/null and b/webp/pleroma.webp differ
diff --git a/webp/plesk.webp b/webp/plesk.webp
new file mode 100644
index 00000000..145243cd
Binary files /dev/null and b/webp/plesk.webp differ
diff --git a/webp/plex-alt-light.webp b/webp/plex-alt-light.webp
new file mode 100644
index 00000000..91168650
Binary files /dev/null and b/webp/plex-alt-light.webp differ
diff --git a/webp/plex-alt.webp b/webp/plex-alt.webp
new file mode 100644
index 00000000..fb807855
Binary files /dev/null and b/webp/plex-alt.webp differ
diff --git a/webp/plex-light.webp b/webp/plex-light.webp
new file mode 100644
index 00000000..f0f16013
Binary files /dev/null and b/webp/plex-light.webp differ
diff --git a/webp/plex-rewind.webp b/webp/plex-rewind.webp
new file mode 100644
index 00000000..c5381a4b
Binary files /dev/null and b/webp/plex-rewind.webp differ
diff --git a/webp/plex.webp b/webp/plex.webp
new file mode 100644
index 00000000..561e7269
Binary files /dev/null and b/webp/plex.webp differ
diff --git a/webp/plexrequests-light.webp b/webp/plexrequests-light.webp
new file mode 100644
index 00000000..000eb579
Binary files /dev/null and b/webp/plexrequests-light.webp differ
diff --git a/webp/plexrequests.webp b/webp/plexrequests.webp
new file mode 100644
index 00000000..e0e7b2dc
Binary files /dev/null and b/webp/plexrequests.webp differ
diff --git a/webp/plume.webp b/webp/plume.webp
new file mode 100644
index 00000000..8e6d2403
Binary files /dev/null and b/webp/plume.webp differ
diff --git a/webp/pocket-casts-dark.webp b/webp/pocket-casts-dark.webp
new file mode 100644
index 00000000..37d407dc
Binary files /dev/null and b/webp/pocket-casts-dark.webp differ
diff --git a/webp/pocket-casts.webp b/webp/pocket-casts.webp
new file mode 100644
index 00000000..800e4b9f
Binary files /dev/null and b/webp/pocket-casts.webp differ
diff --git a/webp/pocket-id-light.webp b/webp/pocket-id-light.webp
new file mode 100644
index 00000000..a90148aa
Binary files /dev/null and b/webp/pocket-id-light.webp differ
diff --git a/webp/pocket-id.webp b/webp/pocket-id.webp
new file mode 100644
index 00000000..b048029b
Binary files /dev/null and b/webp/pocket-id.webp differ
diff --git a/webp/pocketbase-dark.webp b/webp/pocketbase-dark.webp
new file mode 100644
index 00000000..4a2852b0
Binary files /dev/null and b/webp/pocketbase-dark.webp differ
diff --git a/webp/pocketbase.webp b/webp/pocketbase.webp
new file mode 100644
index 00000000..afc2d3dd
Binary files /dev/null and b/webp/pocketbase.webp differ
diff --git a/webp/podfetch-light.webp b/webp/podfetch-light.webp
new file mode 100644
index 00000000..64169ca4
Binary files /dev/null and b/webp/podfetch-light.webp differ
diff --git a/webp/podfetch.webp b/webp/podfetch.webp
new file mode 100644
index 00000000..486a4cd2
Binary files /dev/null and b/webp/podfetch.webp differ
diff --git a/webp/podify.webp b/webp/podify.webp
new file mode 100644
index 00000000..4f44358d
Binary files /dev/null and b/webp/podify.webp differ
diff --git a/webp/podman.webp b/webp/podman.webp
new file mode 100644
index 00000000..13b8d52d
Binary files /dev/null and b/webp/podman.webp differ
diff --git a/webp/policycontroller.webp b/webp/policycontroller.webp
new file mode 100644
index 00000000..b7c5bcec
Binary files /dev/null and b/webp/policycontroller.webp differ
diff --git a/webp/poly.webp b/webp/poly.webp
new file mode 100644
index 00000000..cdc1aa4d
Binary files /dev/null and b/webp/poly.webp differ
diff --git a/webp/polywork.webp b/webp/polywork.webp
new file mode 100644
index 00000000..fe42295c
Binary files /dev/null and b/webp/polywork.webp differ
diff --git a/webp/portainer.webp b/webp/portainer.webp
new file mode 100644
index 00000000..bc88121e
Binary files /dev/null and b/webp/portainer.webp differ
diff --git a/webp/portus.webp b/webp/portus.webp
new file mode 100644
index 00000000..8fff0829
Binary files /dev/null and b/webp/portus.webp differ
diff --git a/webp/postal.webp b/webp/postal.webp
new file mode 100644
index 00000000..dd2557e5
Binary files /dev/null and b/webp/postal.webp differ
diff --git a/webp/poste.webp b/webp/poste.webp
new file mode 100644
index 00000000..4edc5191
Binary files /dev/null and b/webp/poste.webp differ
diff --git a/webp/postgres.webp b/webp/postgres.webp
new file mode 100644
index 00000000..3ad8056d
Binary files /dev/null and b/webp/postgres.webp differ
diff --git a/webp/postgresql.webp b/webp/postgresql.webp
new file mode 100644
index 00000000..01df862d
Binary files /dev/null and b/webp/postgresql.webp differ
diff --git a/webp/posthog-light.webp b/webp/posthog-light.webp
new file mode 100644
index 00000000..50d48301
Binary files /dev/null and b/webp/posthog-light.webp differ
diff --git a/webp/posthog.webp b/webp/posthog.webp
new file mode 100644
index 00000000..2065f8ae
Binary files /dev/null and b/webp/posthog.webp differ
diff --git a/webp/postiz-dark.webp b/webp/postiz-dark.webp
new file mode 100644
index 00000000..7e361bdf
Binary files /dev/null and b/webp/postiz-dark.webp differ
diff --git a/webp/postiz.webp b/webp/postiz.webp
new file mode 100644
index 00000000..13826aa0
Binary files /dev/null and b/webp/postiz.webp differ
diff --git a/webp/powerbi.webp b/webp/powerbi.webp
new file mode 100644
index 00000000..59620ba2
Binary files /dev/null and b/webp/powerbi.webp differ
diff --git a/webp/powerdns.webp b/webp/powerdns.webp
new file mode 100644
index 00000000..bcdeefc2
Binary files /dev/null and b/webp/powerdns.webp differ
diff --git a/webp/prime-video-light.webp b/webp/prime-video-light.webp
new file mode 100644
index 00000000..02f80590
Binary files /dev/null and b/webp/prime-video-light.webp differ
diff --git a/webp/prime-video.webp b/webp/prime-video.webp
new file mode 100644
index 00000000..d045bafd
Binary files /dev/null and b/webp/prime-video.webp differ
diff --git a/webp/printer.webp b/webp/printer.webp
new file mode 100644
index 00000000..377d8dd8
Binary files /dev/null and b/webp/printer.webp differ
diff --git a/webp/pritunl.webp b/webp/pritunl.webp
new file mode 100644
index 00000000..6168d0f3
Binary files /dev/null and b/webp/pritunl.webp differ
diff --git a/webp/privacyidea.webp b/webp/privacyidea.webp
new file mode 100644
index 00000000..6d8f0518
Binary files /dev/null and b/webp/privacyidea.webp differ
diff --git a/webp/private-internet-access.webp b/webp/private-internet-access.webp
new file mode 100644
index 00000000..07ee129b
Binary files /dev/null and b/webp/private-internet-access.webp differ
diff --git a/webp/privatebin.webp b/webp/privatebin.webp
new file mode 100644
index 00000000..a7b59cfd
Binary files /dev/null and b/webp/privatebin.webp differ
diff --git a/webp/projectsend.webp b/webp/projectsend.webp
new file mode 100644
index 00000000..d3c52151
Binary files /dev/null and b/webp/projectsend.webp differ
diff --git a/webp/prometheus.webp b/webp/prometheus.webp
new file mode 100644
index 00000000..927c34d6
Binary files /dev/null and b/webp/prometheus.webp differ
diff --git a/webp/proton-calendar.webp b/webp/proton-calendar.webp
new file mode 100644
index 00000000..88ef217e
Binary files /dev/null and b/webp/proton-calendar.webp differ
diff --git a/webp/proton-drive.webp b/webp/proton-drive.webp
new file mode 100644
index 00000000..4b0c9232
Binary files /dev/null and b/webp/proton-drive.webp differ
diff --git a/webp/proton-mail.webp b/webp/proton-mail.webp
new file mode 100644
index 00000000..eaa0f01f
Binary files /dev/null and b/webp/proton-mail.webp differ
diff --git a/webp/proton-pass.webp b/webp/proton-pass.webp
new file mode 100644
index 00000000..0bfb8d7f
Binary files /dev/null and b/webp/proton-pass.webp differ
diff --git a/webp/proton-vpn.webp b/webp/proton-vpn.webp
new file mode 100644
index 00000000..436149d9
Binary files /dev/null and b/webp/proton-vpn.webp differ
diff --git a/webp/prowlarr.webp b/webp/prowlarr.webp
new file mode 100644
index 00000000..90be4baf
Binary files /dev/null and b/webp/prowlarr.webp differ
diff --git a/webp/proxmox-light.webp b/webp/proxmox-light.webp
new file mode 100644
index 00000000..74058622
Binary files /dev/null and b/webp/proxmox-light.webp differ
diff --git a/webp/proxmox.webp b/webp/proxmox.webp
new file mode 100644
index 00000000..3cd1ed84
Binary files /dev/null and b/webp/proxmox.webp differ
diff --git a/webp/prtg.webp b/webp/prtg.webp
new file mode 100644
index 00000000..5a62954c
Binary files /dev/null and b/webp/prtg.webp differ
diff --git a/webp/prusa-research.webp b/webp/prusa-research.webp
new file mode 100644
index 00000000..04037ddb
Binary files /dev/null and b/webp/prusa-research.webp differ
diff --git a/webp/pterodactyl.webp b/webp/pterodactyl.webp
new file mode 100644
index 00000000..90279e36
Binary files /dev/null and b/webp/pterodactyl.webp differ
diff --git a/webp/pufferpanel.webp b/webp/pufferpanel.webp
new file mode 100644
index 00000000..fddbe546
Binary files /dev/null and b/webp/pufferpanel.webp differ
diff --git a/webp/purelymail.webp b/webp/purelymail.webp
new file mode 100644
index 00000000..264e9fb7
Binary files /dev/null and b/webp/purelymail.webp differ
diff --git a/webp/pushfish.webp b/webp/pushfish.webp
new file mode 100644
index 00000000..f0ef20e1
Binary files /dev/null and b/webp/pushfish.webp differ
diff --git a/webp/pushover.webp b/webp/pushover.webp
new file mode 100644
index 00000000..46104c36
Binary files /dev/null and b/webp/pushover.webp differ
diff --git a/webp/putty.webp b/webp/putty.webp
new file mode 100644
index 00000000..0a002aa2
Binary files /dev/null and b/webp/putty.webp differ
diff --git a/webp/pydio.webp b/webp/pydio.webp
new file mode 100644
index 00000000..43b25f7a
Binary files /dev/null and b/webp/pydio.webp differ
diff --git a/webp/pyload.webp b/webp/pyload.webp
new file mode 100644
index 00000000..6d969a7a
Binary files /dev/null and b/webp/pyload.webp differ
diff --git a/webp/python.webp b/webp/python.webp
new file mode 100644
index 00000000..73212b52
Binary files /dev/null and b/webp/python.webp differ
diff --git a/webp/qbittorrent.webp b/webp/qbittorrent.webp
new file mode 100644
index 00000000..c293a1e4
Binary files /dev/null and b/webp/qbittorrent.webp differ
diff --git a/webp/qdirstat.webp b/webp/qdirstat.webp
new file mode 100644
index 00000000..051e8001
Binary files /dev/null and b/webp/qdirstat.webp differ
diff --git a/webp/qinglong.webp b/webp/qinglong.webp
new file mode 100644
index 00000000..470eb880
Binary files /dev/null and b/webp/qinglong.webp differ
diff --git a/webp/qnap.webp b/webp/qnap.webp
new file mode 100644
index 00000000..77e95dd0
Binary files /dev/null and b/webp/qnap.webp differ
diff --git a/webp/questdb.webp b/webp/questdb.webp
new file mode 100644
index 00000000..ec46fed7
Binary files /dev/null and b/webp/questdb.webp differ
diff --git a/webp/quetre.webp b/webp/quetre.webp
new file mode 100644
index 00000000..ca71ca16
Binary files /dev/null and b/webp/quetre.webp differ
diff --git a/webp/quickwit.webp b/webp/quickwit.webp
new file mode 100644
index 00000000..671356e5
Binary files /dev/null and b/webp/quickwit.webp differ
diff --git a/webp/qutebrowser.webp b/webp/qutebrowser.webp
new file mode 100644
index 00000000..4d1f9a78
Binary files /dev/null and b/webp/qutebrowser.webp differ
diff --git a/webp/r.webp b/webp/r.webp
new file mode 100644
index 00000000..51c34117
Binary files /dev/null and b/webp/r.webp differ
diff --git a/webp/rabbitmq.webp b/webp/rabbitmq.webp
new file mode 100644
index 00000000..912d8a39
Binary files /dev/null and b/webp/rabbitmq.webp differ
diff --git a/webp/radarr.webp b/webp/radarr.webp
new file mode 100644
index 00000000..875ad0d3
Binary files /dev/null and b/webp/radarr.webp differ
diff --git a/webp/radicale.webp b/webp/radicale.webp
new file mode 100644
index 00000000..dfdb0264
Binary files /dev/null and b/webp/radicale.webp differ
diff --git a/webp/rainloop.webp b/webp/rainloop.webp
new file mode 100644
index 00000000..58bacec2
Binary files /dev/null and b/webp/rainloop.webp differ
diff --git a/webp/rallly.webp b/webp/rallly.webp
new file mode 100644
index 00000000..fe44b782
Binary files /dev/null and b/webp/rallly.webp differ
diff --git a/webp/rancher.webp b/webp/rancher.webp
new file mode 100644
index 00000000..30874412
Binary files /dev/null and b/webp/rancher.webp differ
diff --git a/webp/raspberry-pi-light.webp b/webp/raspberry-pi-light.webp
new file mode 100644
index 00000000..c55e9cc8
Binary files /dev/null and b/webp/raspberry-pi-light.webp differ
diff --git a/webp/raspberry-pi.webp b/webp/raspberry-pi.webp
new file mode 100644
index 00000000..003429e9
Binary files /dev/null and b/webp/raspberry-pi.webp differ
diff --git a/webp/rclone.webp b/webp/rclone.webp
new file mode 100644
index 00000000..774b1fd3
Binary files /dev/null and b/webp/rclone.webp differ
diff --git a/webp/rdt-client.webp b/webp/rdt-client.webp
new file mode 100644
index 00000000..d80b2370
Binary files /dev/null and b/webp/rdt-client.webp differ
diff --git a/webp/reactive-resume-light.webp b/webp/reactive-resume-light.webp
new file mode 100644
index 00000000..96503204
Binary files /dev/null and b/webp/reactive-resume-light.webp differ
diff --git a/webp/reactive-resume.webp b/webp/reactive-resume.webp
new file mode 100644
index 00000000..d782c8d7
Binary files /dev/null and b/webp/reactive-resume.webp differ
diff --git a/webp/readarr.webp b/webp/readarr.webp
new file mode 100644
index 00000000..f77c2e6a
Binary files /dev/null and b/webp/readarr.webp differ
diff --git a/webp/readeck.webp b/webp/readeck.webp
new file mode 100644
index 00000000..4e8c3ba7
Binary files /dev/null and b/webp/readeck.webp differ
diff --git a/webp/readthedocs-light.webp b/webp/readthedocs-light.webp
new file mode 100644
index 00000000..05db9b56
Binary files /dev/null and b/webp/readthedocs-light.webp differ
diff --git a/webp/readthedocs.webp b/webp/readthedocs.webp
new file mode 100644
index 00000000..06fe3e93
Binary files /dev/null and b/webp/readthedocs.webp differ
diff --git a/webp/real-debrid.webp b/webp/real-debrid.webp
new file mode 100644
index 00000000..d80b2370
Binary files /dev/null and b/webp/real-debrid.webp differ
diff --git a/webp/recalbox.webp b/webp/recalbox.webp
new file mode 100644
index 00000000..e74282ec
Binary files /dev/null and b/webp/recalbox.webp differ
diff --git a/webp/receipt-wrangler.webp b/webp/receipt-wrangler.webp
new file mode 100644
index 00000000..2d693b33
Binary files /dev/null and b/webp/receipt-wrangler.webp differ
diff --git a/webp/recipesage.webp b/webp/recipesage.webp
new file mode 100644
index 00000000..e5be55e8
Binary files /dev/null and b/webp/recipesage.webp differ
diff --git a/webp/reddit.webp b/webp/reddit.webp
new file mode 100644
index 00000000..fcc60b51
Binary files /dev/null and b/webp/reddit.webp differ
diff --git a/webp/redict.webp b/webp/redict.webp
new file mode 100644
index 00000000..50e941a7
Binary files /dev/null and b/webp/redict.webp differ
diff --git a/webp/redis.webp b/webp/redis.webp
new file mode 100644
index 00000000..9451bbd3
Binary files /dev/null and b/webp/redis.webp differ
diff --git a/webp/redlib-light.webp b/webp/redlib-light.webp
new file mode 100644
index 00000000..fc4b3dd3
Binary files /dev/null and b/webp/redlib-light.webp differ
diff --git a/webp/redlib.webp b/webp/redlib.webp
new file mode 100644
index 00000000..0167f8ef
Binary files /dev/null and b/webp/redlib.webp differ
diff --git a/webp/rekor.webp b/webp/rekor.webp
new file mode 100644
index 00000000..779df699
Binary files /dev/null and b/webp/rekor.webp differ
diff --git a/webp/remmina.webp b/webp/remmina.webp
new file mode 100644
index 00000000..b24d1e41
Binary files /dev/null and b/webp/remmina.webp differ
diff --git a/webp/reolink.webp b/webp/reolink.webp
new file mode 100644
index 00000000..45d39a42
Binary files /dev/null and b/webp/reolink.webp differ
diff --git a/webp/requestly.webp b/webp/requestly.webp
new file mode 100644
index 00000000..363841b3
Binary files /dev/null and b/webp/requestly.webp differ
diff --git a/webp/requestrr.webp b/webp/requestrr.webp
new file mode 100644
index 00000000..68f58abe
Binary files /dev/null and b/webp/requestrr.webp differ
diff --git a/webp/resiliosync-light.webp b/webp/resiliosync-light.webp
new file mode 100644
index 00000000..229294e3
Binary files /dev/null and b/webp/resiliosync-light.webp differ
diff --git a/webp/resiliosync.webp b/webp/resiliosync.webp
new file mode 100644
index 00000000..54c947e7
Binary files /dev/null and b/webp/resiliosync.webp differ
diff --git a/webp/restreamer.webp b/webp/restreamer.webp
new file mode 100644
index 00000000..1f07e8ad
Binary files /dev/null and b/webp/restreamer.webp differ
diff --git a/webp/revolt-light.webp b/webp/revolt-light.webp
new file mode 100644
index 00000000..2130a330
Binary files /dev/null and b/webp/revolt-light.webp differ
diff --git a/webp/revolt.webp b/webp/revolt.webp
new file mode 100644
index 00000000..7ea7d05b
Binary files /dev/null and b/webp/revolt.webp differ
diff --git a/webp/rhasspy-dark.webp b/webp/rhasspy-dark.webp
new file mode 100644
index 00000000..69d53ba6
Binary files /dev/null and b/webp/rhasspy-dark.webp differ
diff --git a/webp/rhasspy.webp b/webp/rhasspy.webp
new file mode 100644
index 00000000..4d0978d6
Binary files /dev/null and b/webp/rhasspy.webp differ
diff --git a/webp/rhodecode.webp b/webp/rhodecode.webp
new file mode 100644
index 00000000..a134d0f0
Binary files /dev/null and b/webp/rhodecode.webp differ
diff --git a/webp/richy.webp b/webp/richy.webp
new file mode 100644
index 00000000..d2be0498
Binary files /dev/null and b/webp/richy.webp differ
diff --git a/webp/rimgo-light.webp b/webp/rimgo-light.webp
new file mode 100644
index 00000000..9d153522
Binary files /dev/null and b/webp/rimgo-light.webp differ
diff --git a/webp/rimgo.webp b/webp/rimgo.webp
new file mode 100644
index 00000000..e594730c
Binary files /dev/null and b/webp/rimgo.webp differ
diff --git a/webp/riot.webp b/webp/riot.webp
new file mode 100644
index 00000000..1a824cac
Binary files /dev/null and b/webp/riot.webp differ
diff --git a/webp/riverside-fm-light.webp b/webp/riverside-fm-light.webp
new file mode 100644
index 00000000..f692a7c0
Binary files /dev/null and b/webp/riverside-fm-light.webp differ
diff --git a/webp/riverside-fm.webp b/webp/riverside-fm.webp
new file mode 100644
index 00000000..a9791f9b
Binary files /dev/null and b/webp/riverside-fm.webp differ
diff --git a/webp/rocket-chat.webp b/webp/rocket-chat.webp
new file mode 100644
index 00000000..84f9afef
Binary files /dev/null and b/webp/rocket-chat.webp differ
diff --git a/webp/rocky-linux.webp b/webp/rocky-linux.webp
new file mode 100644
index 00000000..d4f26a20
Binary files /dev/null and b/webp/rocky-linux.webp differ
diff --git a/webp/romm.webp b/webp/romm.webp
new file mode 100644
index 00000000..f97e14d7
Binary files /dev/null and b/webp/romm.webp differ
diff --git a/webp/rook.webp b/webp/rook.webp
new file mode 100644
index 00000000..b5aabd45
Binary files /dev/null and b/webp/rook.webp differ
diff --git a/webp/roundcube.webp b/webp/roundcube.webp
new file mode 100644
index 00000000..595125ca
Binary files /dev/null and b/webp/roundcube.webp differ
diff --git a/webp/router.webp b/webp/router.webp
new file mode 100644
index 00000000..fba8555d
Binary files /dev/null and b/webp/router.webp differ
diff --git a/webp/rport.webp b/webp/rport.webp
new file mode 100644
index 00000000..c0756c70
Binary files /dev/null and b/webp/rport.webp differ
diff --git a/webp/rss-bridge.webp b/webp/rss-bridge.webp
new file mode 100644
index 00000000..78dfba13
Binary files /dev/null and b/webp/rss-bridge.webp differ
diff --git a/webp/rss-translator.webp b/webp/rss-translator.webp
new file mode 100644
index 00000000..0fa3a01f
Binary files /dev/null and b/webp/rss-translator.webp differ
diff --git a/webp/rstudio.webp b/webp/rstudio.webp
new file mode 100644
index 00000000..9cf8d521
Binary files /dev/null and b/webp/rstudio.webp differ
diff --git a/webp/rstudioserver.webp b/webp/rstudioserver.webp
new file mode 100644
index 00000000..9cf8d521
Binary files /dev/null and b/webp/rstudioserver.webp differ
diff --git a/webp/ruby.webp b/webp/ruby.webp
new file mode 100644
index 00000000..9bbc41cc
Binary files /dev/null and b/webp/ruby.webp differ
diff --git a/webp/rumble.webp b/webp/rumble.webp
new file mode 100644
index 00000000..648d3a76
Binary files /dev/null and b/webp/rumble.webp differ
diff --git a/webp/rundeck.webp b/webp/rundeck.webp
new file mode 100644
index 00000000..ed868304
Binary files /dev/null and b/webp/rundeck.webp differ
diff --git a/webp/runonflux.webp b/webp/runonflux.webp
new file mode 100644
index 00000000..a15c55a1
Binary files /dev/null and b/webp/runonflux.webp differ
diff --git a/webp/runson-light.webp b/webp/runson-light.webp
new file mode 100644
index 00000000..587dd5e2
Binary files /dev/null and b/webp/runson-light.webp differ
diff --git a/webp/runson.webp b/webp/runson.webp
new file mode 100644
index 00000000..7b547396
Binary files /dev/null and b/webp/runson.webp differ
diff --git a/webp/rust.webp b/webp/rust.webp
new file mode 100644
index 00000000..76f42e0c
Binary files /dev/null and b/webp/rust.webp differ
diff --git a/webp/rustdesk.webp b/webp/rustdesk.webp
new file mode 100644
index 00000000..436cfbcf
Binary files /dev/null and b/webp/rustdesk.webp differ
diff --git a/webp/rutorrent.webp b/webp/rutorrent.webp
new file mode 100644
index 00000000..f1ed22de
Binary files /dev/null and b/webp/rutorrent.webp differ
diff --git a/webp/ryot-light.webp b/webp/ryot-light.webp
new file mode 100644
index 00000000..887850f3
Binary files /dev/null and b/webp/ryot-light.webp differ
diff --git a/webp/ryot.webp b/webp/ryot.webp
new file mode 100644
index 00000000..5c0de8d7
Binary files /dev/null and b/webp/ryot.webp differ
diff --git a/webp/sabnzbd-light.webp b/webp/sabnzbd-light.webp
new file mode 100644
index 00000000..67ec706e
Binary files /dev/null and b/webp/sabnzbd-light.webp differ
diff --git a/webp/sabnzbd.webp b/webp/sabnzbd.webp
new file mode 100644
index 00000000..c9c02095
Binary files /dev/null and b/webp/sabnzbd.webp differ
diff --git a/webp/safari-ios.webp b/webp/safari-ios.webp
new file mode 100644
index 00000000..a37bff17
Binary files /dev/null and b/webp/safari-ios.webp differ
diff --git a/webp/safari.webp b/webp/safari.webp
new file mode 100644
index 00000000..a37bff17
Binary files /dev/null and b/webp/safari.webp differ
diff --git a/webp/saltcorn.webp b/webp/saltcorn.webp
new file mode 100644
index 00000000..fef85e1e
Binary files /dev/null and b/webp/saltcorn.webp differ
diff --git a/webp/samsung-internet.webp b/webp/samsung-internet.webp
new file mode 100644
index 00000000..658c5ba2
Binary files /dev/null and b/webp/samsung-internet.webp differ
diff --git a/webp/sandstorm.webp b/webp/sandstorm.webp
new file mode 100644
index 00000000..c321ddba
Binary files /dev/null and b/webp/sandstorm.webp differ
diff --git a/webp/screenconnect.webp b/webp/screenconnect.webp
new file mode 100644
index 00000000..472533ea
Binary files /dev/null and b/webp/screenconnect.webp differ
diff --git a/webp/scrutiny-light.webp b/webp/scrutiny-light.webp
new file mode 100644
index 00000000..0b1c2fdb
Binary files /dev/null and b/webp/scrutiny-light.webp differ
diff --git a/webp/scrutiny.webp b/webp/scrutiny.webp
new file mode 100644
index 00000000..1a8bbf18
Binary files /dev/null and b/webp/scrutiny.webp differ
diff --git a/webp/seafile.webp b/webp/seafile.webp
new file mode 100644
index 00000000..219b45ea
Binary files /dev/null and b/webp/seafile.webp differ
diff --git a/webp/searx.webp b/webp/searx.webp
new file mode 100644
index 00000000..b772adaa
Binary files /dev/null and b/webp/searx.webp differ
diff --git a/webp/searxng.webp b/webp/searxng.webp
new file mode 100644
index 00000000..21c8a6ed
Binary files /dev/null and b/webp/searxng.webp differ
diff --git a/webp/secureai-tools-light.webp b/webp/secureai-tools-light.webp
new file mode 100644
index 00000000..5996d055
Binary files /dev/null and b/webp/secureai-tools-light.webp differ
diff --git a/webp/secureai-tools.webp b/webp/secureai-tools.webp
new file mode 100644
index 00000000..b669e6bc
Binary files /dev/null and b/webp/secureai-tools.webp differ
diff --git a/webp/seelf.webp b/webp/seelf.webp
new file mode 100644
index 00000000..c1a6c676
Binary files /dev/null and b/webp/seelf.webp differ
diff --git a/webp/self-hosted-gateway.webp b/webp/self-hosted-gateway.webp
new file mode 100644
index 00000000..f00e013a
Binary files /dev/null and b/webp/self-hosted-gateway.webp differ
diff --git a/webp/selfh-st-light.webp b/webp/selfh-st-light.webp
new file mode 100644
index 00000000..10098e55
Binary files /dev/null and b/webp/selfh-st-light.webp differ
diff --git a/webp/selfh-st.webp b/webp/selfh-st.webp
new file mode 100644
index 00000000..ff491314
Binary files /dev/null and b/webp/selfh-st.webp differ
diff --git a/webp/semaphore-dark.webp b/webp/semaphore-dark.webp
new file mode 100644
index 00000000..a74f7589
Binary files /dev/null and b/webp/semaphore-dark.webp differ
diff --git a/webp/semaphore.webp b/webp/semaphore.webp
new file mode 100644
index 00000000..d628fbce
Binary files /dev/null and b/webp/semaphore.webp differ
diff --git a/webp/send.webp b/webp/send.webp
new file mode 100644
index 00000000..310f2953
Binary files /dev/null and b/webp/send.webp differ
diff --git a/webp/sendgrid.webp b/webp/sendgrid.webp
new file mode 100644
index 00000000..1215b63f
Binary files /dev/null and b/webp/sendgrid.webp differ
diff --git a/webp/sendinblue.webp b/webp/sendinblue.webp
new file mode 100644
index 00000000..1f317728
Binary files /dev/null and b/webp/sendinblue.webp differ
diff --git a/webp/sensu.webp b/webp/sensu.webp
new file mode 100644
index 00000000..2650c333
Binary files /dev/null and b/webp/sensu.webp differ
diff --git a/webp/sentry-light.webp b/webp/sentry-light.webp
new file mode 100644
index 00000000..eb965e17
Binary files /dev/null and b/webp/sentry-light.webp differ
diff --git a/webp/sentry.webp b/webp/sentry.webp
new file mode 100644
index 00000000..c1b5f884
Binary files /dev/null and b/webp/sentry.webp differ
diff --git a/webp/servarr-light.webp b/webp/servarr-light.webp
new file mode 100644
index 00000000..ef7cd272
Binary files /dev/null and b/webp/servarr-light.webp differ
diff --git a/webp/servarr.webp b/webp/servarr.webp
new file mode 100644
index 00000000..c32f76a3
Binary files /dev/null and b/webp/servarr.webp differ
diff --git a/webp/serviio-light.webp b/webp/serviio-light.webp
new file mode 100644
index 00000000..7bd66830
Binary files /dev/null and b/webp/serviio-light.webp differ
diff --git a/webp/serviio.webp b/webp/serviio.webp
new file mode 100644
index 00000000..95dfa883
Binary files /dev/null and b/webp/serviio.webp differ
diff --git a/webp/session.webp b/webp/session.webp
new file mode 100644
index 00000000..25d529d9
Binary files /dev/null and b/webp/session.webp differ
diff --git a/webp/shaarli.webp b/webp/shaarli.webp
new file mode 100644
index 00000000..e380c1f7
Binary files /dev/null and b/webp/shaarli.webp differ
diff --git a/webp/shell-light.webp b/webp/shell-light.webp
new file mode 100644
index 00000000..dc6519e0
Binary files /dev/null and b/webp/shell-light.webp differ
diff --git a/webp/shell-tips-light.webp b/webp/shell-tips-light.webp
new file mode 100644
index 00000000..9ffdc01f
Binary files /dev/null and b/webp/shell-tips-light.webp differ
diff --git a/webp/shell-tips.webp b/webp/shell-tips.webp
new file mode 100644
index 00000000..a6846c47
Binary files /dev/null and b/webp/shell-tips.webp differ
diff --git a/webp/shell.webp b/webp/shell.webp
new file mode 100644
index 00000000..d054cd41
Binary files /dev/null and b/webp/shell.webp differ
diff --git a/webp/shellhub.webp b/webp/shellhub.webp
new file mode 100644
index 00000000..76602de1
Binary files /dev/null and b/webp/shellhub.webp differ
diff --git a/webp/shellngn.webp b/webp/shellngn.webp
new file mode 100644
index 00000000..1fc70a24
Binary files /dev/null and b/webp/shellngn.webp differ
diff --git a/webp/shelly.webp b/webp/shelly.webp
new file mode 100644
index 00000000..5ca136aa
Binary files /dev/null and b/webp/shelly.webp differ
diff --git a/webp/shiori.webp b/webp/shiori.webp
new file mode 100644
index 00000000..be8860cd
Binary files /dev/null and b/webp/shiori.webp differ
diff --git a/webp/shlink.webp b/webp/shlink.webp
new file mode 100644
index 00000000..86ca3a26
Binary files /dev/null and b/webp/shlink.webp differ
diff --git a/webp/shoko-server.webp b/webp/shoko-server.webp
new file mode 100644
index 00000000..3e1d3cc2
Binary files /dev/null and b/webp/shoko-server.webp differ
diff --git a/webp/shoko.webp b/webp/shoko.webp
new file mode 100644
index 00000000..20579295
Binary files /dev/null and b/webp/shoko.webp differ
diff --git a/webp/shopify.webp b/webp/shopify.webp
new file mode 100644
index 00000000..1cf954d3
Binary files /dev/null and b/webp/shopify.webp differ
diff --git a/webp/sickbeard.webp b/webp/sickbeard.webp
new file mode 100644
index 00000000..e65de927
Binary files /dev/null and b/webp/sickbeard.webp differ
diff --git a/webp/signal.webp b/webp/signal.webp
new file mode 100644
index 00000000..5f5b26fa
Binary files /dev/null and b/webp/signal.webp differ
diff --git a/webp/sigstore.webp b/webp/sigstore.webp
new file mode 100644
index 00000000..0e7ddf55
Binary files /dev/null and b/webp/sigstore.webp differ
diff --git a/webp/simplelogin.webp b/webp/simplelogin.webp
new file mode 100644
index 00000000..49968643
Binary files /dev/null and b/webp/simplelogin.webp differ
diff --git a/webp/simplex-chat.webp b/webp/simplex-chat.webp
new file mode 100644
index 00000000..5252973d
Binary files /dev/null and b/webp/simplex-chat.webp differ
diff --git a/webp/sinusbot.webp b/webp/sinusbot.webp
new file mode 100644
index 00000000..436fc81f
Binary files /dev/null and b/webp/sinusbot.webp differ
diff --git a/webp/siyuan.webp b/webp/siyuan.webp
new file mode 100644
index 00000000..689e47e0
Binary files /dev/null and b/webp/siyuan.webp differ
diff --git a/webp/skype.webp b/webp/skype.webp
new file mode 100644
index 00000000..5b470a57
Binary files /dev/null and b/webp/skype.webp differ
diff --git a/webp/slack.webp b/webp/slack.webp
new file mode 100644
index 00000000..e376b359
Binary files /dev/null and b/webp/slack.webp differ
diff --git a/webp/slash-light.webp b/webp/slash-light.webp
new file mode 100644
index 00000000..015451ab
Binary files /dev/null and b/webp/slash-light.webp differ
diff --git a/webp/slash.webp b/webp/slash.webp
new file mode 100644
index 00000000..3bf414bb
Binary files /dev/null and b/webp/slash.webp differ
diff --git a/webp/slice.webp b/webp/slice.webp
new file mode 100644
index 00000000..693f1fe5
Binary files /dev/null and b/webp/slice.webp differ
diff --git a/webp/slidev.webp b/webp/slidev.webp
new file mode 100644
index 00000000..9a0f016f
Binary files /dev/null and b/webp/slidev.webp differ
diff --git a/webp/slskd.webp b/webp/slskd.webp
new file mode 100644
index 00000000..9ed4686c
Binary files /dev/null and b/webp/slskd.webp differ
diff --git a/webp/smartfox.webp b/webp/smartfox.webp
new file mode 100644
index 00000000..1db0f633
Binary files /dev/null and b/webp/smartfox.webp differ
diff --git a/webp/snapcast.webp b/webp/snapcast.webp
new file mode 100644
index 00000000..b6865c94
Binary files /dev/null and b/webp/snapcast.webp differ
diff --git a/webp/snapchat-dark.webp b/webp/snapchat-dark.webp
new file mode 100644
index 00000000..99f62713
Binary files /dev/null and b/webp/snapchat-dark.webp differ
diff --git a/webp/snapchat.webp b/webp/snapchat.webp
new file mode 100644
index 00000000..d711ee7e
Binary files /dev/null and b/webp/snapchat.webp differ
diff --git a/webp/snapdrop.webp b/webp/snapdrop.webp
new file mode 100644
index 00000000..0977686e
Binary files /dev/null and b/webp/snapdrop.webp differ
diff --git a/webp/snappymail-light.webp b/webp/snappymail-light.webp
new file mode 100644
index 00000000..322452e6
Binary files /dev/null and b/webp/snappymail-light.webp differ
diff --git a/webp/snappymail.webp b/webp/snappymail.webp
new file mode 100644
index 00000000..ee136324
Binary files /dev/null and b/webp/snappymail.webp differ
diff --git a/webp/snikket.webp b/webp/snikket.webp
new file mode 100644
index 00000000..3b6b3403
Binary files /dev/null and b/webp/snikket.webp differ
diff --git a/webp/socialhome.webp b/webp/socialhome.webp
new file mode 100644
index 00000000..8fae978c
Binary files /dev/null and b/webp/socialhome.webp differ
diff --git a/webp/sogo.webp b/webp/sogo.webp
new file mode 100644
index 00000000..b7ed6330
Binary files /dev/null and b/webp/sogo.webp differ
diff --git a/webp/solidtime-light.webp b/webp/solidtime-light.webp
new file mode 100644
index 00000000..9906b310
Binary files /dev/null and b/webp/solidtime-light.webp differ
diff --git a/webp/solidtime.webp b/webp/solidtime.webp
new file mode 100644
index 00000000..f6397d15
Binary files /dev/null and b/webp/solidtime.webp differ
diff --git a/webp/sonarqube.webp b/webp/sonarqube.webp
new file mode 100644
index 00000000..b040d06e
Binary files /dev/null and b/webp/sonarqube.webp differ
diff --git a/webp/sonarr-dark.webp b/webp/sonarr-dark.webp
new file mode 100644
index 00000000..4b2143e1
Binary files /dev/null and b/webp/sonarr-dark.webp differ
diff --git a/webp/sonarr.webp b/webp/sonarr.webp
new file mode 100644
index 00000000..75974668
Binary files /dev/null and b/webp/sonarr.webp differ
diff --git a/webp/sophos-dark.webp b/webp/sophos-dark.webp
new file mode 100644
index 00000000..d239d950
Binary files /dev/null and b/webp/sophos-dark.webp differ
diff --git a/webp/sophos.webp b/webp/sophos.webp
new file mode 100644
index 00000000..36275f05
Binary files /dev/null and b/webp/sophos.webp differ
diff --git a/webp/sourcegraph.webp b/webp/sourcegraph.webp
new file mode 100644
index 00000000..302e0f2b
Binary files /dev/null and b/webp/sourcegraph.webp differ
diff --git a/webp/spamassassin.webp b/webp/spamassassin.webp
new file mode 100644
index 00000000..9ccf0cfe
Binary files /dev/null and b/webp/spamassassin.webp differ
diff --git a/webp/sparkleshare.webp b/webp/sparkleshare.webp
new file mode 100644
index 00000000..42ab272f
Binary files /dev/null and b/webp/sparkleshare.webp differ
diff --git a/webp/specifically-clementines.webp b/webp/specifically-clementines.webp
new file mode 100644
index 00000000..884af7c6
Binary files /dev/null and b/webp/specifically-clementines.webp differ
diff --git a/webp/sphinx-doc.webp b/webp/sphinx-doc.webp
new file mode 100644
index 00000000..a909730b
Binary files /dev/null and b/webp/sphinx-doc.webp differ
diff --git a/webp/sphinx-relay.webp b/webp/sphinx-relay.webp
new file mode 100644
index 00000000..a14e0445
Binary files /dev/null and b/webp/sphinx-relay.webp differ
diff --git a/webp/sphinx.webp b/webp/sphinx.webp
new file mode 100644
index 00000000..a909730b
Binary files /dev/null and b/webp/sphinx.webp differ
diff --git a/webp/splunk.webp b/webp/splunk.webp
new file mode 100644
index 00000000..5c5f8f29
Binary files /dev/null and b/webp/splunk.webp differ
diff --git a/webp/spoolman.webp b/webp/spoolman.webp
new file mode 100644
index 00000000..f7107191
Binary files /dev/null and b/webp/spoolman.webp differ
diff --git a/webp/spotify.webp b/webp/spotify.webp
new file mode 100644
index 00000000..5964780a
Binary files /dev/null and b/webp/spotify.webp differ
diff --git a/webp/sqlitebrowser.webp b/webp/sqlitebrowser.webp
new file mode 100644
index 00000000..dc52916e
Binary files /dev/null and b/webp/sqlitebrowser.webp differ
diff --git a/webp/squidex.webp b/webp/squidex.webp
new file mode 100644
index 00000000..c3e8d980
Binary files /dev/null and b/webp/squidex.webp differ
diff --git a/webp/squirrel-servers-manager.webp b/webp/squirrel-servers-manager.webp
new file mode 100644
index 00000000..dbdb1b54
Binary files /dev/null and b/webp/squirrel-servers-manager.webp differ
diff --git a/webp/sshwifty.webp b/webp/sshwifty.webp
new file mode 100644
index 00000000..380b630d
Binary files /dev/null and b/webp/sshwifty.webp differ
diff --git a/webp/stalwart-mail-server.webp b/webp/stalwart-mail-server.webp
new file mode 100644
index 00000000..082b3fee
Binary files /dev/null and b/webp/stalwart-mail-server.webp differ
diff --git a/webp/stalwart.webp b/webp/stalwart.webp
new file mode 100644
index 00000000..b3d2dcd5
Binary files /dev/null and b/webp/stalwart.webp differ
diff --git a/webp/standard-notes.webp b/webp/standard-notes.webp
new file mode 100644
index 00000000..16bb81ed
Binary files /dev/null and b/webp/standard-notes.webp differ
diff --git a/webp/startpage.webp b/webp/startpage.webp
new file mode 100644
index 00000000..bc1ff0d9
Binary files /dev/null and b/webp/startpage.webp differ
diff --git a/webp/stash.webp b/webp/stash.webp
new file mode 100644
index 00000000..5e516ec7
Binary files /dev/null and b/webp/stash.webp differ
diff --git a/webp/stb-proxy.webp b/webp/stb-proxy.webp
new file mode 100644
index 00000000..039c9f0e
Binary files /dev/null and b/webp/stb-proxy.webp differ
diff --git a/webp/steam.webp b/webp/steam.webp
new file mode 100644
index 00000000..1f01e014
Binary files /dev/null and b/webp/steam.webp differ
diff --git a/webp/step-ca.webp b/webp/step-ca.webp
new file mode 100644
index 00000000..244cbe1b
Binary files /dev/null and b/webp/step-ca.webp differ
diff --git a/webp/stirling-pdf.webp b/webp/stirling-pdf.webp
new file mode 100644
index 00000000..137c675c
Binary files /dev/null and b/webp/stirling-pdf.webp differ
diff --git a/webp/storj.webp b/webp/storj.webp
new file mode 100644
index 00000000..8ede4bf5
Binary files /dev/null and b/webp/storj.webp differ
diff --git a/webp/storm.webp b/webp/storm.webp
new file mode 100644
index 00000000..644daf6f
Binary files /dev/null and b/webp/storm.webp differ
diff --git a/webp/stormkit.webp b/webp/stormkit.webp
new file mode 100644
index 00000000..bedbf928
Binary files /dev/null and b/webp/stormkit.webp differ
diff --git a/webp/strapi.webp b/webp/strapi.webp
new file mode 100644
index 00000000..78e47fda
Binary files /dev/null and b/webp/strapi.webp differ
diff --git a/webp/stremio.webp b/webp/stremio.webp
new file mode 100644
index 00000000..98aaab07
Binary files /dev/null and b/webp/stremio.webp differ
diff --git a/webp/stump-alt.webp b/webp/stump-alt.webp
new file mode 100644
index 00000000..e572b027
Binary files /dev/null and b/webp/stump-alt.webp differ
diff --git a/webp/stump.webp b/webp/stump.webp
new file mode 100644
index 00000000..20c89a43
Binary files /dev/null and b/webp/stump.webp differ
diff --git a/webp/subatic.webp b/webp/subatic.webp
new file mode 100644
index 00000000..0e072fd9
Binary files /dev/null and b/webp/subatic.webp differ
diff --git a/webp/sunshine.webp b/webp/sunshine.webp
new file mode 100644
index 00000000..3f3189c7
Binary files /dev/null and b/webp/sunshine.webp differ
diff --git a/webp/supabase.webp b/webp/supabase.webp
new file mode 100644
index 00000000..4d6311eb
Binary files /dev/null and b/webp/supabase.webp differ
diff --git a/webp/supermicro.webp b/webp/supermicro.webp
new file mode 100644
index 00000000..eae2b6b1
Binary files /dev/null and b/webp/supermicro.webp differ
diff --git a/webp/surveymonkey.webp b/webp/surveymonkey.webp
new file mode 100644
index 00000000..96ed6893
Binary files /dev/null and b/webp/surveymonkey.webp differ
diff --git a/webp/swarmpit.webp b/webp/swarmpit.webp
new file mode 100644
index 00000000..78f4838f
Binary files /dev/null and b/webp/swarmpit.webp differ
diff --git a/webp/swift.webp b/webp/swift.webp
new file mode 100644
index 00000000..1c27c085
Binary files /dev/null and b/webp/swift.webp differ
diff --git a/webp/symmetricom-light.webp b/webp/symmetricom-light.webp
new file mode 100644
index 00000000..303b2550
Binary files /dev/null and b/webp/symmetricom-light.webp differ
diff --git a/webp/symmetricom.webp b/webp/symmetricom.webp
new file mode 100644
index 00000000..64172376
Binary files /dev/null and b/webp/symmetricom.webp differ
diff --git a/webp/synapse-light.webp b/webp/synapse-light.webp
new file mode 100644
index 00000000..b9ee37e0
Binary files /dev/null and b/webp/synapse-light.webp differ
diff --git a/webp/synapse.webp b/webp/synapse.webp
new file mode 100644
index 00000000..1128e25d
Binary files /dev/null and b/webp/synapse.webp differ
diff --git a/webp/syncthing-dark.webp b/webp/syncthing-dark.webp
new file mode 100644
index 00000000..6b53a695
Binary files /dev/null and b/webp/syncthing-dark.webp differ
diff --git a/webp/syncthing.webp b/webp/syncthing.webp
new file mode 100644
index 00000000..fb38526b
Binary files /dev/null and b/webp/syncthing.webp differ
diff --git a/webp/synology-dsm.webp b/webp/synology-dsm.webp
new file mode 100644
index 00000000..053d3543
Binary files /dev/null and b/webp/synology-dsm.webp differ
diff --git a/webp/synology-light.webp b/webp/synology-light.webp
new file mode 100644
index 00000000..da0820c3
Binary files /dev/null and b/webp/synology-light.webp differ
diff --git a/webp/synology.webp b/webp/synology.webp
new file mode 100644
index 00000000..2d80a618
Binary files /dev/null and b/webp/synology.webp differ
diff --git a/webp/sysreptor.webp b/webp/sysreptor.webp
new file mode 100644
index 00000000..176a595a
Binary files /dev/null and b/webp/sysreptor.webp differ
diff --git a/webp/tabula.webp b/webp/tabula.webp
new file mode 100644
index 00000000..cb8952c0
Binary files /dev/null and b/webp/tabula.webp differ
diff --git a/webp/tacticalrmm.webp b/webp/tacticalrmm.webp
new file mode 100644
index 00000000..f0db89a5
Binary files /dev/null and b/webp/tacticalrmm.webp differ
diff --git a/webp/taiga.webp b/webp/taiga.webp
new file mode 100644
index 00000000..ce193575
Binary files /dev/null and b/webp/taiga.webp differ
diff --git a/webp/tailscale-light.webp b/webp/tailscale-light.webp
new file mode 100644
index 00000000..059116bf
Binary files /dev/null and b/webp/tailscale-light.webp differ
diff --git a/webp/tailscale.webp b/webp/tailscale.webp
new file mode 100644
index 00000000..b36f4942
Binary files /dev/null and b/webp/tailscale.webp differ
diff --git a/webp/talos.webp b/webp/talos.webp
new file mode 100644
index 00000000..54821be6
Binary files /dev/null and b/webp/talos.webp differ
diff --git a/webp/tandoor-recipes.webp b/webp/tandoor-recipes.webp
new file mode 100644
index 00000000..81fb37c9
Binary files /dev/null and b/webp/tandoor-recipes.webp differ
diff --git a/webp/tangerine-ui.webp b/webp/tangerine-ui.webp
new file mode 100644
index 00000000..2d13d051
Binary files /dev/null and b/webp/tangerine-ui.webp differ
diff --git a/webp/taskcafe.webp b/webp/taskcafe.webp
new file mode 100644
index 00000000..7f84aa64
Binary files /dev/null and b/webp/taskcafe.webp differ
diff --git a/webp/tasmota-light.webp b/webp/tasmota-light.webp
new file mode 100644
index 00000000..8a4adcf2
Binary files /dev/null and b/webp/tasmota-light.webp differ
diff --git a/webp/tasmota.webp b/webp/tasmota.webp
new file mode 100644
index 00000000..51b5ec93
Binary files /dev/null and b/webp/tasmota.webp differ
diff --git a/webp/tautulli.webp b/webp/tautulli.webp
new file mode 100644
index 00000000..d95843fd
Binary files /dev/null and b/webp/tautulli.webp differ
diff --git a/webp/teamcity-light.webp b/webp/teamcity-light.webp
new file mode 100644
index 00000000..ff0065b7
Binary files /dev/null and b/webp/teamcity-light.webp differ
diff --git a/webp/teamcity.webp b/webp/teamcity.webp
new file mode 100644
index 00000000..c28e9d51
Binary files /dev/null and b/webp/teamcity.webp differ
diff --git a/webp/teamspeak.webp b/webp/teamspeak.webp
new file mode 100644
index 00000000..e2280349
Binary files /dev/null and b/webp/teamspeak.webp differ
diff --git a/webp/telegraf.webp b/webp/telegraf.webp
new file mode 100644
index 00000000..f2dd7653
Binary files /dev/null and b/webp/telegraf.webp differ
diff --git a/webp/telegram.webp b/webp/telegram.webp
new file mode 100644
index 00000000..f79b4b55
Binary files /dev/null and b/webp/telegram.webp differ
diff --git a/webp/telekom.webp b/webp/telekom.webp
new file mode 100644
index 00000000..cb6db4fc
Binary files /dev/null and b/webp/telekom.webp differ
diff --git a/webp/teleport.webp b/webp/teleport.webp
new file mode 100644
index 00000000..0c438e67
Binary files /dev/null and b/webp/teleport.webp differ
diff --git a/webp/tenda.webp b/webp/tenda.webp
new file mode 100644
index 00000000..7ae03ca2
Binary files /dev/null and b/webp/tenda.webp differ
diff --git a/webp/terminal.webp b/webp/terminal.webp
new file mode 100644
index 00000000..65352dd6
Binary files /dev/null and b/webp/terminal.webp differ
diff --git a/webp/terraform.webp b/webp/terraform.webp
new file mode 100644
index 00000000..f74afa9a
Binary files /dev/null and b/webp/terraform.webp differ
diff --git a/webp/teslamate-light.webp b/webp/teslamate-light.webp
new file mode 100644
index 00000000..f14c0068
Binary files /dev/null and b/webp/teslamate-light.webp differ
diff --git a/webp/teslamate.webp b/webp/teslamate.webp
new file mode 100644
index 00000000..a6086e91
Binary files /dev/null and b/webp/teslamate.webp differ
diff --git a/webp/thanos.webp b/webp/thanos.webp
new file mode 100644
index 00000000..d96e0c16
Binary files /dev/null and b/webp/thanos.webp differ
diff --git a/webp/the-pirate-bay.webp b/webp/the-pirate-bay.webp
new file mode 100644
index 00000000..65b4ec18
Binary files /dev/null and b/webp/the-pirate-bay.webp differ
diff --git a/webp/the-proxy-bay.webp b/webp/the-proxy-bay.webp
new file mode 100644
index 00000000..65b4ec18
Binary files /dev/null and b/webp/the-proxy-bay.webp differ
diff --git a/webp/theia-light.webp b/webp/theia-light.webp
new file mode 100644
index 00000000..964e0b90
Binary files /dev/null and b/webp/theia-light.webp differ
diff --git a/webp/theia.webp b/webp/theia.webp
new file mode 100644
index 00000000..b4b2f853
Binary files /dev/null and b/webp/theia.webp differ
diff --git a/webp/thelounge.webp b/webp/thelounge.webp
new file mode 100644
index 00000000..e70888d1
Binary files /dev/null and b/webp/thelounge.webp differ
diff --git a/webp/theodinproject.webp b/webp/theodinproject.webp
new file mode 100644
index 00000000..80ba38e2
Binary files /dev/null and b/webp/theodinproject.webp differ
diff --git a/webp/thingsboard.webp b/webp/thingsboard.webp
new file mode 100644
index 00000000..467ea969
Binary files /dev/null and b/webp/thingsboard.webp differ
diff --git a/webp/threads-light.webp b/webp/threads-light.webp
new file mode 100644
index 00000000..95b0d39c
Binary files /dev/null and b/webp/threads-light.webp differ
diff --git a/webp/threads.webp b/webp/threads.webp
new file mode 100644
index 00000000..684920f0
Binary files /dev/null and b/webp/threads.webp differ
diff --git a/webp/thunderbird.webp b/webp/thunderbird.webp
new file mode 100644
index 00000000..9a77694e
Binary files /dev/null and b/webp/thunderbird.webp differ
diff --git a/webp/tianji-light.webp b/webp/tianji-light.webp
new file mode 100644
index 00000000..ce1a8433
Binary files /dev/null and b/webp/tianji-light.webp differ
diff --git a/webp/tianji.webp b/webp/tianji.webp
new file mode 100644
index 00000000..6b40ad21
Binary files /dev/null and b/webp/tianji.webp differ
diff --git a/webp/tiddlywiki-light.webp b/webp/tiddlywiki-light.webp
new file mode 100644
index 00000000..5615202f
Binary files /dev/null and b/webp/tiddlywiki-light.webp differ
diff --git a/webp/tiddlywiki.webp b/webp/tiddlywiki.webp
new file mode 100644
index 00000000..07856fcd
Binary files /dev/null and b/webp/tiddlywiki.webp differ
diff --git a/webp/tiktok-light.webp b/webp/tiktok-light.webp
new file mode 100644
index 00000000..81387e42
Binary files /dev/null and b/webp/tiktok-light.webp differ
diff --git a/webp/tiktok.webp b/webp/tiktok.webp
new file mode 100644
index 00000000..67fbb393
Binary files /dev/null and b/webp/tiktok.webp differ
diff --git a/webp/timetagger-light.webp b/webp/timetagger-light.webp
new file mode 100644
index 00000000..de70ad94
Binary files /dev/null and b/webp/timetagger-light.webp differ
diff --git a/webp/timetagger.webp b/webp/timetagger.webp
new file mode 100644
index 00000000..aa8237d0
Binary files /dev/null and b/webp/timetagger.webp differ
diff --git a/webp/tmdb.webp b/webp/tmdb.webp
new file mode 100644
index 00000000..2f4224a1
Binary files /dev/null and b/webp/tmdb.webp differ
diff --git a/webp/todoist-dark.webp b/webp/todoist-dark.webp
new file mode 100644
index 00000000..5bd103cd
Binary files /dev/null and b/webp/todoist-dark.webp differ
diff --git a/webp/todoist.webp b/webp/todoist.webp
new file mode 100644
index 00000000..ba7fd017
Binary files /dev/null and b/webp/todoist.webp differ
diff --git a/webp/tolgee.webp b/webp/tolgee.webp
new file mode 100644
index 00000000..dc63d8d2
Binary files /dev/null and b/webp/tolgee.webp differ
diff --git a/webp/tooljet-dark.webp b/webp/tooljet-dark.webp
new file mode 100644
index 00000000..89eaa655
Binary files /dev/null and b/webp/tooljet-dark.webp differ
diff --git a/webp/tooljet.webp b/webp/tooljet.webp
new file mode 100644
index 00000000..d5749a03
Binary files /dev/null and b/webp/tooljet.webp differ
diff --git a/webp/touitomamout.webp b/webp/touitomamout.webp
new file mode 100644
index 00000000..75032956
Binary files /dev/null and b/webp/touitomamout.webp differ
diff --git a/webp/tp-link.webp b/webp/tp-link.webp
new file mode 100644
index 00000000..1a4932b3
Binary files /dev/null and b/webp/tp-link.webp differ
diff --git a/webp/tpdb.webp b/webp/tpdb.webp
new file mode 100644
index 00000000..b81bcdc6
Binary files /dev/null and b/webp/tpdb.webp differ
diff --git a/webp/traccar-dark.webp b/webp/traccar-dark.webp
new file mode 100644
index 00000000..48c4c55e
Binary files /dev/null and b/webp/traccar-dark.webp differ
diff --git a/webp/traccar.webp b/webp/traccar.webp
new file mode 100644
index 00000000..328009cc
Binary files /dev/null and b/webp/traccar.webp differ
diff --git a/webp/traefik-proxy.webp b/webp/traefik-proxy.webp
new file mode 100644
index 00000000..128c4587
Binary files /dev/null and b/webp/traefik-proxy.webp differ
diff --git a/webp/traefik.webp b/webp/traefik.webp
new file mode 100644
index 00000000..64ebf539
Binary files /dev/null and b/webp/traefik.webp differ
diff --git a/webp/traggo.webp b/webp/traggo.webp
new file mode 100644
index 00000000..0b346ceb
Binary files /dev/null and b/webp/traggo.webp differ
diff --git a/webp/trakt.webp b/webp/trakt.webp
new file mode 100644
index 00000000..47a3e75d
Binary files /dev/null and b/webp/trakt.webp differ
diff --git a/webp/transmission.webp b/webp/transmission.webp
new file mode 100644
index 00000000..9d2fc8ed
Binary files /dev/null and b/webp/transmission.webp differ
diff --git a/webp/trilium.webp b/webp/trilium.webp
new file mode 100644
index 00000000..d3e86db0
Binary files /dev/null and b/webp/trilium.webp differ
diff --git a/webp/triliumnext.webp b/webp/triliumnext.webp
new file mode 100644
index 00000000..b32323b7
Binary files /dev/null and b/webp/triliumnext.webp differ
diff --git a/webp/truenas-core.webp b/webp/truenas-core.webp
new file mode 100644
index 00000000..1019cac1
Binary files /dev/null and b/webp/truenas-core.webp differ
diff --git a/webp/truenas-scale.webp b/webp/truenas-scale.webp
new file mode 100644
index 00000000..517af23f
Binary files /dev/null and b/webp/truenas-scale.webp differ
diff --git a/webp/truenas.webp b/webp/truenas.webp
new file mode 100644
index 00000000..87a9cb84
Binary files /dev/null and b/webp/truenas.webp differ
diff --git a/webp/tubesync-light.webp b/webp/tubesync-light.webp
new file mode 100644
index 00000000..9aa4d1dd
Binary files /dev/null and b/webp/tubesync-light.webp differ
diff --git a/webp/tubesync.webp b/webp/tubesync.webp
new file mode 100644
index 00000000..77dceac2
Binary files /dev/null and b/webp/tubesync.webp differ
diff --git a/webp/tumblr.webp b/webp/tumblr.webp
new file mode 100644
index 00000000..583b0811
Binary files /dev/null and b/webp/tumblr.webp differ
diff --git a/webp/turbopack-light.webp b/webp/turbopack-light.webp
new file mode 100644
index 00000000..f69a8ed2
Binary files /dev/null and b/webp/turbopack-light.webp differ
diff --git a/webp/turbopack.webp b/webp/turbopack.webp
new file mode 100644
index 00000000..9db032df
Binary files /dev/null and b/webp/turbopack.webp differ
diff --git a/webp/tux.webp b/webp/tux.webp
new file mode 100644
index 00000000..4a9a7e1d
Binary files /dev/null and b/webp/tux.webp differ
diff --git a/webp/tvdb.webp b/webp/tvdb.webp
new file mode 100644
index 00000000..80773414
Binary files /dev/null and b/webp/tvdb.webp differ
diff --git a/webp/tvheadend.webp b/webp/tvheadend.webp
new file mode 100644
index 00000000..4e5c8b01
Binary files /dev/null and b/webp/tvheadend.webp differ
diff --git a/webp/twingate-light.webp b/webp/twingate-light.webp
new file mode 100644
index 00000000..ef433020
Binary files /dev/null and b/webp/twingate-light.webp differ
diff --git a/webp/twingate.webp b/webp/twingate.webp
new file mode 100644
index 00000000..dab0a38f
Binary files /dev/null and b/webp/twingate.webp differ
diff --git a/webp/twitch.webp b/webp/twitch.webp
new file mode 100644
index 00000000..de696bb2
Binary files /dev/null and b/webp/twitch.webp differ
diff --git a/webp/twitter.webp b/webp/twitter.webp
new file mode 100644
index 00000000..2cd6a883
Binary files /dev/null and b/webp/twitter.webp differ
diff --git a/webp/typemill-light.webp b/webp/typemill-light.webp
new file mode 100644
index 00000000..e6f78cf9
Binary files /dev/null and b/webp/typemill-light.webp differ
diff --git a/webp/typemill.webp b/webp/typemill.webp
new file mode 100644
index 00000000..a43cddf6
Binary files /dev/null and b/webp/typemill.webp differ
diff --git a/webp/typescript.webp b/webp/typescript.webp
new file mode 100644
index 00000000..65a5ba10
Binary files /dev/null and b/webp/typescript.webp differ
diff --git a/webp/typo3.webp b/webp/typo3.webp
new file mode 100644
index 00000000..1ad1f331
Binary files /dev/null and b/webp/typo3.webp differ
diff --git a/webp/ubiquiti-networks.webp b/webp/ubiquiti-networks.webp
new file mode 100644
index 00000000..c71292f1
Binary files /dev/null and b/webp/ubiquiti-networks.webp differ
diff --git a/webp/ubiquiti-unifi.webp b/webp/ubiquiti-unifi.webp
new file mode 100644
index 00000000..199e4516
Binary files /dev/null and b/webp/ubiquiti-unifi.webp differ
diff --git a/webp/ubiquiti.webp b/webp/ubiquiti.webp
new file mode 100644
index 00000000..c71292f1
Binary files /dev/null and b/webp/ubiquiti.webp differ
diff --git a/webp/ubuntu-linux-alt.webp b/webp/ubuntu-linux-alt.webp
new file mode 100644
index 00000000..371b34de
Binary files /dev/null and b/webp/ubuntu-linux-alt.webp differ
diff --git a/webp/ubuntu-linux.webp b/webp/ubuntu-linux.webp
new file mode 100644
index 00000000..e9aa84b8
Binary files /dev/null and b/webp/ubuntu-linux.webp differ
diff --git a/webp/uc-browser.webp b/webp/uc-browser.webp
new file mode 100644
index 00000000..79f6af58
Binary files /dev/null and b/webp/uc-browser.webp differ
diff --git a/webp/udemy-light.webp b/webp/udemy-light.webp
new file mode 100644
index 00000000..26254876
Binary files /dev/null and b/webp/udemy-light.webp differ
diff --git a/webp/udemy.webp b/webp/udemy.webp
new file mode 100644
index 00000000..89de6d19
Binary files /dev/null and b/webp/udemy.webp differ
diff --git a/webp/ultimate-guitar-light.webp b/webp/ultimate-guitar-light.webp
new file mode 100644
index 00000000..57857ed4
Binary files /dev/null and b/webp/ultimate-guitar-light.webp differ
diff --git a/webp/ultimate-guitar.webp b/webp/ultimate-guitar.webp
new file mode 100644
index 00000000..055acde5
Binary files /dev/null and b/webp/ultimate-guitar.webp differ
diff --git a/webp/umami-light.webp b/webp/umami-light.webp
new file mode 100644
index 00000000..51b4b7ad
Binary files /dev/null and b/webp/umami-light.webp differ
diff --git a/webp/umami.webp b/webp/umami.webp
new file mode 100644
index 00000000..3515a048
Binary files /dev/null and b/webp/umami.webp differ
diff --git a/webp/umbrel.webp b/webp/umbrel.webp
new file mode 100644
index 00000000..739efdee
Binary files /dev/null and b/webp/umbrel.webp differ
diff --git a/webp/unbound.webp b/webp/unbound.webp
new file mode 100644
index 00000000..c64c8b2c
Binary files /dev/null and b/webp/unbound.webp differ
diff --git a/webp/undb.webp b/webp/undb.webp
new file mode 100644
index 00000000..2dc6a763
Binary files /dev/null and b/webp/undb.webp differ
diff --git a/webp/unifi-dark.webp b/webp/unifi-dark.webp
new file mode 100644
index 00000000..febd14d0
Binary files /dev/null and b/webp/unifi-dark.webp differ
diff --git a/webp/unifi-voucher-site.webp b/webp/unifi-voucher-site.webp
new file mode 100644
index 00000000..13725265
Binary files /dev/null and b/webp/unifi-voucher-site.webp differ
diff --git a/webp/unifi.webp b/webp/unifi.webp
new file mode 100644
index 00000000..c71292f1
Binary files /dev/null and b/webp/unifi.webp differ
diff --git a/webp/unimus.webp b/webp/unimus.webp
new file mode 100644
index 00000000..bcf31a8a
Binary files /dev/null and b/webp/unimus.webp differ
diff --git a/webp/unraid.webp b/webp/unraid.webp
new file mode 100644
index 00000000..65204f3f
Binary files /dev/null and b/webp/unraid.webp differ
diff --git a/webp/untangle.webp b/webp/untangle.webp
new file mode 100644
index 00000000..bf655247
Binary files /dev/null and b/webp/untangle.webp differ
diff --git a/webp/ups.webp b/webp/ups.webp
new file mode 100644
index 00000000..a6c25373
Binary files /dev/null and b/webp/ups.webp differ
diff --git a/webp/upsnap.webp b/webp/upsnap.webp
new file mode 100644
index 00000000..495c4167
Binary files /dev/null and b/webp/upsnap.webp differ
diff --git a/webp/uptime-kuma.webp b/webp/uptime-kuma.webp
new file mode 100644
index 00000000..dca95694
Binary files /dev/null and b/webp/uptime-kuma.webp differ
diff --git a/webp/valetudo.webp b/webp/valetudo.webp
new file mode 100644
index 00000000..c4bffbbb
Binary files /dev/null and b/webp/valetudo.webp differ
diff --git a/webp/valkey.webp b/webp/valkey.webp
new file mode 100644
index 00000000..89b222ce
Binary files /dev/null and b/webp/valkey.webp differ
diff --git a/webp/vault-light.webp b/webp/vault-light.webp
new file mode 100644
index 00000000..e9de6a18
Binary files /dev/null and b/webp/vault-light.webp differ
diff --git a/webp/vault.webp b/webp/vault.webp
new file mode 100644
index 00000000..e151e437
Binary files /dev/null and b/webp/vault.webp differ
diff --git a/webp/vaultwarden-light.webp b/webp/vaultwarden-light.webp
new file mode 100644
index 00000000..e1ad2388
Binary files /dev/null and b/webp/vaultwarden-light.webp differ
diff --git a/webp/vaultwarden.webp b/webp/vaultwarden.webp
new file mode 100644
index 00000000..7913f2d4
Binary files /dev/null and b/webp/vaultwarden.webp differ
diff --git a/webp/vector.webp b/webp/vector.webp
new file mode 100644
index 00000000..c203549e
Binary files /dev/null and b/webp/vector.webp differ
diff --git a/webp/veeam.webp b/webp/veeam.webp
new file mode 100644
index 00000000..c917cd5b
Binary files /dev/null and b/webp/veeam.webp differ
diff --git a/webp/vercel-light.webp b/webp/vercel-light.webp
new file mode 100644
index 00000000..f134a6ea
Binary files /dev/null and b/webp/vercel-light.webp differ
diff --git a/webp/vercel.webp b/webp/vercel.webp
new file mode 100644
index 00000000..a2b0de77
Binary files /dev/null and b/webp/vercel.webp differ
diff --git a/webp/verizon.webp b/webp/verizon.webp
new file mode 100644
index 00000000..c34cc24b
Binary files /dev/null and b/webp/verizon.webp differ
diff --git a/webp/vi.webp b/webp/vi.webp
new file mode 100644
index 00000000..9ee49ef8
Binary files /dev/null and b/webp/vi.webp differ
diff --git a/webp/victoriametrics-light.webp b/webp/victoriametrics-light.webp
new file mode 100644
index 00000000..43154148
Binary files /dev/null and b/webp/victoriametrics-light.webp differ
diff --git a/webp/victoriametrics.webp b/webp/victoriametrics.webp
new file mode 100644
index 00000000..5587f562
Binary files /dev/null and b/webp/victoriametrics.webp differ
diff --git a/webp/vidzy.webp b/webp/vidzy.webp
new file mode 100644
index 00000000..3512197b
Binary files /dev/null and b/webp/vidzy.webp differ
diff --git a/webp/viewtube.webp b/webp/viewtube.webp
new file mode 100644
index 00000000..4c534382
Binary files /dev/null and b/webp/viewtube.webp differ
diff --git a/webp/vikunja.webp b/webp/vikunja.webp
new file mode 100644
index 00000000..3edd75ef
Binary files /dev/null and b/webp/vikunja.webp differ
diff --git a/webp/virgin-media.webp b/webp/virgin-media.webp
new file mode 100644
index 00000000..3df6f569
Binary files /dev/null and b/webp/virgin-media.webp differ
diff --git a/webp/virtualmin.webp b/webp/virtualmin.webp
new file mode 100644
index 00000000..17d23e41
Binary files /dev/null and b/webp/virtualmin.webp differ
diff --git a/webp/viseron-light.webp b/webp/viseron-light.webp
new file mode 100644
index 00000000..1a2f814a
Binary files /dev/null and b/webp/viseron-light.webp differ
diff --git a/webp/viseron.webp b/webp/viseron.webp
new file mode 100644
index 00000000..7cbb0f3f
Binary files /dev/null and b/webp/viseron.webp differ
diff --git a/webp/visual-studio-code.webp b/webp/visual-studio-code.webp
new file mode 100644
index 00000000..e42ee524
Binary files /dev/null and b/webp/visual-studio-code.webp differ
diff --git a/webp/vivaldi.webp b/webp/vivaldi.webp
new file mode 100644
index 00000000..e0d7bced
Binary files /dev/null and b/webp/vivaldi.webp differ
diff --git a/webp/vmware-esxi.webp b/webp/vmware-esxi.webp
new file mode 100644
index 00000000..b5cdf2b4
Binary files /dev/null and b/webp/vmware-esxi.webp differ
diff --git a/webp/vmware-workstation.webp b/webp/vmware-workstation.webp
new file mode 100644
index 00000000..eb5c5f1c
Binary files /dev/null and b/webp/vmware-workstation.webp differ
diff --git a/webp/vmware.webp b/webp/vmware.webp
new file mode 100644
index 00000000..cb6ecc12
Binary files /dev/null and b/webp/vmware.webp differ
diff --git a/webp/voilib.webp b/webp/voilib.webp
new file mode 100644
index 00000000..89eaa6d8
Binary files /dev/null and b/webp/voilib.webp differ
diff --git a/webp/voip-ms.webp b/webp/voip-ms.webp
new file mode 100644
index 00000000..7a6bab42
Binary files /dev/null and b/webp/voip-ms.webp differ
diff --git a/webp/voltaserve-light.webp b/webp/voltaserve-light.webp
new file mode 100644
index 00000000..3d814e50
Binary files /dev/null and b/webp/voltaserve-light.webp differ
diff --git a/webp/voltaserve.webp b/webp/voltaserve.webp
new file mode 100644
index 00000000..a478fe27
Binary files /dev/null and b/webp/voltaserve.webp differ
diff --git a/webp/volumio-light.webp b/webp/volumio-light.webp
new file mode 100644
index 00000000..c5b914f7
Binary files /dev/null and b/webp/volumio-light.webp differ
diff --git a/webp/volumio.webp b/webp/volumio.webp
new file mode 100644
index 00000000..8c68a1f0
Binary files /dev/null and b/webp/volumio.webp differ
diff --git a/webp/voron.webp b/webp/voron.webp
new file mode 100644
index 00000000..887ea3e9
Binary files /dev/null and b/webp/voron.webp differ
diff --git a/webp/vscode.webp b/webp/vscode.webp
new file mode 100644
index 00000000..b2f73ff1
Binary files /dev/null and b/webp/vscode.webp differ
diff --git a/webp/vuetorrent.webp b/webp/vuetorrent.webp
new file mode 100644
index 00000000..51f45266
Binary files /dev/null and b/webp/vuetorrent.webp differ
diff --git a/webp/vultr.webp b/webp/vultr.webp
new file mode 100644
index 00000000..883e41cc
Binary files /dev/null and b/webp/vultr.webp differ
diff --git a/webp/wakapi.webp b/webp/wakapi.webp
new file mode 100644
index 00000000..7aa6083e
Binary files /dev/null and b/webp/wakapi.webp differ
diff --git a/webp/wakatime-light.webp b/webp/wakatime-light.webp
new file mode 100644
index 00000000..f65bf750
Binary files /dev/null and b/webp/wakatime-light.webp differ
diff --git a/webp/wakatime.webp b/webp/wakatime.webp
new file mode 100644
index 00000000..3f37f3fe
Binary files /dev/null and b/webp/wakatime.webp differ
diff --git a/webp/wallabag-light.webp b/webp/wallabag-light.webp
new file mode 100644
index 00000000..7bf9856d
Binary files /dev/null and b/webp/wallabag-light.webp differ
diff --git a/webp/wallabag.webp b/webp/wallabag.webp
new file mode 100644
index 00000000..feec349c
Binary files /dev/null and b/webp/wallabag.webp differ
diff --git a/webp/wanderer-light.webp b/webp/wanderer-light.webp
new file mode 100644
index 00000000..996e430d
Binary files /dev/null and b/webp/wanderer-light.webp differ
diff --git a/webp/wanderer.webp b/webp/wanderer.webp
new file mode 100644
index 00000000..c27b74f9
Binary files /dev/null and b/webp/wanderer.webp differ
diff --git a/webp/warpgate.webp b/webp/warpgate.webp
new file mode 100644
index 00000000..f274f10b
Binary files /dev/null and b/webp/warpgate.webp differ
diff --git a/webp/watcharr-light.webp b/webp/watcharr-light.webp
new file mode 100644
index 00000000..4fe3dc9c
Binary files /dev/null and b/webp/watcharr-light.webp differ
diff --git a/webp/watcharr.webp b/webp/watcharr.webp
new file mode 100644
index 00000000..cc03f88e
Binary files /dev/null and b/webp/watcharr.webp differ
diff --git a/webp/watchtower.webp b/webp/watchtower.webp
new file mode 100644
index 00000000..b6013c5c
Binary files /dev/null and b/webp/watchtower.webp differ
diff --git a/webp/waze.webp b/webp/waze.webp
new file mode 100644
index 00000000..0f77a6d3
Binary files /dev/null and b/webp/waze.webp differ
diff --git a/webp/wazuh.webp b/webp/wazuh.webp
new file mode 100644
index 00000000..56895544
Binary files /dev/null and b/webp/wazuh.webp differ
diff --git a/webp/web-check-dark.webp b/webp/web-check-dark.webp
new file mode 100644
index 00000000..e8447e87
Binary files /dev/null and b/webp/web-check-dark.webp differ
diff --git a/webp/web-check.webp b/webp/web-check.webp
new file mode 100644
index 00000000..d6ab927e
Binary files /dev/null and b/webp/web-check.webp differ
diff --git a/webp/webhook.webp b/webp/webhook.webp
new file mode 100644
index 00000000..a5fe95f7
Binary files /dev/null and b/webp/webhook.webp differ
diff --git a/webp/webhookd.webp b/webp/webhookd.webp
new file mode 100644
index 00000000..60024002
Binary files /dev/null and b/webp/webhookd.webp differ
diff --git a/webp/webkit.webp b/webp/webkit.webp
new file mode 100644
index 00000000..1228acd7
Binary files /dev/null and b/webp/webkit.webp differ
diff --git a/webp/webmin.webp b/webp/webmin.webp
new file mode 100644
index 00000000..f363865a
Binary files /dev/null and b/webp/webmin.webp differ
diff --git a/webp/webtorrent.webp b/webp/webtorrent.webp
new file mode 100644
index 00000000..2c86cce4
Binary files /dev/null and b/webp/webtorrent.webp differ
diff --git a/webp/webtrees.webp b/webp/webtrees.webp
new file mode 100644
index 00000000..99f5f2fe
Binary files /dev/null and b/webp/webtrees.webp differ
diff --git a/webp/wekan.webp b/webp/wekan.webp
new file mode 100644
index 00000000..d7dcefdf
Binary files /dev/null and b/webp/wekan.webp differ
diff --git a/webp/wger.webp b/webp/wger.webp
new file mode 100644
index 00000000..4605e7c8
Binary files /dev/null and b/webp/wger.webp differ
diff --git a/webp/whats-up-docker-light.webp b/webp/whats-up-docker-light.webp
new file mode 100644
index 00000000..c98b36b9
Binary files /dev/null and b/webp/whats-up-docker-light.webp differ
diff --git a/webp/whats-up-docker.webp b/webp/whats-up-docker.webp
new file mode 100644
index 00000000..2435272c
Binary files /dev/null and b/webp/whats-up-docker.webp differ
diff --git a/webp/whatsapp.webp b/webp/whatsapp.webp
new file mode 100644
index 00000000..6970c2c2
Binary files /dev/null and b/webp/whatsapp.webp differ
diff --git a/webp/whisparr.webp b/webp/whisparr.webp
new file mode 100644
index 00000000..f130c9ab
Binary files /dev/null and b/webp/whisparr.webp differ
diff --git a/webp/wikidocs.webp b/webp/wikidocs.webp
new file mode 100644
index 00000000..86d3208c
Binary files /dev/null and b/webp/wikidocs.webp differ
diff --git a/webp/wikijs-alt.webp b/webp/wikijs-alt.webp
new file mode 100644
index 00000000..5b995700
Binary files /dev/null and b/webp/wikijs-alt.webp differ
diff --git a/webp/wikijs.webp b/webp/wikijs.webp
new file mode 100644
index 00000000..91d44574
Binary files /dev/null and b/webp/wikijs.webp differ
diff --git a/webp/wikipedia-light.webp b/webp/wikipedia-light.webp
new file mode 100644
index 00000000..a018b28a
Binary files /dev/null and b/webp/wikipedia-light.webp differ
diff --git a/webp/wikipedia.webp b/webp/wikipedia.webp
new file mode 100644
index 00000000..71b0d23c
Binary files /dev/null and b/webp/wikipedia.webp differ
diff --git a/webp/willow.webp b/webp/willow.webp
new file mode 100644
index 00000000..60c66e86
Binary files /dev/null and b/webp/willow.webp differ
diff --git a/webp/windmill.webp b/webp/windmill.webp
new file mode 100644
index 00000000..04d4939b
Binary files /dev/null and b/webp/windmill.webp differ
diff --git a/webp/windows-10.webp b/webp/windows-10.webp
new file mode 100644
index 00000000..3678cedf
Binary files /dev/null and b/webp/windows-10.webp differ
diff --git a/webp/windows-95-light.webp b/webp/windows-95-light.webp
new file mode 100644
index 00000000..f4cae4b0
Binary files /dev/null and b/webp/windows-95-light.webp differ
diff --git a/webp/windows-95.webp b/webp/windows-95.webp
new file mode 100644
index 00000000..ccffbd90
Binary files /dev/null and b/webp/windows-95.webp differ
diff --git a/webp/windows-retro-light.webp b/webp/windows-retro-light.webp
new file mode 100644
index 00000000..f47d7bdd
Binary files /dev/null and b/webp/windows-retro-light.webp differ
diff --git a/webp/windows-retro.webp b/webp/windows-retro.webp
new file mode 100644
index 00000000..6843bf08
Binary files /dev/null and b/webp/windows-retro.webp differ
diff --git a/webp/wireguard.webp b/webp/wireguard.webp
new file mode 100644
index 00000000..94f310a0
Binary files /dev/null and b/webp/wireguard.webp differ
diff --git a/webp/wizarr.webp b/webp/wizarr.webp
new file mode 100644
index 00000000..1618c4a9
Binary files /dev/null and b/webp/wizarr.webp differ
diff --git a/webp/wolfi-light.webp b/webp/wolfi-light.webp
new file mode 100644
index 00000000..2c3250f7
Binary files /dev/null and b/webp/wolfi-light.webp differ
diff --git a/webp/wolfi.webp b/webp/wolfi.webp
new file mode 100644
index 00000000..a21fcadb
Binary files /dev/null and b/webp/wolfi.webp differ
diff --git a/webp/woocommerce.webp b/webp/woocommerce.webp
new file mode 100644
index 00000000..c4b6802c
Binary files /dev/null and b/webp/woocommerce.webp differ
diff --git a/webp/woodpecker-ci.webp b/webp/woodpecker-ci.webp
new file mode 100644
index 00000000..9fb0aaa6
Binary files /dev/null and b/webp/woodpecker-ci.webp differ
diff --git a/webp/wordpress.webp b/webp/wordpress.webp
new file mode 100644
index 00000000..2e5f335a
Binary files /dev/null and b/webp/wordpress.webp differ
diff --git a/webp/worklenz.webp b/webp/worklenz.webp
new file mode 100644
index 00000000..762df862
Binary files /dev/null and b/webp/worklenz.webp differ
diff --git a/webp/wotdle-light.webp b/webp/wotdle-light.webp
new file mode 100644
index 00000000..884d6531
Binary files /dev/null and b/webp/wotdle-light.webp differ
diff --git a/webp/wotdle.webp b/webp/wotdle.webp
new file mode 100644
index 00000000..24e025ad
Binary files /dev/null and b/webp/wotdle.webp differ
diff --git a/webp/wownero.webp b/webp/wownero.webp
new file mode 100644
index 00000000..e8bf829a
Binary files /dev/null and b/webp/wownero.webp differ
diff --git a/webp/writefreely-light.webp b/webp/writefreely-light.webp
new file mode 100644
index 00000000..706b7111
Binary files /dev/null and b/webp/writefreely-light.webp differ
diff --git a/webp/writefreely.webp b/webp/writefreely.webp
new file mode 100644
index 00000000..41b8f6ff
Binary files /dev/null and b/webp/writefreely.webp differ
diff --git a/webp/x-light.webp b/webp/x-light.webp
new file mode 100644
index 00000000..46ad33a0
Binary files /dev/null and b/webp/x-light.webp differ
diff --git a/webp/x.webp b/webp/x.webp
new file mode 100644
index 00000000..4e6a89d0
Binary files /dev/null and b/webp/x.webp differ
diff --git a/webp/xbackbone.webp b/webp/xbackbone.webp
new file mode 100644
index 00000000..9fa9b9fc
Binary files /dev/null and b/webp/xbackbone.webp differ
diff --git a/webp/xbox-game-pass.webp b/webp/xbox-game-pass.webp
new file mode 100644
index 00000000..3d9b06a8
Binary files /dev/null and b/webp/xbox-game-pass.webp differ
diff --git a/webp/xbox.webp b/webp/xbox.webp
new file mode 100644
index 00000000..f23fdab2
Binary files /dev/null and b/webp/xbox.webp differ
diff --git a/webp/xbrowsersync.webp b/webp/xbrowsersync.webp
new file mode 100644
index 00000000..e7a286f8
Binary files /dev/null and b/webp/xbrowsersync.webp differ
diff --git a/webp/xmr.webp b/webp/xmr.webp
new file mode 100644
index 00000000..da3bd483
Binary files /dev/null and b/webp/xmr.webp differ
diff --git a/webp/xmrig.webp b/webp/xmrig.webp
new file mode 100644
index 00000000..72c15531
Binary files /dev/null and b/webp/xmrig.webp differ
diff --git a/webp/xpipe.webp b/webp/xpipe.webp
new file mode 100644
index 00000000..d6826f3f
Binary files /dev/null and b/webp/xpipe.webp differ
diff --git a/webp/xwiki.webp b/webp/xwiki.webp
new file mode 100644
index 00000000..5d70c371
Binary files /dev/null and b/webp/xwiki.webp differ
diff --git a/webp/yacht.webp b/webp/yacht.webp
new file mode 100644
index 00000000..620c5c54
Binary files /dev/null and b/webp/yacht.webp differ
diff --git a/webp/yahoo.webp b/webp/yahoo.webp
new file mode 100644
index 00000000..190f9c35
Binary files /dev/null and b/webp/yahoo.webp differ
diff --git a/webp/yamtrack-light.webp b/webp/yamtrack-light.webp
new file mode 100644
index 00000000..2249cf85
Binary files /dev/null and b/webp/yamtrack-light.webp differ
diff --git a/webp/yamtrack.webp b/webp/yamtrack.webp
new file mode 100644
index 00000000..eca72172
Binary files /dev/null and b/webp/yamtrack.webp differ
diff --git a/webp/yandex.webp b/webp/yandex.webp
new file mode 100644
index 00000000..71f60ca4
Binary files /dev/null and b/webp/yandex.webp differ
diff --git a/webp/yarr-light.webp b/webp/yarr-light.webp
new file mode 100644
index 00000000..54e4ce1f
Binary files /dev/null and b/webp/yarr-light.webp differ
diff --git a/webp/yarr.webp b/webp/yarr.webp
new file mode 100644
index 00000000..c46a59fc
Binary files /dev/null and b/webp/yarr.webp differ
diff --git a/webp/ycombinator-dark.webp b/webp/ycombinator-dark.webp
new file mode 100644
index 00000000..20794f35
Binary files /dev/null and b/webp/ycombinator-dark.webp differ
diff --git a/webp/ycombinator.webp b/webp/ycombinator.webp
new file mode 100644
index 00000000..7769f1f3
Binary files /dev/null and b/webp/ycombinator.webp differ
diff --git a/webp/ynab.webp b/webp/ynab.webp
new file mode 100644
index 00000000..ba603ac9
Binary files /dev/null and b/webp/ynab.webp differ
diff --git a/webp/your-spotify.webp b/webp/your-spotify.webp
new file mode 100644
index 00000000..dab49e0f
Binary files /dev/null and b/webp/your-spotify.webp differ
diff --git a/webp/yourls.webp b/webp/yourls.webp
new file mode 100644
index 00000000..a9163db0
Binary files /dev/null and b/webp/yourls.webp differ
diff --git a/webp/youtube-dl.webp b/webp/youtube-dl.webp
new file mode 100644
index 00000000..9d88650e
Binary files /dev/null and b/webp/youtube-dl.webp differ
diff --git a/webp/youtube-kids.webp b/webp/youtube-kids.webp
new file mode 100644
index 00000000..fc82d36e
Binary files /dev/null and b/webp/youtube-kids.webp differ
diff --git a/webp/youtube-music.webp b/webp/youtube-music.webp
new file mode 100644
index 00000000..5252bb5c
Binary files /dev/null and b/webp/youtube-music.webp differ
diff --git a/webp/youtube.webp b/webp/youtube.webp
new file mode 100644
index 00000000..12bf065a
Binary files /dev/null and b/webp/youtube.webp differ
diff --git a/webp/yts.webp b/webp/yts.webp
new file mode 100644
index 00000000..e56ce854
Binary files /dev/null and b/webp/yts.webp differ
diff --git a/webp/yuno-host-light.webp b/webp/yuno-host-light.webp
new file mode 100644
index 00000000..038a72be
Binary files /dev/null and b/webp/yuno-host-light.webp differ
diff --git a/webp/yunohost.webp b/webp/yunohost.webp
new file mode 100644
index 00000000..fc826b28
Binary files /dev/null and b/webp/yunohost.webp differ
diff --git a/webp/z-wave-js-ui.webp b/webp/z-wave-js-ui.webp
new file mode 100644
index 00000000..b3223335
Binary files /dev/null and b/webp/z-wave-js-ui.webp differ
diff --git a/webp/zabbix.webp b/webp/zabbix.webp
new file mode 100644
index 00000000..fa843d3b
Binary files /dev/null and b/webp/zabbix.webp differ
diff --git a/webp/zabka.webp b/webp/zabka.webp
new file mode 100644
index 00000000..1712903a
Binary files /dev/null and b/webp/zabka.webp differ
diff --git a/webp/zammad.webp b/webp/zammad.webp
new file mode 100644
index 00000000..814f237a
Binary files /dev/null and b/webp/zammad.webp differ
diff --git a/webp/zendesk.webp b/webp/zendesk.webp
new file mode 100644
index 00000000..11c57e18
Binary files /dev/null and b/webp/zendesk.webp differ
diff --git a/webp/zerotier-light.webp b/webp/zerotier-light.webp
new file mode 100644
index 00000000..862f80ce
Binary files /dev/null and b/webp/zerotier-light.webp differ
diff --git a/webp/zerotier.webp b/webp/zerotier.webp
new file mode 100644
index 00000000..1c15a3f1
Binary files /dev/null and b/webp/zerotier.webp differ
diff --git a/webp/zigbee2mqtt-light.webp b/webp/zigbee2mqtt-light.webp
new file mode 100644
index 00000000..98743a4b
Binary files /dev/null and b/webp/zigbee2mqtt-light.webp differ
diff --git a/webp/zigbee2mqtt.webp b/webp/zigbee2mqtt.webp
new file mode 100644
index 00000000..e61746ea
Binary files /dev/null and b/webp/zigbee2mqtt.webp differ
diff --git a/webp/zipcaptions.webp b/webp/zipcaptions.webp
new file mode 100644
index 00000000..42b6ae5f
Binary files /dev/null and b/webp/zipcaptions.webp differ
diff --git a/webp/zipline-light.webp b/webp/zipline-light.webp
new file mode 100644
index 00000000..53a7ac40
Binary files /dev/null and b/webp/zipline-light.webp differ
diff --git a/webp/zipline.webp b/webp/zipline.webp
new file mode 100644
index 00000000..57a858ba
Binary files /dev/null and b/webp/zipline.webp differ
diff --git a/webp/zitadel-light.webp b/webp/zitadel-light.webp
new file mode 100644
index 00000000..a4776eb8
Binary files /dev/null and b/webp/zitadel-light.webp differ
diff --git a/webp/zitadel.webp b/webp/zitadel.webp
new file mode 100644
index 00000000..45242190
Binary files /dev/null and b/webp/zitadel.webp differ
diff --git a/webp/zohomail.webp b/webp/zohomail.webp
new file mode 100644
index 00000000..4a07b695
Binary files /dev/null and b/webp/zohomail.webp differ
diff --git a/webp/zoom-alt.webp b/webp/zoom-alt.webp
new file mode 100644
index 00000000..028b5bbd
Binary files /dev/null and b/webp/zoom-alt.webp differ
diff --git a/webp/zoom.webp b/webp/zoom.webp
new file mode 100644
index 00000000..d63903fe
Binary files /dev/null and b/webp/zoom.webp differ
diff --git a/webp/zoraxy.webp b/webp/zoraxy.webp
new file mode 100644
index 00000000..14860d6f
Binary files /dev/null and b/webp/zoraxy.webp differ
diff --git a/webp/zulip.webp b/webp/zulip.webp
new file mode 100644
index 00000000..3d74f505
Binary files /dev/null and b/webp/zulip.webp differ
diff --git a/webp/zyxel-communications-light.webp b/webp/zyxel-communications-light.webp
new file mode 100644
index 00000000..7fafed4f
Binary files /dev/null and b/webp/zyxel-communications-light.webp differ
diff --git a/webp/zyxel-communications.webp b/webp/zyxel-communications.webp
new file mode 100644
index 00000000..46ef66ea
Binary files /dev/null and b/webp/zyxel-communications.webp differ
diff --git a/webp/zyxel-networks-light.webp b/webp/zyxel-networks-light.webp
new file mode 100644
index 00000000..64408880
Binary files /dev/null and b/webp/zyxel-networks-light.webp differ
diff --git a/webp/zyxel-networks.webp b/webp/zyxel-networks.webp
new file mode 100644
index 00000000..2c71fed3
Binary files /dev/null and b/webp/zyxel-networks.webp differ