commit 1612d10bb1e9742e501d9a3fe6720e9533b44ad7 Author: root Date: Wed Dec 3 16:46:11 2025 +0000 Initial commit diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..cf940b2 --- /dev/null +++ b/.env.example @@ -0,0 +1,8 @@ +# Geben Sie hier Ihre Anmeldedaten für den Admin-Bereich ein +# Ändern Sie diese Werte unbedingt in etwas Sicheres! +ADMIN_USERNAME=admin +ADMIN_PASSWORD=password + +# Ändern Sie diesen Schlüssel in eine lange, zufällige Zeichenfolge. +# Sie können zum Beispiel 'openssl rand -hex 32' in Ihrem Terminal ausführen, um einen zu generieren. +SECRET_KEY=super_secret_key_change_me \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a564b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Environment variables +.env + +# Python +__pycache__/ +*.pyc +*.pyo +*.pyd +.Python +env/ +venv/ diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..a60fb7e --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,21 @@ +FROM python:3.9-slim + +# Installation der Bildverarbeitungs-Abhängigkeiten (Wichtig für Pillow) +RUN apt-get update && apt-get install -y \ + libjpeg-dev \ + zlib1g-dev \ + libfreetype6-dev \ + liblcms2-dev \ + libwebp-dev \ + tcl-dev \ + tk-dev \ + && rm -rf /var/lib/apt/lists/* + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +CMD ["python", "app.py"] diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..fde1c35 --- /dev/null +++ b/app/app.py @@ -0,0 +1,843 @@ +from flask import Flask, render_template, request, redirect, url_for, jsonify, session, flash +from urllib.parse import urljoin +import requests +import urllib3 +import json +import sys +import time +import os +import uuid +from werkzeug.utils import secure_filename +from PIL import Image +from functools import wraps +from flask_sqlalchemy import SQLAlchemy +from sqlalchemy import func + +# Disable SSL warnings for local services +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +app = Flask(__name__) +UPLOAD_FOLDER = '/app/static/uploads' +ALLOWED_EXTENSIONS = {'png', 'jpg', 'jpeg', 'gif', 'svg', 'webp'} + +app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER +app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////data/dashboard.db' +app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False +app.secret_key = os.environ.get('SECRET_KEY', 'a-secure-default-secret-key-for-development-only') +db = SQLAlchemy(app) + +# --- Caching for Status Checks --- +URL_CACHE = {} +CACHE_DURATION = 300 # 5 minutes + +# --- Custom Filters --- +@app.template_filter('json_loads') +def json_loads_filter(s): + if not s: return {} + try: + return json.loads(s) + except Exception: + return {} + +# --- Database Models --- + +class Setting(db.Model): + key = db.Column(db.String(50), primary_key=True) + value = db.Column(db.String(255)) + +class Page(db.Model): + id = db.Column(db.Integer, primary_key=True) + name = db.Column(db.String(100), nullable=False) + icon = db.Column(db.String(255)) + order = db.Column(db.Integer, default=0) + groups = db.relationship('Group', backref='page', lazy=True, cascade="all, delete-orphan", order_by="Group.order") + widgets = db.relationship('Widget', backref='page', lazy=True, cascade="all, delete-orphan", order_by="Widget.order") + +class Group(db.Model): + id = db.Column(db.Integer, primary_key=True) + name = db.Column(db.String(100), nullable=False) + icon = db.Column(db.String(255)) + order = db.Column(db.Integer, default=0) + page_id = db.Column(db.Integer, db.ForeignKey('page.id'), nullable=False) + links = db.relationship('Link', backref='group', lazy=True, cascade="all, delete-orphan", order_by="Link.order") + +class Link(db.Model): + id = db.Column(db.Integer, primary_key=True) + name = db.Column(db.String(100), nullable=False) + url = db.Column(db.String(255), nullable=False) + icon = db.Column(db.String(255)) + subtitle = db.Column(db.String(255)) + target = db.Column(db.String(20), default='_self') + order = db.Column(db.Integer, default=0) + group_id = db.Column(db.Integer, db.ForeignKey('group.id'), nullable=False) + +class Widget(db.Model): + id = db.Column(db.Integer, primary_key=True) + type = db.Column(db.String(50), nullable=False) # e.g., 'pihole_status', 'openmeteo_weather', 'iframe_widget' + config = db.Column(db.Text, nullable=True) # JSON-formatted string + order = db.Column(db.Integer, default=0) + page_id = db.Column(db.Integer, db.ForeignKey('page.id'), nullable=False) # Changed from group_id to page_id + +def migrate_db(): + from sqlalchemy import text + with app.app_context(): + db.create_all() + try: + with db.engine.connect() as conn: + # Check Page order + try: + conn.execute(text("SELECT \"order\" FROM page LIMIT 1")) + except Exception: + print("Migrating DB: Adding order column to Page") + conn.execute(text("ALTER TABLE page ADD COLUMN \"order\" INTEGER DEFAULT 0")) + conn.commit() + + # Check Group order + try: + conn.execute(text("SELECT \"order\" FROM \"group\" LIMIT 1")) + except Exception: + print("Migrating DB: Adding order column to Group") + conn.execute(text("ALTER TABLE \"group\" ADD COLUMN \"order\" INTEGER DEFAULT 0")) + conn.commit() + + # Check Link order + try: + conn.execute(text("SELECT \"order\" FROM link LIMIT 1")) + except Exception: + print("Migrating DB: Adding order column to Link") + conn.execute(text("ALTER TABLE link ADD COLUMN \"order\" INTEGER DEFAULT 0")) + conn.commit() + + # Check Widget page_id migration and Cleanup group_id + try: + # Check if group_id still exists by trying to select it + conn.execute(text("SELECT group_id FROM widget LIMIT 1")) + print("Migrating DB: Removing group_id from Widget (Recreating Table)") + + # 1. Create new table + conn.execute(text(""" + CREATE TABLE widget_new ( + id INTEGER NOT NULL, + type VARCHAR(50) NOT NULL, + config TEXT, + "order" INTEGER, + page_id INTEGER NOT NULL, + PRIMARY KEY (id), + FOREIGN KEY(page_id) REFERENCES page (id) + ) + """)) + + # 2. Copy data + # If page_id was already populated by previous migration, use it. + # If not (failed partial migration), try to derive from group. + # We try to copy page_id first. + try: + conn.execute(text("INSERT INTO widget_new (id, type, config, \"order\", page_id) SELECT id, type, config, \"order\", page_id FROM widget WHERE page_id IS NOT NULL")) + except Exception: + # Fallback: Calculate page_id from group_id link if page_id was missing/null + conn.execute(text("INSERT INTO widget_new (id, type, config, \"order\", page_id) SELECT w.id, w.type, w.config, w.\"order\", g.page_id FROM widget w JOIN \"group\" g ON w.group_id = g.id")) + + # 3. Drop old table + conn.execute(text("DROP TABLE widget")) + + # 4. Rename new table + conn.execute(text("ALTER TABLE widget_new RENAME TO widget")) + + conn.commit() + print("Widget table migrated and cleaned successfully.") + + except Exception as e: + # If group_id doesn't exist, we assume table is already clean or check logic is different + # But we should ensure page_id exists + try: + conn.execute(text("SELECT page_id FROM widget LIMIT 1")) + except: + print(f"Deep migration error: {e}") + + # Check Widget order + try: + conn.execute(text("SELECT \"order\" FROM widget LIMIT 1")) + except Exception: + print("Migrating DB: Adding order column to Widget") + conn.execute(text("ALTER TABLE widget ADD COLUMN \"order\" INTEGER DEFAULT 0")) + conn.commit() + + except Exception as e: + print(f"Migration general warning: {e}") + +migrate_db() + + +# --- Authentication --- + +def login_required(f): + @wraps(f) + def decorated_function(*args, **kwargs): + if not session.get('logged_in'): + return redirect(url_for('login', next=request.url)) + return f(*args, **kwargs) + return decorated_function + +@app.route('/login', methods=['GET', 'POST']) +def login(): + if request.method == 'POST': + username = request.form['username'] + password = request.form['password'] + if username == os.environ.get('ADMIN_USERNAME') and password == os.environ.get('ADMIN_PASSWORD'): + session['logged_in'] = True + flash('Login erfolgreich!', 'success') + next_url = request.args.get('next') + return redirect(next_url or url_for('admin')) + else: + flash('Falscher Benutzername oder Passwort.', 'danger') + return render_template('login.html') + +@app.route('/logout') +def logout(): + session.pop('logged_in', None) + flash('Du wurdest ausgeloggt.', 'info') + return redirect(url_for('index')) + + +# --- Helper & Image Processing --- + +def allowed_file(filename): + return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS + +def save_and_scale_icon(request_file): + if request_file and request_file.filename != '' and allowed_file(request_file.filename): + try: + unique_filename = f"icon_{uuid.uuid4().hex}.png" + temp_path = os.path.join(app.config['UPLOAD_FOLDER'], unique_filename) + img = Image.open(request_file.stream) + img = img.resize((48, 48), Image.Resampling.LANCZOS) + if img.mode != 'RGBA': img = img.convert('RGBA') + img.save(temp_path, 'PNG') + return unique_filename + except Exception as e: + print(f"Fehler bei der Bildverarbeitung: {e}") + return None + return None + +def save_background_or_logo(request_file, prefix): + if request_file and request_file.filename != '' and allowed_file(request_file.filename): + try: + filename = secure_filename(f"{prefix}_{request_file.filename}") + filepath = os.path.join(app.config['UPLOAD_FOLDER'], filename) + request_file.save(filepath) + return filename + except Exception as e: + print(f"Fehler beim Speichern: {e}") + return None + + +# --- Database Helper --- + +def get_all_data(): + settings_query = Setting.query.all() + settings = {s.key: s.value for s in settings_query} + + defaults = default_settings() + for key, value in defaults.items(): + if key not in settings: + settings[key] = value + + pages = Page.query.order_by(Page.order).all() + + return { + "settings": settings, + "pages": pages + } + +def default_settings(): + return { + "title": "Mein Dashboard", + "bg_image": "", + "logo_image": "", + "header_color": "#363636", + "header_font_color": "#FFFFFF", + "header_inactive_font_color": "#C0C0C0", + "group_title_font_color": "#FFFFFF", + "columns": "is-one-quarter-desktop", + "theme_color": "#3273dc", + "overlay_opacity": "0.85" + } + + +# --- Routes --- + +def hex_to_rgb(hex_color): + hex_color = hex_color.lstrip('#') + return ",".join(str(int(hex_color[i:i+2], 16)) for i in (0, 2, 4)) + +@app.route('/') +def index(): + data = get_all_data() + if not data['pages']: + return render_template('empty.html') + + active_page_index = request.args.get('page', 0, type=int) + if active_page_index >= len(data['pages']): + active_page_index = 0 + + active_page = data['pages'][active_page_index] + + if 'group_bg_color' in data['settings']: + data['settings']['group_bg_color_rgb'] = hex_to_rgb(data['settings']['group_bg_color']) + + return render_template('index.html', data=data, active_page=active_page, active_index=active_page_index) + +@app.route('/admin') +@login_required +def admin(): + data = get_all_data() + return render_template('admin.html', data=data) + +@app.route('/admin/local_icons') +@login_required +def local_icons(): + return jsonify([f for f in os.listdir(UPLOAD_FOLDER) if f.startswith('icon_') or f.startswith('upload_') or f.startswith('link_')]) + +@app.route('/admin/media_manager') +@login_required +def media_manager(): + files = [] + for f in os.listdir(UPLOAD_FOLDER): + filepath = os.path.join(UPLOAD_FOLDER, f) + try: + if os.path.isfile(filepath): + files.append({ + 'name': f, + 'size': f"{os.path.getsize(filepath) / 1024:.2f} KB", + 'type': 'Icon' if f.startswith('icon_') else 'Hintergrund' if f.startswith('bg_') else 'Logo' if f.startswith('logo_') else 'Unbekannt' + }) + except Exception as e: + continue + return render_template('media.html', files=files) + +def _update_setting(key, value): + setting = Setting.query.filter_by(key=key).first() + if setting: + setting.value = value + else: + db.session.add(Setting(key=key, value=value)) + +@app.route('/admin/update_settings', methods=['POST']) +@login_required +def update_settings(): + for key, value in request.form.items(): + _update_setting(key, value) + + bg_filename = save_background_or_logo(request.files.get('bg_file'), 'bg') + if bg_filename: + _update_setting('bg_image', bg_filename) + + logo_filename = save_background_or_logo(request.files.get('logo_file'), 'logo') + if logo_filename: + _update_setting('logo_image', logo_filename) + + _update_setting('settings_configured', 'true') + + db.session.commit() + flash('Einstellungen gespeichert!', 'success') + return redirect(url_for('admin', tab='settings')) + +@app.route('/admin/delete_media/') +@login_required +def delete_media(filename): + if '..' in filename or os.path.sep in filename: + return "Ungültiger Dateiname", 400 + + filepath = os.path.join(app.config['UPLOAD_FOLDER'], filename) + if os.path.exists(filepath): + os.remove(filepath) + + # Check if this file was used as the background or logo + bg_setting = Setting.query.filter_by(key='bg_image', value=filename).first() + if bg_setting: + bg_setting.value = "" + + logo_setting = Setting.query.filter_by(key='logo_image', value=filename).first() + if logo_setting: + logo_setting.value = "" + + db.session.commit() + flash(f'Datei {filename} gelöscht.', 'info') + return redirect(url_for('media_manager')) + +# --- CRUD Routes (Pages, Groups, Links, Widgets) --- + +@app.route('/admin/add_page', methods=['POST']) +@login_required +def add_page(): + name = request.form.get('name') + if name: + icon_val = save_and_scale_icon(request.files.get('icon_file')) or request.form.get('icon_text', '') + new_page = Page(name=name, icon=icon_val) + db.session.add(new_page) + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/delete_page/') +@login_required +def delete_page(page_id): + page = Page.query.get_or_404(page_id) + db.session.delete(page) + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/add_group/', methods=['POST']) +@login_required +def add_group(page_id): + page = Page.query.get_or_404(page_id) + name = request.form.get('name') + if name: + icon_val = save_and_scale_icon(request.files.get('icon_file')) or request.form.get('icon_text', '') + new_group = Group(name=name, icon=icon_val, page_id=page.id) + db.session.add(new_group) + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/delete_group/') +@login_required +def delete_group(group_id): + group = Group.query.get_or_404(group_id) + db.session.delete(group) + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/add_link/', methods=['POST']) +@login_required +def add_link(group_id): + group = Group.query.get_or_404(group_id) + name = request.form.get('name') + url = request.form.get('url') + if name and url: + icon_val = save_and_scale_icon(request.files.get('icon_file')) or request.form.get('icon_text', '') + new_link = Link( + name=name, + url=url, + icon=icon_val, + subtitle=request.form.get('subtitle'), + target=request.form.get('target', '_blank'), + group_id=group.id + ) + db.session.add(new_link) + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/delete_link/') +@login_required +def delete_link(link_id): + link = Link.query.get_or_404(link_id) + db.session.delete(link) + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/add_widget/', methods=['POST']) +@login_required +def add_widget(page_id): + widget_type = request.form.get('type') + if not widget_type: + flash('Widget-Typ nicht angegeben.', 'danger') + return redirect(url_for('admin')) + + config = {} + if widget_type == 'pihole_status': + config = { + 'api_url': request.form.get('pihole_api_url'), + 'api_key': request.form.get('pihole_api_key') + } + elif widget_type == 'openmeteo_weather': + config = { + 'latitude': request.form.get('weather_lat'), + 'longitude': request.form.get('weather_lon') + } + elif widget_type == 'iframe_widget': + config = { + 'url': request.form.get('iframe_url'), + 'height': request.form.get('iframe_height') + } + + new_widget = Widget( + page_id=page_id, + type=widget_type, + config=json.dumps(config) + ) + db.session.add(new_widget) + db.session.commit() + flash('Widget erfolgreich hinzugefügt!', 'success') + return redirect(url_for('admin')) + +@app.route('/admin/edit_widget/', methods=['POST']) +@login_required +def edit_widget(widget_id): + widget = Widget.query.get_or_404(widget_id) + + config = {} + if widget.type == 'pihole_status': + config = { + 'api_url': request.form.get('pihole_api_url'), + 'api_key': request.form.get('pihole_api_key') + } + elif widget.type == 'openmeteo_weather': + config = { + 'latitude': request.form.get('weather_lat'), + 'longitude': request.form.get('weather_lon') + } + elif widget.type == 'iframe_widget': + config = { + 'url': request.form.get('iframe_url'), + 'height': request.form.get('iframe_height') + } + + widget.config = json.dumps(config) + db.session.commit() + flash('Widget erfolgreich aktualisiert!', 'success') + return redirect(url_for('admin')) + +@app.route('/admin/delete_widget/') +@login_required +def delete_widget(widget_id): + widget = Widget.query.get_or_404(widget_id) + db.session.delete(widget) + db.session.commit() + flash('Widget gelöscht.', 'info') + return redirect(url_for('admin')) + +@app.route('/admin/edit_link/', methods=['POST']) +@login_required +def edit_link(link_id): + link = Link.query.get_or_404(link_id) + link.name = request.form.get('name') + link.url = request.form.get('url') + link.subtitle = request.form.get('subtitle') + link.target = request.form.get('target') + + new_group_id = request.form.get('group_id') + if new_group_id and int(new_group_id) != link.group_id: + link.group_id = int(new_group_id) + + new_icon_file = save_and_scale_icon(request.files.get('icon_file')) + new_icon_text = request.form.get('icon_text') + + if new_icon_file: + link.icon = new_icon_file + elif new_icon_text: + link.icon = new_icon_text + + db.session.commit() + return redirect(url_for('admin')) + +@app.route('/admin/edit_page/', methods=['POST']) +@login_required +def edit_page(page_id): + page = Page.query.get_or_404(page_id) + page.name = request.form.get('name') + + new_icon_file = save_and_scale_icon(request.files.get('icon_file')) + new_icon_text = request.form.get('icon_text') + + if new_icon_file: + page.icon = new_icon_file + elif new_icon_text or 'icon_text' in request.form: + page.icon = new_icon_text + + db.session.commit() + flash('Seite erfolgreich aktualisiert!', 'success') + return redirect(url_for('admin')) + +@app.route('/admin/edit_group/', methods=['POST']) +@login_required +def edit_group(group_id): + group = Group.query.get_or_404(group_id) + group.name = request.form.get('name') + + new_page_id = request.form.get('page_id') + if new_page_id and int(new_page_id) != group.page_id: + group.page_id = int(new_page_id) + + new_icon_file = save_and_scale_icon(request.files.get('icon_file')) + new_icon_text = request.form.get('icon_text') + + if new_icon_file: + group.icon = new_icon_file + elif new_icon_text or 'icon_text' in request.form: + group.icon = new_icon_text + + db.session.commit() + flash('Gruppe erfolgreich aktualisiert!', 'success') + return redirect(url_for('admin')) + +# --- Reordering --- + +@app.route('/admin/reorder_pages', methods=['POST']) +@login_required +def reorder_pages(): + order_data = request.json.get('order') + if not order_data: return jsonify({'status': 'error'}), 400 + + for index, page_id in enumerate(order_data): + page = Page.query.get(page_id) + if page: page.order = index + db.session.commit() + return jsonify({'status': 'success'}) + +@app.route('/admin/reorder_groups', methods=['POST']) +@login_required +def reorder_groups(): + data = request.json + order_data = data.get('order') + page_id = data.get('page_id') + + if not order_data: return jsonify({'status': 'error'}), 400 + + for index, group_id in enumerate(order_data): + group = Group.query.get(group_id) + if group: + group.order = index + if page_id: + group.page_id = int(page_id) + + db.session.commit() + return jsonify({'status': 'success'}) + +@app.route('/admin/reorder_links', methods=['POST']) +@login_required +def reorder_links(): + data = request.json + order_data = data.get('order') + group_id = data.get('group_id') + + if not order_data: return jsonify({'status': 'error'}), 400 + + for index, link_id in enumerate(order_data): + link = Link.query.get(link_id) + if link: + link.order = index + if group_id: + link.group_id = int(group_id) + + db.session.commit() + return jsonify({'status': 'success'}) + +# --- Utility Routes --- + +@app.route('/check_url') +def check_url(): + url = request.args.get('url') + if not url: + return jsonify({'status': 'offline', 'reason': 'No URL provided'}), 400 + + # Check Cache + current_time = time.time() + if url in URL_CACHE: + status, timestamp = URL_CACHE[url] + if current_time - timestamp < CACHE_DURATION: + return jsonify({'status': status, 'cached': True}) + + status = 'offline' + try: + headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' + } + # Use a short timeout, and don't verify SSL certs for local services + response = requests.head(url, headers=headers, timeout=5, verify=False, allow_redirects=True) + + # If we get ANY response, the server is online/reachable. + status = 'online' + + except requests.exceptions.SSLError: + # SSL Handshake failed, but server is there. + status = 'online' + + except requests.exceptions.RequestException: + # Connection failed (Timeout, DNS, Refused) + # Try one last time with GET, sometimes HEAD is blocked/buggy + try: + requests.get(url, headers=headers, timeout=5, verify=False, stream=True) + status = 'online' + except Exception as e2: + # Log only actual failures + print(f"Check URL failed for {url}: {e2}", file=sys.stdout, flush=True) + status = 'offline' + + # Update Cache + URL_CACHE[url] = (status, current_time) + return jsonify({'status': status}) + + +@app.route('/search') +def search(): + query = request.args.get('q', '').strip().lower() + if not query or len(query) < 2: + return jsonify([]) + + search_term = f"%{query}%" + + results = db.session.query(Link, Group.name, Page.name)\ + .join(Group, Link.group_id == Group.id)\ + .join(Page, Group.page_id == Page.id)\ + .filter( + (func.lower(Link.name).like(search_term)) | + (func.lower(Link.subtitle).like(search_term)) + ).all() + + output = [{ + 'name': link.name, + 'url': link.url, + 'subtitle': link.subtitle, + 'icon': link.icon, + 'group_name': group_name, + 'page_name': page_name + } for link, group_name, page_name in results] + + return jsonify(output) + + +# --- Widget Data Handlers --- + +def get_pihole_status(config): + user_url = config.get('api_url', '').rstrip('/') + password = config.get('api_key') + + if not user_url: + return {'error': "Pi-hole API URL not configured."} + + try: + if user_url.endswith('/api'): + v6_api_base = user_url + '/' + else: + v6_api_base = urljoin(user_url, 'api/') + + # Step 1: Authenticate + auth_url = urljoin(v6_api_base, 'auth') + auth_response = requests.post(auth_url, json={'password': password}, verify=False, timeout=5) + + if auth_response.status_code == 404: + raise requests.exceptions.RequestException("Auth endpoint not found (404), falling back to v5.") + + auth_response.raise_for_status() + + sid = auth_response.json().get('session', {}).get('sid') + if not sid: + return {'error': 'Pi-hole v6 auth successful, but no SID returned.'} + + # Step 2a: Get blocking status + blocking_url = urljoin(v6_api_base, 'dns/blocking') + blocking_response = requests.get(blocking_url, params={'sid': sid}, verify=False, timeout=5) + blocking_response.raise_for_status() + blocking_data = blocking_response.json() + + is_enabled = blocking_data.get('blocking') == 'enabled' + status = 'enabled' if is_enabled else 'disabled' + + # Step 2b: Get summary stats + summary_url = urljoin(v6_api_base, 'stats/summary') + summary_response = requests.get(summary_url, params={'sid': sid}, verify=False, timeout=5) + summary_response.raise_for_status() + summary_data = summary_response.json() + + # Parse nested v6 structure + queries_data = summary_data.get('queries', {}) + gravity_data = summary_data.get('gravity', {}) + + domains = gravity_data.get('domains_being_blocked', 0) + queries = queries_data.get('total', 0) + percent = queries_data.get('percent_blocked', 0.0) + + return { + 'status': status, + 'domains_being_blocked': domains, + 'dns_queries_today': queries, + 'ads_percentage_today': percent + } + + except Exception as e: + # Fallback for v5 + try: + params = {'summary': ''} + if password: + params['auth'] = password + + v5_base_url = user_url + if v5_base_url.endswith('/api'): + v5_base_url = v5_base_url[:-4] + + v5_url = f"{v5_base_url.rstrip('/')}/admin/api.php" + + response = requests.get(v5_url, params=params, timeout=5, verify=False) + response.raise_for_status() + v5_data = response.json() + + if 'ads_percentage_today' in v5_data and isinstance(v5_data['ads_percentage_today'], str): + v5_data['ads_percentage_today'] = float(v5_data['ads_percentage_today'].replace(',', '.')) + return v5_data + except Exception as e2: + return {'error': f'Pi-hole connection failed: {e2}'} + +def get_openmeteo_weather(config): + lat = config.get('latitude') + lon = config.get('longitude') + + if not lat or not lon: + return {'error': 'Latitude/Longitude not configured.'} + + try: + url = "https://api.open-meteo.com/v1/forecast" + params = { + "latitude": lat, + "longitude": lon, + "current": "temperature_2m,weather_code,wind_speed_10m", + "daily": "temperature_2m_max,temperature_2m_min,sunrise,sunset", + "timezone": "auto" + } + response = requests.get(url, params=params, timeout=5) + response.raise_for_status() + data = response.json() + + return { + 'current': data.get('current', {}), + 'daily': data.get('daily', {}), + 'units': data.get('current_units', {}) + } + except Exception as e: + return {'error': f"Weather API failed: {e}"} + +def get_iframe_widget(config): + return { + 'url': config.get('url'), + 'height': config.get('height', '300') + } + +WIDGET_HANDLERS = { + 'pihole_status': get_pihole_status, + 'openmeteo_weather': get_openmeteo_weather, + 'iframe_widget': get_iframe_widget +} + +@app.route('/api/widget_data/') +def widget_data(widget_id): + widget = Widget.query.get_or_404(widget_id) + + try: + config = json.loads(widget.config) if widget.config else {} + except json.JSONDecodeError: + return jsonify({'error': 'Invalid widget configuration format.'}), 500 + + handler = WIDGET_HANDLERS.get(widget.type) + + if not handler: + return jsonify({'error': f"No handler for widget type '{widget.type}'."}), 404 + + data = handler(config) + + if 'error' in data: + return jsonify(data), 500 + + return jsonify(data) + + +if __name__ == '__main__': + os.makedirs(UPLOAD_FOLDER, exist_ok=True) + app.run(host='0.0.0.0', port=8080) \ No newline at end of file diff --git a/app/data.json b/app/data.json new file mode 100644 index 0000000..6397334 --- /dev/null +++ b/app/data.json @@ -0,0 +1,53 @@ +{ + "settings": { + "title": "Klenzel::Startseite", + "bg_image": "bg_wallpaper2.jpg", + "columns": "is-one-quarter-desktop", + "theme_color": "#3273dc", + "overlay_opacity": "0", + "header_color": "#767474", + "logo_image": "logo_logo_skaliert.png" + }, + "pages": [ + { + "name": "Infrastruktur", + "icon": "fas fa-home", + "groups": [ + { + "name": "Switche", + "links": [ + { + "name": "WLAN", + "url": "http://hkl-01-cl-cams:8081", + "icon": "https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/amazon.png", + "subtitle": "Testbeschreibung", + "target": "_self" + }, + { + "name": "LAN", + "url": "172.30.130.251:2376", + "icon": "icon_dbdfee9ac94f45adb7e8ced1842d6213.png", + "subtitle": "", + "target": "_self" + }, + { + "name": "Transporth\u00fclle", + "url": "http://hkl-01-cl-cams:8081", + "icon": "fas fa-link", + "subtitle": "Test", + "target": "_blank" + }, + { + "name": "eth0", + "url": "172.25.16.161:2376", + "icon": "icon_0bec1ea5e7964532b98d88c567d67266.png", + "subtitle": "Test", + "target": "_blank" + } + ] + } + ] + } + ], + "settings_configured": true +} \ No newline at end of file diff --git a/app/requirements.txt b/app/requirements.txt new file mode 100644 index 0000000..56e008c --- /dev/null +++ b/app/requirements.txt @@ -0,0 +1,6 @@ +Flask +Flask-SQLAlchemy +Pillow +requests + +SQLAlchemy==2.0.29 diff --git a/app/static/uploads/bg_wallpaper2.jpg b/app/static/uploads/bg_wallpaper2.jpg new file mode 100644 index 0000000..8385288 Binary files /dev/null and b/app/static/uploads/bg_wallpaper2.jpg differ diff --git a/app/static/uploads/icon_0bec1ea5e7964532b98d88c567d67266.png b/app/static/uploads/icon_0bec1ea5e7964532b98d88c567d67266.png new file mode 100644 index 0000000..9341dfd Binary files /dev/null and b/app/static/uploads/icon_0bec1ea5e7964532b98d88c567d67266.png differ diff --git a/app/static/uploads/icon_dbdfee9ac94f45adb7e8ced1842d6213.png b/app/static/uploads/icon_dbdfee9ac94f45adb7e8ced1842d6213.png new file mode 100644 index 0000000..59b2bbf Binary files /dev/null and b/app/static/uploads/icon_dbdfee9ac94f45adb7e8ced1842d6213.png differ diff --git a/app/static/uploads/logo_logo_skaliert.png b/app/static/uploads/logo_logo_skaliert.png new file mode 100644 index 0000000..4d625d1 Binary files /dev/null and b/app/static/uploads/logo_logo_skaliert.png differ diff --git a/app/templates/admin.html b/app/templates/admin.html new file mode 100644 index 0000000..e539881 --- /dev/null +++ b/app/templates/admin.html @@ -0,0 +1,875 @@ + + + + + Admin + + + + + + + +
+ + + +
+
+ + +
+
+
+
+
+ + + + + +
+ {% if data.settings.logo_image %} +
+ {% endif %} +
+
+ +
+ {% if data.settings.bg_image %} +
+ {% endif %} + + +

Links: Klar | Rechts: Weiß

+ +
+ + + +

Links: Klar | Rechts: Voll

+ + +
+
+ +
+
+ +
+ +
+
+

Medienverwaltung

+ + + + + + + +
VorschauDateinameGrößeTypAktion
Wird geladen...
+
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+ {% for page in data.pages %} +
+
+

+ + {% if page.icon %} + {% if '.' in page.icon or '/' in page.icon %} + + {% else %} + + {% endif %} + {% endif %} + {{ page.name }} +

+ + + + +
+
+ +
+
Seiten-Widgets
+
+ {% for widget in page.widgets %} + {% set w_config = widget.config | json_loads %} +
+
+
+
+ {{ widget.type }} + (ID: {{ widget.id }}) +
+
+
+ {% if widget.type == 'pihole_status' %} + + {% elif widget.type == 'openmeteo_weather' %} + + {% elif widget.type == 'iframe_widget' %} + + {% endif %} + +
+
+
+ {% endfor %} +
+ +
+
+
+
+ +
+
+
+ +
+
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+ {% for group in page.groups %} +
+
+
+ + {% if group.icon %} + {% if '.' in group.icon or '/' in group.icon %} + + {% else %} + + {% endif %} + {% endif %} + {{ group.name }} +
+
+ + + + +
+
+ + + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ +
+ {% endfor %} +
+
+
+ {% endfor %} +
+
+
+
+
+ + + + + + + + + + + + + + + + + + diff --git a/app/templates/empty.html b/app/templates/empty.html new file mode 100644 index 0000000..3c68118 --- /dev/null +++ b/app/templates/empty.html @@ -0,0 +1,22 @@ + + + + Setup + + + +
+
+
+

+ Willkommen! +

+

+ Dein Dashboard ist noch leer. +

+ Zum Admin-Bereich +
+
+
+ + diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..c82b39c --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,642 @@ + + + + + + {{ data.settings.title }} + + + + + + +
+ + +
+ {% if active_index == 0 %} +
+
+
+
+
+ +
+
+ +
+
+
+
+
+ {% endif %} + + {% if active_page %} + {# Dynamic Layout Logic #} + {% set has_widgets = active_page.widgets|length > 0 %} + {% set user_cols = data.settings.columns %} + + {# Defaults (No Widgets) #} + {% set main_col_width = 'is-12' %} + {% set sidebar_width = '' %} + {% set item_col_width = user_cols %} + + {% if has_widgets %} + {% if user_cols == 'is-one-third-desktop' %} {# 3 Cols -> 2 + 1 #} + {% set main_col_width = 'is-two-thirds' %} {# 66% #} + {% set sidebar_width = 'is-one-third' %} {# 33% #} + {% set item_col_width = 'is-half-desktop' %} {# 50% of 66% = 33% total #} + + {% elif user_cols == 'is-one-quarter-desktop' %} {# 4 Cols -> 3 + 1 #} + {% set main_col_width = 'is-three-quarters' %} {# 75% #} + {% set sidebar_width = 'is-one-quarter' %} {# 25% #} + {% set item_col_width = 'is-one-third-desktop' %}{# 33% of 75% = 25% total #} + + {% elif user_cols == 'is-one-fifth-desktop' %} {# 5 Cols -> 4 + 1 #} + {% set main_col_width = 'is-four-fifths' %} {# 80% #} + {% set sidebar_width = 'is-one-fifth' %} {# 20% #} + {% set item_col_width = 'is-one-quarter-desktop' %}{# 25% of 80% = 20% total #} + {% endif %} + {% endif %} + +
+ + +
+
+ {% for group in active_page.groups %} +
+ +
+

+ {% if group.icon %} + {% if '.' in group.icon or '/' in group.icon %} + + {% else %} + + {% endif %} + {% endif %} + {{ group.name }} +

+ + +
+
+ {% endfor %} +
+
+ + + {% if has_widgets %} + + {% endif %} +
+ {% endif %} +
+
+ + + + diff --git a/app/templates/login.html b/app/templates/login.html new file mode 100644 index 0000000..d4f7e9c --- /dev/null +++ b/app/templates/login.html @@ -0,0 +1,52 @@ + + + + + + Login + + + +
+
+
+
+

Admin Login

+ + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + +
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+ + diff --git a/app/templates/media.html b/app/templates/media.html new file mode 100644 index 0000000..05467f5 --- /dev/null +++ b/app/templates/media.html @@ -0,0 +1,23 @@ + + {% for file in files %} + + + {% if file.type == 'Icon' or file.type == 'Hintergrund' or file.type == 'Logo' %} + + {% else %} + + {% endif %} + + {{ file.name }} + {{ file.size }} + {{ file.type }} + + Löschen + + + {% else %} + + Keine Dateien vorhanden. + + {% endfor %} + diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..651bed0 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +version: '3.8' + +services: + dashboard: + build: ./app + container_name: custom_dashboard + network_mode: "host" + volumes: + - ./app/static/uploads:/app/static/uploads + - data:/data + env_file: + - .env + restart: unless-stopped + privileged: true + +volumes: + data: {} diff --git a/fa_meta.json b/fa_meta.json new file mode 100644 index 0000000..9e8a841 --- /dev/null +++ b/fa_meta.json @@ -0,0 +1,58522 @@ +{ + "500px": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26e", + "label": "500px", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860962, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" + } + }, + "free": [ + "brands" + ] + }, + "accessible-icon": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "handicap", + "person", + "wheelchair", + "wheelchair-alt" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f368", + "label": "Accessible Icon", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860962, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" + } + }, + "free": [ + "brands" + ] + }, + "accusoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f369", + "label": "Accusoft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722323, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z" + } + }, + "free": [ + "brands" + ] + }, + "acquisitions-incorporated": { + "changes": [ + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6af", + "label": "Acquisitions Incorporated", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775889, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M357.45 468.2c-1.2-7.7-1.3-7.6-9.6-7.6-99.8.2-111.8-2.4-112.7-2.6-12.3-1.7-20.6-10.5-21-23.1-.1-1.6-.2-71.6-1-129.1-.1-4.7 1.6-6.4 5.9-7.5 12.5-3 24.9-6.1 37.3-9.7 4.3-1.3 6.8-.2 8.4 3.5 4.5 10.3 8.8 20.6 13.2 30.9 1.6 3.7.1 4.4-3.4 4.4-10-.2-20-.1-30.4-.1v27h116c-1.4-9.5-2.7-18.1-4-27.5-7 0-13.8.4-20.4-.1-22.6-1.6-18.3-4.4-84-158.6-8.8-20.1-27.9-62.1-36.5-89.2-4.4-14 5.5-25.4 18.9-26.6 18.6-1.7 37.5-1.6 56.2-2 20.6-.4 41.2-.4 61.8-.5 3.1 0 4-1.4 4.3-4.3 1.2-9.8 2.7-19.5 4-29.2.8-5.3 1.6-10.7 2.4-16.1L23.75 0c-3.6 0-5.3 1.1-4.6 5.3 2.2 13.2-.8.8 6.4 45.3 63.4 0 71.8.9 101.8.5 12.3-.2 37 3.5 37.7 22.1.4 11.4-1.1 11.3-32.6 87.4-53.8 129.8-50.7 120.3-67.3 161-1.7 4.1-3.6 5.2-7.6 5.2-8.5-.2-17-.3-25.4.1-1.9.1-5.2 1.8-5.5 3.2-1.5 8.1-2.2 16.3-3.2 24.9h114.3v-27.6c-6.9 0-33.5.4-35.3-2.9 5.3-12.3 10.4-24.4 15.7-36.7 16.3 4 31.9 7.8 47.6 11.7 3.4.9 4.6 3 4.6 6.8-.1 42.9.1 85.9.2 128.8 0 10.2-5.5 19.1-14.9 23.1-6.5 2.7-3.3 3.4-121.4 2.4-5.3 0-7.1 2-7.6 6.8-1.5 12.9-2.9 25.9-5 38.8-.8 5 1.3 5.7 5.3 5.7 183.2.6-30.7 0 337.1 0-2.5-15-4.4-29.4-6.6-43.7zm-174.9-205.7c-13.3-4.2-26.6-8.2-39.9-12.5a44.53 44.53 0 0 1-5.8-2.9c17.2-44.3 34.2-88.1 51.3-132.1 7.5 2.4 7.9-.8 9.4 0 9.3 22.5 18.1 60.1 27 82.8 6.6 16.7 13 33.5 19.7 50.9a35.78 35.78 0 0 1-3.9 2.1c-13.1 3.9-26.4 7.5-39.4 11.7a27.66 27.66 0 0 1-18.4 0z" + } + }, + "free": [ + "brands" + ] + }, + "ad": { + "changes": [ + "5.3.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "advertisement", + "media", + "newspaper", + "promotion", + "publicity" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f641", + "label": "Ad", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635302, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M157.52 272h36.96L176 218.78 157.52 272zM352 256c-13.23 0-24 10.77-24 24s10.77 24 24 24 24-10.77 24-24-10.77-24-24-24zM464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM250.58 352h-16.94c-6.81 0-12.88-4.32-15.12-10.75L211.15 320h-70.29l-7.38 21.25A16 16 0 0 1 118.36 352h-16.94c-11.01 0-18.73-10.85-15.12-21.25L140 176.12A23.995 23.995 0 0 1 162.67 160h26.66A23.99 23.99 0 0 1 212 176.13l53.69 154.62c3.61 10.4-4.11 21.25-15.11 21.25zM424 336c0 8.84-7.16 16-16 16h-16c-4.85 0-9.04-2.27-11.98-5.68-8.62 3.66-18.09 5.68-28.02 5.68-39.7 0-72-32.3-72-72s32.3-72 72-72c8.46 0 16.46 1.73 24 4.42V176c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v160z" + } + }, + "free": [ + "solid" + ] + }, + "address-book": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "directory", + "index", + "little black book", + "rolodex" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b9", + "label": "Address Book", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635302, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" + }, + "regular": { + "last_modified": 1628088634647, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "address-card": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "about", + "contact", + "id", + "identification", + "postcard", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2bb", + "label": "Address Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635302, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" + }, + "regular": { + "last_modified": 1628088634647, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "adjust": { + "changes": [ + "1", + "5.0.0", + "5.10.2", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contrast", + "dark", + "light", + "saturation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f042", + "label": "adjust", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635302, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z" + } + }, + "free": [ + "solid" + ] + }, + "adn": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f170", + "label": "App.net", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860962, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" + } + }, + "free": [ + "brands" + ] + }, + "adversal": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36a", + "label": "Adversal", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860963, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" + } + }, + "free": [ + "brands" + ] + }, + "affiliatetheme": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36b", + "label": "affiliatetheme", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860963, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" + } + }, + "free": [ + "brands" + ] + }, + "air-freshener": { + "changes": [ + "5.2.0", + "5.15.3" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "deodorize", + "fresh", + "pine", + "scent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d0", + "label": "Air Freshener", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635303, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M224 160H96C43 160 0 203 0 256V480C0 497.625 14.375 512 32 512H288C305.625 512 320 497.625 320 480V256C320 203 277 160 224 160ZM160 416C115.875 416 80 380.125 80 336S115.875 256 160 256S240 291.875 240 336S204.125 416 160 416ZM224 32C224 14.375 209.625 0 192 0H128C110.375 0 96 14.375 96 32V128H224V32ZM381.781 51.578C383 50.969 384 49.359 384 48C384 46.625 383 45.031 381.781 44.422L352 32L339.562 2.219C338.969 1 337.375 0 336 0S333.031 1 332.406 2.219L320 32L290.219 44.422C289 45.031 288 46.625 288 48C288 49.359 289 50.969 290.219 51.578L320 64L332.406 93.781C333.031 95 334.625 96 336 96S338.969 95 339.562 93.781L352 64L381.781 51.578ZM448 64L460.406 93.781C461.031 95 462.625 96 464 96S466.969 95 467.562 93.781L480 64L509.781 51.578C511 50.969 512 49.359 512 48C512 46.625 511 45.031 509.781 44.422L480 32L467.562 2.219C466.969 1 465.375 0 464 0S461.031 1 460.406 2.219L448 32L418.219 44.422C417 45.031 416 46.625 416 48C416 49.359 417 50.969 418.219 51.578L448 64ZM480 224L467.562 194.219C466.969 193 465.375 192 464 192S461.031 193 460.406 194.219L448 224L418.219 236.422C417 237.031 416 238.625 416 240C416 241.359 417 242.969 418.219 243.578L448 256L460.406 285.781C461.031 287 462.625 288 464 288S466.969 287 467.562 285.781L480 256L509.781 243.578C511 242.969 512 241.359 512 240C512 238.625 511 237.031 509.781 236.422L480 224ZM445.781 147.578C447 146.969 448 145.359 448 144C448 142.625 447 141.031 445.781 140.422L416 128L403.562 98.219C402.969 97 401.375 96 400 96S397.031 97 396.406 98.219L384 128L354.219 140.422C353 141.031 352 142.625 352 144C352 145.359 353 146.969 354.219 147.578L384 160L396.406 189.781C397.031 191 398.625 192 400 192S402.969 191 403.562 189.781L416 160L445.781 147.578Z" + } + }, + "free": [ + "solid" + ] + }, + "airbnb": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f834", + "label": "Airbnb", + "svg": { + "brands": { + "last_modified": 1558987775890, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z" + } + }, + "free": [ + "brands" + ] + }, + "algolia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36c", + "label": "Algolia", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860963, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z" + } + }, + "free": [ + "brands" + ] + }, + "align-center": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "middle", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f037", + "label": "align-center", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635305, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM108.1 96h231.81A12.09 12.09 0 0 0 352 83.9V44.09A12.09 12.09 0 0 0 339.91 32H108.1A12.09 12.09 0 0 0 96 44.09V83.9A12.1 12.1 0 0 0 108.1 96zm231.81 256A12.09 12.09 0 0 0 352 339.9v-39.81A12.09 12.09 0 0 0 339.91 288H108.1A12.09 12.09 0 0 0 96 300.09v39.81a12.1 12.1 0 0 0 12.1 12.1z" + } + }, + "free": [ + "solid" + ] + }, + "align-justify": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f039", + "label": "align-justify", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635305, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "align-left": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f036", + "label": "align-left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635305, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M12.83 352h262.34A12.82 12.82 0 0 0 288 339.17v-38.34A12.82 12.82 0 0 0 275.17 288H12.83A12.82 12.82 0 0 0 0 300.83v38.34A12.82 12.82 0 0 0 12.83 352zm0-256h262.34A12.82 12.82 0 0 0 288 83.17V44.83A12.82 12.82 0 0 0 275.17 32H12.83A12.82 12.82 0 0 0 0 44.83v38.34A12.82 12.82 0 0 0 12.83 96zM432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "align-right": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f038", + "label": "align-right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635306, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M16 224h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm416 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-384H172.83A12.82 12.82 0 0 0 160 44.83v38.34A12.82 12.82 0 0 0 172.83 96h262.34A12.82 12.82 0 0 0 448 83.17V44.83A12.82 12.82 0 0 0 435.17 32zm0 256H172.83A12.82 12.82 0 0 0 160 300.83v38.34A12.82 12.82 0 0 0 172.83 352h262.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288z" + } + }, + "free": [ + "solid" + ] + }, + "alipay": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f642", + "label": "Alipay", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860963, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32zM47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58z" + } + }, + "free": [ + "brands" + ] + }, + "allergies": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "freckles", + "hand", + "hives", + "pox", + "skin", + "spots" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f461", + "label": "Allergies", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635306, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "amazon": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f270", + "label": "Amazon", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860964, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" + } + }, + "free": [ + "brands" + ] + }, + "amazon-pay": { + "changes": [ + "5.0.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42c", + "label": "Amazon Pay", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775891, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.88 595.88 0 0 0 127.4 46.3 616.61 616.61 0 0 0 63.2 11.8 603.33 603.33 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.66 603.66 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.31 473.31 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21.3 21.3 0 0 0-2.5.3H308a21.3 21.3 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.33 443.33 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.92 80.92 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a7.84 7.84 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.56 180.56 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0-21-3.9 147.32 147.32 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0-3.7 3.5 5.11 5.11 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.91 145.91 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.18 108.18 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.63 131.63 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" + } + }, + "free": [ + "brands" + ] + }, + "ambulance": { + "changes": [ + "3", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "emergency", + "emt", + "er", + "help", + "hospital", + "support", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f9", + "label": "ambulance", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635306, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" + } + }, + "free": [ + "solid" + ] + }, + "american-sign-language-interpreting": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asl", + "deaf", + "finger", + "hand", + "interpret", + "speak" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a3", + "label": "American Sign Language Interpreting", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635306, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z" + } + }, + "free": [ + "solid" + ] + }, + "amilia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36d", + "label": "Amilia", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722324, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z" + } + }, + "free": [ + "brands" + ] + }, + "anchor": { + "changes": [ + "3.1", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "berth", + "boat", + "dock", + "embed", + "link", + "maritime", + "moor", + "secure" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13d", + "label": "Anchor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635307, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "android": { + "changes": [ + "3.2", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "robot" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17b", + "label": "Android", + "voted": false, + "svg": { + "brands": { + "last_modified": 1573073505342, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" + } + }, + "free": [ + "brands" + ] + }, + "angellist": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f209", + "label": "AngelList", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860964, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" + } + }, + "free": [ + "brands" + ] + }, + "angle-double-down": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "download", + "expand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f103", + "label": "Angle Double Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635307, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z" + } + }, + "free": [ + "solid" + ] + }, + "angle-double-left": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "back", + "caret", + "laquo", + "previous", + "quote" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f100", + "label": "Angle Double Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635307, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" + } + }, + "free": [ + "solid" + ] + }, + "angle-double-right": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "forward", + "more", + "next", + "quote", + "raquo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f101", + "label": "Angle Double Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635307, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" + } + }, + "free": [ + "solid" + ] + }, + "angle-double-up": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f102", + "label": "Angle Double Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635307, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z" + } + }, + "free": [ + "solid" + ] + }, + "angle-down": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret", + "download", + "expand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f107", + "label": "angle-down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635308, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" + } + }, + "free": [ + "solid" + ] + }, + "angle-left": { + "changes": [ + "3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "caret", + "less", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f104", + "label": "angle-left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635308, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" + } + }, + "free": [ + "solid" + ] + }, + "angle-right": { + "changes": [ + "3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "care", + "forward", + "more", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f105", + "label": "angle-right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635308, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" + } + }, + "free": [ + "solid" + ] + }, + "angle-up": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f106", + "label": "angle-up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635308, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" + } + }, + "free": [ + "solid" + ] + }, + "angry": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "mad", + "upset" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f556", + "label": "Angry Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635308, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z" + }, + "regular": { + "last_modified": 1628088634653, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "angrycreative": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36e", + "label": "Angry Creative", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860965, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" + } + }, + "free": [ + "brands" + ] + }, + "angular": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f420", + "label": "Angular", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775892, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z" + } + }, + "free": [ + "brands" + ] + }, + "ankh": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amulet", + "copper", + "coptic christianity", + "copts", + "crux ansata", + "egypt", + "venus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f644", + "label": "Ankh", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635309, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M296 256h-44.62C272.46 222.01 288 181.65 288 144 288 55.63 230.69 0 160 0S32 55.63 32 144c0 37.65 15.54 78.01 36.62 112H24c-13.25 0-24 10.74-24 24v32c0 13.25 10.75 24 24 24h96v152c0 13.25 10.75 24 24 24h32c13.25 0 24-10.75 24-24V336h96c13.25 0 24-10.75 24-24v-32c0-13.26-10.75-24-24-24zM160 80c29.61 0 48 24.52 48 64 0 34.66-27.14 78.14-48 100.87-20.86-22.72-48-66.21-48-100.87 0-39.48 18.39-64 48-64z" + } + }, + "free": [ + "solid" + ] + }, + "app-store": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36f", + "label": "App Store", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860965, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" + } + }, + "free": [ + "brands" + ] + }, + "app-store-ios": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f370", + "label": "iOS App Store", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860965, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" + } + }, + "free": [ + "brands" + ] + }, + "apper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f371", + "label": "Apper Systems AB", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860965, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" + } + }, + "free": [ + "brands" + ] + }, + "apple": { + "changes": [ + "3.2", + "5.0.0", + "5.0.7", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fruit", + "ios", + "mac", + "operating system", + "os", + "osx" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f179", + "label": "Apple", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775892, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" + } + }, + "free": [ + "brands" + ] + }, + "apple-alt": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fall", + "fruit", + "fuji", + "macintosh", + "orchard", + "seasonal", + "vegan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d1", + "label": "Fruit Apple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635309, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M350.85 129c25.97 4.67 47.27 18.67 63.92 42 14.65 20.67 24.64 46.67 29.96 78 4.67 28.67 4.32 57.33-1 86-7.99 47.33-23.97 87-47.94 119-28.64 38.67-64.59 58-107.87 58-10.66 0-22.3-3.33-34.96-10-8.66-5.33-18.31-8-28.97-8s-20.3 2.67-28.97 8c-12.66 6.67-24.3 10-34.96 10-43.28 0-79.23-19.33-107.87-58-23.97-32-39.95-71.67-47.94-119-5.32-28.67-5.67-57.33-1-86 5.32-31.33 15.31-57.33 29.96-78 16.65-23.33 37.95-37.33 63.92-42 15.98-2.67 37.95-.33 65.92 7 23.97 6.67 44.28 14.67 60.93 24 16.65-9.33 36.96-17.33 60.93-24 27.98-7.33 49.96-9.67 65.94-7zm-54.94-41c-9.32 8.67-21.65 15-36.96 19-10.66 3.33-22.3 5-34.96 5l-14.98-1c-1.33-9.33-1.33-20 0-32 2.67-24 10.32-42.33 22.97-55 9.32-8.67 21.65-15 36.96-19 10.66-3.33 22.3-5 34.96-5l14.98 1 1 15c0 12.67-1.67 24.33-4.99 35-3.99 15.33-10.31 27.67-18.98 37z" + } + }, + "free": [ + "solid" + ] + }, + "apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f415", + "label": "Apple Pay", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860966, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" + } + }, + "free": [ + "brands" + ] + }, + "archive": { + "changes": [ + "3.2", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "package", + "save", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f187", + "label": "Archive", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635309, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "archway": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arc", + "monument", + "road", + "street", + "tunnel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f557", + "label": "Archway", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635309, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-alt-circle-down": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-down", + "download" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f358", + "label": "Alternate Arrow Circle Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635309, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z" + }, + "regular": { + "last_modified": 1628088634654, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "arrow-alt-circle-left": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-left", + "back", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f359", + "label": "Alternate Arrow Circle Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635310, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z" + }, + "regular": { + "last_modified": 1628088634654, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "arrow-alt-circle-right": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-right", + "forward", + "next" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f35a", + "label": "Alternate Arrow Circle Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635310, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z" + }, + "regular": { + "last_modified": 1628088634655, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "arrow-alt-circle-up": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-up" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f35b", + "label": "Alternate Arrow Circle Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635310, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z" + }, + "regular": { + "last_modified": 1628088634655, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "arrow-circle-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ab", + "label": "Arrow Circle Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635313, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-circle-left": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a8", + "label": "Arrow Circle Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635313, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-circle-right": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a9", + "label": "Arrow Circle Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635313, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-circle-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0aa", + "label": "Arrow Circle Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635314, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f063", + "label": "arrow-down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635314, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-left": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f060", + "label": "arrow-left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635315, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f061", + "label": "arrow-right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635315, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f062", + "label": "arrow-up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635317, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-alt": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b2", + "label": "Alternate Arrows", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635318, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-alt-h": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows-h", + "expand", + "horizontal", + "landscape", + "resize", + "wide" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f337", + "label": "Alternate Arrows Horizontal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635318, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-alt-v": { + "changes": [ + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows-v", + "expand", + "portrait", + "resize", + "tall", + "vertical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f338", + "label": "Alternate Arrows Vertical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635318, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" + } + }, + "free": [ + "solid" + ] + }, + "artstation": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f77a", + "label": "Artstation", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775892, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M2 377.4l43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350L335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1zM275 304.5l-115.5-200L44 304.5z" + } + }, + "free": [ + "brands" + ] + }, + "assistive-listening-systems": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amplify", + "audio", + "deaf", + "ear", + "headset", + "hearing", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a2", + "label": "Assistive Listening Systems", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635319, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z" + } + }, + "free": [ + "solid" + ] + }, + "asterisk": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "annotation", + "details", + "reference", + "star" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f069", + "label": "asterisk", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635319, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z" + } + }, + "free": [ + "solid" + ] + }, + "asymmetrik": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f372", + "label": "Asymmetrik, Ltd.", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860966, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" + } + }, + "free": [ + "brands" + ] + }, + "at": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "author", + "e-mail", + "email", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fa", + "label": "At", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635319, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z" + } + }, + "free": [ + "solid" + ] + }, + "atlas": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "directions", + "geography", + "globe", + "map", + "travel", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f558", + "label": "Atlas", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635320, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z" + } + }, + "free": [ + "solid" + ] + }, + "atlassian": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f77b", + "label": "Atlassian", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860966, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8.1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1zM244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6.1z" + } + }, + "free": [ + "brands" + ] + }, + "atom": { + "changes": [ + "5.2.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atheism", + "chemistry", + "electron", + "ion", + "isotope", + "neutron", + "nuclear", + "proton", + "science" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d2", + "label": "Atom", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635320, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M223.99908,224a32,32,0,1,0,32.00782,32A32.06431,32.06431,0,0,0,223.99908,224Zm214.172-96c-10.877-19.5-40.50979-50.75-116.27544-41.875C300.39168,34.875,267.63386,0,223.99908,0s-76.39066,34.875-97.89653,86.125C50.3369,77.375,20.706,108.5,9.82907,128-6.54984,157.375-5.17484,201.125,34.958,256-5.17484,310.875-6.54984,354.625,9.82907,384c29.13087,52.375,101.64652,43.625,116.27348,41.875C147.60842,477.125,180.36429,512,223.99908,512s76.3926-34.875,97.89652-86.125c14.62891,1.75,87.14456,10.5,116.27544-41.875C454.55,354.625,453.175,310.875,413.04017,256,453.175,201.125,454.55,157.375,438.171,128ZM63.33886,352c-4-7.25-.125-24.75,15.00391-48.25,6.87695,6.5,14.12891,12.875,21.88087,19.125,1.625,13.75,4,27.125,6.75,40.125C82.34472,363.875,67.09081,358.625,63.33886,352Zm36.88478-162.875c-7.752,6.25-15.00392,12.625-21.88087,19.125-15.12891-23.5-19.00392-41-15.00391-48.25,3.377-6.125,16.37891-11.5,37.88478-11.5,1.75,0,3.875.375,5.75.375C104.09864,162.25,101.84864,175.625,100.22364,189.125ZM223.99908,64c9.50195,0,22.25586,13.5,33.88282,37.25-11.252,3.75-22.50391,8-33.88282,12.875-11.377-4.875-22.62892-9.125-33.88283-12.875C201.74516,77.5,214.49712,64,223.99908,64Zm0,384c-9.502,0-22.25392-13.5-33.88283-37.25,11.25391-3.75,22.50587-8,33.88283-12.875C235.378,402.75,246.62994,407,257.8819,410.75,246.25494,434.5,233.501,448,223.99908,448Zm0-112a80,80,0,1,1,80-80A80.00023,80.00023,0,0,1,223.99908,336ZM384.6593,352c-3.625,6.625-19.00392,11.875-43.63479,11,2.752-13,5.127-26.375,6.752-40.125,7.75195-6.25,15.00391-12.625,21.87891-19.125C384.7843,327.25,388.6593,344.75,384.6593,352ZM369.65538,208.25c-6.875-6.5-14.127-12.875-21.87891-19.125-1.625-13.5-3.875-26.875-6.752-40.25,1.875,0,4.002-.375,5.752-.375,21.50391,0,34.50782,5.375,37.88283,11.5C388.6593,167.25,384.7843,184.75,369.65538,208.25Z" + } + }, + "free": [ + "solid" + ] + }, + "audible": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f373", + "label": "Audible", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860966, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" + } + }, + "free": [ + "brands" + ] + }, + "audio-description": { + "changes": [ + "4.6", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "narration", + "video", + "visual" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f29e", + "label": "Audio Description", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635320, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z" + } + }, + "free": [ + "solid" + ] + }, + "autoprefixer": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41c", + "label": "Autoprefixer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860967, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" + } + }, + "free": [ + "brands" + ] + }, + "avianex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f374", + "label": "avianex", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860967, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" + } + }, + "free": [ + "brands" + ] + }, + "aviato": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f421", + "label": "Aviato", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860967, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" + } + }, + "free": [ + "brands" + ] + }, + "award": { + "changes": [ + "5.1.0", + "5.2.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "honor", + "praise", + "prize", + "recognition", + "ribbon", + "trophy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f559", + "label": "Award", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635321, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z" + } + }, + "free": [ + "solid" + ] + }, + "aws": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f375", + "label": "Amazon Web Services (AWS)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860967, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" + } + }, + "free": [ + "brands" + ] + }, + "baby": { + "changes": [ + "5.6.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "child", + "diaper", + "doll", + "human", + "infant", + "kid", + "offspring", + "person", + "sprout" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f77c", + "label": "Baby", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635322, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M192 160c44.2 0 80-35.8 80-80S236.2 0 192 0s-80 35.8-80 80 35.8 80 80 80zm-53.4 248.8l25.6-32-61.5-51.2L56.8 383c-11.4 14.2-11.7 34.4-.8 49l48 64c7.9 10.5 19.9 16 32 16 8.3 0 16.8-2.6 24-8 17.7-13.2 21.2-38.3 8-56l-29.4-39.2zm142.7-83.2l-61.5 51.2 25.6 32L216 448c-13.2 17.7-9.7 42.8 8 56 7.2 5.4 15.6 8 24 8 12.2 0 24.2-5.5 32-16l48-64c10.9-14.6 10.6-34.8-.8-49l-45.9-57.4zM376.7 145c-12.7-18.1-37.6-22.4-55.7-9.8l-40.6 28.5c-52.7 37-124.2 37-176.8 0L63 135.3C44.9 122.6 20 127 7.3 145-5.4 163.1-1 188 17 200.7l40.6 28.5c17 11.9 35.4 20.9 54.4 27.9V288h160v-30.8c19-7 37.4-16 54.4-27.9l40.6-28.5c18.1-12.8 22.4-37.7 9.7-55.8z" + } + }, + "free": [ + "solid" + ] + }, + "baby-carriage": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buggy", + "carrier", + "infant", + "push", + "stroller", + "transportation", + "walk", + "wheels" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f77d", + "label": "Baby Carriage", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635322, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M144.8 17c-11.3-17.8-37.2-22.8-54-9.4C35.3 51.9 0 118 0 192h256L144.8 17zM496 96h-48c-35.3 0-64 28.7-64 64v64H0c0 50.6 23 96.4 60.3 130.7C25.7 363.6 0 394.7 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-8.9-1.8-17.2-4.4-25.2 21.6 5.9 44.6 9.2 68.4 9.2s46.9-3.3 68.4-9.2c-2.7 8-4.4 16.3-4.4 25.2 0 44.2 35.8 80 80 80s80-35.8 80-80c0-37.3-25.7-68.4-60.3-77.3C425 320.4 448 274.6 448 224v-64h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM80 464c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm320-32c0 17.6-14.4 32-32 32s-32-14.4-32-32 14.4-32 32-32 32 14.4 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "backspace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "command", + "delete", + "erase", + "keyboard", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55a", + "label": "Backspace", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635323, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z" + } + }, + "free": [ + "solid" + ] + }, + "backward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "previous", + "rewind" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04a", + "label": "backward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635323, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z" + } + }, + "free": [ + "solid" + ] + }, + "bacon": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blt", + "breakfast", + "ham", + "lard", + "meat", + "pancetta", + "pork", + "rasher" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7e5", + "label": "Bacon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635323, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z" + } + }, + "free": [ + "solid" + ] + }, + "bacteria": { + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e059", + "label": "Bacteria", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635324, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M272.35,226.4A17.71,17.71,0,0,0,281.46,203l-4-9.08a121.29,121.29,0,0,1,12.36-3.08A83.34,83.34,0,0,0,323.57,177l10,9a17.76,17.76,0,1,0,23.92-26.27l-9.72-8.76a83.12,83.12,0,0,0,11.65-48.18l11.85-3.51a17.73,17.73,0,1,0-10.15-34l-11.34,3.36a84,84,0,0,0-36.38-35.57l2.84-10.85a17.8,17.8,0,0,0-34.47-8.93l-2.82,10.78a83.25,83.25,0,0,0-16.74,1.1C250.83,27,240,30.22,229.1,33.39l-3.38-9.46a17.8,17.8,0,0,0-33.56,11.89l3.49,9.8a286.74,286.74,0,0,0-43.94,23.57l-6.32-8.43a17.9,17.9,0,0,0-24.94-3.6A17.69,17.69,0,0,0,116.84,82l6.45,8.61a286.59,286.59,0,0,0-34.95,35.33l-8.82-6.42a17.84,17.84,0,0,0-24.89,3.86,17.66,17.66,0,0,0,3.88,24.77l8.88,6.47a286.6,286.6,0,0,0-23,43.91l-10.48-3.59a17.73,17.73,0,1,0-11.59,33.52L32.67,232c-2.79,10-5.79,19.84-7.52,30.22a83.16,83.16,0,0,0-.82,19l-11.58,3.43a17.73,17.73,0,1,0,10.13,34l11.27-3.33a83.51,83.51,0,0,0,36.39,35.43l-2.88,11.06a17.81,17.81,0,0,0,34.48,8.92l2.87-11c1,0,2.07.26,3.1.26a83.39,83.39,0,0,0,45.65-13.88l8.59,8.8a17.77,17.77,0,0,0,25.56-24.7l-9.14-9.37a83.41,83.41,0,0,0,12.08-31.05,119.08,119.08,0,0,1,3.87-15.53l9,4.22a17.74,17.74,0,1,0,15.15-32.09l-8.8-4.11c.67-1,1.2-2.08,1.9-3.05a119.89,119.89,0,0,1,7.87-9.41,121.73,121.73,0,0,1,11.65-11.4,119.49,119.49,0,0,1,9.94-7.82c1.12-.77,2.32-1.42,3.47-2.15l3.92,8.85a17.86,17.86,0,0,0,16.32,10.58A18.14,18.14,0,0,0,272.35,226.4ZM128,256a32,32,0,1,1,32-32A32,32,0,0,1,128,256Zm80-96a16,16,0,1,1,16-16A16,16,0,0,1,208,160Zm431.26,45.3a17.79,17.79,0,0,0-17.06-12.69,17.55,17.55,0,0,0-5.08.74l-11.27,3.33a83.61,83.61,0,0,0-36.39-35.43l2.88-11.06a17.81,17.81,0,0,0-34.48-8.91l-2.87,11c-1,0-2.07-.26-3.1-.26a83.32,83.32,0,0,0-45.65,13.89l-8.59-8.81a17.77,17.77,0,0,0-25.56,24.7l9.14,9.37a83.28,83.28,0,0,0-12.08,31.06,119.34,119.34,0,0,1-3.87,15.52l-9-4.22a17.74,17.74,0,1,0-15.15,32.09l8.8,4.11c-.67,1-1.2,2.08-1.89,3.05a117.71,117.71,0,0,1-7.94,9.47,119,119,0,0,1-11.57,11.33,121.59,121.59,0,0,1-10,7.83c-1.12.77-2.32,1.42-3.47,2.15l-3.92-8.85a17.86,17.86,0,0,0-16.32-10.58,18.14,18.14,0,0,0-7.18,1.5A17.71,17.71,0,0,0,358.54,309l4,9.08a118.71,118.71,0,0,1-12.36,3.08,83.34,83.34,0,0,0-33.77,13.9l-10-9a17.77,17.77,0,1,0-23.92,26.28l9.72,8.75a83.12,83.12,0,0,0-11.65,48.18l-11.86,3.51a17.73,17.73,0,1,0,10.16,34l11.34-3.36A84,84,0,0,0,326.61,479l-2.84,10.85a17.8,17.8,0,0,0,34.47,8.93L361.06,488a83.3,83.3,0,0,0,16.74-1.1c11.37-1.89,22.24-5.07,33.1-8.24l3.38,9.46a17.8,17.8,0,0,0,33.56-11.89l-3.49-9.79a287.66,287.66,0,0,0,43.94-23.58l6.32,8.43a17.88,17.88,0,0,0,24.93,3.6A17.67,17.67,0,0,0,523.16,430l-6.45-8.61a287.37,287.37,0,0,0,34.95-35.34l8.82,6.42a17.76,17.76,0,1,0,21-28.63l-8.88-6.46a287.17,287.17,0,0,0,23-43.92l10.48,3.59a17.73,17.73,0,1,0,11.59-33.52L607.33,280c2.79-10,5.79-19.84,7.52-30.21a83.27,83.27,0,0,0,.82-19.05l11.58-3.43A17.7,17.7,0,0,0,639.26,205.3ZM416,416a32,32,0,1,1,32-32A32,32,0,0,1,416,416Z" + } + }, + "free": [ + "solid" + ] + }, + "bacterium": { + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05a", + "label": "Bacterium", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635324, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511,102.93A23.76,23.76,0,0,0,481.47,87l-15.12,4.48a111.85,111.85,0,0,0-48.5-47.42l3.79-14.47a23.74,23.74,0,0,0-46-11.91l-3.76,14.37a111.94,111.94,0,0,0-22.33,1.47,386.74,386.74,0,0,0-44.33,10.41l-4.3-12a23.74,23.74,0,0,0-44.75,15.85l4.3,12.05a383.4,383.4,0,0,0-58.69,31.83l-8-10.63a23.85,23.85,0,0,0-33.24-4.8,23.57,23.57,0,0,0-4.83,33.09l8,10.63a386.14,386.14,0,0,0-46.7,47.44l-11-8a23.68,23.68,0,1,0-28,38.17l11.09,8.06a383.45,383.45,0,0,0-30.92,58.75l-12.93-4.43a23.65,23.65,0,1,0-15.47,44.69l13,4.48a385.81,385.81,0,0,0-9.3,40.53A111.58,111.58,0,0,0,32.44,375L17,379.56a23.64,23.64,0,0,0,13.51,45.31l15-4.44a111.49,111.49,0,0,0,48.53,47.24l-3.85,14.75a23.66,23.66,0,0,0,17,28.83,24.7,24.7,0,0,0,6,.75,23.73,23.73,0,0,0,23-17.7L140,479.67c1.37.05,2.77.35,4.13.35A111.22,111.22,0,0,0,205,461.5l11.45,11.74a23.7,23.7,0,0,0,34.08-32.93l-12.19-12.5a111,111,0,0,0,16.11-41.4,158.69,158.69,0,0,1,5.16-20.71l12,5.64a23.66,23.66,0,1,0,20.19-42.79l-11.72-5.49c.89-1.32,1.59-2.77,2.52-4.06a157.86,157.86,0,0,1,10.46-12.49,159.5,159.5,0,0,1,15.59-15.28,162.18,162.18,0,0,1,13.23-10.4c1.5-1,3.1-1.89,4.63-2.87l5.23,11.8a23.74,23.74,0,0,0,43.48-19.08l-5.36-12.11a158.87,158.87,0,0,1,16.49-4.1,111,111,0,0,0,45-18.54l13.33,12a23.69,23.69,0,1,0,31.88-35l-12.94-11.67A110.83,110.83,0,0,0,479.21,137L495,132.32A23.61,23.61,0,0,0,511,102.93ZM160,368a48,48,0,1,1,48-48A48,48,0,0,1,160,368Zm80-136a24,24,0,1,1,24-24A24,24,0,0,1,240,232Z" + } + }, + "free": [ + "solid" + ] + }, + "bahai": { + "changes": [ + "5.3.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bahai", + "bahá'í", + "star" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f666", + "label": "Bahá'í", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635327, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496.25 202.52l-110-15.44 41.82-104.34c6.67-16.64-11.6-32.18-26.59-22.63L307.44 120 273.35 12.82C270.64 4.27 263.32 0 256 0c-7.32 0-14.64 4.27-17.35 12.82l-34.09 107.19-94.04-59.89c-14.99-9.55-33.25 5.99-26.59 22.63l41.82 104.34-110 15.43c-17.54 2.46-21.68 26.27-6.03 34.67l98.16 52.66-74.48 83.54c-10.92 12.25-1.72 30.93 13.29 30.93 1.31 0 2.67-.14 4.07-.45l108.57-23.65-4.11 112.55c-.43 11.65 8.87 19.22 18.41 19.22 5.15 0 10.39-2.21 14.2-7.18l68.18-88.9 68.18 88.9c3.81 4.97 9.04 7.18 14.2 7.18 9.54 0 18.84-7.57 18.41-19.22l-4.11-112.55 108.57 23.65c17.36 3.76 29.21-17.2 17.35-30.49l-74.48-83.54 98.16-52.66c15.64-8.39 11.5-32.2-6.04-34.66zM338.51 311.68l-51.89-11.3 1.97 53.79L256 311.68l-32.59 42.49 1.96-53.79-51.89 11.3 35.6-39.93-46.92-25.17 52.57-7.38-19.99-49.87 44.95 28.62L256 166.72l16.29 51.23 44.95-28.62-19.99 49.87 52.57 7.38-46.92 25.17 35.61 39.93z" + } + }, + "free": [ + "solid" + ] + }, + "balance-scale": { + "changes": [ + "4.4", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "balanced", + "justice", + "legal", + "measure", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f24e", + "label": "Balance Scale", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635327, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "balance-scale-left": { + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f515", + "label": "Balance Scale (Left-Weighted)", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635327, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M528 448H352V153.25c20.42-8.94 36.1-26.22 43.38-47.47l132-44.26c8.38-2.81 12.89-11.88 10.08-20.26l-10.17-30.34C524.48 2.54 515.41-1.97 507.03.84L389.11 40.37C375.3 16.36 349.69 0 320 0c-44.18 0-80 35.82-80 80 0 3.43.59 6.71 1.01 10.03l-128.39 43.05c-8.38 2.81-12.89 11.88-10.08 20.26l10.17 30.34c2.81 8.38 11.88 12.89 20.26 10.08l142.05-47.63c4.07 2.77 8.43 5.12 12.99 7.12V496c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16v-32c-.01-8.84-7.17-16-16.01-16zm111.98-144c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 288l72-144 72 144H440zm-269.07-37.51c-17.65-35.29-68.19-35.36-85.87 0C-2.06 424.75.02 416.33.02 432H0c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-16.18 1.34-8.73-85.05-181.51zM56 416l72-144 72 144H56z" + } + }, + "free": [ + "solid" + ] + }, + "balance-scale-right": { + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f516", + "label": "Balance Scale (Right-Weighted)", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635327, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M96 464v32c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16V153.25c4.56-2 8.92-4.35 12.99-7.12l142.05 47.63c8.38 2.81 17.45-1.71 20.26-10.08l10.17-30.34c2.81-8.38-1.71-17.45-10.08-20.26l-128.4-43.05c.42-3.32 1.01-6.6 1.01-10.03 0-44.18-35.82-80-80-80-29.69 0-55.3 16.36-69.11 40.37L132.96.83c-8.38-2.81-17.45 1.71-20.26 10.08l-10.17 30.34c-2.81 8.38 1.71 17.45 10.08 20.26l132 44.26c7.28 21.25 22.96 38.54 43.38 47.47V448H112c-8.84 0-16 7.16-16 16zM0 304c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0C-1.32 295.27.02 287.82.02 304H0zm56-16l72-144 72 144H56zm328.02 144H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0-86.38 172.78-85.04 165.33-85.04 181.51zM440 416l72-144 72 144H440z" + } + }, + "free": [ + "solid" + ] + }, + "ban": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "ban", + "block", + "cancel", + "delete", + "hide", + "prohibit", + "remove", + "stop", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05e", + "label": "ban", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635329, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z" + } + }, + "free": [ + "solid" + ] + }, + "band-aid": { + "changes": [ + "5.0.7", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "bandage", + "boo boo", + "first aid", + "ouch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f462", + "label": "Band-Aid", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635329, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "bandcamp": { + "changes": [ + "4.7", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d5", + "label": "Bandcamp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539197, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm48.2,326.1h-181L207.9,178h181Z" + } + }, + "free": [ + "brands" + ] + }, + "barcode": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "info", + "laser", + "price", + "scan", + "upc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02a", + "label": "barcode", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635330, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z" + } + }, + "free": [ + "solid" + ] + }, + "bars": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "drag", + "hamburger", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c9", + "label": "Bars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635331, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "baseball-ball": { + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "foul", + "hardball", + "league", + "leather", + "mlb", + "softball", + "sport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f433", + "label": "Baseball Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635331, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z" + } + }, + "free": [ + "solid" + ] + }, + "basketball-ball": { + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "dribble", + "dunk", + "hoop", + "nba" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f434", + "label": "Basketball Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635331, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z" + } + }, + "free": [ + "solid" + ] + }, + "bath": { + "changes": [ + "4.7", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "shower", + "tub", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cd", + "label": "Bath", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635333, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32,384a95.4,95.4,0,0,0,32,71.09V496a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V480H384v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V455.09A95.4,95.4,0,0,0,480,384V336H32ZM496,256H80V69.25a21.26,21.26,0,0,1,36.28-15l19.27,19.26c-13.13,29.88-7.61,59.11,8.62,79.73l-.17.17A16,16,0,0,0,144,176l11.31,11.31a16,16,0,0,0,22.63,0L283.31,81.94a16,16,0,0,0,0-22.63L272,48a16,16,0,0,0-22.62,0l-.17.17c-20.62-16.23-49.83-21.75-79.73-8.62L150.22,20.28A69.25,69.25,0,0,0,32,69.25V256H16A16,16,0,0,0,0,272v16a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V272A16,16,0,0,0,496,256Z" + } + }, + "free": [ + "solid" + ] + }, + "battery-empty": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "dead", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f244", + "label": "Battery Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635333, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "battery-full": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f240", + "label": "Battery Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635334, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z" + } + }, + "free": [ + "solid" + ] + }, + "battery-half": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f242", + "label": "Battery 1/2 Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635334, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z" + } + }, + "free": [ + "solid" + ] + }, + "battery-quarter": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "low", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f243", + "label": "Battery 1/4 Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635334, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z" + } + }, + "free": [ + "solid" + ] + }, + "battery-three-quarters": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f241", + "label": "Battery 3/4 Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635335, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z" + } + }, + "free": [ + "solid" + ] + }, + "battle-net": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f835", + "label": "Battle.net", + "svg": { + "brands": { + "last_modified": 1558987775893, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448.61 225.62c26.87.18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.05-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.18 7.14 238.7 1.07 228.18.22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.56-9.22 5.22 53 29.75 101.82 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61.15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.79 39.79 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.82 4.6 143.29-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69zm-77.85 106.22c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5zM216.9 387.69c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7zm215-171.35c-10.29-5.34-21.16-10.34-32.38-15.05a722.459 722.459 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95zM279.18 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a718.78 718.78 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.34 98-132.75 115.92-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.07 12.3.91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.23 695.23 0 0 0 44.67 152.84c.93-.38 1.84.88 18.67-8.25-26.33-74.47-33.76-138.17-34-173.43 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.32 30.71q-10.69 15.66-23.33 32.47C365.63 152 339.1 145.84 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.63 717.63 0 0 0-115.34-31.71 646.608 646.608 0 0 0-39.39-6.05c-.07.45-1.81 1.85-2.16 20.33C300 190.28 358.78 215.68 389.36 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43zm27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.55 306.58 111zm-130.65 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57zm-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.06 74.8" + } + }, + "free": [ + "brands" + ] + }, + "bed": { + "changes": [ + "4.3", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lodging", + "mattress", + "rest", + "sleep", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f236", + "label": "Bed", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635336, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z" + } + }, + "free": [ + "solid" + ] + }, + "beer": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "ale", + "bar", + "beverage", + "brewery", + "drink", + "lager", + "liquor", + "mug", + "stein" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fc", + "label": "beer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635337, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "behance": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b4", + "label": "Behance", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860968, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" + } + }, + "free": [ + "brands" + ] + }, + "behance-square": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b5", + "label": "Behance Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860968, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" + } + }, + "free": [ + "brands" + ] + }, + "bell": { + "changes": [ + "2", + "5.0.0", + "5.2.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "alert", + "chime", + "notification", + "reminder" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0f3", + "label": "bell", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635339, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z" + }, + "regular": { + "last_modified": 1628088634681, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M439.39 362.29c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71zM67.53 368c21.22-27.97 44.42-74.33 44.53-159.42 0-.2-.06-.38-.06-.58 0-61.86 50.14-112 112-112s112 50.14 112 112c0 .2-.06.38-.06.58.11 85.1 23.31 131.46 44.53 159.42H67.53zM224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "bell-slash": { + "changes": [ + "4.2", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "cancel", + "disabled", + "notification", + "off", + "reminder" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1f6", + "label": "Bell Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635339, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z" + }, + "regular": { + "last_modified": 1628088634680, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.99 471.02L36 3.51C29.1-2.01 19.03-.9 13.51 6l-10 12.49C-2.02 25.39-.9 35.46 6 40.98l598 467.51c6.9 5.52 16.96 4.4 22.49-2.49l10-12.49c5.52-6.9 4.41-16.97-2.5-22.49zM163.53 368c16.71-22.03 34.48-55.8 41.4-110.58l-45.47-35.55c-3.27 90.73-36.47 120.68-54.84 140.42-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h279.66l-61.4-48H163.53zM320 96c61.86 0 112 50.14 112 112 0 .2-.06.38-.06.58.02 16.84 1.16 31.77 2.79 45.73l59.53 46.54c-8.31-22.13-14.34-51.49-14.34-92.85 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-26.02 5.41-49.45 16.94-69.13 32.72l38.17 29.84C275 103.18 296.65 96 320 96zm0 416c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "bezier-curve": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "curves", + "illustrator", + "lines", + "path", + "vector" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55b", + "label": "Bezier Curve", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635340, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "bible": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "catholicism", + "christianity", + "god", + "holy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f647", + "label": "Bible", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635341, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM144 144c0-8.84 7.16-16 16-16h48V80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v48h48c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-48v112c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V192h-48c-8.84 0-16-7.16-16-16v-32zm236.8 304H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z" + } + }, + "free": [ + "solid" + ] + }, + "bicycle": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "gears", + "pedal", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f206", + "label": "Bicycle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635341, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z" + } + }, + "free": [ + "solid" + ] + }, + "biking": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "cycle", + "cycling", + "ride", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f84a", + "label": "Biking", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635341, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "bimobject": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f378", + "label": "BIMobject", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860968, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" + } + }, + "free": [ + "brands" + ] + }, + "binoculars": { + "changes": [ + "4.2", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "glasses", + "magnify", + "scenic", + "spyglass", + "view" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e5", + "label": "Binoculars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635342, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z" + } + }, + "free": [ + "solid" + ] + }, + "biohazard": { + "changes": [ + "5.6.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "danger", + "dangerous", + "hazmat", + "medical", + "radioactive", + "toxic", + "waste", + "zombie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f780", + "label": "Biohazard", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635342, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M287.9 112c18.6 0 36.2 3.8 52.8 9.6 13.3-10.3 23.6-24.3 29.5-40.7-25.2-10.9-53-17-82.2-17-29.1 0-56.9 6-82.1 16.9 5.9 16.4 16.2 30.4 29.5 40.7 16.5-5.7 34-9.5 52.5-9.5zM163.6 438.7c12-11.8 20.4-26.4 24.5-42.4-32.9-26.4-54.8-65.3-58.9-109.6-8.5-2.8-17.2-4.6-26.4-4.6-7.6 0-15.2 1-22.5 3.1 4.1 62.8 35.8 118 83.3 153.5zm224.2-42.6c4.1 16 12.5 30.7 24.5 42.5 47.4-35.5 79.1-90.7 83-153.5-7.2-2-14.7-3-22.2-3-9.2 0-18 1.9-26.6 4.7-4.1 44.2-26 82.9-58.7 109.3zm113.5-205c-17.6-10.4-36.3-16.6-55.3-19.9 6-17.7 10-36.4 10-56.2 0-41-14.5-80.8-41-112.2-2.5-3-6.6-3.7-10-1.8-3.3 1.9-4.8 6-3.6 9.7 4.5 13.8 6.6 26.3 6.6 38.5 0 67.8-53.8 122.9-120 122.9S168 117 168 49.2c0-12.1 2.2-24.7 6.6-38.5 1.2-3.7-.3-7.8-3.6-9.7-3.4-1.9-7.5-1.2-10 1.8C134.6 34.2 120 74 120 115c0 19.8 3.9 38.5 10 56.2-18.9 3.3-37.7 9.5-55.3 19.9-34.6 20.5-61 53.3-74.3 92.4-1.3 3.7.2 7.7 3.5 9.8 3.3 2 7.5 1.3 10-1.6 9.4-10.8 19-19.1 29.2-25.1 57.3-33.9 130.8-13.7 163.9 45 33.1 58.7 13.4 134-43.9 167.9-10.2 6.1-22 10.4-35.8 13.4-3.7.8-6.4 4.2-6.4 8.1.1 4 2.7 7.3 6.5 8 39.7 7.8 80.6.8 115.2-19.7 18-10.6 32.9-24.5 45.3-40.1 12.4 15.6 27.3 29.5 45.3 40.1 34.6 20.5 75.5 27.5 115.2 19.7 3.8-.7 6.4-4 6.5-8 0-3.9-2.6-7.3-6.4-8.1-13.9-2.9-25.6-7.3-35.8-13.4-57.3-33.9-77-109.2-43.9-167.9s106.6-78.9 163.9-45c10.2 6.1 19.8 14.3 29.2 25.1 2.5 2.9 6.7 3.6 10 1.6s4.8-6.1 3.5-9.8c-13.1-39.1-39.5-72-74.1-92.4zm-213.4 129c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "birthday-cake": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anniversary", + "bakery", + "candles", + "celebration", + "dessert", + "frosting", + "holiday", + "party", + "pastry" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fd", + "label": "Birthday Cake", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635342, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z" + } + }, + "free": [ + "solid" + ] + }, + "bitbucket": { + "changes": [ + "3.2", + "5.0.0", + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian", + "bitbucket-square", + "git" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f171", + "label": "Bitbucket", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775893, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M22.2 32A16 16 0 0 0 6 47.8a26.35 26.35 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0-13.2-18.3 24.58 24.58 0 0 0-2.8-.2L22.2 32zm285.9 297.8h-104l-28.1-147h157.3l-25.2 147z" + } + }, + "free": [ + "brands" + ] + }, + "bitcoin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f379", + "label": "Bitcoin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860968, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" + } + }, + "free": [ + "brands" + ] + }, + "bity": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37a", + "label": "Bity", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860969, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" + } + }, + "free": [ + "brands" + ] + }, + "black-tie": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f27e", + "label": "Font Awesome Black Tie", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860969, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" + } + }, + "free": [ + "brands" + ] + }, + "blackberry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37b", + "label": "BlackBerry", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860969, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" + } + }, + "free": [ + "brands" + ] + }, + "blender": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "cocktail", + "milkshake", + "mixer", + "puree", + "smoothie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f517", + "label": "Blender", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635344, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z" + } + }, + "free": [ + "solid" + ] + }, + "blender-phone": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "appliance", + "cocktail", + "communication", + "fantasy", + "milkshake", + "mixer", + "puree", + "silly", + "smoothie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6b6", + "label": "Blender Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635343, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M392 64h166.54L576 0H192v352h288l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H392c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM158.8 335.01l-25.78-63.26c-2.78-6.81-9.8-10.99-17.24-10.26l-45.03 4.42c-17.28-46.94-17.65-99.78 0-147.72l45.03 4.42c7.43.73 14.46-3.46 17.24-10.26l25.78-63.26c3.02-7.39.2-15.85-6.68-20.07l-39.28-24.1C98.51-3.87 80.09-.5 68.95 11.97c-92.57 103.6-92 259.55 2.1 362.49 9.87 10.8 29.12 12.48 41.65 4.8l39.41-24.18c6.89-4.22 9.7-12.67 6.69-20.07zM480 384H192c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-144 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "blind": { + "changes": [ + "4.6", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cane", + "disability", + "person", + "sight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f29d", + "label": "Blind", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635344, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z" + } + }, + "free": [ + "solid" + ] + }, + "blog": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "journal", + "log", + "online", + "personal", + "post", + "web 2.0", + "wordpress", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f781", + "label": "Blog", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635345, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M172.2 226.8c-14.6-2.9-28.2 8.9-28.2 23.8V301c0 10.2 7.1 18.4 16.7 22 18.2 6.8 31.3 24.4 31.3 45 0 26.5-21.5 48-48 48s-48-21.5-48-48V120c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.7-24 24v248c0 89.5 82.1 160.2 175 140.7 54.4-11.4 98.3-55.4 109.7-109.7 17.4-82.9-37-157.2-112.5-172.2zM209 0c-9.2-.5-17 6.8-17 16v31.6c0 8.5 6.6 15.5 15 15.9 129.4 7 233.4 112 240.9 241.5.5 8.4 7.5 15 15.9 15h32.1c9.2 0 16.5-7.8 16-17C503.4 139.8 372.2 8.6 209 0zm.3 96c-9.3-.7-17.3 6.7-17.3 16.1v32.1c0 8.4 6.5 15.3 14.8 15.9 76.8 6.3 138 68.2 144.9 145.2.8 8.3 7.6 14.7 15.9 14.7h32.2c9.3 0 16.8-8 16.1-17.3-8.4-110.1-96.5-198.2-206.6-206.7z" + } + }, + "free": [ + "solid" + ] + }, + "blogger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37c", + "label": "Blogger", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860969, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" + } + }, + "free": [ + "brands" + ] + }, + "blogger-b": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37d", + "label": "Blogger B", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860969, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" + } + }, + "free": [ + "brands" + ] + }, + "bluetooth": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f293", + "label": "Bluetooth", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860970, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" + } + }, + "free": [ + "brands" + ] + }, + "bluetooth-b": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f294", + "label": "Bluetooth", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860970, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" + } + }, + "free": [ + "brands" + ] + }, + "bold": { + "changes": [ + "1", + "5.0.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "emphasis", + "format", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f032", + "label": "bold", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635345, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M333.49 238a122 122 0 0 0 27-65.21C367.87 96.49 308 32 233.42 32H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h31.87v288H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h209.32c70.8 0 134.14-51.75 141-122.4 4.74-48.45-16.39-92.06-50.83-119.6zM145.66 112h87.76a48 48 0 0 1 0 96h-87.76zm87.76 288h-87.76V288h87.76a56 56 0 0 1 0 112z" + } + }, + "free": [ + "solid" + ] + }, + "bolt": { + "changes": [ + "2", + "5.0.0", + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electricity", + "lightning", + "weather", + "zap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e7", + "label": "Lightning Bolt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635345, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z" + } + }, + "free": [ + "solid" + ] + }, + "bomb": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "error", + "explode", + "fuse", + "grenade", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e2", + "label": "Bomb", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635346, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "bone": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calcium", + "dog", + "skeletal", + "skeleton", + "tibia" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d7", + "label": "Bone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635346, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z" + } + }, + "free": [ + "solid" + ] + }, + "bong": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aparatus", + "cannabis", + "marijuana", + "pipe", + "smoke", + "smoking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55c", + "label": "Bong", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635347, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z" + } + }, + "free": [ + "solid" + ] + }, + "book": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diary", + "documentation", + "journal", + "library", + "read" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02d", + "label": "book", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635349, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "book-dead": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "crossbones", + "d&d", + "dark arts", + "death", + "dnd", + "documentation", + "evil", + "fantasy", + "halloween", + "holiday", + "necronomicon", + "read", + "skull", + "spell" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6b7", + "label": "Book of the Dead", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635347, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M272 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm176 222.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM240 56c44.2 0 80 28.7 80 64 0 20.9-12.7 39.2-32 50.9V184c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16v-13.1c-19.3-11.7-32-30-32-50.9 0-35.3 35.8-64 80-64zM124.8 223.3l6.3-14.7c1.7-4.1 6.4-5.9 10.5-4.2l98.3 42.1 98.4-42.1c4.1-1.7 8.8.1 10.5 4.2l6.3 14.7c1.7 4.1-.1 8.8-4.2 10.5L280.6 264l70.3 30.1c4.1 1.7 5.9 6.4 4.2 10.5l-6.3 14.7c-1.7 4.1-6.4 5.9-10.5 4.2L240 281.4l-98.3 42.2c-4.1 1.7-8.8-.1-10.5-4.2l-6.3-14.7c-1.7-4.1.1-8.8 4.2-10.5l70.4-30.1-70.5-30.3c-4.1-1.7-5.9-6.4-4.2-10.5zm256 224.7H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8zM208 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "book-medical": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diary", + "documentation", + "health", + "history", + "journal", + "library", + "read", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7e6", + "label": "Medical Book", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635348, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16q0-9.6-9.6-19.2c-3.2-16-3.2-60.8 0-73.6q9.6-4.8 9.6-19.2zM144 168a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8zm236.8 280H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8z" + } + }, + "free": [ + "solid" + ] + }, + "book-open": { + "changes": [ + "5.0.13", + "5.1.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "library", + "notebook", + "open book", + "pamphlet", + "reading" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f518", + "label": "Book Open", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635348, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" + } + }, + "free": [ + "solid" + ] + }, + "book-reader": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "library", + "notebook", + "open book", + "pamphlet", + "reading" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5da", + "label": "Book Reader", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635348, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z" + } + }, + "free": [ + "solid" + ] + }, + "bookmark": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "marker", + "read", + "remember", + "save" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f02e", + "label": "bookmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635350, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z" + }, + "regular": { + "last_modified": 1628088634690, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "bootstrap": { + "changes": [ + "5.8.0", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f836", + "label": "Bootstrap", + "svg": { + "brands": { + "last_modified": 1627918086737, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z" + } + }, + "free": [ + "brands" + ] + }, + "border-all": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f84c", + "label": "Border All", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635352, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z" + } + }, + "free": [ + "solid" + ] + }, + "border-none": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f850", + "label": "Border None", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635355, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M240 224h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-288 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM240 320h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-384h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM48 224H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "border-style": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f853", + "label": "Border Style", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635356, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M240 416h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm192 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H32A32 32 0 0 0 0 64v400a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V96h368a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "bowling-ball": { + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "candlepin", + "gutter", + "lane", + "strike", + "tenpin" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f436", + "label": "Bowling Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635357, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "box": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "container", + "package", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f466", + "label": "Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635360, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z" + } + }, + "free": [ + "solid" + ] + }, + "box-open": { + "changes": [ + "5.0.9", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "container", + "package", + "storage", + "unpack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f49e", + "label": "Box Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635359, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9zm212.6-112.2L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9z" + } + }, + "free": [ + "solid" + ] + }, + "box-tissue": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "kleenex", + "mucus", + "nose", + "sneeze", + "snot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05b", + "label": "Tissue Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635359, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M383.88,287.82l64-192H338.47a70.2,70.2,0,0,1-66.59-48,70.21,70.21,0,0,0-66.6-48H63.88l64,288Zm-384,192a32,32,0,0,0,32,32h448a32,32,0,0,0,32-32v-64H-.12Zm480-256H438.94l-21.33,64h14.27a16,16,0,0,1,0,32h-352a16,16,0,1,1,0-32H95.09l-14.22-64h-49a32,32,0,0,0-32,32v128h512v-128A32,32,0,0,0,479.88,223.82Z" + } + }, + "free": [ + "solid" + ] + }, + "boxes": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "archives", + "inventory", + "storage", + "warehouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f468", + "label": "Boxes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635361, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "braille": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "blind", + "dots", + "raised", + "vision" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a1", + "label": "Braille", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635362, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "brain": { + "changes": [ + "5.2.0", + "5.9.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cerebellum", + "gray matter", + "intellect", + "medulla oblongata", + "mind", + "noodle", + "wit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5dc", + "label": "Brain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635362, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M208 0c-29.9 0-54.7 20.5-61.8 48.2-.8 0-1.4-.2-2.2-.2-35.3 0-64 28.7-64 64 0 4.8.6 9.5 1.7 14C52.5 138 32 166.6 32 200c0 12.6 3.2 24.3 8.3 34.9C16.3 248.7 0 274.3 0 304c0 33.3 20.4 61.9 49.4 73.9-.9 4.6-1.4 9.3-1.4 14.1 0 39.8 32.2 72 72 72 4.1 0 8.1-.5 12-1.2 9.6 28.5 36.2 49.2 68 49.2 39.8 0 72-32.2 72-72V64c0-35.3-28.7-64-64-64zm368 304c0-29.7-16.3-55.3-40.3-69.1 5.2-10.6 8.3-22.3 8.3-34.9 0-33.4-20.5-62-49.7-74 1-4.5 1.7-9.2 1.7-14 0-35.3-28.7-64-64-64-.8 0-1.5.2-2.2.2C422.7 20.5 397.9 0 368 0c-35.3 0-64 28.6-64 64v376c0 39.8 32.2 72 72 72 31.8 0 58.4-20.7 68-49.2 3.9.7 7.9 1.2 12 1.2 39.8 0 72-32.2 72-72 0-4.8-.5-9.5-1.4-14.1 29-12 49.4-40.6 49.4-73.9z" + } + }, + "free": [ + "solid" + ] + }, + "bread-slice": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bake", + "bakery", + "baking", + "dough", + "flour", + "gluten", + "grain", + "sandwich", + "sourdough", + "toast", + "wheat", + "yeast" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ec", + "label": "Bread Slice", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635363, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0C108 0 0 93.4 0 169.14 0 199.44 24.24 224 64 224v256c0 17.67 16.12 32 36 32h376c19.88 0 36-14.33 36-32V224c39.76 0 64-24.56 64-54.86C576 93.4 468 0 288 0z" + } + }, + "free": [ + "solid" + ] + }, + "briefcase": { + "changes": [ + "2", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "business", + "luggage", + "office", + "work" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b1", + "label": "Briefcase", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635364, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z" + } + }, + "free": [ + "solid" + ] + }, + "briefcase-medical": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f469", + "label": "Medical Briefcase", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635364, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z" + } + }, + "free": [ + "solid" + ] + }, + "broadcast-tower": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "radio", + "reception", + "waves" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f519", + "label": "Broadcast Tower", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635365, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z" + } + }, + "free": [ + "solid" + ] + }, + "broom": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "firebolt", + "fly", + "halloween", + "nimbus 2000", + "quidditch", + "sweep", + "witch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51a", + "label": "Broom", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635365, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M256.47 216.77l86.73 109.18s-16.6 102.36-76.57 150.12C206.66 523.85 0 510.19 0 510.19s3.8-23.14 11-55.43l94.62-112.17c3.97-4.7-.87-11.62-6.65-9.5l-60.4 22.09c14.44-41.66 32.72-80.04 54.6-97.47 59.97-47.76 163.3-40.94 163.3-40.94zM636.53 31.03l-19.86-25c-5.49-6.9-15.52-8.05-22.41-2.56l-232.48 177.8-34.14-42.97c-5.09-6.41-15.14-5.21-18.59 2.21l-25.33 54.55 86.73 109.18 58.8-12.45c8-1.69 11.42-11.2 6.34-17.6l-34.09-42.92 232.48-177.8c6.89-5.48 8.04-15.53 2.55-22.44z" + } + }, + "free": [ + "solid" + ] + }, + "brush": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "bristles", + "color", + "handle", + "paint" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55d", + "label": "Brush", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635366, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "btc": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f15a", + "label": "BTC", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860970, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" + } + }, + "free": [ + "brands" + ] + }, + "buffer": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f837", + "label": "Buffer", + "svg": { + "brands": { + "last_modified": 1558987775894, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M427.84 380.67l-196.5 97.82a18.6 18.6 0 0 1-14.67 0L20.16 380.67c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.76 67a18.51 18.51 0 0 0 14.67 0l134.76-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24zm0-136.53l-47.06-23.43a18.62 18.62 0 0 0-14.68 0l-134.76 67.08a18.68 18.68 0 0 1-14.67 0L81.91 220.71a18.65 18.65 0 0 0-14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.51 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31zM20.16 130.42l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.51-90.29c4-1.86 4-4.89 0-6.74L231.33 33.4a19.88 19.88 0 0 0-14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74z" + } + }, + "free": [ + "brands" + ] + }, + "bug": { + "changes": [ + "3.2", + "5.0.0", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "error", + "insect", + "report" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f188", + "label": "Bug", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635366, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z" + } + }, + "free": [ + "solid" + ] + }, + "building": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "business", + "city", + "company", + "office", + "work" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1ad", + "label": "Building", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635367, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" + }, + "regular": { + "last_modified": 1628088634703, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "bullhorn": { + "changes": [ + "2", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "announcement", + "broadcast", + "louder", + "megaphone", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a1", + "label": "bullhorn", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635367, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 240c0-23.63-12.95-44.04-32-55.12V32.01C544 23.26 537.02 0 512 0c-7.12 0-14.19 2.38-19.98 7.02l-85.03 68.03C364.28 109.19 310.66 128 256 128H64c-35.35 0-64 28.65-64 64v96c0 35.35 28.65 64 64 64h33.7c-1.39 10.48-2.18 21.14-2.18 32 0 39.77 9.26 77.35 25.56 110.94 5.19 10.69 16.52 17.06 28.4 17.06h74.28c26.05 0 41.69-29.84 25.9-50.56-16.4-21.52-26.15-48.36-26.15-77.44 0-11.11 1.62-21.79 4.41-32H256c54.66 0 108.28 18.81 150.98 52.95l85.03 68.03a32.023 32.023 0 0 0 19.98 7.02c24.92 0 32-22.78 32-32V295.13C563.05 284.04 576 263.63 576 240zm-96 141.42l-33.05-26.44C392.95 311.78 325.12 288 256 288v-96c69.12 0 136.95-23.78 190.95-66.98L480 98.58v282.84z" + } + }, + "free": [ + "solid" + ] + }, + "bullseye": { + "changes": [ + "3.1", + "5.0.0", + "5.3.0", + "5.10.1", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [ + "archery", + "goal", + "objective", + "target" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f140", + "label": "Bullseye", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635368, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 432c-101.69 0-184-82.29-184-184 0-101.69 82.29-184 184-184 101.69 0 184 82.29 184 184 0 101.69-82.29 184-184 184zm0-312c-70.69 0-128 57.31-128 128s57.31 128 128 128 128-57.31 128-128-57.31-128-128-128zm0 192c-35.29 0-64-28.71-64-64s28.71-64 64-64 64 28.71 64 64-28.71 64-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "burn": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "caliente", + "energy", + "fire", + "flame", + "gas", + "heat", + "hot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46a", + "label": "Burn", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635369, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z" + } + }, + "free": [ + "solid" + ] + }, + "buromobelexperte": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37f", + "label": "Büromöbel-Experte GmbH & Co. KG.", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860970, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" + } + }, + "free": [ + "brands" + ] + }, + "bus": { + "changes": [ + "4.2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f207", + "label": "Bus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635370, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "bus-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mta", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55e", + "label": "Bus Alt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635369, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "business-time": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "briefcase", + "business socks", + "clock", + "flight of the conchords", + "reminder", + "wednesday" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f64a", + "label": "Business Time", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635370, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z" + } + }, + "free": [ + "solid" + ] + }, + "buy-n-large": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8a6", + "label": "Buy n Large", + "svg": { + "brands": { + "last_modified": 1568817883851, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 32C133.27 32 7.79 132.32 7.79 256S133.27 480 288 480s280.21-100.32 280.21-224S442.73 32 288 32zm-85.39 357.19L64.1 390.55l77.25-290.74h133.44c63.15 0 84.93 28.65 78 72.84a60.24 60.24 0 0 1-1.5 6.85 77.39 77.39 0 0 0-17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.71 61.52zM358 207.11h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.86 182.08H306.79L322.63 328a78.8 78.8 0 0 0 11.47.83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.36h103.87zM211.7 269.39H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82zM233 170h-21.34L200 217.71h21.37c18 0 35.38-14.64 39.21-30.14C265.23 168.71 251.07 170 233 170z" + } + }, + "free": [ + "brands" + ] + }, + "buysellads": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f20d", + "label": "BuySellAds", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860970, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" + } + }, + "free": [ + "brands" + ] + }, + "calculator": { + "changes": [ + "4.2", + "5.0.0", + "5.3.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abacus", + "addition", + "arithmetic", + "counting", + "math", + "multiplication", + "subtraction" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ec", + "label": "Calculator", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635371, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 0H48C22.4 0 0 22.4 0 48v416c0 25.6 22.4 48 48 48h352c25.6 0 48-22.4 48-48V48c0-25.6-22.4-48-48-48zM128 435.2c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8V268.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v166.4zm0-256c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8V76.8C64 70.4 70.4 64 76.8 64h294.4c6.4 0 12.8 6.4 12.8 12.8v102.4z" + } + }, + "free": [ + "solid" + ] + }, + "calendar": { + "changes": [ + "3.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar-o", + "date", + "event", + "schedule", + "time", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f133", + "label": "Calendar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635375, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z" + }, + "regular": { + "last_modified": 1628088634708, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "calendar-alt": { + "changes": [ + "1", + "5.0.0", + "5.6.0", + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "event", + "schedule", + "time", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f073", + "label": "Alternate Calendar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635372, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z" + }, + "regular": { + "last_modified": 1628088634706, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "calendar-check": { + "changes": [ + "4.4", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "appointment", + "confirm", + "correct", + "date", + "done", + "event", + "ok", + "schedule", + "select", + "success", + "tick", + "time", + "todo", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f274", + "label": "Calendar Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635372, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z" + }, + "regular": { + "last_modified": 1628088634706, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "calendar-day": { + "changes": [ + "5.6.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "detail", + "event", + "focus", + "schedule", + "single day", + "time", + "today", + "when" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f783", + "label": "Calendar with Day Focus", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635372, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "calendar-minus": { + "changes": [ + "4.4", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "delete", + "event", + "negative", + "remove", + "schedule", + "time", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f272", + "label": "Calendar Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635373, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z" + }, + "regular": { + "last_modified": 1628088634707, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "calendar-plus": { + "changes": [ + "4.4", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "calendar", + "create", + "date", + "event", + "new", + "positive", + "schedule", + "time", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f271", + "label": "Calendar Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635373, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z" + }, + "regular": { + "last_modified": 1628088634707, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "calendar-times": { + "changes": [ + "4.4", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "calendar", + "date", + "delete", + "event", + "remove", + "schedule", + "time", + "when", + "x" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f273", + "label": "Calendar Times", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635374, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z" + }, + "regular": { + "last_modified": 1628088634708, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "calendar-week": { + "changes": [ + "5.6.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "detail", + "event", + "focus", + "schedule", + "single week", + "time", + "today", + "when" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f784", + "label": "Calendar with Week Focus", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635374, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h288c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-64zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "camera": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f030", + "label": "camera", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635377, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" + } + }, + "free": [ + "solid" + ] + }, + "camera-retro": { + "changes": [ + "1", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f083", + "label": "Retro Camera", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635376, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "campground": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camping", + "fall", + "outdoors", + "teepee", + "tent", + "tipi" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6bb", + "label": "Campground", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635377, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448h-24.68L359.54 117.75l53.41-73.55c5.19-7.15 3.61-17.16-3.54-22.35l-25.9-18.79c-7.15-5.19-17.15-3.61-22.35 3.55L320 63.3 278.83 6.6c-5.19-7.15-15.2-8.74-22.35-3.55l-25.88 18.8c-7.15 5.19-8.74 15.2-3.54 22.35l53.41 73.55L40.68 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM320 288l116.36 160H203.64L320 288z" + } + }, + "free": [ + "solid" + ] + }, + "canadian-maple-leaf": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canada", + "flag", + "flora", + "nature", + "plant" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f785", + "label": "Canadian Maple Leaf", + "svg": { + "brands": { + "last_modified": 1558987775894, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z" + } + }, + "free": [ + "brands" + ] + }, + "candy-cane": { + "changes": [ + "5.6.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "candy", + "christmas", + "holiday", + "mint", + "peppermint", + "striped", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f786", + "label": "Candy Cane", + "svg": { + "solid": { + "last_modified": 1628088635378, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.5 92C469.6 33.1 411.8 0 352.4 0c-27.9 0-56.2 7.3-81.8 22.6L243.1 39c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5l27.5-16.4c5.1-3.1 10.8-4.5 16.4-4.5 10.9 0 21.5 5.6 27.5 15.6 9.1 15.1 4.1 34.8-11 43.9L15.6 397.6c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5L428.6 301c71.7-42.9 104.6-133.5 68.9-209zm-177.7 13l-2.5 1.5L296.8 45c9.7-4.7 19.8-8.1 30.3-10.2l20.6 61.8c-9.8.8-19.4 3.3-27.9 8.4zM145.9 431.8l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm107.5-63.9l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zM364.3 302l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm20.4-197.3l46-46c8.4 6.5 16 14.1 22.6 22.6L407.6 127c-5.7-9.3-13.7-16.9-22.9-22.3zm82.1 107.8l-59.5-19.8c3.2-5.3 5.8-10.9 7.4-17.1 1.1-4.5 1.7-9.1 1.8-13.6l60.4 20.1c-2.1 10.4-5.5 20.6-10.1 30.4z" + } + }, + "free": [ + "solid" + ] + }, + "cannabis": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bud", + "chronic", + "drugs", + "endica", + "endo", + "ganja", + "marijuana", + "mary jane", + "pot", + "reefer", + "sativa", + "spliff", + "weed", + "whacky-tabacky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55f", + "label": "Cannabis", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635379, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z" + } + }, + "free": [ + "solid" + ] + }, + "capsules": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46b", + "label": "Capsules", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635379, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z" + } + }, + "free": [ + "solid" + ] + }, + "car": { + "changes": [ + "4.1", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b9", + "label": "Car", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635383, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z" + } + }, + "free": [ + "solid" + ] + }, + "car-alt": { + "changes": [ + "5.2.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5de", + "label": "Alternate Car", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635379, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z" + } + }, + "free": [ + "solid" + ] + }, + "car-battery": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "electric", + "mechanic", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5df", + "label": "Car Battery", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635379, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z" + } + }, + "free": [ + "solid" + ] + }, + "car-crash": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "auto", + "automobile", + "insurance", + "sedan", + "transportation", + "vehicle", + "wreck" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5e1", + "label": "Car Crash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635381, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z" + } + }, + "free": [ + "solid" + ] + }, + "car-side": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5e4", + "label": "Car Side", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635382, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "caravan": { + "changes": [ + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camper", + "motor home", + "rv", + "trailer", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8ff", + "label": "Caravan", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635383, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M416,208a16,16,0,1,0,16,16A16,16,0,0,0,416,208ZM624,320H576V160A160,160,0,0,0,416,0H64A64,64,0,0,0,0,64V320a64,64,0,0,0,64,64H96a96,96,0,0,0,192,0H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM192,432a48,48,0,1,1,48-48A48.05,48.05,0,0,1,192,432Zm64-240a32,32,0,0,1-32,32H96a32,32,0,0,1-32-32V128A32,32,0,0,1,96,96H224a32,32,0,0,1,32,32ZM448,320H320V128a32,32,0,0,1,32-32h64a32,32,0,0,1,32,32Z" + } + }, + "free": [ + "solid" + ] + }, + "caret-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d7", + "label": "Caret Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635384, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" + } + }, + "free": [ + "solid" + ] + }, + "caret-left": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d9", + "label": "Caret Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635385, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" + } + }, + "free": [ + "solid" + ] + }, + "caret-right": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0da", + "label": "Caret Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635385, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" + } + }, + "free": [ + "solid" + ] + }, + "caret-square-down": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-down", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f150", + "label": "Caret Square Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635385, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z" + }, + "regular": { + "last_modified": 1628088634717, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "caret-square-left": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "caret-square-o-left", + "previous", + "triangle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f191", + "label": "Caret Square Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635385, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z" + }, + "regular": { + "last_modified": 1628088634717, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "caret-square-right": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-right", + "forward", + "next", + "triangle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f152", + "label": "Caret Square Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635386, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z" + }, + "regular": { + "last_modified": 1628088634718, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "caret-square-up": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-up", + "collapse", + "triangle", + "upload" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f151", + "label": "Caret Square Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635386, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z" + }, + "regular": { + "last_modified": 1628088634718, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "caret-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d8", + "label": "Caret Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635386, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" + } + }, + "free": [ + "solid" + ] + }, + "carrot": { + "changes": [ + "5.6.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs bunny", + "orange", + "vegan", + "vegetable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f787", + "label": "Carrot", + "svg": { + "solid": { + "last_modified": 1628088635386, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M298.2 156.6c-52.7-25.7-114.5-10.5-150.2 32.8l55.2 55.2c6.3 6.3 6.3 16.4 0 22.6-3.1 3.1-7.2 4.7-11.3 4.7s-8.2-1.6-11.3-4.7L130.4 217 2.3 479.7c-2.9 6-3.1 13.3 0 19.7 5.4 11.1 18.9 15.7 30 10.3l133.6-65.2-49.2-49.2c-6.3-6.2-6.3-16.4 0-22.6 6.3-6.2 16.4-6.2 22.6 0l57 57 102-49.8c24-11.7 44.5-31.3 57.1-57.1 30.1-61.7 4.5-136.1-57.2-166.2zm92.1-34.9C409.8 81 399.7 32.9 360 0c-50.3 41.7-52.5 107.5-7.9 151.9l8 8c44.4 44.6 110.3 42.4 151.9-7.9-32.9-39.7-81-49.8-121.7-30.3z" + } + }, + "free": [ + "solid" + ] + }, + "cart-arrow-down": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f218", + "label": "Shopping Cart Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635387, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" + } + }, + "free": [ + "solid" + ] + }, + "cart-plus": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "new", + "positive", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f217", + "label": "Add to Shopping Cart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635387, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "cash-register": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cha-ching", + "change", + "checkout", + "commerce", + "leaerboard", + "machine", + "pay", + "payment", + "purchase", + "store" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f788", + "label": "Cash Register", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635388, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.1 378.8l-26.7-160c-2.6-15.4-15.9-26.7-31.6-26.7H208v-64h96c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96v64H59.1c-15.6 0-29 11.3-31.6 26.7L.8 378.7c-.6 3.5-.9 7-.9 10.5V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-90.7c.1-3.5-.2-7-.8-10.5zM280 248c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16zm-32 64h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16zm-32-80c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16zM80 80V48h192v32H80zm40 200h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16zm16 64v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm216 112c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16zm24-112c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16zm48-80c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16z" + } + }, + "free": [ + "solid" + ] + }, + "cat": { + "changes": [ + "5.4.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "feline", + "halloween", + "holiday", + "kitten", + "kitty", + "meow", + "pet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6be", + "label": "Cat", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635389, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M290.59 192c-20.18 0-106.82 1.98-162.59 85.95V192c0-52.94-43.06-96-96-96-17.67 0-32 14.33-32 32s14.33 32 32 32c17.64 0 32 14.36 32 32v256c0 35.3 28.7 64 64 64h176c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-32l128-96v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V289.86c-10.29 2.67-20.89 4.54-32 4.54-61.81 0-113.52-44.05-125.41-102.4zM448 96h-64l-64-64v134.4c0 53.02 42.98 96 96 96s96-42.98 96-96V32l-64 64zm-72 80c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm80 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "cc-amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42d", + "label": "Amazon Pay Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860971, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-amex": { + "changes": [ + "4.2", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amex" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f1f3", + "label": "American Express Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699926, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M325.1 167.8c0-16.4-14.1-18.4-27.4-18.4l-39.1-.3v69.3H275v-25.1h18c18.4 0 14.5 10.3 14.8 25.1h16.6v-13.5c0-9.2-1.5-15.1-11-18.4 7.4-3 11.8-10.7 11.7-18.7zm-29.4 11.3H275v-15.3h21c5.1 0 10.7 1 10.7 7.4 0 6.6-5.3 7.9-11 7.9zM279 268.6h-52.7l-21 22.8-20.5-22.8h-66.5l-.1 69.3h65.4l21.3-23 20.4 23h32.2l.1-23.3c18.9 0 49.3 4.6 49.3-23.3 0-17.3-12.3-22.7-27.9-22.7zm-103.8 54.7h-40.6v-13.8h36.3v-14.1h-36.3v-12.5h41.7l17.9 20.2zm65.8 8.2l-25.3-28.1L241 276zm37.8-31h-21.2v-17.6h21.5c5.6 0 10.2 2.3 10.2 8.4 0 6.4-4.6 9.2-10.5 9.2zm-31.6-136.7v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5zM576 255.4h-.2zm-194.6 31.9c0-16.4-14.1-18.7-27.1-18.7h-39.4l-.1 69.3h16.6l.1-25.3h17.6c11 0 14.8 2 14.8 13.8l-.1 11.5h16.6l.1-13.8c0-8.9-1.8-15.1-11-18.4 7.7-3.1 11.8-10.8 11.9-18.4zm-29.2 11.2h-20.7v-15.6h21c5.1 0 10.7 1 10.7 7.4 0 6.9-5.4 8.2-11 8.2zm-172.8-80v-69.3h-27.6l-19.7 47-21.7-47H83.3v65.7l-28.1-65.7H30.7L1 218.5h17.9l6.4-15.3h34.5l6.4 15.3H100v-54.2l24 54.2h14.6l24-54.2v54.2zM31.2 188.8l11.2-27.6 11.5 27.6zm477.4 158.9v-4.5c-10.8 5.6-3.9 4.5-156.7 4.5 0-25.2.1-23.9 0-25.2-1.7-.1-3.2-.1-9.4-.1 0 17.9-.1 6.8-.1 25.3h-39.6c0-12.1.1-15.3.1-29.2-10 6-22.8 6.4-34.3 6.2 0 14.7-.1 8.3-.1 23h-48.9c-5.1-5.7-2.7-3.1-15.4-17.4-3.2 3.5-12.8 13.9-16.1 17.4h-82v-92.3h83.1c5 5.6 2.8 3.1 15.5 17.2 3.2-3.5 12.2-13.4 15.7-17.2h58c9.8 0 18 1.9 24.3 5.6v-5.6c54.3 0 64.3-1.4 75.7 5.1v-5.1h78.2v5.2c11.4-6.9 19.6-5.2 64.9-5.2v5c10.3-5.9 16.6-5.2 54.3-5V80c0-26.5-21.5-48-48-48h-480c-26.5 0-48 21.5-48 48v109.8c9.4-21.9 19.7-46 23.1-53.9h39.7c4.3 10.1 1.6 3.7 9 21.1v-21.1h46c2.9 6.2 11.1 24 13.9 30 5.8-13.6 10.1-23.9 12.6-30h103c0-.1 11.5 0 11.6 0 43.7.2 53.6-.8 64.4 5.3v-5.3H363v9.3c7.6-6.1 17.9-9.3 30.7-9.3h27.6c0 .5 1.9.3 2.3.3H456c4.2 9.8 2.6 6 8.8 20.6v-20.6h43.3c4.9 8-1-1.8 11.2 18.4v-18.4h39.9v92h-41.6c-5.4-9-1.4-2.2-13.2-21.9v21.9h-52.8c-6.4-14.8-.1-.3-6.6-15.3h-19c-4.2 10-2.2 5.2-6.4 15.3h-26.8c-12.3 0-22.3-3-29.7-8.9v8.9h-66.5c-.3-13.9-.1-24.8-.1-24.8-1.8-.3-3.4-.2-9.8-.2v25.1H151.2v-11.4c-2.5 5.6-2.7 5.9-5.1 11.4h-29.5c-4-8.9-2.9-6.4-5.1-11.4v11.4H58.6c-4.2-10.1-2.2-5.3-6.4-15.3H33c-4.2 10-2.2 5.2-6.4 15.3H0V432c0 26.5 21.5 48 48 48h480.1c26.5 0 48-21.5 48-48v-90.4c-12.7 8.3-32.7 6.1-67.5 6.1zm36.3-64.5H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-57 39.8h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-42.2-40.1v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5zm-56.3-108.1c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm20.4-10.5h-.1zm-16.2-15.2c-23.5 0-34 12-34 35.3 0 22.2 10.2 34 33 34h19.2l6.4-15.3h34.3l6.6 15.3h33.7v-51.9l31.2 51.9h23.6v-69h-16.9v48.1l-29.1-48.1h-25.3v65.4l-27.9-65.4h-24.8l-23.5 54.5h-7.4c-13.3 0-16.1-8.1-16.1-19.9 0-23.8 15.7-20 33.1-19.7v-15.2zm42.1 12.1l11.2 27.6h-22.8zm-101.1-12v69.3h16.9v-69.3z" + } + }, + "free": [ + "brands" + ] + }, + "cc-apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f416", + "label": "Apple Pay Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860971, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" + } + }, + "free": [ + "brands" + ] + }, + "cc-diners-club": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f24c", + "label": "Diner's Club Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860971, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" + } + }, + "free": [ + "brands" + ] + }, + "cc-discover": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f2", + "label": "Discover Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722325, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9.1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0l21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6zm-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38zm-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8zM55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9zm67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-jcb": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f24b", + "label": "JCB Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860972, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" + } + }, + "free": [ + "brands" + ] + }, + "cc-mastercard": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f1", + "label": "MasterCard Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860972, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" + } + }, + "free": [ + "brands" + ] + }, + "cc-paypal": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f4", + "label": "Paypal Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860972, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-stripe": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f5", + "label": "Stripe Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722325, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7zM375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7zm68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9l-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6zm160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9z" + } + }, + "free": [ + "brands" + ] + }, + "cc-visa": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f0", + "label": "Visa Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860973, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" + } + }, + "free": [ + "brands" + ] + }, + "centercode": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f380", + "label": "Centercode", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860973, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" + } + }, + "free": [ + "brands" + ] + }, + "centos": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f789", + "label": "Centos", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775895, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M289.6 97.5l31.6 31.7-76.3 76.5V97.5zm-162.4 31.7l76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1l-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6l10.8-10.8zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8l55.5-55.6zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2l-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8l-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6l90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z" + } + }, + "free": [ + "brands" + ] + }, + "certificate": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "star", + "verified" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a3", + "label": "certificate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635389, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z" + } + }, + "free": [ + "solid" + ] + }, + "chair": { + "changes": [ + "5.4.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "furniture", + "seat", + "sit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c0", + "label": "Chair", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635390, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M112 128c0-29.5 16.2-55 40-68.9V256h48V48h48v208h48V59.1c23.8 13.9 40 39.4 40 68.9v128h48V128C384 57.3 326.7 0 256 0h-64C121.3 0 64 57.3 64 128v128h48zm334.3 213.9l-10.7-32c-4.4-13.1-16.6-21.9-30.4-21.9H42.7c-13.8 0-26 8.8-30.4 21.9l-10.7 32C-5.2 362.6 10.2 384 32 384v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384h256v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384c21.8 0 37.2-21.4 30.3-42.1z" + } + }, + "free": [ + "solid" + ] + }, + "chalkboard": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "learning", + "school", + "teaching", + "whiteboard", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51b", + "label": "Chalkboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635391, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "chalkboard-teacher": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "learning", + "professor", + "school", + "whiteboard", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51c", + "label": "Chalkboard Teacher", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635390, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z" + } + }, + "free": [ + "solid" + ] + }, + "charging-station": { + "changes": [ + "5.2.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "ev", + "tesla", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5e7", + "label": "Charging Station", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635391, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z" + } + }, + "free": [ + "solid" + ] + }, + "chart-area": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "area", + "chart", + "graph" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fe", + "label": "Area Chart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635391, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z" + } + }, + "free": [ + "solid" + ] + }, + "chart-bar": { + "changes": [ + "1", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "graph" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f080", + "label": "Bar Chart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635392, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + }, + "regular": { + "last_modified": 1628088634724, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "chart-line": { + "changes": [ + "4.2", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "analytics", + "chart", + "dashboard", + "gain", + "graph", + "increase", + "line" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f201", + "label": "Line Chart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635392, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z" + } + }, + "free": [ + "solid" + ] + }, + "chart-pie": { + "changes": [ + "4.2", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "chart", + "diagram", + "graph", + "pie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f200", + "label": "Pie Chart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635393, + "raw": "", + "viewBox": [ + "0", + "0", + "544", + "512" + ], + "width": 544, + "height": 512, + "path": "M527.79 288H290.5l158.03 158.03c6.04 6.04 15.98 6.53 22.19.68 38.7-36.46 65.32-85.61 73.13-140.86 1.34-9.46-6.51-17.85-16.06-17.85zm-15.83-64.8C503.72 103.74 408.26 8.28 288.8.04 279.68-.59 272 7.1 272 16.24V240h223.77c9.14 0 16.82-7.68 16.19-16.8zM224 288V50.71c0-9.55-8.39-17.4-17.84-16.06C86.99 51.49-4.1 155.6.14 280.37 4.5 408.51 114.83 513.59 243.03 511.98c50.4-.63 96.97-16.87 135.26-44.03 7.9-5.6 8.42-17.23 1.57-24.08L224 288z" + } + }, + "free": [ + "solid" + ] + }, + "check": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00c", + "label": "Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635394, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" + } + }, + "free": [ + "solid" + ] + }, + "check-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f058", + "label": "Check Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635394, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" + }, + "regular": { + "last_modified": 1628088634726, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "check-double": { + "changes": [ + "5.1.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f560", + "label": "Double Check", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635394, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z" + } + }, + "free": [ + "solid" + ] + }, + "check-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14a", + "label": "Check Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635394, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z" + }, + "regular": { + "last_modified": 1628088634726, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "cheese": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheddar", + "curd", + "gouda", + "melt", + "parmesan", + "sandwich", + "swiss", + "wedge" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ef", + "label": "Cheese", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635395, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 288v160a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V288zM299.83 32a32 32 0 0 0-21.13 7L0 256h512c0-119.89-94-217.8-212.17-224z" + } + }, + "free": [ + "solid" + ] + }, + "chess": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "castle", + "checkmate", + "game", + "king", + "rook", + "strategy", + "tournament" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f439", + "label": "Chess", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635399, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M74 208H64a16 16 0 0 0-16 16v16a16 16 0 0 0 16 16h15.94A535.78 535.78 0 0 1 64 384h128a535.78 535.78 0 0 1-15.94-128H192a16 16 0 0 0 16-16v-16a16 16 0 0 0-16-16h-10l33.89-90.38a16 16 0 0 0-15-21.62H144V64h24a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8h-24V8a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v24H88a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h24v32H55.09a16 16 0 0 0-15 21.62zm173.16 251.58L224 448v-16a16 16 0 0 0-16-16H48a16 16 0 0 0-16 16v16L8.85 459.58A16 16 0 0 0 0 473.89V496a16 16 0 0 0 16 16h224a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31zm92.77-157.78l-3.29 82.2h126.72l-3.29-82.21 24.6-20.79A32 32 0 0 0 496 256.54V198a6 6 0 0 0-6-6h-26.38a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H373.1a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H310a6 6 0 0 0-6 6v58.6a32 32 0 0 0 11.36 24.4zM384 304a16 16 0 0 1 32 0v32h-32zm119.16 155.58L480 448v-16a16 16 0 0 0-16-16H336a16 16 0 0 0-16 16v16l-23.15 11.58a16 16 0 0 0-8.85 14.31V496a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31z" + } + }, + "free": [ + "solid" + ] + }, + "chess-bishop": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f43a", + "label": "Chess Bishop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635396, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M8 287.88c0 51.64 22.14 73.83 56 84.6V416h192v-43.52c33.86-10.77 56-33 56-84.6 0-30.61-10.73-67.1-26.69-102.56L185 285.65a8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 0-11.31L270.27 155.1c-20.8-37.91-46.47-72.1-70.87-92.59C213.4 59.09 224 47.05 224 32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32c0 15 10.6 27.09 24.6 30.51C67.81 106.8 8 214.5 8 287.88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "chess-board": { + "changes": [ + "5.0.5", + "5.7.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f43c", + "label": "Chess Board", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635396, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M255.9.2h-64v64h64zM0 64.17v64h64v-64zM128 .2H64v64h64zm64 255.9v64h64v-64zM0 192.12v64h64v-64zM383.85.2h-64v64h64zm128 0h-64v64h64zM128 256.1H64v64h64zM511.8 448v-64h-64v64zm0-128v-64h-64v64zM383.85 512h64v-64h-64zm128-319.88v-64h-64v64zM128 512h64v-64h-64zM0 512h64v-64H0zm255.9 0h64v-64h-64zM0 320.07v64h64v-64zm319.88-191.92v-64h-64v64zm-64 128h64v-64h-64zm-64 128v64h64v-64zm128-64h64v-64h-64zm0-127.95h64v-64h-64zm0 191.93v64h64v-64zM64 384.05v64h64v-64zm128-255.9v-64h-64v64zm191.92 255.9h64v-64h-64zm-128-191.93v-64h-64v64zm128-127.95v64h64v-64zm-128 255.9v64h64v-64zm-64-127.95H128v64h64zm191.92 64h64v-64h-64zM128 128.15H64v64h64zm0 191.92v64h64v-64z" + } + }, + "free": [ + "solid" + ] + }, + "chess-king": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f43f", + "label": "Chess King", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635397, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 448H48a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm16-288H256v-48h40a8 8 0 0 0 8-8V56a8 8 0 0 0-8-8h-40V8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v40h-40a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h40v48H32a32 32 0 0 0-30.52 41.54L74.56 416h298.88l73.08-214.46A32 32 0 0 0 416 160z" + } + }, + "free": [ + "solid" + ] + }, + "chess-knight": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "horse", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f441", + "label": "Chess Knight", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635397, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M19 272.47l40.63 18.06a32 32 0 0 0 24.88.47l12.78-5.12a32 32 0 0 0 18.76-20.5l9.22-30.65a24 24 0 0 1 12.55-15.65L159.94 208v50.33a48 48 0 0 1-26.53 42.94l-57.22 28.65A80 80 0 0 0 32 401.48V416h319.86V224c0-106-85.92-192-191.92-192H12A12 12 0 0 0 0 44a16.9 16.9 0 0 0 1.79 7.58L16 80l-9 9a24 24 0 0 0-7 17v137.21a32 32 0 0 0 19 29.26zM52 128a20 20 0 1 1-20 20 20 20 0 0 1 20-20zm316 320H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "chess-pawn": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f443", + "label": "Chess Pawn", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635398, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M105.1 224H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h16v5.49c0 44-4.14 86.6-24 122.51h176c-19.89-35.91-24-78.51-24-122.51V288h16a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-25.1c29.39-18.38 49.1-50.78 49.1-88a104 104 0 0 0-208 0c0 37.22 19.71 69.62 49.1 88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "chess-queen": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f445", + "label": "Chess Queen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635398, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 112a56 56 0 1 0-56-56 56 56 0 0 0 56 56zm176 336H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm72.87-263.84l-28.51-15.92c-7.44-5-16.91-2.46-22.29 4.68a47.59 47.59 0 0 1-47.23 18.23C383.7 186.86 368 164.93 368 141.4a13.4 13.4 0 0 0-13.4-13.4h-38.77c-6 0-11.61 4-12.86 9.91a48 48 0 0 1-93.94 0c-1.25-5.92-6.82-9.91-12.86-9.91H157.4a13.4 13.4 0 0 0-13.4 13.4c0 25.69-19 48.75-44.67 50.49a47.5 47.5 0 0 1-41.54-19.15c-5.28-7.09-14.73-9.45-22.09-4.54l-28.57 16a16 16 0 0 0-5.44 20.47L104.24 416h303.52l102.55-211.37a16 16 0 0 0-5.44-20.47z" + } + }, + "free": [ + "solid" + ] + }, + "chess-rook": { + "changes": [ + "5.0.5", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "castle", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f447", + "label": "Chess Rook", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635398, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 32h-56a16 16 0 0 0-16 16v48h-48V48a16 16 0 0 0-16-16h-80a16 16 0 0 0-16 16v48H88.1V48a16 16 0 0 0-16-16H16A16 16 0 0 0 0 48v176l64 32c0 48.33-1.54 95-13.21 160h282.42C321.54 351 320 303.72 320 256l64-32V48a16 16 0 0 0-16-16zM224 320h-64v-64a32 32 0 0 1 64 0zm144 128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-circle-down": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "dropdown", + "menu", + "more" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13a", + "label": "Chevron Circle Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635399, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-circle-left": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f137", + "label": "Chevron Circle Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635399, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-circle-right": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f138", + "label": "Chevron Circle Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635399, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-circle-up": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f139", + "label": "Chevron Circle Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635399, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-down": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "expand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f078", + "label": "chevron-down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635401, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-left": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "bracket", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f053", + "label": "chevron-left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635401, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-right": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "bracket", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f054", + "label": "chevron-right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635402, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-up": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f077", + "label": "chevron-up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635402, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" + } + }, + "free": [ + "solid" + ] + }, + "child": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ae", + "label": "Child", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635403, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z" + } + }, + "free": [ + "solid" + ] + }, + "chrome": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f268", + "label": "Chrome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860973, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z" + } + }, + "free": [ + "brands" + ] + }, + "chromecast": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f838", + "label": "Chromecast", + "svg": { + "brands": { + "last_modified": 1602599794442, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M447.8,64H64c-23.6,0-42.7,19.1-42.7,42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6,0,42.7-19.1,42.7-42.7V106.7 C490.7,83.1,471.4,64,447.8,64z M21.3,383.6L21.3,383.6l0,63.9h63.9C85.2,412.2,56.6,383.6,21.3,383.6L21.3,383.6z M21.3,298.6V341 c58.9,0,106.6,48.1,106.6,107h42.7C170.7,365.6,103.7,298.7,21.3,298.6z M213.4,448h42.7c-0.5-129.5-105.3-234.3-234.8-234.6l0,42.4 C127.3,255.6,213.3,342,213.4,448z" + } + }, + "free": [ + "brands" + ] + }, + "church": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "cathedral", + "chapel", + "community", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51d", + "label": "Church", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635403, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z" + } + }, + "free": [ + "solid" + ] + }, + "circle": { + "changes": [ + "3", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-thin", + "diameter", + "dot", + "ellipse", + "notification", + "round" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f111", + "label": "Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635404, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" + }, + "regular": { + "last_modified": 1628088634737, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "circle-notch": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-o-notch", + "diameter", + "dot", + "ellipse", + "round", + "spinner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ce", + "label": "Circle Notched", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635404, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z" + } + }, + "free": [ + "solid" + ] + }, + "city": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buildings", + "busy", + "skyscrapers", + "urban", + "windows" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f64f", + "label": "City", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635404, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M616 192H480V24c0-13.26-10.74-24-24-24H312c-13.26 0-24 10.74-24 24v72h-64V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v80h-64V16c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v80H24c-13.26 0-24 10.74-24 24v360c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V216c0-13.26-10.75-24-24-24zM128 404c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm128 192c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12V76c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 288c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40z" + } + }, + "free": [ + "solid" + ] + }, + "clinic-medical": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "general practitioner", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f2", + "label": "Medical Clinic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635404, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 115L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2zm96 261a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8zm186.69-139.72l-255.94-226a39.85 39.85 0 0 0-53.45 0l-256 226a16 16 0 0 0-1.21 22.6L25.5 282.7a16 16 0 0 0 22.6 1.21L277.42 81.63a16 16 0 0 1 21.17 0L527.91 283.9a16 16 0 0 0 22.6-1.21l21.4-23.82a16 16 0 0 0-1.22-22.59z" + } + }, + "free": [ + "solid" + ] + }, + "clipboard": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "notes", + "paste", + "record" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f328", + "label": "Clipboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635406, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z" + }, + "regular": { + "last_modified": 1628088634741, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm144 418c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h42v36c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-36h42c3.3 0 6 2.7 6 6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "clipboard-check": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46c", + "label": "Clipboard with Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635405, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z" + } + }, + "free": [ + "solid" + ] + }, + "clipboard-list": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "intinerary", + "ol", + "schedule", + "tick", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46d", + "label": "Clipboard List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635405, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" + } + }, + "free": [ + "solid" + ] + }, + "clock": { + "changes": [ + "1", + "5.0.0", + "5.12.1" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "late", + "schedule", + "time", + "timer", + "timestamp", + "watch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f017", + "label": "Clock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635406, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z" + }, + "regular": { + "last_modified": 1628088634741, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "clone": { + "changes": [ + "4.4", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "copy", + "duplicate", + "paste" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f24d", + "label": "Clone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635406, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" + }, + "regular": { + "last_modified": 1628088634741, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "closed-captioning": { + "changes": [ + "4.2", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "cc", + "deaf", + "hearing", + "subtitle", + "subtitling", + "text", + "video" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f20a", + "label": "Closed Captioning", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635406, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z" + }, + "regular": { + "last_modified": 1628088634742, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "cloud": { + "changes": [ + "2", + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "atmosphere", + "fog", + "overcast", + "save", + "upload", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c2", + "label": "Cloud", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635411, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-download-alt": { + "changes": [ + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "export", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f381", + "label": "Alternate Cloud Download", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635406, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-meatball": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "FLDSMDFR", + "food", + "spaghetti", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f73b", + "label": "Cloud with (a chance of) Meatball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635407, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M48 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm416 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-119 11.1c4.6-14.5 1.6-30.8-9.8-42.3-11.5-11.5-27.8-14.4-42.3-9.9-7-13.5-20.7-23-36.9-23s-29.9 9.5-36.9 23c-14.5-4.6-30.8-1.6-42.3 9.9-11.5 11.5-14.4 27.8-9.9 42.3-13.5 7-23 20.7-23 36.9s9.5 29.9 23 36.9c-4.6 14.5-1.6 30.8 9.9 42.3 8.2 8.2 18.9 12.3 29.7 12.3 4.3 0 8.5-1.1 12.6-2.5 7 13.5 20.7 23 36.9 23s29.9-9.5 36.9-23c4.1 1.3 8.3 2.5 12.6 2.5 10.8 0 21.5-4.1 29.7-12.3 11.5-11.5 14.4-27.8 9.8-42.3 13.5-7 23-20.7 23-36.9s-9.5-29.9-23-36.9zM512 224c0-53-43-96-96-96-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h43.4c3.6-8 8.4-15.4 14.8-21.8 13.5-13.5 31.5-21.1 50.8-21.3 13.5-13.2 31.7-20.9 51-20.9s37.5 7.7 51 20.9c19.3.2 37.3 7.8 50.8 21.3 6.4 6.4 11.3 13.8 14.8 21.8H416c53 0 96-43 96-96z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-moon": { + "changes": [ + "5.4.0", + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "sky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c3", + "label": "Cloud with Moon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635408, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M342.8 352.7c5.7-9.6 9.2-20.7 9.2-32.7 0-35.3-28.7-64-64-64-17.2 0-32.8 6.9-44.3 17.9-16.3-29.6-47.5-49.9-83.7-49.9-53 0-96 43-96 96 0 2 .5 3.8.6 5.7C27.1 338.8 0 374.1 0 416c0 53 43 96 96 96h240c44.2 0 80-35.8 80-80 0-41.9-32.3-75.8-73.2-79.3zm222.5-54.3c-93.1 17.7-178.5-53.7-178.5-147.7 0-54.2 29-104 76.1-130.8 7.3-4.1 5.4-15.1-2.8-16.7C448.4 1.1 436.7 0 425 0 319.1 0 233.1 85.9 233.1 192c0 8.5.7 16.8 1.8 25 5.9 4.3 11.6 8.9 16.7 14.2 11.4-4.7 23.7-7.2 36.4-7.2 52.9 0 96 43.1 96 96 0 3.6-.2 7.2-.6 10.7 23.6 10.8 42.4 29.5 53.5 52.6 54.4-3.4 103.7-29.3 137.1-70.4 5.3-6.5-.5-16.1-8.7-14.5z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-moon-rain": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f73c", + "label": "Cloud with Moon and Rain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635408, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M350.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C27.6 232.9 0 265.2 0 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm217.4-1.7c-70.4 13.3-135-40.3-135-110.8 0-40.6 21.9-78 57.5-98.1 5.5-3.1 4.1-11.4-2.1-12.5C479.6.8 470.7 0 461.8 0c-77.9 0-141.1 61.2-144.4 137.9 26.7 11.9 48.2 33.8 58.9 61.7 37.1 14.3 64 47.4 70.2 86.8 5.1.5 10 1.5 15.2 1.5 44.7 0 85.6-20.2 112.6-53.3 4.2-4.8-.2-12-6.4-10.8zM364.5 418.1c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-rain": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f73d", + "label": "Cloud with Rain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635408, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96zM88 374.2c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-showers-heavy": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f740", + "label": "Cloud with Heavy Showers", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635409, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M183.9 370.1c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-192 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm384 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zM416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.2 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-sun": { + "changes": [ + "5.4.0", + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clear", + "day", + "daytime", + "fall", + "outdoors", + "overcast", + "partly cloudy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c4", + "label": "Cloud with Sun", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635411, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M575.2 325.7c.2-1.9.8-3.7.8-5.6 0-35.3-28.7-64-64-64-12.6 0-24.2 3.8-34.1 10-17.6-38.8-56.5-66-101.9-66-61.8 0-112 50.1-112 112 0 3 .7 5.8.9 8.7-49.6 3.7-88.9 44.7-88.9 95.3 0 53 43 96 96 96h272c53 0 96-43 96-96 0-42.1-27.2-77.4-64.8-90.4zm-430.4-22.6c-43.7-43.7-43.7-114.7 0-158.3 43.7-43.7 114.7-43.7 158.4 0 9.7 9.7 16.9 20.9 22.3 32.7 9.8-3.7 20.1-6 30.7-7.5L386 81.1c4-11.9-7.3-23.1-19.2-19.2L279 91.2 237.5 8.4C232-2.8 216-2.8 210.4 8.4L169 91.2 81.1 61.9C69.3 58 58 69.3 61.9 81.1l29.3 87.8-82.8 41.5c-11.2 5.6-11.2 21.5 0 27.1l82.8 41.4-29.3 87.8c-4 11.9 7.3 23.1 19.2 19.2l76.1-25.3c6.1-12.4 14-23.7 23.6-33.5-13.1-5.4-25.4-13.4-36-24zm-4.8-79.2c0 40.8 29.3 74.8 67.9 82.3 8-4.7 16.3-8.8 25.2-11.7 5.4-44.3 31-82.5 67.4-105C287.3 160.4 258 140 224 140c-46.3 0-84 37.6-84 83.9z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-sun-rain": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "day", + "overcast", + "precipitation", + "storm", + "summer", + "sunshower" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f743", + "label": "Cloud with Sun and Rain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635411, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M510.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C187.6 233 160 265.2 160 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm-386.4 34.4c-37.4-37.4-37.4-98.3 0-135.8 34.6-34.6 89.1-36.8 126.7-7.4 20-12.9 43.6-20.7 69.2-20.7.7 0 1.3.2 2 .2l8.9-26.7c3.4-10.2-6.3-19.8-16.5-16.4l-75.3 25.1-35.5-71c-4.8-9.6-18.5-9.6-23.3 0l-35.5 71-75.3-25.1c-10.2-3.4-19.8 6.3-16.4 16.5l25.1 75.3-71 35.5c-9.6 4.8-9.6 18.5 0 23.3l71 35.5-25.1 75.3c-3.4 10.2 6.3 19.8 16.5 16.5l59.2-19.7c-.2-2.4-.7-4.7-.7-7.2 0-12.5 2.3-24.5 6.2-35.9-3.6-2.7-7.1-5.2-10.2-8.3zm69.8-58c4.3-24.5 15.8-46.4 31.9-64-9.8-6.2-21.4-9.9-33.8-9.9-35.3 0-64 28.7-64 64 0 18.7 8.2 35.4 21.1 47.1 11.3-15.9 26.6-28.9 44.8-37.2zm330.6 216.2c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-upload-alt": { + "changes": [ + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud-upload", + "import", + "save", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f382", + "label": "Alternate Cloud Upload", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635411, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z" + } + }, + "free": [ + "solid" + ] + }, + "cloudflare": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07d", + "label": "Cloudflare", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785922, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M407.906,319.913l-230.8-2.928a4.58,4.58,0,0,1-3.632-1.926,4.648,4.648,0,0,1-.494-4.147,6.143,6.143,0,0,1,5.361-4.076L411.281,303.9c27.631-1.26,57.546-23.574,68.022-50.784l13.286-34.542a7.944,7.944,0,0,0,.524-2.936,7.735,7.735,0,0,0-.164-1.631A151.91,151.91,0,0,0,201.257,198.4,68.12,68.12,0,0,0,94.2,269.59C41.924,271.106,0,313.728,0,366.12a96.054,96.054,0,0,0,1.029,13.958,4.508,4.508,0,0,0,4.445,3.871l426.1.051c.043,0,.08-.019.122-.02a5.606,5.606,0,0,0,5.271-4l3.273-11.265c3.9-13.4,2.448-25.8-4.1-34.9C430.124,325.423,420.09,320.487,407.906,319.913ZM513.856,221.1c-2.141,0-4.271.062-6.391.164a3.771,3.771,0,0,0-3.324,2.653l-9.077,31.193c-3.9,13.4-2.449,25.786,4.1,34.89,6.02,8.4,16.054,13.323,28.238,13.9l49.2,2.939a4.491,4.491,0,0,1,3.51,1.894,4.64,4.64,0,0,1,.514,4.169,6.153,6.153,0,0,1-5.351,4.075l-51.125,2.939c-27.754,1.27-57.669,23.574-68.145,50.784l-3.695,9.606a2.716,2.716,0,0,0,2.427,3.68c.046,0,.088.017.136.017h175.91a4.69,4.69,0,0,0,4.539-3.37,124.807,124.807,0,0,0,4.682-34C640,277.3,583.524,221.1,513.856,221.1Z" + } + }, + "free": [ + "brands" + ] + }, + "cloudscale": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f383", + "label": "cloudscale.ch", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860973, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" + } + }, + "free": [ + "brands" + ] + }, + "cloudsmith": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f384", + "label": "Cloudsmith", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860973, + "raw": "", + "viewBox": [ + "0", + "0", + "332", + "512" + ], + "width": 332, + "height": 512, + "path": "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" + } + }, + "free": [ + "brands" + ] + }, + "cloudversify": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f385", + "label": "cloudversify", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860974, + "raw": "", + "viewBox": [ + "0", + "0", + "616", + "512" + ], + "width": 616, + "height": 512, + "path": "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" + } + }, + "free": [ + "brands" + ] + }, + "cocktail": { + "changes": [ + "5.1.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "drink", + "gin", + "glass", + "margarita", + "martini", + "vodka" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f561", + "label": "Cocktail", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635413, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z" + } + }, + "free": [ + "solid" + ] + }, + "code": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brackets", + "code", + "development", + "html" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f121", + "label": "Code", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635414, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" + } + }, + "free": [ + "solid" + ] + }, + "code-branch": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "branch", + "code-fork", + "fork", + "git", + "github", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f126", + "label": "Code Branch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635413, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "codepen": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1cb", + "label": "Codepen", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860974, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" + } + }, + "free": [ + "brands" + ] + }, + "codiepie": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f284", + "label": "Codie Pie", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860974, + "raw": "", + "viewBox": [ + "0", + "0", + "472", + "512" + ], + "width": 472, + "height": 512, + "path": "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" + } + }, + "free": [ + "brands" + ] + }, + "coffee": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "breakfast", + "cafe", + "drink", + "fall", + "morning", + "mug", + "seasonal", + "tea" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f4", + "label": "Coffee", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635415, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z" + } + }, + "free": [ + "solid" + ] + }, + "cog": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gear", + "mechanical", + "settings", + "sprocket", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f013", + "label": "cog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635416, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "cogs": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gears", + "mechanical", + "settings", + "sprocket", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f085", + "label": "cogs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635416, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z" + } + }, + "free": [ + "solid" + ] + }, + "coins": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "dime", + "financial", + "gold", + "money", + "penny" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51e", + "label": "Coins", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635417, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z" + } + }, + "free": [ + "solid" + ] + }, + "columns": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "dashboard", + "organize", + "panes", + "split" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0db", + "label": "Columns", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635417, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z" + } + }, + "free": [ + "solid" + ] + }, + "comment": { + "changes": [ + "1", + "5.0.0", + "5.0.9", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f075", + "label": "comment", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635426, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z" + }, + "regular": { + "last_modified": 1628088634755, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "comment-alt": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f27a", + "label": "Alternate Comment", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635421, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z" + }, + "regular": { + "last_modified": 1628088634753, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "comment-dollar": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f651", + "label": "Comment Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635422, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95.01 57.02 130.74C44.46 421.05 2.7 465.97 2.2 466.5A7.995 7.995 0 0 0 8 480c66.26 0 115.99-31.75 140.6-51.38C181.29 440.93 217.59 448 256 448c141.38 0 256-93.12 256-208S397.38 32 256 32zm24 302.44V352c0 8.84-7.16 16-16 16h-16c-8.84 0-16-7.16-16-16v-17.73c-11.42-1.35-22.28-5.19-31.78-11.46-6.22-4.11-6.82-13.11-1.55-18.38l17.52-17.52c3.74-3.74 9.31-4.24 14.11-2.03 3.18 1.46 6.66 2.22 10.26 2.22h32.78c4.66 0 8.44-3.78 8.44-8.42 0-3.75-2.52-7.08-6.12-8.11l-50.07-14.3c-22.25-6.35-40.01-24.71-42.91-47.67-4.05-32.07 19.03-59.43 49.32-63.05V128c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v17.73c11.42 1.35 22.28 5.19 31.78 11.46 6.22 4.11 6.82 13.11 1.55 18.38l-17.52 17.52c-3.74 3.74-9.31 4.24-14.11 2.03a24.516 24.516 0 0 0-10.26-2.22h-32.78c-4.66 0-8.44 3.78-8.44 8.42 0 3.75 2.52 7.08 6.12 8.11l50.07 14.3c22.25 6.36 40.01 24.71 42.91 47.67 4.05 32.06-19.03 59.42-49.32 63.04z" + } + }, + "free": [ + "solid" + ] + }, + "comment-dots": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "more", + "note", + "notification", + "reply", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f4ad", + "label": "Comment Dots", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635422, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1628088634753, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "comment-medical": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advice", + "bubble", + "chat", + "commenting", + "conversation", + "diagnose", + "feedback", + "message", + "note", + "notification", + "prescription", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f5", + "label": "Alternate Medical Chat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635424, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95 57 130.74C44.46 421.05 2.7 466 2.2 466.5A8 8 0 0 0 8 480c66.26 0 116-31.75 140.6-51.38A304.66 304.66 0 0 0 256 448c141.39 0 256-93.12 256-208S397.39 32 256 32zm96 232a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8z" + } + }, + "free": [ + "solid" + ] + }, + "comment-slash": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "cancel", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "mute", + "note", + "notification", + "quiet", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b3", + "label": "Comment Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635425, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" + } + }, + "free": [ + "solid" + ] + }, + "comments": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f086", + "label": "comments", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635427, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z" + }, + "regular": { + "last_modified": 1628088634756, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "comments-dollar": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f653", + "label": "Comments Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635427, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M416 192c0-88.37-93.12-160-208-160S0 103.63 0 192c0 34.27 14.13 65.95 37.97 91.98C24.61 314.22 2.52 338.16 2.2 338.5A7.995 7.995 0 0 0 8 352c36.58 0 66.93-12.25 88.73-24.98C128.93 342.76 167.02 352 208 352c114.88 0 208-71.63 208-160zm-224 96v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V96c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07V288c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm346.01 123.99C561.87 385.96 576 354.27 576 320c0-66.94-53.49-124.2-129.33-148.07.86 6.6 1.33 13.29 1.33 20.07 0 105.87-107.66 192-240 192-10.78 0-21.32-.77-31.73-1.88C207.8 439.63 281.77 480 368 480c40.98 0 79.07-9.24 111.27-24.98C501.07 467.75 531.42 480 568 480c3.2 0 6.09-1.91 7.34-4.84 1.27-2.94.66-6.34-1.55-8.67-.31-.33-22.42-24.24-35.78-54.5z" + } + }, + "free": [ + "solid" + ] + }, + "compact-disc": { + "changes": [ + "5.0.13", + "5.10.1", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "bluray", + "cd", + "disc", + "dvd", + "media", + "movie", + "music", + "record", + "video", + "vinyl" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51f", + "label": "Compact Disc", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635427, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "compass": { + "changes": [ + "3.2", + "5.0.0", + "5.2.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "directory", + "location", + "menu", + "navigation", + "safari", + "travel" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14e", + "label": "Compass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635428, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z" + }, + "regular": { + "last_modified": 1628088634757, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M347.94 129.86L203.6 195.83a31.938 31.938 0 0 0-15.77 15.77l-65.97 144.34c-7.61 16.65 9.54 33.81 26.2 26.2l144.34-65.97a31.938 31.938 0 0 0 15.77-15.77l65.97-144.34c7.61-16.66-9.54-33.81-26.2-26.2zm-77.36 148.72c-12.47 12.47-32.69 12.47-45.16 0-12.47-12.47-12.47-32.69 0-45.16 12.47-12.47 32.69-12.47 45.16 0 12.47 12.47 12.47 32.69 0 45.16zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "compress": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f066", + "label": "Compress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635429, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" + } + }, + "free": [ + "solid" + ] + }, + "compress-alt": { + "changes": [ + "1", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f422", + "label": "Alternate Compress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635428, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M4.686 427.314L104 328l-32.922-31.029C55.958 281.851 66.666 256 88.048 256h112C213.303 256 224 266.745 224 280v112c0 21.382-25.803 32.09-40.922 16.971L152 376l-99.314 99.314c-6.248 6.248-16.379 6.248-22.627 0L4.686 449.941c-6.248-6.248-6.248-16.379 0-22.627zM443.314 84.686L344 184l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C234.697 256 224 245.255 224 232V120c0-21.382 25.803-32.09 40.922-16.971L296 136l99.314-99.314c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.248 6.248 6.248 16.379 0 22.627z" + } + }, + "free": [ + "solid" + ] + }, + "compress-arrows-alt": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f78c", + "label": "Alternate Compress Arrows", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635428, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M200 288H88c-21.4 0-32.1 25.8-17 41l32.9 31-99.2 99.3c-6.2 6.2-6.2 16.4 0 22.6l25.4 25.4c6.2 6.2 16.4 6.2 22.6 0L152 408l31.1 33c15.1 15.1 40.9 4.4 40.9-17V312c0-13.3-10.7-24-24-24zm112-64h112c21.4 0 32.1-25.9 17-41l-33-31 99.3-99.3c6.2-6.2 6.2-16.4 0-22.6L481.9 4.7c-6.2-6.2-16.4-6.2-22.6 0L360 104l-31.1-33C313.8 55.9 288 66.6 288 88v112c0 13.3 10.7 24 24 24zm96 136l33-31.1c15.1-15.1 4.4-40.9-17-40.9H312c-13.3 0-24 10.7-24 24v112c0 21.4 25.9 32.1 41 17l31-32.9 99.3 99.3c6.2 6.2 16.4 6.2 22.6 0l25.4-25.4c6.2-6.2 6.2-16.4 0-22.6L408 360zM183 71.1L152 104 52.7 4.7c-6.2-6.2-16.4-6.2-22.6 0L4.7 30.1c-6.2 6.2-6.2 16.4 0 22.6L104 152l-33 31.1C55.9 198.2 66.6 224 88 224h112c13.3 0 24-10.7 24-24V88c0-21.3-25.9-32-41-16.9z" + } + }, + "free": [ + "solid" + ] + }, + "concierge-bell": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attention", + "hotel", + "receptionist", + "service", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f562", + "label": "Concierge Bell", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635430, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "confluence": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f78d", + "label": "Confluence", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860974, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1.1-.2.1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8.4 21.7-7.7.1-.1.1-.3.2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2.3-.4.6-.6 1-67.3 112.6-81.1 95.6-280.6.9-8.1-3.9-17.8-.4-21.7 7.7-.1.1-.1.3-.2.4L22.2 141.3c-3.6 8.1.1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z" + } + }, + "free": [ + "brands" + ] + }, + "connectdevelop": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f20e", + "label": "Connect Develop", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860974, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" + } + }, + "free": [ + "brands" + ] + }, + "contao": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26d", + "label": "Contao", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860975, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" + } + }, + "free": [ + "brands" + ] + }, + "cookie": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "chips", + "chocolate", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f563", + "label": "Cookie", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635432, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "cookie-bite": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "bitten", + "chips", + "chocolate", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f564", + "label": "Cookie Bite", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635432, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "copy": { + "changes": [ + "2", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "clone", + "duplicate", + "file", + "files-o", + "paper", + "paste" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c5", + "label": "Copy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635432, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" + }, + "regular": { + "last_modified": 1628088634760, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "copyright": { + "changes": [ + "4.2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "brand", + "mark", + "register", + "trademark" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1f9", + "label": "Copyright", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635433, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z" + }, + "regular": { + "last_modified": 1628088634760, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "cotton-bureau": { + "changes": [ + "5.10.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "t-shirts", + "tshirts" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f89e", + "label": "Cotton Bureau", + "svg": { + "brands": { + "last_modified": 1567694055624, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M474.31 330.41c-23.66 91.85-94.23 144.59-201.9 148.35V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.24 0C110.52 157.72 74 194.63 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.43-5-211.1-85.07-211.1-223 0-141.82 81.35-223.2 223.2-223.2 114.77 0 189.84 53.2 214.69 148.81H500C473.88 71.51 388.22 8 259.82 8 105 8 12 101.19 12 255.82 12 411.14 105.19 504.34 259.82 504c128.27 0 213.87-63.81 239.67-173.59zM357 182.33c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.75zm-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.41c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.53 71.65 120.75-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.25c7.77 14.49 19.33 25.54 33.82 33.55a80.28 80.28 0 0 0-33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z" + } + }, + "free": [ + "brands" + ] + }, + "couch": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "cushion", + "furniture", + "relax", + "sofa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b8", + "label": "Couch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635433, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "cpanel": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f388", + "label": "cPanel", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722325, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons": { + "changes": [ + "4.4", + "5.0.0", + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f25e", + "label": "Creative Commons", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-by": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e7", + "label": "Creative Commons Attribution", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860975, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nc": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e8", + "label": "Creative Commons Noncommercial", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860976, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nc-eu": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e9", + "label": "Creative Commons Noncommercial (Euro Sign)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860975, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nc-jp": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ea", + "label": "Creative Commons Noncommercial (Yen Sign)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860975, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4eb", + "label": "Creative Commons No Derivative Works", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860976, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-pd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ec", + "label": "Creative Commons Public Domain", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860976, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-pd-alt": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ed", + "label": "Alternate Creative Commons Public Domain", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722326, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8zM316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6zm.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9zM203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5zm-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6.9 41.6z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-remix": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ee", + "label": "Creative Commons Remix", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860976, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-sa": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ef", + "label": "Creative Commons Share Alike", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-sampling": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f0", + "label": "Creative Commons Sampling", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-sampling-plus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f1", + "label": "Creative Commons Sampling +", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-share": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f2", + "label": "Creative Commons Share", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-zero": { + "changes": [ + "5.0.11", + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f3", + "label": "Creative Commons CC0", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8 0 65.5 20.6 142.8 102.5 142.8S350.5 321.5 350.5 256c0-65.5-20.6-142.8-102.5-142.8zm0 53.9c3.3 0 6.4.5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9zm40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4l60.9-105.2z" + } + }, + "free": [ + "brands" + ] + }, + "credit-card": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "credit-card-alt", + "debit", + "money", + "payment", + "purchase" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f09d", + "label": "Credit Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635435, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z" + }, + "regular": { + "last_modified": 1628088634762, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "critical-role": { + "changes": [ + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6c9", + "label": "Critical Role", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775895, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M225.82 0c.26.15 216.57 124.51 217.12 124.72 3 1.18 3.7 3.46 3.7 6.56q-.11 125.17 0 250.36a5.88 5.88 0 0 1-3.38 5.78c-21.37 12-207.86 118.29-218.93 124.58h-3C142 466.34 3.08 386.56 2.93 386.48a3.29 3.29 0 0 1-1.88-3.24c0-.87 0-225.94-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.11 213.2 6 224.07 0zM215.4 20.42l-.22-.16Q118.06 75.55 21 130.87c0 .12.08.23.13.35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.43c.88-1.41 64.07-110.91 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4.09 1.48.22.78 1.42-41.19 71.33-36.4 63-67.48 116.94-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82.29 26.21.15 25.27 1 32.66.52 4.37 2.16 4.2 9.69 4.81 3.14.26 3.88 4.08.52 4.92-1.57.39-31.6.51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16.81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4.88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06.89.13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.37 72.37 0 0 0 23.58-.3c1.08-.15 1.5.2 1.48 1.33 0 .11.88 26.69.87 26.8-.05 1.52.67 1.62 1.89 1.62h186.71Q386.51 304.6 346 234.33c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.06V138c-1.72.5-103.3 38.72-105.76 39.68-1.08.42-1.55.2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13.65-1.39.1 0 95.53-35.85 103-38.77-65.42-37.57-130.56-75-196-112.6l86.82 150.39-.28.33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.71-82-142.16-9.1 14.67-83.56 146.21-85.37 146.32-2.93.17-5.88.08-9.25.08q43.25-74.74 86.18-149zm51.93 129.92a37.68 37.68 0 0 0 5.54-.85c1.69-.3 2.53.2 2.6 1.92 0 .11.07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.11 0 .89.52 1.2 1.21 1.51a83.92 83.92 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75.13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.35.05-1.08-.62-1.16-1.35-1.15-32.35.52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95.23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85.68-27.49.58-22.59 1-29.55a2.69 2.69 0 0 0-1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0-2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9.43 1.12 1.24 1.11.1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76.31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1-1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15zm80 87.67h-19.49a2.57 2.57 0 0 1-2.66-1.79c2.38-3.75 5.89.92 5.86-6.14-.08-25.75.21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05.72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73.95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42.26 4.73.45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49.53 1 3.38 0 .05-.16 0-.24 0-3.61.26-3.94 1-4 4.62-.27 43.93.07 40.23.41 42.82.11.84.27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37.08-20.74 0-31.11.07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37.88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57.83 3.55zm275-10.15c-1.21 7.13.17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1-3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0-2-1.44 138 138 0 0 0-14.58.07 2.23 2.23 0 0 0-1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72.66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61.13 4-1.11 4.13-4.29.09-1.87.08 1.17.07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06.21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0-2.66 2.83c-.07 1.63-.19 38.89.29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25.43 14.92.44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.72 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11.38 37.19-.65 1.68-.19 2.38.24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31.34 15.69-1.52.47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58.32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64.48 14.4 0 16.43-5.71.84-2.37 3.5-1.77 3.18.58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.52c2.46.61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1.57 11.89-6 12.75-1.6.21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.14c3.28 0 3.66 3 .16 3.43-2.61.32-5-.42-5 5.46 0 2-.19 29.05.4 41.45.11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76.84 2.76 1.08.35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94.4 5.13-2.8 1-15.87.57-44.65.34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22.34-3.22 1.45-.02 17.97-.03 23.09-.02zm-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61.1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09.41-3.15 1.29 0 20.19-.41 21.17.21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.27a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.57 197.42-112.51-.14-.43 11.26-.18-181.52-.27-1.22 0-1.57.37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.33 28.33 0 0 1-1.36 7.71c-.55 1.83.38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1-2-10.79c.16-2.46.8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.32 102.57 196 112.76zm-90.9-188.75c0 2.4.36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51.05 8.04.01 11.61.02 41.65zm105.75-15.05c0 2.13 1.07 38.68 1.09 39.13.34 9.94-25.58 5.77-25.23-2.59.08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.53 2.53 0 0 1-.36.12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88.07-14.91zm-80.15 103.83c0 1.8.41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81.05 4.5-.03 13.68.02 18.59zm212.32 6.4l-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z" + } + }, + "free": [ + "brands" + ] + }, + "crop": { + "changes": [ + "3.1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f125", + "label": "crop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635437, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "crop-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f565", + "label": "Alternate Crop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635436, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z" + } + }, + "free": [ + "solid" + ] + }, + "cross": { + "changes": [ + "5.3.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "catholicism", + "christianity", + "church", + "jesus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f654", + "label": "Cross", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635437, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M352 128h-96V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h96v224c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V256h96c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "crosshairs": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aim", + "bullseye", + "gpd", + "picker", + "position" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05b", + "label": "Crosshairs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635437, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "crow": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "bullfrog", + "fauna", + "halloween", + "holiday", + "toad" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f520", + "label": "Crow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635438, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "crown": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "favorite", + "king", + "queen", + "royal", + "tiara" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f521", + "label": "Crown", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635438, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "crutch": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cane", + "injury", + "mobility", + "wheelchair" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f7", + "label": "Crutch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635438, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M507.31 185.71l-181-181a16 16 0 0 0-22.62 0L281 27.31a16 16 0 0 0 0 22.63l181 181a16 16 0 0 0 22.63 0l22.62-22.63a16 16 0 0 0 .06-22.6zm-179.54 66.41l-67.89-67.89 55.1-55.1-45.25-45.25-109.67 109.67a96.08 96.08 0 0 0-25.67 46.29L106.65 360.1l-102 102a16 16 0 0 0 0 22.63l22.62 22.62a16 16 0 0 0 22.63 0l102-102 120.25-27.75a95.88 95.88 0 0 0 46.29-25.65l109.68-109.68L382.87 197zm-54.57 54.57a32 32 0 0 1-15.45 8.54l-79.3 18.32 18.3-79.3a32.22 32.22 0 0 1 8.56-15.45l9.31-9.31 67.89 67.89z" + } + }, + "free": [ + "solid" + ] + }, + "css3": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f13c", + "label": "CSS 3 Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860978, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" + } + }, + "free": [ + "brands" + ] + }, + "css3-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38b", + "label": "Alternate CSS3 Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860978, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" + } + }, + "free": [ + "brands" + ] + }, + "cube": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "square", + "tesseract" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b2", + "label": "Cube", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635439, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z" + } + }, + "free": [ + "solid" + ] + }, + "cubes": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "pyramid", + "square", + "stack", + "tesseract" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b3", + "label": "Cubes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635439, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z" + } + }, + "free": [ + "solid" + ] + }, + "cut": { + "changes": [ + "2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clip", + "scissors", + "snip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c4", + "label": "Cut", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635440, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "cuttlefish": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38c", + "label": "Cuttlefish", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860978, + "raw": "", + "viewBox": [ + "0", + "0", + "440", + "512" + ], + "width": 440, + "height": 512, + "path": "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" + } + }, + "free": [ + "brands" + ] + }, + "d-and-d": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38d", + "label": "Dungeons & Dragons", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860978, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" + } + }, + "free": [ + "brands" + ] + }, + "d-and-d-beyond": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6ca", + "label": "D&D Beyond", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722326, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9.2-5.8 1.6-7.5.6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9.6-.3 1.3 0 .6 1.9-.2.6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3.1 5.8 7.1 15.7 7.1zm52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9.9 7.5.2 9 2.5-.4 5.4-1.6 5.4-4.5zm10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1.6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6zm-39.4-18.4c2 .8 1.6.7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4.2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5.5-19.5 9.7-23.8 15.8zm242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4.8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9zm-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27zM301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6.5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9.5 5.2 3.4 7.8 3.3 7.5zm-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8.5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6.3 3 .6 4.3 1.1-2.1.8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2.8.2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8.6-2.6-.2s.3-4.3.3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3.6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7.2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7.6 5.1 3.5 4.8 5.2zm25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3zm38.9 3.7l-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8.8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5.3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9.3 5.6 1.1V196c-1.1.5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2zm-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3zm101.2-19.3l23.1.2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5.2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1.2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3.3-99.3zm-.3 77.5c-37.4 0-36.9-55.3.2-55.3 36.8.1 38.8 55.3-.2 55.3zm-91.3-8.3l44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8.2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1.1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5.8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6.3-39.9-4 .1.8.5 8.2 9.6 14.9zm21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6l7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8.2-39.9-4 .1.7.5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6.3-4 1.1-6.1 2.9.1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6z" + } + }, + "free": [ + "brands" + ] + }, + "dailymotion": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e052", + "label": "dailymotion", + "voted": true, + "svg": { + "brands": { + "last_modified": 1581349336589, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M298.93,267a48.4,48.4,0,0,0-24.36-6.21q-19.83,0-33.44,13.27t-13.61,33.42q0,21.16,13.28,34.6t33.43,13.44q20.5,0,34.11-13.78T322,307.47A47.13,47.13,0,0,0,315.9,284,44.13,44.13,0,0,0,298.93,267ZM0,32V480H448V32ZM374.71,405.26h-53.1V381.37h-.67q-15.79,26.2-55.78,26.2-27.56,0-48.89-13.1a88.29,88.29,0,0,1-32.94-35.77q-11.6-22.68-11.59-50.89,0-27.56,11.76-50.22a89.9,89.9,0,0,1,32.93-35.78q21.18-13.09,47.72-13.1a80.87,80.87,0,0,1,29.74,5.21q13.28,5.21,25,17V153l55.79-12.09Z" + } + }, + "free": [ + "brands" + ] + }, + "dashcube": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f210", + "label": "DashCube", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860979, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" + } + }, + "free": [ + "brands" + ] + }, + "database": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "development", + "directory", + "memory", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1c0", + "label": "Database", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635441, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" + } + }, + "free": [ + "solid" + ] + }, + "deaf": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ear", + "hearing", + "sign language" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a4", + "label": "Deaf", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635441, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z" + } + }, + "free": [ + "solid" + ] + }, + "deezer": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e077", + "label": "Deezer", + "voted": true, + "svg": { + "brands": { + "last_modified": 1599860539197, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M451.46,244.71H576V172H451.46Zm0-173.89v72.67H576V70.82Zm0,275.06H576V273.2H451.46ZM0,447.09H124.54V374.42H0Zm150.47,0H275V374.42H150.47Zm150.52,0H425.53V374.42H301Zm150.47,0H576V374.42H451.46ZM301,345.88H425.53V273.2H301Zm-150.52,0H275V273.2H150.47Zm0-101.17H275V172H150.47Z" + } + }, + "free": [ + "brands" + ] + }, + "delicious": { + "changes": [ + "4.1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a5", + "label": "Delicious", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699927, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z" + } + }, + "free": [ + "brands" + ] + }, + "democrat": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "democratic party", + "donkey", + "election", + "left", + "left-wing", + "liberal", + "politics", + "usa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f747", + "label": "Democrat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635442, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M637.3 256.9l-19.6-29.4c-28.2-42.3-75.3-67.5-126.1-67.5H256l-81.2-81.2c20.1-20.1 22.6-51.1 7.5-73.9-3.4-5.2-10.8-5.9-15.2-1.5l-41.8 41.8L82.4 2.4c-3.6-3.6-9.6-3-12.4 1.2-12.3 18.6-10.3 44 6.1 60.4 3.3 3.3 7.3 5.3 11.3 7.5-2.2 1.7-4.7 3.1-6.4 5.4L6.4 176.2c-7.3 9.7-8.4 22.7-3 33.5l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7h31c8.5 0 16.6-3.4 22.6-9.4L138 212l54 108h352v-77.8c16.2 12.2 18.3 17.6 40.1 50.3 4.9 7.4 14.8 9.3 22.2 4.4l26.6-17.7c7.3-5 9.3-14.9 4.4-22.3zm-341.1-13.6l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L256 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L368 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L480 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zM192 496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80h160v80c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V352H192v144z" + } + }, + "free": [ + "solid" + ] + }, + "deploydog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38e", + "label": "deploy.dog", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860979, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" + } + }, + "free": [ + "brands" + ] + }, + "deskpro": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38f", + "label": "Deskpro", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860979, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" + } + }, + "free": [ + "brands" + ] + }, + "desktop": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "demo", + "desktop", + "device", + "imac", + "machine", + "monitor", + "pc", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f108", + "label": "Desktop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635443, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" + } + }, + "free": [ + "solid" + ] + }, + "dev": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f6cc", + "label": "DEV", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860979, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z" + } + }, + "free": [ + "brands" + ] + }, + "deviantart": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1bd", + "label": "deviantART", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860980, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" + } + }, + "free": [ + "brands" + ] + }, + "dharmachakra": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "buddhist", + "wheel of dharma" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f655", + "label": "Dharmachakra", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635443, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M495 225.06l-17.22 1.08c-5.27-39.49-20.79-75.64-43.86-105.84l12.95-11.43c6.92-6.11 7.25-16.79.73-23.31L426.44 64.4c-6.53-6.53-17.21-6.19-23.31.73L391.7 78.07c-30.2-23.06-66.35-38.58-105.83-43.86L286.94 17c.58-9.21-6.74-17-15.97-17h-29.94c-9.23 0-16.54 7.79-15.97 17l1.08 17.22c-39.49 5.27-75.64 20.79-105.83 43.86l-11.43-12.95c-6.11-6.92-16.79-7.25-23.31-.73L64.4 85.56c-6.53 6.53-6.19 17.21.73 23.31l12.95 11.43c-23.06 30.2-38.58 66.35-43.86 105.84L17 225.06c-9.21-.58-17 6.74-17 15.97v29.94c0 9.23 7.79 16.54 17 15.97l17.22-1.08c5.27 39.49 20.79 75.64 43.86 105.83l-12.95 11.43c-6.92 6.11-7.25 16.79-.73 23.31l21.17 21.17c6.53 6.53 17.21 6.19 23.31-.73l11.43-12.95c30.2 23.06 66.35 38.58 105.84 43.86L225.06 495c-.58 9.21 6.74 17 15.97 17h29.94c9.23 0 16.54-7.79 15.97-17l-1.08-17.22c39.49-5.27 75.64-20.79 105.84-43.86l11.43 12.95c6.11 6.92 16.79 7.25 23.31.73l21.17-21.17c6.53-6.53 6.19-17.21-.73-23.31l-12.95-11.43c23.06-30.2 38.58-66.35 43.86-105.83l17.22 1.08c9.21.58 17-6.74 17-15.97v-29.94c-.01-9.23-7.8-16.54-17.01-15.97zM281.84 98.61c24.81 4.07 47.63 13.66 67.23 27.78l-42.62 48.29c-8.73-5.44-18.32-9.54-28.62-11.95l4.01-64.12zm-51.68 0l4.01 64.12c-10.29 2.41-19.89 6.52-28.62 11.95l-42.62-48.29c19.6-14.12 42.42-23.71 67.23-27.78zm-103.77 64.33l48.3 42.61c-5.44 8.73-9.54 18.33-11.96 28.62l-64.12-4.01c4.07-24.81 13.66-47.62 27.78-67.22zm-27.78 118.9l64.12-4.01c2.41 10.29 6.52 19.89 11.95 28.62l-48.29 42.62c-14.12-19.6-23.71-42.42-27.78-67.23zm131.55 131.55c-24.81-4.07-47.63-13.66-67.23-27.78l42.61-48.3c8.73 5.44 18.33 9.54 28.62 11.96l-4 64.12zM256 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm25.84 125.39l-4.01-64.12c10.29-2.41 19.89-6.52 28.62-11.96l42.61 48.3c-19.6 14.12-42.41 23.71-67.22 27.78zm103.77-64.33l-48.29-42.62c5.44-8.73 9.54-18.32 11.95-28.62l64.12 4.01c-4.07 24.82-13.66 47.64-27.78 67.23zm-36.34-114.89c-2.41-10.29-6.52-19.89-11.96-28.62l48.3-42.61c14.12 19.6 23.71 42.42 27.78 67.23l-64.12 4z" + } + }, + "free": [ + "solid" + ] + }, + "dhl": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dalsey", + "Hillblom and Lynn", + "german", + "package", + "shipping" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f790", + "label": "DHL", + "svg": { + "brands": { + "last_modified": 1546440860980, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M238 301.2h58.7L319 271h-58.7L238 301.2zM0 282.9v6.4h81.8l4.7-6.4H0zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1 2.8-3.7 2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3h-68.2zm317.5-6.9l39.3-53.4h-62.2l-39.3 53.4h62.2zM95.3 271H0v6.4h90.6l4.7-6.4zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4.7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9zM0 301.2h73.1l4.7-6.4H0v6.4zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2zm222 .1h95v-6.4h-90.3l-4.7 6.4zm22.3-30.3l-4.7 6.4H640V271h-72.7zm-13.5 18.3H640v-6.4h-81.5l-4.7 6.4zm-164.2-78.6l-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4h-58.7zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3H423.1z" + } + }, + "free": [ + "brands" + ] + }, + "diagnoses": { + "changes": [ + "5.0.7", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analyze", + "detect", + "diagnosis", + "examine", + "medicine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f470", + "label": "Diagnoses", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635443, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "diaspora": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f791", + "label": "Diaspora", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775895, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M251.64 354.55c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.25s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1.6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3.4-2 1-148.6 1.7-149.6.8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3.8.9 31.9 102.2 31.5 102.6-.9.9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z" + } + }, + "free": [ + "brands" + ] + }, + "dice": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f522", + "label": "Dice", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635448, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "dice-d20": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6cf", + "label": "Dice D20", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635445, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M106.75 215.06L1.2 370.95c-3.08 5 .1 11.5 5.93 12.14l208.26 22.07-108.64-190.1zM7.41 315.43L82.7 193.08 6.06 147.1c-2.67-1.6-6.06.32-6.06 3.43v162.81c0 4.03 5.29 5.53 7.41 2.09zM18.25 423.6l194.4 87.66c5.3 2.45 11.35-1.43 11.35-7.26v-65.67l-203.55-22.3c-4.45-.5-6.23 5.59-2.2 7.57zm81.22-257.78L179.4 22.88c4.34-7.06-3.59-15.25-10.78-11.14L17.81 110.35c-2.47 1.62-2.39 5.26.13 6.78l81.53 48.69zM240 176h109.21L253.63 7.62C250.5 2.54 245.25 0 240 0s-10.5 2.54-13.63 7.62L130.79 176H240zm233.94-28.9l-76.64 45.99 75.29 122.35c2.11 3.44 7.41 1.94 7.41-2.1V150.53c0-3.11-3.39-5.03-6.06-3.43zm-93.41 18.72l81.53-48.7c2.53-1.52 2.6-5.16.13-6.78l-150.81-98.6c-7.19-4.11-15.12 4.08-10.78 11.14l79.93 142.94zm79.02 250.21L256 438.32v65.67c0 5.84 6.05 9.71 11.35 7.26l194.4-87.66c4.03-1.97 2.25-8.06-2.2-7.56zm-86.3-200.97l-108.63 190.1 208.26-22.07c5.83-.65 9.01-7.14 5.93-12.14L373.25 215.06zM240 208H139.57L240 383.75 340.43 208H240z" + } + }, + "free": [ + "solid" + ] + }, + "dice-d6": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d1", + "label": "Dice D6", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635446, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M422.19 109.95L256.21 9.07c-19.91-12.1-44.52-12.1-64.43 0L25.81 109.95c-5.32 3.23-5.29 11.27.06 14.46L224 242.55l198.14-118.14c5.35-3.19 5.38-11.22.05-14.46zm13.84 44.63L240 271.46v223.82c0 12.88 13.39 20.91 24.05 14.43l152.16-92.48c19.68-11.96 31.79-33.94 31.79-57.7v-197.7c0-6.41-6.64-10.43-11.97-7.25zM0 161.83v197.7c0 23.77 12.11 45.74 31.79 57.7l152.16 92.47c10.67 6.48 24.05-1.54 24.05-14.43V271.46L11.97 154.58C6.64 151.4 0 155.42 0 161.83z" + } + }, + "free": [ + "solid" + ] + }, + "dice-five": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f523", + "label": "Dice Five", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635446, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-four": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f524", + "label": "Dice Four", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635447, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-one": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f525", + "label": "Dice One", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635447, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-six": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f526", + "label": "Dice Six", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635447, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-three": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f527", + "label": "Dice Three", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635447, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-two": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f528", + "label": "Dice Two", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635448, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "digg": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a6", + "label": "Digg Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860980, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" + } + }, + "free": [ + "brands" + ] + }, + "digital-ocean": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f391", + "label": "Digital Ocean", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699927, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1zm-235.3 231v-95.3h-95.6v95.6H256v-.3z" + } + }, + "free": [ + "brands" + ] + }, + "digital-tachograph": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "distance", + "speed", + "tachometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f566", + "label": "Digital Tachograph", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635448, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z" + } + }, + "free": [ + "solid" + ] + }, + "directions": { + "changes": [ + "5.2.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "map", + "navigation", + "sign", + "turn" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5eb", + "label": "Directions", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635449, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z" + } + }, + "free": [ + "solid" + ] + }, + "discord": { + "changes": [ + "5.0.0", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f392", + "label": "Discord", + "voted": false, + "svg": { + "brands": { + "last_modified": 1627918086738, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z" + } + }, + "free": [ + "brands" + ] + }, + "discourse": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f393", + "label": "Discourse", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860981, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" + } + }, + "free": [ + "brands" + ] + }, + "disease": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacteria", + "cancer", + "covid-19", + "illness", + "infection", + "sickness", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7fa", + "label": "Disease", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635449, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M472.29 195.9l-67.06-23c-19.28-6.6-33.54-20.92-38.14-38.31l-16-60.45c-11.58-43.77-76.57-57.13-110-22.62L195 99.24c-13.26 13.71-33.54 20.93-54.2 19.31l-71.9-5.62c-52-4.07-86.93 44.89-59 82.84l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24l-28.43 57C4 396.67 47.46 440.29 98.11 429.23l70-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101 7.57 104.45-37.22l4.7-61.86c1.35-17.8 12.8-33.87 30.63-43l62-31.74c44.84-22.96 39.55-80.17-8.99-96.79zM160 256a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm128 96a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm16-128a16 16 0 1 1 16-16 16 16 0 0 1-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "divide": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "calculus", + "division", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f529", + "label": "Divide", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635449, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "dizzy": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "dead", + "disapprove", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f567", + "label": "Dizzy Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635449, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z" + }, + "regular": { + "last_modified": 1628088634777, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "dna": { + "changes": [ + "5.0.7", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "double helix", + "genetic", + "helix", + "molecule", + "protein" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f471", + "label": "DNA", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635450, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z" + } + }, + "free": [ + "solid" + ] + }, + "dochub": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f394", + "label": "DocHub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860981, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" + } + }, + "free": [ + "brands" + ] + }, + "docker": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f395", + "label": "Docker", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860981, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" + } + }, + "free": [ + "brands" + ] + }, + "dog": { + "changes": [ + "5.4.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "fauna", + "mammal", + "pet", + "pooch", + "puppy", + "woof" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d3", + "label": "Dog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635450, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z" + } + }, + "free": [ + "solid" + ] + }, + "dollar-sign": { + "changes": [ + "3.2", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "cost", + "dollar-sign", + "money", + "price", + "usd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f155", + "label": "Dollar Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635451, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z" + } + }, + "free": [ + "solid" + ] + }, + "dolly": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "shipping", + "transport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f472", + "label": "Dolly", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635451, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "dolly-flatbed": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "inventory", + "shipping", + "transport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f474", + "label": "Dolly Flatbed", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635451, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "donate": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "contribute", + "generosity", + "gift", + "give" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b9", + "label": "Donate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635452, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "door-closed": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "enter", + "exit", + "locked" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52a", + "label": "Door Closed", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635452, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "door-open": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "enter", + "exit", + "welcome" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52b", + "label": "Door Open", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635452, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z" + } + }, + "free": [ + "solid" + ] + }, + "dot-circle": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullseye", + "notification", + "target" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f192", + "label": "Dot Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635452, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z" + }, + "regular": { + "last_modified": 1628088634781, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "dove": { + "changes": [ + "5.0.9", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "fauna", + "flying", + "peace", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ba", + "label": "Dove", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635452, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "download": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "export", + "hard drive", + "save", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f019", + "label": "Download", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635453, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" + } + }, + "free": [ + "solid" + ] + }, + "draft2digital": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f396", + "label": "Draft2digital", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722327, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M480 398.1l-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4zM82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z" + } + }, + "free": [ + "brands" + ] + }, + "drafting-compass": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "map", + "mechanical drawing", + "plot", + "plotting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f568", + "label": "Drafting Compass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635453, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "dragon": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "fire", + "lizard", + "serpent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d5", + "label": "Dragon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635453, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M18.32 255.78L192 223.96l-91.28 68.69c-10.08 10.08-2.94 27.31 11.31 27.31h222.7c-9.44-26.4-14.73-54.47-14.73-83.38v-42.27l-119.73-87.6c-23.82-15.88-55.29-14.01-77.06 4.59L5.81 227.64c-12.38 10.33-3.45 30.42 12.51 28.14zm556.87 34.1l-100.66-50.31A47.992 47.992 0 0 1 448 196.65v-36.69h64l28.09 22.63c6 6 14.14 9.37 22.63 9.37h30.97a32 32 0 0 0 28.62-17.69l14.31-28.62a32.005 32.005 0 0 0-3.02-33.51l-74.53-99.38C553.02 4.7 543.54 0 533.47 0H296.02c-7.13 0-10.7 8.57-5.66 13.61L352 63.96 292.42 88.8c-5.9 2.95-5.9 11.36 0 14.31L352 127.96v108.62c0 72.08 36.03 139.39 96 179.38-195.59 6.81-344.56 41.01-434.1 60.91C5.78 478.67 0 485.88 0 494.2 0 504 7.95 512 17.76 512h499.08c63.29.01 119.61-47.56 122.99-110.76 2.52-47.28-22.73-90.4-64.64-111.36zM489.18 66.25l45.65 11.41c-2.75 10.91-12.47 18.89-24.13 18.26-12.96-.71-25.85-12.53-21.52-29.67z" + } + }, + "free": [ + "solid" + ] + }, + "draw-polygon": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ee", + "label": "Draw Polygon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635453, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 352c-.35 0-.67.1-1.02.1l-39.2-65.32c5.07-9.17 8.22-19.56 8.22-30.78s-3.14-21.61-8.22-30.78l39.2-65.32c.35.01.67.1 1.02.1 35.35 0 64-28.65 64-64s-28.65-64-64-64c-23.63 0-44.04 12.95-55.12 32H119.12C108.04 44.95 87.63 32 64 32 28.65 32 0 60.65 0 96c0 23.63 12.95 44.04 32 55.12v209.75C12.95 371.96 0 392.37 0 416c0 35.35 28.65 64 64 64 23.63 0 44.04-12.95 55.12-32h209.75c11.09 19.05 31.49 32 55.12 32 35.35 0 64-28.65 64-64 .01-35.35-28.64-64-63.99-64zm-288 8.88V151.12A63.825 63.825 0 0 0 119.12 128h208.36l-38.46 64.1c-.35-.01-.67-.1-1.02-.1-35.35 0-64 28.65-64 64s28.65 64 64 64c.35 0 .67-.1 1.02-.1l38.46 64.1H119.12A63.748 63.748 0 0 0 96 360.88zM272 256c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zM400 96c0 8.82-7.18 16-16 16s-16-7.18-16-16 7.18-16 16-16 16 7.18 16 16zM64 80c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 416c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zm336 16c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "dribbble": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f17d", + "label": "Dribbble", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860981, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" + } + }, + "free": [ + "brands" + ] + }, + "dribbble-square": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f397", + "label": "Dribbble Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860981, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" + } + }, + "free": [ + "brands" + ] + }, + "dropbox": { + "changes": [ + "3.2", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16b", + "label": "Dropbox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860982, + "raw": "", + "viewBox": [ + "0", + "0", + "528", + "512" + ], + "width": 528, + "height": 512, + "path": "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" + } + }, + "free": [ + "brands" + ] + }, + "drum": { + "changes": [ + "5.1.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "instrument", + "music", + "percussion", + "snare", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f569", + "label": "Drum", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635455, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M431.34 122.05l73.53-47.42a16 16 0 0 0 4.44-22.19l-8.87-13.31a16 16 0 0 0-22.19-4.44l-110.06 71C318.43 96.91 271.22 96 256 96 219.55 96 0 100.55 0 208.15v160.23c0 30.27 27.5 57.68 72 77.86v-101.9a24 24 0 1 1 48 0v118.93c33.05 9.11 71.07 15.06 112 16.73V376.39a24 24 0 1 1 48 0V480c40.93-1.67 78.95-7.62 112-16.73V344.34a24 24 0 1 1 48 0v101.9c44.5-20.18 72-47.59 72-77.86V208.15c0-43.32-35.76-69.76-80.66-86.1zM256 272.24c-114.88 0-208-28.69-208-64.09s93.12-64.08 208-64.08c17.15 0 33.73.71 49.68 1.91l-72.81 47a16 16 0 0 0-4.43 22.19l8.87 13.31a16 16 0 0 0 22.19 4.44l118.64-76.52C430.09 168 464 186.84 464 208.15c0 35.4-93.13 64.09-208 64.09z" + } + }, + "free": [ + "solid" + ] + }, + "drum-steelpan": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calypso", + "instrument", + "music", + "percussion", + "reggae", + "snare", + "sound", + "steel", + "tropical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56a", + "label": "Drum Steelpan", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635454, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z" + } + }, + "free": [ + "solid" + ] + }, + "drumstick-bite": { + "changes": [ + "5.4.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "chicken", + "leg", + "meat", + "poultry", + "turkey" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d7", + "label": "Drumstick with Bite Taken Out", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635455, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462.8 49.57a169.44 169.44 0 0 0-239.5 0C187.82 85 160.13 128 160.13 192v85.83l-40.62 40.59c-9.7 9.69-24 11.07-36.78 6a60.33 60.33 0 0 0-65 98.72C33 438.39 54.24 442.7 73.85 438.21c-4.5 19.6-.18 40.83 15.1 56.1a60.35 60.35 0 0 0 98.8-65c-5.09-12.73-3.72-27 6-36.75L234.36 352h85.89a187.87 187.87 0 0 0 61.89-10c-39.64-43.89-39.83-110.23 1.05-151.07 34.38-34.36 86.76-39.46 128.74-16.8 1.3-44.96-14.81-90.28-49.13-124.56z" + } + }, + "free": [ + "solid" + ] + }, + "drupal": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a9", + "label": "Drupal Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633722, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z" + } + }, + "free": [ + "brands" + ] + }, + "dumbbell": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "gym", + "strength", + "weight", + "weight-lifting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f44b", + "label": "Dumbbell", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635456, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "dumpster": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "trash", + "waste" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f793", + "label": "Dumpster", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635456, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 160c10.4 0 18-9.8 15.5-19.9l-24-96C549.7 37 543.3 32 536 32h-98.9l25.6 128H560zM272 32H171.5l-25.6 128H272V32zm132.5 0H304v128h126.1L404.5 32zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm544 64h-20l4-32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h320v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16l20-160h28c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "dumpster-fire": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "danger", + "dangerous", + "euphemism", + "flame", + "heat", + "hot", + "trash", + "waste" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f794", + "label": "Dumpster Fire", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635456, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M418.7 104.1l.2-.2-14.4-72H304v128h60.8c16.2-19.3 34.2-38.2 53.9-55.8zM272 32H171.5l-25.6 128H272V32zm189.3 72.1c18.2 16.3 35.5 33.7 51.1 51.5 5.7-5.6 11.4-11.1 17.3-16.3l21.3-19 21.3 19c1.1.9 2.1 2.1 3.1 3.1-.1-.8.2-1.5 0-2.3l-24-96C549.7 37 543.3 32 536 32h-98.9l12.3 61.5 11.9 10.6zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm324.6 32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208.8c-30.2-33.7-48.8-77.9-48.8-126.4 0-35.9 19.9-82.9 52.6-129.6zm210.5-28.8c-14.9 13.3-28.3 27.2-40.2 41.2-19.5-25.8-43.6-52-71-76.4-70.2 62.7-120 144.3-120 193.6 0 87.5 71.6 158.4 160 158.4s160-70.9 160-158.4c.1-36.6-37-112.2-88.8-158.4zm-18.6 229.4c-14.7 10.7-32.9 17-52.5 17-49 0-88.9-33.5-88.9-88 0-27.1 16.5-51 49.4-91.9 4.7 5.6 67.1 88.1 67.1 88.1l39.8-47c2.8 4.8 5.4 9.5 7.7 14 18.6 36.7 10.8 83.6-22.6 107.8z" + } + }, + "free": [ + "solid" + ] + }, + "dungeon": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "building", + "d&d", + "dnd", + "door", + "entrance", + "fantasy", + "gate" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d9", + "label": "Dungeon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635457, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M128.73 195.32l-82.81-51.76c-8.04-5.02-18.99-2.17-22.93 6.45A254.19 254.19 0 0 0 .54 239.28C-.05 248.37 7.59 256 16.69 256h97.13c7.96 0 14.08-6.25 15.01-14.16 1.09-9.33 3.24-18.33 6.24-26.94 2.56-7.34.25-15.46-6.34-19.58zM319.03 8C298.86 2.82 277.77 0 256 0s-42.86 2.82-63.03 8c-9.17 2.35-13.91 12.6-10.39 21.39l37.47 104.03A16.003 16.003 0 0 0 235.1 144h41.8c6.75 0 12.77-4.23 15.05-10.58l37.47-104.03c3.52-8.79-1.22-19.03-10.39-21.39zM112 288H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm77.31-283.67l-36.32-90.8c-3.53-8.83-14.13-12.99-22.42-8.31a257.308 257.308 0 0 0-71.61 59.89c-6.06 7.32-3.85 18.48 4.22 23.52l82.93 51.83c6.51 4.07 14.66 2.62 20.11-2.79 5.18-5.15 10.79-9.85 16.79-14.05 6.28-4.41 9.15-12.17 6.3-19.29zM398.18 256h97.13c9.1 0 16.74-7.63 16.15-16.72a254.135 254.135 0 0 0-22.45-89.27c-3.94-8.62-14.89-11.47-22.93-6.45l-82.81 51.76c-6.59 4.12-8.9 12.24-6.34 19.58 3.01 8.61 5.15 17.62 6.24 26.94.93 7.91 7.05 14.16 15.01 14.16zm54.85-162.89a257.308 257.308 0 0 0-71.61-59.89c-8.28-4.68-18.88-.52-22.42 8.31l-36.32 90.8c-2.85 7.12.02 14.88 6.3 19.28 6 4.2 11.61 8.9 16.79 14.05 5.44 5.41 13.6 6.86 20.11 2.79l82.93-51.83c8.07-5.03 10.29-16.19 4.22-23.51zM496 288h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zM240 177.62V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V177.62c-5.23-.89-10.52-1.62-16-1.62s-10.77.73-16 1.62zm-64 41.51V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V189.36c-12.78 7.45-23.84 17.47-32 29.77zm128-29.77V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V219.13c-8.16-12.3-19.22-22.32-32-29.77z" + } + }, + "free": [ + "solid" + ] + }, + "dyalog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f399", + "label": "Dyalog", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860982, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" + } + }, + "free": [ + "brands" + ] + }, + "earlybirds": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39a", + "label": "Earlybirds", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860982, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" + } + }, + "free": [ + "brands" + ] + }, + "ebay": { + "changes": [ + "5.0.11", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f4", + "label": "eBay", + "voted": true, + "svg": { + "brands": { + "last_modified": 1548364699927, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M606 189.5l-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7.4-42.4.9-69.6 10-76.7 34.4 1-5.2 1.5-10.6 1.5-16.2 0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6.3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8zm200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6zm95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0z" + } + }, + "free": [ + "brands" + ] + }, + "edge": { + "changes": [ + "4.5", + "5.0.0", + "5.12.1" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f282", + "label": "Edge Browser", + "voted": false, + "svg": { + "brands": { + "last_modified": 1581349336589, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M481.92,134.48C440.87,54.18,352.26,8,255.91,8,137.05,8,37.51,91.68,13.47,203.66c26-46.49,86.22-79.14,149.46-79.14,79.27,0,121.09,48.93,122.25,50.18,22,23.8,33,50.39,33,83.1,0,10.4-5.31,25.82-15.11,38.57-1.57,2-6.39,4.84-6.39,11,0,5.06,3.29,9.92,9.14,14,27.86,19.37,80.37,16.81,80.51,16.81A115.39,115.39,0,0,0,444.94,322a118.92,118.92,0,0,0,58.95-102.44C504.39,176.13,488.39,147.26,481.92,134.48ZM212.77,475.67a154.88,154.88,0,0,1-46.64-45c-32.94-47.42-34.24-95.6-20.1-136A155.5,155.5,0,0,1,203,215.75c59-45.2,94.84-5.65,99.06-1a80,80,0,0,0-4.89-10.14c-9.24-15.93-24-36.41-56.56-53.51-33.72-17.69-70.59-18.59-77.64-18.59-38.71,0-77.9,13-107.53,35.69C35.68,183.3,12.77,208.72,8.6,243c-1.08,12.31-2.75,62.8,23,118.27a248,248,0,0,0,248.3,141.61C241.78,496.26,214.05,476.24,212.77,475.67Zm250.72-98.33a7.76,7.76,0,0,0-7.92-.23,181.66,181.66,0,0,1-20.41,9.12,197.54,197.54,0,0,1-69.55,12.52c-91.67,0-171.52-63.06-171.52-144A61.12,61.12,0,0,1,200.61,228,168.72,168.72,0,0,0,161.85,278c-14.92,29.37-33,88.13,13.33,151.66,6.51,8.91,23,30,56,47.67,23.57,12.65,49,19.61,71.7,19.61,35.14,0,115.43-33.44,163-108.87A7.75,7.75,0,0,0,463.49,377.34Z" + } + }, + "free": [ + "brands" + ] + }, + "edge-legacy": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e078", + "label": "Edge Legacy Browser", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539197, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M25.71,228.16l.35-.48c0,.16,0,.32-.07.48Zm460.58,15.51c0-44-7.76-84.46-28.81-122.4C416.5,47.88,343.91,8,258.89,8,119,7.72,40.62,113.21,26.06,227.68c42.42-61.31,117.07-121.38,220.37-125,0,0,109.67,0,99.42,105H170c6.37-37.39,18.55-59,34.34-78.93-75.05,34.9-121.85,96.1-120.75,188.32.83,71.45,50.13,144.84,120.75,172,83.35,31.84,192.77,7.2,240.13-21.33V363.31C363.6,419.8,173.6,424.23,172.21,295.74H486.29V243.67Z" + } + }, + "free": [ + "brands" + ] + }, + "edit": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f044", + "label": "Edit", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635458, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" + }, + "regular": { + "last_modified": 1628088634788, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "egg": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breakfast", + "chicken", + "easter", + "shell", + "yolk" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7fb", + "label": "Egg", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635458, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M192 0C86 0 0 214 0 320s86 192 192 192 192-86 192-192S298 0 192 0z" + } + }, + "free": [ + "solid" + ] + }, + "eject": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "cancel", + "cd", + "discharge" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f052", + "label": "eject", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635459, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z" + } + }, + "free": [ + "solid" + ] + }, + "elementor": { + "changes": [ + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f430", + "label": "Elementor", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860983, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z" + } + }, + "free": [ + "brands" + ] + }, + "ellipsis-h": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f141", + "label": "Horizontal Ellipsis", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635459, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z" + } + }, + "free": [ + "solid" + ] + }, + "ellipsis-v": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f142", + "label": "Vertical Ellipsis", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635459, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" + } + }, + "free": [ + "solid" + ] + }, + "ello": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5f1", + "label": "Ello", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860983, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm143.84 285.2C375.31 358.51 315.79 404.8 248 404.8s-127.31-46.29-143.84-111.6c-1.65-7.44 2.48-15.71 9.92-17.36 7.44-1.65 15.71 2.48 17.36 9.92 14.05 52.91 62 90.11 116.56 90.11s102.51-37.2 116.56-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36z" + } + }, + "free": [ + "brands" + ] + }, + "ember": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f423", + "label": "Ember", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722327, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" + } + }, + "free": [ + "brands" + ] + }, + "empire": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d1", + "label": "Galactic Empire", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860983, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" + } + }, + "free": [ + "brands" + ] + }, + "envelope": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0e0", + "label": "Envelope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635462, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" + }, + "regular": { + "last_modified": 1628088634793, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "envelope-open": { + "changes": [ + "4.7", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b6", + "label": "Envelope Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635461, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z" + }, + "regular": { + "last_modified": 1628088634792, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "envelope-open-text": { + "changes": [ + "5.3.0", + "5.10.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f658", + "label": "Envelope Open-text", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635461, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M176 216h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16zm-16 80c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16zm96 121.13c-16.42 0-32.84-5.06-46.86-15.19L0 250.86V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V250.86L302.86 401.94c-14.02 10.12-30.44 15.19-46.86 15.19zm237.61-254.18c-8.85-6.94-17.24-13.47-29.61-22.81V96c0-26.51-21.49-48-48-48h-77.55c-3.04-2.2-5.87-4.26-9.04-6.56C312.6 29.17 279.2-.35 256 0c-23.2-.35-56.59 29.17-73.41 41.44-3.17 2.3-6 4.36-9.04 6.56H96c-26.51 0-48 21.49-48 48v44.14c-12.37 9.33-20.76 15.87-29.61 22.81A47.995 47.995 0 0 0 0 200.72v10.65l96 69.35V96h320v184.72l96-69.35v-10.65c0-14.74-6.78-28.67-18.39-37.77z" + } + }, + "free": [ + "solid" + ] + }, + "envelope-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f199", + "label": "Envelope Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635461, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z" + } + }, + "free": [ + "solid" + ] + }, + "envira": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "leaf" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f299", + "label": "Envira Gallery", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860983, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" + } + }, + "free": [ + "brands" + ] + }, + "equals": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "even", + "match", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52c", + "label": "Equals", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635462, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "eraser": { + "changes": [ + "3.1", + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "delete", + "remove", + "rubber" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12d", + "label": "eraser", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635462, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z" + } + }, + "free": [ + "solid" + ] + }, + "erlang": { + "changes": [ + "5.0.0", + "5.0.3", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39d", + "label": "Erlang", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699928, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9zm238.2 9.7c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2zm230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z" + } + }, + "free": [ + "brands" + ] + }, + "ethereum": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42e", + "label": "Ethereum", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860984, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" + } + }, + "free": [ + "brands" + ] + }, + "ethernet": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cable", + "cat 5", + "cat 6", + "connection", + "hardware", + "internet", + "network", + "wired" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f796", + "label": "Ethernet", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635463, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 192h-48v-48c0-8.8-7.2-16-16-16h-48V80c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16v48H80c-8.8 0-16 7.2-16 16v48H16c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16h80V320h32v128h64V320h32v128h64V320h32v128h64V320h32v128h80c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "etsy": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d7", + "label": "Etsy", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860984, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" + } + }, + "free": [ + "brands" + ] + }, + "euro-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "dollar", + "exchange", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f153", + "label": "Euro Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635463, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z" + } + }, + "free": [ + "solid" + ] + }, + "evernote": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f839", + "label": "Evernote", + "svg": { + "brands": { + "last_modified": 1558987775896, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M120.82 132.21c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56.22-.74 0-.37-.37L123.79 46.45c.38-.37.6-.22.38.37-4.35 9.99-3.35 15.09-3.35 85.39zm79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.45v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.92-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.78 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.09 8.91 238.46 7.8 238.46C362.15 485.53 267.06 480 267.06 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.84c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z" + } + }, + "free": [ + "brands" + ] + }, + "exchange-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "exchange", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f362", + "label": "Alternate Exchange", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635463, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "exclamation": { + "changes": [ + "3.1", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12a", + "label": "exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635464, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" + } + }, + "free": [ + "solid" + ] + }, + "exclamation-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06a", + "label": "Exclamation Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635464, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" + } + }, + "free": [ + "solid" + ] + }, + "exclamation-triangle": { + "changes": [ + "1", + "5.0.0", + "5.6.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f071", + "label": "Exclamation Triangle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635464, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" + } + }, + "free": [ + "solid" + ] + }, + "expand": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "fullscreen", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f065", + "label": "Expand", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635466, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z" + } + }, + "free": [ + "solid" + ] + }, + "expand-alt": { + "changes": [ + "1", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "bigger", + "enlarge", + "fullscreen", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f424", + "label": "Alternate Expand", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635464, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M212.686 315.314L120 408l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C10.697 480 0 469.255 0 456V344c0-21.382 25.803-32.09 40.922-16.971L72 360l92.686-92.686c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.249 6.248 6.249 16.378 0 22.627zm22.628-118.628L328 104l-32.922-31.029C279.958 57.851 290.666 32 312.048 32h112C437.303 32 448 42.745 448 56v112c0 21.382-25.803 32.09-40.922 16.971L376 152l-92.686 92.686c-6.248 6.248-16.379 6.248-22.627 0l-25.373-25.373c-6.249-6.248-6.249-16.378 0-22.627z" + } + }, + "free": [ + "solid" + ] + }, + "expand-arrows-alt": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "fullscreen", + "move", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f31e", + "label": "Alternate Expand Arrows", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635465, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z" + } + }, + "free": [ + "solid" + ] + }, + "expeditedssl": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23e", + "label": "ExpeditedSSL", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860984, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" + } + }, + "free": [ + "brands" + ] + }, + "external-link-alt": { + "changes": [ + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link", + "new", + "open", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f35d", + "label": "Alternate External Link", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635466, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z" + } + }, + "free": [ + "solid" + ] + }, + "external-link-square-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link-square", + "new", + "open", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f360", + "label": "Alternate External Link Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635466, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "eye": { + "changes": [ + "1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "look", + "optic", + "see", + "seen", + "show", + "sight", + "views", + "visible" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f06e", + "label": "Eye", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635468, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z" + }, + "regular": { + "last_modified": 1628088634797, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "eye-dropper": { + "changes": [ + "4.2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "clone", + "color", + "copy", + "eyedropper", + "pipette" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fb", + "label": "Eye Dropper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635467, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z" + } + }, + "free": [ + "solid" + ] + }, + "eye-slash": { + "changes": [ + "1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "hide", + "show", + "toggle", + "unseen", + "views", + "visible", + "visiblity" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f070", + "label": "Eye Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635468, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z" + }, + "regular": { + "last_modified": 1628088634797, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M634 471L36 3.51A16 16 0 0 0 13.51 6l-10 12.49A16 16 0 0 0 6 41l598 467.49a16 16 0 0 0 22.49-2.49l10-12.49A16 16 0 0 0 634 471zM296.79 146.47l134.79 105.38C429.36 191.91 380.48 144 320 144a112.26 112.26 0 0 0-23.21 2.47zm46.42 219.07L208.42 260.16C210.65 320.09 259.53 368 320 368a113 113 0 0 0 23.21-2.46zM320 112c98.65 0 189.09 55 237.93 144a285.53 285.53 0 0 1-44 60.2l37.74 29.5a333.7 333.7 0 0 0 52.9-75.11 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64c-36.7 0-71.71 7-104.63 18.81l46.41 36.29c18.94-4.3 38.34-7.1 58.22-7.1zm0 288c-98.65 0-189.08-55-237.93-144a285.47 285.47 0 0 1 44.05-60.19l-37.74-29.5a333.6 333.6 0 0 0-52.89 75.1 32.35 32.35 0 0 0 0 29.19C89.72 376.41 197.08 448 320 448c36.7 0 71.71-7.05 104.63-18.81l-46.41-36.28C359.28 397.2 339.89 400 320 400z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "facebook": { + "changes": [ + "2", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook-official", + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f09a", + "label": "Facebook", + "voted": false, + "svg": { + "brands": { + "last_modified": 1563977084862, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" + } + }, + "free": [ + "brands" + ] + }, + "facebook-f": { + "changes": [ + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f39e", + "label": "Facebook F", + "voted": false, + "svg": { + "brands": { + "last_modified": 1563977084862, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" + } + }, + "free": [ + "brands" + ] + }, + "facebook-messenger": { + "changes": [ + "5.0.0", + "5.8.2", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39f", + "label": "Facebook Messenger", + "voted": false, + "svg": { + "brands": { + "last_modified": 1563977084862, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z" + } + }, + "free": [ + "brands" + ] + }, + "facebook-square": { + "changes": [ + "1", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f082", + "label": "Facebook Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1563977084862, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" + } + }, + "free": [ + "brands" + ] + }, + "fan": { + "changes": [ + "5.9.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "ac", + "air conditioning", + "blade", + "blower", + "cool", + "hot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f863", + "label": "Fan", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635469, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M352.57 128c-28.09 0-54.09 4.52-77.06 12.86l12.41-123.11C289 7.31 279.81-1.18 269.33.13 189.63 10.13 128 77.64 128 159.43c0 28.09 4.52 54.09 12.86 77.06L17.75 224.08C7.31 223-1.18 232.19.13 242.67c10 79.7 77.51 141.33 159.3 141.33 28.09 0 54.09-4.52 77.06-12.86l-12.41 123.11c-1.05 10.43 8.11 18.93 18.59 17.62 79.7-10 141.33-77.51 141.33-159.3 0-28.09-4.52-54.09-12.86-77.06l123.11 12.41c10.44 1.05 18.93-8.11 17.62-18.59-10-79.7-77.51-141.33-159.3-141.33zM256 288a32 32 0 1 1 32-32 32 32 0 0 1-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "fantasy-flight-games": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6dc", + "label": "Fantasy Flight-games", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633722, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32.86L32.86 256 256 479.14 479.14 256 256 32.86zM88.34 255.83c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.77-18.69 24.63 18.4 62.06 58.9 62.15 59 .68.74 1.07 2.86.58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43.12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99a42569.01 42569.01 0 0 1-41.13-40.72zm234.82 101.6c-35.49 35.43-78.09 38.14-106.99 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64.14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29.26-.26.65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5zM256 0L0 256l256 256 256-256L256 0zM16 256L256 16l240 240-240 240L16 256z" + } + }, + "free": [ + "brands" + ] + }, + "fast-backward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f049", + "label": "fast-backward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635469, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z" + } + }, + "free": [ + "solid" + ] + }, + "fast-forward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f050", + "label": "fast-forward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635469, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" + } + }, + "free": [ + "solid" + ] + }, + "faucet": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "drip", + "house", + "hygiene", + "kitchen", + "sink", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e005", + "label": "Faucet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635470, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M352,256H313.39c-15.71-13.44-35.46-23.07-57.39-28V180.44l-32-3.38-32,3.38V228c-21.93,5-41.68,14.6-57.39,28H16A16,16,0,0,0,0,272v96a16,16,0,0,0,16,16h92.79C129.38,421.73,173,448,224,448s94.62-26.27,115.21-64H352a32,32,0,0,1,32,32,32,32,0,0,0,32,32h64a32,32,0,0,0,32-32A160,160,0,0,0,352,256ZM81.59,159.91l142.41-15,142.41,15c9.42,1,17.59-6.81,17.59-16.8V112.89c0-10-8.17-17.8-17.59-16.81L256,107.74V80a16,16,0,0,0-16-16H208a16,16,0,0,0-16,16v27.74L81.59,96.08C72.17,95.09,64,102.9,64,112.89v30.22C64,153.1,72.17,160.91,81.59,159.91Z" + } + }, + "free": [ + "solid" + ] + }, + "fax": { + "changes": [ + "4.1", + "5.0.0", + "5.3.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "business", + "communicate", + "copy", + "facsimile", + "send" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ac", + "label": "Fax", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635470, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "feather": { + "changes": [ + "5.0.13", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52d", + "label": "Feather", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635471, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z" + } + }, + "free": [ + "solid" + ] + }, + "feather-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56b", + "label": "Alternate Feather", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635471, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z" + } + }, + "free": [ + "solid" + ] + }, + "fedex": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Federal Express", + "package", + "shipping" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f797", + "label": "FedEx", + "svg": { + "brands": { + "last_modified": 1546440860985, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M586 284.5l53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640l-54-60.5zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0h-46.5zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8zm167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1v29.6zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6h-56.1zm138.6 10.3l-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5l-26.3-29.5z" + } + }, + "free": [ + "brands" + ] + }, + "fedora": { + "changes": [ + "5.6.0", + "5.6.3", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f798", + "label": "Fedora", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775897, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M225 32C101.3 31.7.8 131.7.4 255.4L0 425.7a53.6 53.6 0 0 0 53.6 53.9l170.2.4c123.7.3 224.3-99.7 224.6-223.4S348.7 32.3 225 32zm169.8 157.2L333 126.6c2.3-4.7 3.8-9.2 3.8-14.3v-1.6l55.2 56.1a101 101 0 0 1 2.8 22.4zM331 94.3a106.06 106.06 0 0 1 58.5 63.8l-54.3-54.6a26.48 26.48 0 0 0-4.2-9.2zM118.1 247.2a49.66 49.66 0 0 0-7.7 11.4l-8.5-8.5a85.78 85.78 0 0 1 16.2-2.9zM97 251.4l11.8 11.9-.9 8a34.74 34.74 0 0 0 2.4 12.5l-27-27.2a80.6 80.6 0 0 1 13.7-5.2zm-18.2 7.4l38.2 38.4a53.17 53.17 0 0 0-14.1 4.7L67.6 266a107 107 0 0 1 11.2-7.2zm-15.2 9.8l35.3 35.5a67.25 67.25 0 0 0-10.5 8.5L53.5 278a64.33 64.33 0 0 1 10.1-9.4zm-13.3 12.3l34.9 35a56.84 56.84 0 0 0-7.7 11.4l-35.8-35.9c2.8-3.8 5.7-7.2 8.6-10.5zm-11 14.3l36.4 36.6a48.29 48.29 0 0 0-3.6 15.2l-39.5-39.8a99.81 99.81 0 0 1 6.7-12zm-8.8 16.3l41.3 41.8a63.47 63.47 0 0 0 6.7 26.2L25.8 326c1.4-4.9 2.9-9.6 4.7-14.5zm-7.9 43l61.9 62.2a31.24 31.24 0 0 0-3.6 14.3v1.1l-55.4-55.7a88.27 88.27 0 0 1-2.9-21.9zm5.3 30.7l54.3 54.6a28.44 28.44 0 0 0 4.2 9.2 106.32 106.32 0 0 1-58.5-63.8zm-5.3-37a80.69 80.69 0 0 1 2.1-17l72.2 72.5a37.59 37.59 0 0 0-9.9 8.7zm253.3-51.8l-42.6-.1-.1 56c-.2 69.3-64.4 115.8-125.7 102.9-5.7 0-19.9-8.7-19.9-24.2a24.89 24.89 0 0 1 24.5-24.6c6.3 0 6.3 1.6 15.7 1.6a55.91 55.91 0 0 0 56.1-55.9l.1-47c0-4.5-4.5-9-8.9-9l-33.6-.1c-32.6-.1-32.5-49.4.1-49.3l42.6.1.1-56a105.18 105.18 0 0 1 105.6-105 86.35 86.35 0 0 1 20.2 2.3c11.2 1.8 19.9 11.9 19.9 24 0 15.5-14.9 27.8-30.3 23.9-27.4-5.9-65.9 14.4-66 54.9l-.1 47a8.94 8.94 0 0 0 8.9 9l33.6.1c32.5.2 32.4 49.5-.2 49.4zm23.5-.3a35.58 35.58 0 0 0 7.6-11.4l8.5 8.5a102 102 0 0 1-16.1 2.9zm21-4.2L308.6 280l.9-8.1a34.74 34.74 0 0 0-2.4-12.5l27 27.2a74.89 74.89 0 0 1-13.7 5.3zm18-7.4l-38-38.4c4.9-1.1 9.6-2.4 13.7-4.7l36.2 35.9c-3.8 2.5-7.9 5-11.9 7.2zm15.5-9.8l-35.3-35.5a61.06 61.06 0 0 0 10.5-8.5l34.9 35a124.56 124.56 0 0 1-10.1 9zm13.2-12.3l-34.9-35a63.18 63.18 0 0 0 7.7-11.4l35.8 35.9a130.28 130.28 0 0 1-8.6 10.5zm11-14.3l-36.4-36.6a48.29 48.29 0 0 0 3.6-15.2l39.5 39.8a87.72 87.72 0 0 1-6.7 12zm13.5-30.9a140.63 140.63 0 0 1-4.7 14.3L345.6 190a58.19 58.19 0 0 0-7.1-26.2zm1-5.6l-71.9-72.1a32 32 0 0 0 9.9-9.2l64.3 64.7a90.93 90.93 0 0 1-2.3 16.6z" + } + }, + "free": [ + "brands" + ] + }, + "female": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "person", + "profile", + "user", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f182", + "label": "Female", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635471, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z" + } + }, + "free": [ + "solid" + ] + }, + "fighter-jet": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "fast", + "fly", + "goose", + "maverick", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fb", + "label": "fighter-jet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635471, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z" + } + }, + "free": [ + "solid" + ] + }, + "figma": { + "changes": [ + "5.6.0", + "5.7.0", + "5.8.0", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f799", + "label": "Figma", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628096638418, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M14 95.7924C14 42.8877 56.8878 0 109.793 0H274.161C327.066 0 369.954 42.8877 369.954 95.7924C369.954 129.292 352.758 158.776 326.711 175.897C352.758 193.019 369.954 222.502 369.954 256.002C369.954 308.907 327.066 351.795 274.161 351.795H272.081C247.279 351.795 224.678 342.369 207.666 326.904V415.167C207.666 468.777 163.657 512 110.309 512C57.5361 512 14 469.243 14 416.207C14 382.709 31.1945 353.227 57.2392 336.105C31.1945 318.983 14 289.5 14 256.002C14 222.502 31.196 193.019 57.2425 175.897C31.196 158.776 14 129.292 14 95.7924ZM176.288 191.587H109.793C74.2172 191.587 45.3778 220.427 45.3778 256.002C45.3778 291.44 73.9948 320.194 109.381 320.416C109.518 320.415 109.655 320.415 109.793 320.415H176.288V191.587ZM207.666 256.002C207.666 291.577 236.505 320.417 272.081 320.417H274.161C309.737 320.417 338.576 291.577 338.576 256.002C338.576 220.427 309.737 191.587 274.161 191.587H272.081C236.505 191.587 207.666 220.427 207.666 256.002ZM109.793 351.795C109.655 351.795 109.518 351.794 109.381 351.794C73.9948 352.015 45.3778 380.769 45.3778 416.207C45.3778 451.652 74.6025 480.622 110.309 480.622C146.591 480.622 176.288 451.186 176.288 415.167V351.795H109.793ZM109.793 31.3778C74.2172 31.3778 45.3778 60.2173 45.3778 95.7924C45.3778 131.368 74.2172 160.207 109.793 160.207H176.288V31.3778H109.793ZM207.666 160.207H274.161C309.737 160.207 338.576 131.368 338.576 95.7924C338.576 60.2173 309.737 31.3778 274.161 31.3778H207.666V160.207Z" + } + }, + "free": [ + "brands" + ] + }, + "file": { + "changes": [ + "3.2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "new", + "page", + "pdf", + "resume" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f15b", + "label": "File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635482, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1628088634807, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-alt": { + "changes": [ + "3.2", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file-text", + "invoice", + "new", + "page", + "pdf" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f15c", + "label": "Alternate File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635472, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1628088634799, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-archive": { + "changes": [ + "4.1", + "5.0.0", + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + ".zip", + "bundle", + "compress", + "compression", + "download", + "zip" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c6", + "label": "Archive File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635472, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zM128.4 336c-17.9 0-32.4 12.1-32.4 27 0 15 14.6 27 32.5 27s32.4-12.1 32.4-27-14.6-27-32.5-27zM224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6z" + }, + "regular": { + "last_modified": 1628088634799, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M128.3 160v32h32v-32zm64-96h-32v32h32zm-64 32v32h32V96zm64 32h-32v32h32zm177.6-30.1L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM256 51.9l76.1 76.1H256zM336 464H48V48h79.7v16h32V48H208v104c0 13.3 10.7 24 24 24h104zM194.2 265.7c-1.1-5.6-6-9.7-11.8-9.7h-22.1v-32h-32v32l-19.7 97.1C102 385.6 126.8 416 160 416c33.1 0 57.9-30.2 51.5-62.6zm-33.9 124.4c-17.9 0-32.4-12.1-32.4-27s14.5-27 32.4-27 32.4 12.1 32.4 27-14.5 27-32.4 27zm32-198.1h-32v32h32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-audio": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "mp3", + "music", + "page", + "play", + "sound" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c7", + "label": "Audio File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635472, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1628088634799, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-code": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "css", + "development", + "document", + "html" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c9", + "label": "Code File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635474, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z" + }, + "regular": { + "last_modified": 1628088634800, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M149.9 349.1l-.2-.2-32.8-28.9 32.8-28.9c3.6-3.2 4-8.8.8-12.4l-.2-.2-17.4-18.6c-3.4-3.6-9-3.7-12.4-.4l-57.7 54.1c-3.7 3.5-3.7 9.4 0 12.8l57.7 54.1c1.6 1.5 3.8 2.4 6 2.4 2.4 0 4.8-1 6.4-2.8l17.4-18.6c3.3-3.5 3.1-9.1-.4-12.4zm220-251.2L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM256 51.9l76.1 76.1H256zM336 464H48V48h160v104c0 13.3 10.7 24 24 24h104zM209.6 214c-4.7-1.4-9.5 1.3-10.9 6L144 408.1c-1.4 4.7 1.3 9.6 6 10.9l24.4 7.1c4.7 1.4 9.6-1.4 10.9-6L240 231.9c1.4-4.7-1.3-9.6-6-10.9zm24.5 76.9l.2.2 32.8 28.9-32.8 28.9c-3.6 3.2-4 8.8-.8 12.4l.2.2 17.4 18.6c3.3 3.5 8.9 3.7 12.4.4l57.7-54.1c3.7-3.5 3.7-9.4 0-12.8l-57.7-54.1c-3.5-3.3-9.1-3.2-12.4.4l-17.4 18.6c-3.3 3.5-3.1 9.1.4 12.4z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-contract": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "binding", + "document", + "legal", + "signature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56c", + "label": "File Contract", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635474, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-csv": { + "changes": [ + "5.4.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "excel", + "numbers", + "spreadsheets", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6dd", + "label": "File CSV", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635474, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-download": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "export", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56d", + "label": "File Download", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635475, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-excel": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "csv", + "document", + "numbers", + "spreadsheets", + "table" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c3", + "label": "Excel File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635475, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1628088634801, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-export": { + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56e", + "label": "File Export", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635476, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "file-image": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "image", + "jpg", + "photo", + "png" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c5", + "label": "Image File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635476, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" + }, + "regular": { + "last_modified": 1628088634802, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-import": { + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "document", + "send", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56f", + "label": "File Import", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635477, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M16 288c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h112v-64zm489-183L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H152c-13.3 0-24 10.7-24 24v264h128v-65.2c0-14.3 17.3-21.4 27.4-11.3L379 308c6.6 6.7 6.6 17.4 0 24l-95.7 96.4c-10.1 10.1-27.4 3-27.4-11.3V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "file-invoice": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "bill", + "charge", + "document", + "payment", + "receipt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f570", + "label": "File Invoice", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635477, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "file-invoice-dollar": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "account", + "bill", + "charge", + "document", + "dollar-sign", + "money", + "payment", + "receipt", + "usd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f571", + "label": "File Invoice with US Dollar", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635477, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z" + } + }, + "free": [ + "solid" + ] + }, + "file-medical": { + "changes": [ + "5.0.7", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f477", + "label": "Medical File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635478, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z" + } + }, + "free": [ + "solid" + ] + }, + "file-medical-alt": { + "changes": [ + "5.0.7", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f478", + "label": "Alternate Medical File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635477, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-pdf": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "acrobat", + "document", + "preview", + "save" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c1", + "label": "PDF File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635479, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z" + }, + "regular": { + "last_modified": 1628088634803, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-powerpoint": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "display", + "document", + "keynote", + "presentation" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c4", + "label": "Powerpoint File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635479, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z" + }, + "regular": { + "last_modified": 1628088634804, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-prescription": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f572", + "label": "File Prescription", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635480, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-signature": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "contract", + "document", + "name" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f573", + "label": "File Signature", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635480, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z" + } + }, + "free": [ + "solid" + ] + }, + "file-upload": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "import", + "page", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f574", + "label": "File Upload", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635481, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-video": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "m4v", + "movie", + "mp4", + "play" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c8", + "label": "Video File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635482, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z" + }, + "regular": { + "last_modified": 1628088634806, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "file-word": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "edit", + "page", + "text", + "writing" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c2", + "label": "Word File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635482, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1628088634807, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "fill": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "paint", + "paint bucket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f575", + "label": "Fill", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635484, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z" + } + }, + "free": [ + "solid" + ] + }, + "fill-drip": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "drop", + "paint", + "paint bucket", + "spill" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f576", + "label": "Fill Drip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635483, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z" + } + }, + "free": [ + "solid" + ] + }, + "film": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cinema", + "movie", + "strip", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f008", + "label": "Film", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635485, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" + } + }, + "free": [ + "solid" + ] + }, + "filter": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "funnel", + "options", + "separate", + "sort" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b0", + "label": "Filter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635485, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" + } + }, + "free": [ + "solid" + ] + }, + "fingerprint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "id", + "identification", + "lock", + "smudge", + "touch", + "unique", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f577", + "label": "Fingerprint", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635486, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z" + } + }, + "free": [ + "solid" + ] + }, + "fire": { + "changes": [ + "1", + "5.0.0", + "5.6.0", + "5.6.3", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "flame", + "heat", + "hot", + "popular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06d", + "label": "fire", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635487, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M216 23.86c0-23.8-30.65-32.77-44.15-13.04C48 191.85 224 200 224 288c0 35.63-29.11 64.46-64.85 63.99-35.17-.45-63.15-29.77-63.15-64.94v-85.51c0-21.7-26.47-32.23-41.43-16.5C27.8 213.16 0 261.33 0 320c0 105.87 86.13 192 192 192s192-86.13 192-192c0-170.29-168-193-168-296.14z" + } + }, + "free": [ + "solid" + ] + }, + "fire-alt": { + "changes": [ + "5.6.3" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "flame", + "heat", + "hot", + "popular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7e4", + "label": "Alternate Fire", + "svg": { + "solid": { + "last_modified": 1628088635486, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M323.56 51.2c-20.8 19.3-39.58 39.59-56.22 59.97C240.08 73.62 206.28 35.53 168 0 69.74 91.17 0 209.96 0 281.6 0 408.85 100.29 512 224 512s224-103.15 224-230.4c0-53.27-51.98-163.14-124.44-230.4zm-19.47 340.65C282.43 407.01 255.72 416 226.86 416 154.71 416 96 368.26 96 290.75c0-38.61 24.31-72.63 72.79-130.75 6.93 7.98 98.83 125.34 98.83 125.34l58.63-66.88c4.14 6.85 7.91 13.55 11.27 19.97 27.35 52.19 15.81 118.97-33.43 153.42z" + } + }, + "free": [ + "solid" + ] + }, + "fire-extinguisher": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "fire fighter", + "flame", + "heat", + "hot", + "rescue" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f134", + "label": "fire-extinguisher", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635486, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "firefox": { + "changes": [ + "4.4", + "5.0.0", + "5.0.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f269", + "label": "Firefox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1573074807765, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M503.52,241.48c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a245.86,245.86,0,0,0-7.32-41.15c0-.12,0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8.27,8.27,0,0,0-.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48,0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18.07,18.07,0,0,0-1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a15.63,15.63,0,0,0-1.2-1.8L463.2,119a15.63,15.63,0,0,0-1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a248.76,248.76,0,0,0-23.51-26.64A186.82,186.82,0,0,0,412,62.46c-4-3.48-8.16-6.72-12.48-9.84a162.49,162.49,0,0,0-24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254,254,0,0,0-55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.35,236.35,0,0,0-38-4H255.14a234.62,234.62,0,0,0-45.48,5c-33.59,7.08-63.23,21.24-82.91,39-1.08,1-1.92,1.68-2.4,2.16l-.48.48H124l-.12.12.12-.12a.12.12,0,0,0,.12-.12l-.12.12a.42.42,0,0,1,.24-.12c14.64-8.76,34.92-16,49.44-19.56l5.88-1.44c.36-.12.84-.12,1.2-.24,1.68-.36,3.36-.72,5.16-1.08.24,0,.6-.12.84-.12C250.94,20.94,319.34,40.14,367,85.61a171.49,171.49,0,0,1,26.88,32.76c30.36,49.2,27.48,111.11,3.84,147.59-34.44,53-111.35,71.27-159,24.84a84.19,84.19,0,0,1-25.56-59,74.05,74.05,0,0,1,6.24-31c1.68-3.84,13.08-25.67,18.24-24.59-13.08-2.76-37.55,2.64-54.71,28.19-15.36,22.92-14.52,58.2-5,83.28a132.85,132.85,0,0,1-12.12-39.24c-12.24-82.55,43.31-153,94.31-170.51-27.48-24-96.47-22.31-147.71,15.36-29.88,22-51.23,53.16-62.51,90.36,1.68-20.88,9.6-52.08,25.8-83.88-17.16,8.88-39,37-49.8,62.88-15.6,37.43-21,82.19-16.08,124.79.36,3.24.72,6.36,1.08,9.6,19.92,117.11,122,206.38,244.78,206.38C392.77,503.42,504,392.19,504,255,503.88,250.48,503.76,245.92,503.52,241.48Z" + } + }, + "free": [ + "brands" + ] + }, + "firefox-browser": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "e007", + "label": "Firefox Browser", + "voted": false, + "svg": { + "brands": { + "last_modified": 1573074807763, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M189.37,152.86Zm-58.74-29.37C130.79,123.5,130.71,123.5,130.63,123.49Zm351.42,45.35c-10.61-25.5-32.08-53-48.94-61.73,13.72,26.89,21.67,53.88,24.7,74,0,0,0,.14.05.41-27.58-68.75-74.35-96.47-112.55-156.83-1.93-3.05-3.86-6.11-5.74-9.33-1-1.65-1.86-3.34-2.69-5.05A44.88,44.88,0,0,1,333.24.69a.63.63,0,0,0-.55-.66.9.9,0,0,0-.46,0l-.12.07-.18.1.1-.14c-54.23,31.77-76.72,87.38-82.5,122.78a130,130,0,0,0-48.33,12.33,6.25,6.25,0,0,0-3.09,7.75,6.13,6.13,0,0,0,7.79,3.79l.52-.21a117.84,117.84,0,0,1,42.11-11l1.42-.1c2-.12,4-.2,6-.22A122.61,122.61,0,0,1,291,140c.67.2,1.32.42,2,.63,1.89.57,3.76,1.2,5.62,1.87,1.36.5,2.71,1,4.05,1.58,1.09.44,2.18.88,3.25,1.35q2.52,1.13,5,2.35c.75.37,1.5.74,2.25,1.13q2.4,1.26,4.74,2.63,1.51.87,3,1.8a124.89,124.89,0,0,1,42.66,44.13c-13-9.15-36.35-18.19-58.82-14.28,87.74,43.86,64.18,194.9-57.39,189.2a108.43,108.43,0,0,1-31.74-6.12c-2.42-.91-4.8-1.89-7.16-2.93-1.38-.63-2.76-1.27-4.12-2C174.5,346,149.9,316.92,146.83,281.59c0,0,11.25-41.95,80.62-41.95,7.5,0,28.93-20.92,29.33-27-.09-2-42.54-18.87-59.09-35.18-8.85-8.71-13.05-12.91-16.77-16.06a69.58,69.58,0,0,0-6.31-4.77A113.05,113.05,0,0,1,173.92,97c-25.06,11.41-44.55,29.45-58.71,45.37h-.12c-9.67-12.25-9-52.65-8.43-61.08-.12-.53-7.22,3.68-8.15,4.31a178.54,178.54,0,0,0-23.84,20.43A214,214,0,0,0,51.9,133.36l0,0a.08.08,0,0,1,0,0,205.84,205.84,0,0,0-32.73,73.9c-.06.27-2.33,10.21-4,22.48q-.42,2.87-.78,5.74c-.57,3.69-1,7.71-1.44,14,0,.24,0,.48-.05.72-.18,2.71-.34,5.41-.49,8.12,0,.41,0,.82,0,1.24,0,134.7,109.21,243.89,243.92,243.89,120.64,0,220.82-87.58,240.43-202.62.41-3.12.74-6.26,1.11-9.41,4.85-41.83-.54-85.79-15.82-122.55Z" + } + }, + "free": [ + "brands" + ] + }, + "first-aid": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "emergency", + "emt", + "health", + "medical", + "rescue" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f479", + "label": "First Aid", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635487, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "first-order": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b0", + "label": "First Order", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860986, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" + } + }, + "free": [ + "brands" + ] + }, + "first-order-alt": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50a", + "label": "Alternate First Order", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860986, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" + } + }, + "free": [ + "brands" + ] + }, + "firstdraft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a1", + "label": "firstdraft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860987, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" + } + }, + "free": [ + "brands" + ] + }, + "fish": { + "changes": [ + "5.1.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "fauna", + "gold", + "seafood", + "swimming" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f578", + "label": "Fish", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635488, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "fist-raised": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "hand", + "ki", + "monk", + "resist", + "strength", + "unarmed combat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6de", + "label": "Raised Fist", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635488, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M255.98 160V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v146.93c5.02-1.78 10.34-2.93 15.97-2.93h48.03zm128 95.99c-.01-35.34-28.66-63.99-63.99-63.99H207.85c-8.78 0-15.9 7.07-15.9 15.85v.56c0 26.27 21.3 47.59 47.57 47.59h35.26c9.68 0 13.2 3.58 13.2 8v16.2c0 4.29-3.59 7.78-7.88 8-44.52 2.28-64.16 24.71-96.05 72.55l-6.31 9.47a7.994 7.994 0 0 1-11.09 2.22l-13.31-8.88a7.994 7.994 0 0 1-2.22-11.09l6.31-9.47c15.73-23.6 30.2-43.26 47.31-58.08-17.27-5.51-31.4-18.12-38.87-34.45-6.59 3.41-13.96 5.52-21.87 5.52h-32c-12.34 0-23.49-4.81-32-12.48C71.48 251.19 60.33 256 48 256H16c-5.64 0-10.97-1.15-16-2.95v77.93c0 33.95 13.48 66.5 37.49 90.51L63.99 448v64h255.98v-63.96l35.91-35.92A96.035 96.035 0 0 0 384 344.21l-.02-88.22zm-32.01-90.09V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v112h32c11.28 0 21.94 2.31 32 5.9zM16 224h32c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v128c0 8.84 7.16 16 16 16zm95.99 0h32c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "flag": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "country", + "notice", + "notification", + "notify", + "pole", + "report", + "symbol" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f024", + "label": "flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635489, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z" + }, + "regular": { + "last_modified": 1628088634811, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "flag-checkered": { + "changes": [ + "3.1", + "5.0.0", + "5.7.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "notice", + "notification", + "notify", + "pole", + "racing", + "report", + "symbol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f11e", + "label": "flag-checkered", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635489, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M243.2 189.9V258c26.1 5.9 49.3 15.6 73.6 22.3v-68.2c-26-5.8-49.4-15.5-73.6-22.2zm223.3-123c-34.3 15.9-76.5 31.9-117 31.9C296 98.8 251.7 64 184.3 64c-25 0-47.3 4.4-68 12 2.8-7.3 4.1-15.2 3.6-23.6C118.1 24 94.8 1.2 66.3 0 34.3-1.3 8 24.3 8 56c0 19 9.5 35.8 24 45.9V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-94.4c28.3-12.1 63.6-22.1 114.4-22.1 53.6 0 97.8 34.8 165.2 34.8 48.2 0 86.7-16.3 122.5-40.9 8.7-6 13.8-15.8 13.8-26.4V95.9c.1-23.3-24.2-38.8-45.4-29zM169.6 325.5c-25.8 2.7-50 8.2-73.6 16.6v-70.5c26.2-9.3 47.5-15 73.6-17.4zM464 191c-23.6 9.8-46.3 19.5-73.6 23.9V286c24.8-3.4 51.4-11.8 73.6-26v70.5c-25.1 16.1-48.5 24.7-73.6 27.1V286c-27 3.7-47.9 1.5-73.6-5.6v67.4c-23.9-7.4-47.3-16.7-73.6-21.3V258c-19.7-4.4-40.8-6.8-73.6-3.8v-70c-22.4 3.1-44.6 10.2-73.6 20.9v-70.5c33.2-12.2 50.1-19.8 73.6-22v71.6c27-3.7 48.4-1.3 73.6 5.7v-67.4c23.7 7.4 47.2 16.7 73.6 21.3v68.4c23.7 5.3 47.6 6.9 73.6 2.7V143c27-4.8 52.3-13.6 73.6-22.5z" + } + }, + "free": [ + "solid" + ] + }, + "flag-usa": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "betsy ross", + "country", + "old glory", + "stars", + "stripes", + "symbol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f74d", + "label": "United States of America Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635489, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32v464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32C64 14.3 49.7 0 32 0zm267.9 303.6c-57.2-15.1-111.7-28.8-203.9 11.1V384c185.7-92.2 221.7 53.3 397.5-23.1 11.4-5 18.5-16.5 18.5-28.8v-36c-43.6 17.3-80.2 24.1-112.1 24.1-37.4-.1-68.9-8.4-100-16.6zm0-96c-57.2-15.1-111.7-28.8-203.9 11.1v61.5c94.8-37.6 154.6-22.7 212.1-7.6 57.2 15.1 111.7 28.8 203.9-11.1V200c-43.6 17.3-80.2 24.1-112.1 24.1-37.4 0-68.9-8.3-100-16.5zm9.5-125.9c51.8 15.6 97.4 29 202.6-20.1V30.8c0-25.1-26.8-38.1-49.4-26.6C291.3 91.5 305.4-62.2 96 32.4v151.9c94.8-37.5 154.6-22.7 212.1-7.6 57.2 15 111.7 28.7 203.9-11.1V96.7c-53.6 23.5-93.3 31.4-126.1 31.4s-59-7.8-85.7-15.9c-4-1.2-8.1-2.4-12.1-3.5V75.5c7.2 2 14.3 4.1 21.3 6.2zM160 128.1c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16-7.2 16-16 16zm0-55.8c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm64 47.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm0-55.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "flask": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "experimental", + "labs", + "science" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c3", + "label": "Flask", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635490, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z" + } + }, + "free": [ + "solid" + ] + }, + "flickr": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16e", + "label": "Flickr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860987, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" + } + }, + "free": [ + "brands" + ] + }, + "flipboard": { + "changes": [ + "5.0.5", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f44d", + "label": "Flipboard", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440860987, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" + } + }, + "free": [ + "brands" + ] + }, + "flushed": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "embarrassed", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f579", + "label": "Flushed Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635492, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z" + }, + "regular": { + "last_modified": 1628088634814, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "fly": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f417", + "label": "Fly", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860987, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" + } + }, + "free": [ + "brands" + ] + }, + "folder": { + "changes": [ + "1", + "5.0.0", + "5.3.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "directory", + "document", + "file" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f07b", + "label": "Folder", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635495, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" + }, + "regular": { + "last_modified": 1628088634817, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128H272l-54.63-54.63c-6-6-14.14-9.37-22.63-9.37H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm0 272H48V112h140.12l54.63 54.63c6 6 14.14 9.37 22.63 9.37H464v224z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "folder-minus": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "directory", + "document", + "file", + "negative", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f65d", + "label": "Folder Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635493, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-96 168c0 8.84-7.16 16-16 16H160c-8.84 0-16-7.16-16-16v-16c0-8.84 7.16-16 16-16h192c8.84 0 16 7.16 16 16v16z" + } + }, + "free": [ + "solid" + ] + }, + "folder-open": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "directory", + "document", + "empty", + "file", + "new" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f07c", + "label": "Folder Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635493, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" + }, + "regular": { + "last_modified": 1628088634815, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M527.9 224H480v-48c0-26.5-21.5-48-48-48H272l-64-64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h400c16.5 0 31.9-8.5 40.7-22.6l79.9-128c20-31.9-3-73.4-40.7-73.4zM48 118c0-3.3 2.7-6 6-6h134.1l64 64H426c3.3 0 6 2.7 6 6v42H152c-16.8 0-32.4 8.8-41.1 23.2L48 351.4zm400 282H72l77.2-128H528z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "folder-plus": { + "changes": [ + "5.3.0", + "5.11.0", + "5.12.1" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "archive", + "create", + "directory", + "document", + "file", + "new", + "positive" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f65e", + "label": "Folder Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635494, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z" + } + }, + "free": [ + "solid" + ] + }, + "font": { + "changes": [ + "1", + "5.0.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "glyph", + "text", + "type", + "typeface" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f031", + "label": "font", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635496, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 416h-23.41L277.88 53.69A32 32 0 0 0 247.58 32h-47.16a32 32 0 0 0-30.3 21.69L39.41 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-19.58l23.3-64h152.56l23.3 64H304a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM176.85 272L224 142.51 271.15 272z" + } + }, + "free": [ + "solid" + ] + }, + "font-awesome": { + "changes": [ + "4.6", + "5.0.0", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [ + "meanpath" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2b4", + "label": "Font Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633723, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80V432a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V80A48 48 0 0 0 400 32ZM336 312c-31.6 11.2-41.2 16-59.8 16-31.4 0-43.2-16-74.6-16a80 80 0 0 0-25.6 4V284a85.9 85.9 0 0 1 25.6-4c31.2 0 43.2 16 74.6 16 10.2 0 17.8-1.4 27.8-4.6v-96c-10 3.2-17.6 4.6-27.8 4.6-31.4 0-43.2-16-74.6-16-25.4 0-37.4 10.4-57.6 14.4V352a16 16 0 0 1-32 0V160a16 16 0 0 1 32 0v6.4c20.2-4 32.2-14.4 57.6-14.4 31.2 0 43.2 16 74.6 16 18.6 0 28.2-4.8 59.8-16Z" + } + }, + "free": [ + "brands" + ] + }, + "font-awesome-alt": { + "changes": [ + "5.0.0", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f35c", + "label": "Alternate Font Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633723, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80V432a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V80A48 48 0 0 0 400 32Zm16 400a16 16 0 0 1-16 16H48a16 16 0 0 1-16-16V80A16 16 0 0 1 48 64H400a16 16 0 0 1 16 16ZM201.6 152c-25.4 0-37.4 10.4-57.6 14.4V160a16 16 0 0 0-32 0V352a16 16 0 0 0 32 0V198.4c20.2-4 32.2-14.4 57.6-14.4 31.4 0 43.2 16 74.6 16 10.2 0 17.8-1.4 27.8-4.6v96c-10 3.2-17.6 4.6-27.8 4.6-31.4 0-43.4-16-74.6-16a85.9 85.9 0 0 0-25.6 4v32a80 80 0 0 1 25.6-4c31.4 0 43.2 16 74.6 16 18.6 0 28.2-4.8 59.8-16V152c-31.6 11.2-41.2 16-59.8 16C244.8 168 232.8 152 201.6 152Z" + } + }, + "free": [ + "brands" + ] + }, + "font-awesome-flag": { + "changes": [ + "5.0.0", + "5.0.1", + "5.15.4" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f425", + "label": "Font Awesome Flag", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633723, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 48V384c-63 23-82 32-119 32-63 0-87-32-150-32-20 0-36 4-51 8V328c15-4 31-8 51-8 63 0 87 32 150 32 20 0 35-3 55-9V135c-20 6-35 9-55 9-63 0-87-32-150-32-51 0-75 21-115 29V448a31.6 31.6 0 0 1-32 32A31.6 31.6 0 0 1 0 448V64A31.6 31.6 0 0 1 32 32 31.6 31.6 0 0 1 64 64V77c40-8 64-29 115-29 63 0 87 32 150 32C366 80 385 71 448 48Z" + } + }, + "free": [ + "brands" + ] + }, + "font-awesome-logo-full": { + "changes": [ + "5.0.11", + "5.15.4" + ], + "ligatures": [ + "Font Awesome" + ], + "search": { + "terms": [] + }, + "styles": [ + "regular", + "solid", + "brands" + ], + "unicode": "f4e6", + "label": "Font Awesome Full Logo", + "private": true, + "voted": false, + "svg": { + "regular": { + "last_modified": 1628088634817, + "raw": "", + "viewBox": [ + "0", + "0", + "3992", + "512" + ], + "width": 3992, + "height": 512, + "path": "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" + }, + "solid": { + "last_modified": 1628088635495, + "raw": "", + "viewBox": [ + "0", + "0", + "3992", + "512" + ], + "width": 3992, + "height": 512, + "path": "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" + }, + "brands": { + "last_modified": 1628088633723, + "raw": "", + "viewBox": [ + "0", + "0", + "3992", + "512" + ], + "width": 3992, + "height": 512, + "path": "M1209.7 156.5c-57.8 0-102 43.9-102 99.1 0 56 44.6 99.1 102 99.1 57.4 0 102-43.1 102-99.1C1311.7 200.4 1267.5 156.5 1209.7 156.5Zm0 152.7c-35.1 0-51.8-27.4-51.8-53.2 0-25.8 16.7-53.2 51.8-53.2 35.1 0 51.8 27.8 51.8 53.2C1261.1 281.8 1244.8 309.2 1209.7 309.2Zm962.1-136.1c-4.4-10.9-12.3-16.5-23.5-16.5s-19.1 5.6-23.5 16.5l-59.4 145.8c-7.2 17.7 2.8 27.4 4.4 29a24.6 24.6 0 0 0 17.5 6.8c10.8 0 18.7-6 23.1-18.1l4-10.1h67.7l4 10.1c4.8 12.1 12.3 18.1 23.1 18.1a24.6 24.6 0 0 0 17.5-6.8c10-10.1 6.8-22.6 4.4-29Zm-43 113.6 19.1-56 19.1 56Zm-574.5-130.1c-14.3 0-24.7 10.9-24.7 25.4v76.5l-68.5-85.8c-4.4-5.6-11.6-16.1-25.5-16.1-19.1 0-24.3 17.7-24.3 25.4V329.7c0 14.1 10.4 25.4 24.7 25.4 14.3 0 24.7-10.9 24.7-25.4V252.8l68.9 86.2c4.8 5.6 11.6 16.1 25.5 16.1 19.1 0 23.9-17.3 23.9-25.4V181.9C1579 167.4 1568.6 156.5 1554.3 156.5Zm-554.1 1.6H916.5c-19.9 0-25.1 17.3-25.1 25.4V328.1c0 19.7 16.7 25.4 24.7 25.4 8 0 24.7-5.2 24.7-25.4V285h44.6c12.8 0 22.7-9.3 22.7-22.6 0-17.7-15.5-22.1-22.7-22.1H940.8V203.6h59.4c12.8 0 22.7-9.3 22.7-22.6C1022.9 163 1007.3 158.1 1000.2 158.1Zm815.1 0H1691.7c-7.2 0-22.7 4.4-22.7 22.2 0 13.3 10 22.6 22.7 22.6h37V327.7c0 14.1 10.4 25.4 24.7 25.4 14.3 0 24.7-10.9 24.7-25.4V202.8h37c12.7 0 22.7-9.3 22.7-22.6C1837.9 163 1822.4 158.1 1815.2 158.1Zm1789.5-1.6c-9.6 0-17.5 6-25.1 18.1l-46.6 76.1L3486.4 174.6q-10.8-18.1-25.1-18.1c-19.5 0-24.7 18.1-24.7 25.8V329.7c0 14.1 10.4 25.4 24.7 25.4s24.7-10.9 24.7-25.4V262.8L3510.7 302.7c6.4 10.1 13.9 15.3 22.3 15.3 8.8 0 15.9-5.2 22.3-15.3l24.7-39.9v66.9c0 14.1 10.3 25.4 24.7 25.4 14.3 0 24.7-10.9 24.7-25.4V182.3C3629.4 174.2 3624.6 156.5 3604.7 156.5Zm248.6 149.8h-65.7V272.9h39.4c11.9 0 21.1-8.9 21.1-20.9 0-12.1-9.2-20.9-21.1-20.9h-39.4V204.8h62.1c12.8 0 22.7-9.3 22.7-22.6 0-17.7-15.6-22.2-22.7-22.2h-86.4c-19.9 0-25.1 17.3-25.1 25.4V326.5c0 8.1 5.2 25.4 25.1 25.4h90c12.8 0 22.7-9.3 22.7-22.6C3876 311.2 3860.5 306.3 3853.3 306.3ZM3235 156.5c-57.8 0-102 43.9-102 99.1 0 56 44.6 99.1 102 99.1 57.4 0 102-43.1 102-99.1C3337 200.4 3292.8 156.5 3235 156.5Zm0 152.7c-35.1 0-51.8-27.4-51.8-53.2 0-25.8 16.7-53.2 51.8-53.2 35.1 0 51.8 27.8 51.8 53.2C3286.8 281.8 3270.1 309.2 3235 309.2ZM2550.2 156.5c-11.2 0-19.1 5.6-23.1 16.5l-34.3 94.7-31.5-92.2c-4.4-12.5-12.3-18.9-24.3-18.9-11.9 0-19.9 6.4-24.3 18.9l-31.5 92.2-34.3-95.5q-5.4-15.7-22.7-15.7c-6.8 0-12.3 2.4-17.5 7.3-5.2 5.2-10.8 14.5-4.8 28.6l55.8 145.8c4 11.3 11.6 16.9 23.1 16.9q16.7 0 22.7-16.9l33.5-91.8 33.5 91.8q6 16.9 22.7 16.9c11.2 0 19.1-5.6 23.1-16.9l55.8-145.8c3.6-9.3 4.4-19.3-4.8-28.6A23 23 0 0 0 2550.2 156.5Zm444.2 81-21.9-9.3c-11.9-4.8-16.3-8.5-16.3-15.7q0-12.1 16.7-12.1c12.7 0 19.5 7.7 24.3 10.9 7.2 5.2 18.3 6.8 27.9-2 10.8-10.5 6.8-23.8 1.2-30.6-12.3-14.9-30.3-22.2-53.8-22.2-19.1 0-35.1 5.2-47.4 15.7-12.3 10.5-18.7 24.2-18.7 41.1 0 24.2 15.9 43.5 47.8 57.6l19.5 8.9c15.9 6.8 19.1 9.7 19.1 17.7 0 9.3-6.4 14.1-19.5 14.1-19.1 0-34.7-14.9-36.3-16.1-10.8-7.3-21.5-2-26.3 2.8-6.8 6.4-12.7 20.9 3.2 36.2 6.8 6.4 15.5 11.7 26.7 15.3a94.6 94.6 0 0 0 32.7 5.6c19.9 0 36.7-5.2 49.8-16.1 13.1-10.9 19.5-25.4 19.5-43.5q0-20.5-12-33.8C3022.7 253.2 3010.7 244.3 2994.4 237.5Zm-206.4 68.9h-65.7V272.9h39.4c12 0 21.1-8.9 21.1-20.9 0-12.1-9.2-20.9-21.1-20.9h-39.4V204.8h62.1c12.8 0 22.7-9.3 22.7-22.6 0-17.7-15.5-22.2-22.7-22.2h-86.4c-19.9 0-25.1 17.3-25.1 25.4V326.5c0 8.1 5.2 25.4 25.1 25.4h90c12.7 0 22.7-9.3 22.7-22.6C2810.8 311.2 2795.2 306.3 2788 306.3ZM178.3 49.1c-50.5 0-74.4 20.7-114.6 28.7V65A31.8 31.8 0 1 0 0 65V447a31.8 31.8 0 0 0 63.7 0V141.4c40.2-8 64.1-28.7 114.6-28.7 62.5 0 86 31.8 148.4 31.8 20.3 0 35.4-2.8 55.3-9.2v191c-19.9 6.4-35 9.2-55.3 9.2-62.5 0-86.4-31.8-148.4-31.8-20.3 0-36.2 3.6-50.9 8V375.4a159.1 159.1 0 0 1 50.9-8c62.5 0 86 31.8 148.4 31.8 37 0 56.1-9.6 119-31.8V49.1C382.8 71.4 363.7 80.9 326.7 80.9 264.2 80.9 240.4 49.1 178.3 49.1Z" + } + }, + "free": [ + "regular", + "solid", + "brands" + ] + }, + "fonticons": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f280", + "label": "Fonticons", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722329, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23zm74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z" + } + }, + "free": [ + "brands" + ] + }, + "fonticons-fi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a2", + "label": "Fonticons Fi", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860988, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" + } + }, + "free": [ + "brands" + ] + }, + "football-ball": { + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "fall", + "nfl", + "pigskin", + "seasonal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f44e", + "label": "Football Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635496, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z" + } + }, + "free": [ + "solid" + ] + }, + "fort-awesome": { + "changes": [ + "4.5", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f286", + "label": "Fort Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860989, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" + } + }, + "free": [ + "brands" + ] + }, + "fort-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3a3", + "label": "Alternate Fort Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722329, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7zm118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1.7.1 1.3.1 2 .1 1.3.1 2.7.2 4 0 .8.1 1.5.1 2.3 0 1.3.1 2.5.2 3.7.1.8.1 1.6.2 2.4.1 1.1.2 2.3.3 3.5 0 .8.1 1.6.2 2.4.1 1.2.3 2.4.4 3.6.1.8.2 1.5.3 2.3.1 1.3.3 2.6.5 3.9.1.6.2 1.3.3 1.9l.9 5.7c.1.6.2 1.1.3 1.7.3 1.3.5 2.7.8 4 .2.8.3 1.6.5 2.4.2 1 .5 2.1.7 3.2.2.9.4 1.7.6 2.6.2 1 .4 2 .7 3 .2.9.5 1.8.7 2.7.3 1 .5 1.9.8 2.9.3.9.5 1.8.8 2.7.2.9.5 1.9.8 2.8s.5 1.8.8 2.7c.3 1 .6 1.9.9 2.8.6 1.6 1.1 3.3 1.7 4.9.4 1 .7 1.9 1 2.8.3 1 .7 2 1.1 3 .3.8.6 1.5.9 2.3l1.2 3c.3.7.6 1.5.9 2.2.4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3.7.6 1.3.9 2 .5 1 1 2.1 1.5 3.1.2.6.5 1.1.8 1.7.6 1.1 1.1 2.2 1.7 3.3.1.2.2.3.3.5 2.2 4.1 4.4 8.2 6.8 12.2.2.4.5.8.7 1.2.7 1.1 1.3 2.2 2 3.3.3.5.6.9.9 1.4.6 1.1 1.3 2.1 2 3.2.3.5.6.9.9 1.4.7 1.1 1.4 2.1 2.1 3.2.2.4.5.8.8 1.2.7 1.1 1.5 2.2 2.3 3.3.2.2.3.5.5.7 37.5 51.7 94.4 88.5 160 99.4.9.1 1.7.3 2.6.4 1 .2 2.1.4 3.1.5s1.9.3 2.8.4c1 .2 2 .3 3 .4.9.1 1.9.2 2.9.3s1.9.2 2.9.3 2.1.2 3.1.3c.9.1 1.8.1 2.7.2 1.1.1 2.3.1 3.4.2.8 0 1.7.1 2.5.1 1.3 0 2.6.1 3.9.1.7.1 1.4.1 2.1.1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1.8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2.9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5.9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4.2-.2.3-.5.5-.7.8-1.1 1.5-2.2 2.3-3.3.2-.4.5-.8.8-1.2.7-1.1 1.4-2.1 2.1-3.2.3-.5.6-.9.9-1.4.6-1.1 1.3-2.1 2-3.2.3-.5.6-.9.9-1.4.7-1.1 1.3-2.2 2-3.3.2-.4.5-.8.7-1.2 2.4-4 4.6-8.1 6.8-12.2.1-.2.2-.3.3-.5.6-1.1 1.1-2.2 1.7-3.3.2-.6.5-1.1.8-1.7.5-1 1-2.1 1.5-3.1.3-.7.6-1.3.9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7.6-1.5.9-2.2l1.2-3c.3-.8.6-1.5.9-2.3.4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9.3-1 .6-1.9.9-2.8s.5-1.8.8-2.7c.2-.9.5-1.9.8-2.8s.6-1.8.8-2.7c.3-1 .5-1.9.8-2.9.2-.9.5-1.8.7-2.7.2-1 .5-2 .7-3 .2-.9.4-1.7.6-2.6.2-1 .5-2.1.7-3.2.2-.8.3-1.6.5-2.4.3-1.3.6-2.7.8-4 .1-.6.2-1.1.3-1.7l.9-5.7c.1-.6.2-1.3.3-1.9.1-1.3.3-2.6.5-3.9.1-.8.2-1.5.3-2.3.1-1.2.3-2.4.4-3.6 0-.8.1-1.6.2-2.4.1-1.1.2-2.3.3-3.5.1-.8.1-1.6.2-2.4.1 1.7.1.5.2-.7 0-.8.1-1.5.1-2.3.1-1.3.2-2.7.2-4 .1-.7.1-1.3.1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7zM448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8c-14.7-2.9-29-7.3-42.9-13.2-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z" + } + }, + "free": [ + "brands" + ] + }, + "forumbee": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f211", + "label": "Forumbee", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860989, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" + } + }, + "free": [ + "brands" + ] + }, + "forward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next", + "skip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04e", + "label": "forward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635497, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z" + } + }, + "free": [ + "solid" + ] + }, + "foursquare": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f180", + "label": "Foursquare", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860989, + "raw": "", + "viewBox": [ + "0", + "0", + "368", + "512" + ], + "width": 368, + "height": 512, + "path": "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" + } + }, + "free": [ + "brands" + ] + }, + "free-code-camp": { + "changes": [ + "4.7", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c5", + "label": "freeCodeCamp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1573074807767, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M97.22,96.21c10.36-10.65,16-17.12,16-21.9,0-2.76-1.92-5.51-3.83-7.42A14.81,14.81,0,0,0,101,64.05c-8.48,0-20.92,8.79-35.84,25.69C23.68,137,2.51,182.81,3.37,250.34s17.47,117,54.06,161.87C76.22,435.86,90.62,448,100.9,448a13.55,13.55,0,0,0,8.37-3.84c1.91-2.76,3.81-5.63,3.81-8.38,0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165C32.25,188.8,54,137.83,97.22,96.21ZM239.47,420.07c.58.37.91.55.91.55Zm93.79.55.17-.13C333.24,420.62,333.17,420.67,333.26,420.62Zm3.13-158.18c-16.24-4.15,50.41-82.89-68.05-177.17,0,0,15.54,49.38-62.83,159.57-74.27,104.35,23.46,168.73,34,175.23-6.73-4.35-47.4-35.7,9.55-128.64,11-18.3,25.53-34.87,43.5-72.16,0,0,15.91,22.45,7.6,71.13C287.7,364,354,342.91,355,343.94c22.75,26.78-17.72,73.51-21.58,76.55,5.49-3.65,117.71-78,33-188.1C360.43,238.4,352.62,266.59,336.39,262.44ZM510.88,89.69C496,72.79,483.52,64,475,64a14.81,14.81,0,0,0-8.39,2.84c-1.91,1.91-3.83,4.66-3.83,7.42,0,4.78,5.6,11.26,16,21.9,43.23,41.61,65,92.59,64.82,154.06-.16,68-23,122.63-67.48,165-9.34,8.35-13.18,14.92-13.2,20.55,0,2.75,1.9,5.62,3.81,8.38A13.61,13.61,0,0,0,475.1,448c10.28,0,24.68-12.13,43.47-35.79,36.59-44.85,53.14-94.38,54.06-161.87S552.32,137,510.88,89.69Z" + } + }, + "free": [ + "brands" + ] + }, + "freebsd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a4", + "label": "FreeBSD", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860989, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" + } + }, + "free": [ + "brands" + ] + }, + "frog": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "amphibian", + "bullfrog", + "fauna", + "hop", + "kermit", + "kiss", + "prince", + "ribbit", + "toad", + "wart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52e", + "label": "Frog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635497, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "frown": { + "changes": [ + "3.1", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "rating", + "sad" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f119", + "label": "Frowning Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635498, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z" + }, + "regular": { + "last_modified": 1628088634822, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "frown-open": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "rating", + "sad" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f57a", + "label": "Frowning Face With Open Mouth", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635498, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1628088634821, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "fulcrum": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50b", + "label": "Fulcrum", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775898, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M95.75 164.14l-35.38 43.55L25 164.14l35.38-43.55zM144.23 0l-20.54 198.18L72.72 256l51 57.82L144.23 512V300.89L103.15 256l41.08-44.89zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.82 247 256l-51-57.82L175.42 0z" + } + }, + "free": [ + "brands" + ] + }, + "funnel-dollar": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "money", + "options", + "separate", + "sort" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f662", + "label": "Funnel Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635498, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M433.46 165.94l101.2-111.87C554.61 34.12 540.48 0 512.26 0H31.74C3.52 0-10.61 34.12 9.34 54.07L192 256v155.92c0 12.59 5.93 24.44 16 32l79.99 60c20.86 15.64 48.47 6.97 59.22-13.57C310.8 455.38 288 406.35 288 352c0-89.79 62.05-165.17 145.46-186.06zM480 192c-88.37 0-160 71.63-160 160s71.63 160 160 160 160-71.63 160-160-71.63-160-160-160zm16 239.88V448c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V256c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.04 44.44-42.67 45.07z" + } + }, + "free": [ + "solid" + ] + }, + "futbol": { + "changes": [ + "4.2", + "5.0.0", + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "football", + "mls", + "soccer" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1e3", + "label": "Futbol", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635499, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z" + }, + "regular": { + "last_modified": 1628088634822, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "galactic-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f50c", + "label": "Galactic Republic", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860990, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" + } + }, + "free": [ + "brands" + ] + }, + "galactic-senate": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f50d", + "label": "Galactic Senate", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860990, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" + } + }, + "free": [ + "brands" + ] + }, + "gamepad": { + "changes": [ + "3.1", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arcade", + "controller", + "d-pad", + "joystick", + "video", + "video game" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f11b", + "label": "Gamepad", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635500, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M480.07 96H160a160 160 0 1 0 114.24 272h91.52A160 160 0 1 0 480.07 96zM248 268a12 12 0 0 1-12 12h-52v52a12 12 0 0 1-12 12h-24a12 12 0 0 1-12-12v-52H84a12 12 0 0 1-12-12v-24a12 12 0 0 1 12-12h52v-52a12 12 0 0 1 12-12h24a12 12 0 0 1 12 12v52h52a12 12 0 0 1 12 12zm216 76a40 40 0 1 1 40-40 40 40 0 0 1-40 40zm64-96a40 40 0 1 1 40-40 40 40 0 0 1-40 40z" + } + }, + "free": [ + "solid" + ] + }, + "gas-pump": { + "changes": [ + "5.0.13", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "fuel", + "gasoline", + "petrol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52f", + "label": "Gas Pump", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635502, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z" + } + }, + "free": [ + "solid" + ] + }, + "gavel": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hammer", + "judge", + "law", + "lawyer", + "opinion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e3", + "label": "Gavel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635502, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z" + } + }, + "free": [ + "solid" + ] + }, + "gem": { + "changes": [ + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "diamond", + "jewelry", + "sapphire", + "stone", + "treasure" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f3a5", + "label": "Gem", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635503, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z" + }, + "regular": { + "last_modified": 1628088634827, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "genderless": { + "changes": [ + "4.4", + "5.0.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "androgynous", + "asexual", + "sexless" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f22d", + "label": "Genderless", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635503, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" + } + }, + "free": [ + "solid" + ] + }, + "get-pocket": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f265", + "label": "Get Pocket", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860990, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" + } + }, + "free": [ + "brands" + ] + }, + "gg": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f260", + "label": "GG Currency", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860991, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" + } + }, + "free": [ + "brands" + ] + }, + "gg-circle": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f261", + "label": "GG Currency Circle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860990, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" + } + }, + "free": [ + "brands" + ] + }, + "ghost": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apparition", + "blinky", + "clyde", + "floating", + "halloween", + "holiday", + "inky", + "pinky", + "spirit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e2", + "label": "Ghost", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635503, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M186.1.09C81.01 3.24 0 94.92 0 200.05v263.92c0 14.26 17.23 21.39 27.31 11.31l24.92-18.53c6.66-4.95 16-3.99 21.51 2.21l42.95 48.35c6.25 6.25 16.38 6.25 22.63 0l40.72-45.85c6.37-7.17 17.56-7.17 23.92 0l40.72 45.85c6.25 6.25 16.38 6.25 22.63 0l42.95-48.35c5.51-6.2 14.85-7.17 21.51-2.21l24.92 18.53c10.08 10.08 27.31 2.94 27.31-11.31V192C384 84 294.83-3.17 186.1.09zM128 224c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128 0c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "gift": { + "changes": [ + "1", + "5.0.0", + "5.0.9", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "generosity", + "giving", + "holiday", + "party", + "present", + "wrapped", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06b", + "label": "gift", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635504, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm256 32h160c17.7 0 32-14.3 32-32V320H288v160zm192-320h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40z" + } + }, + "free": [ + "solid" + ] + }, + "gifts": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "generosity", + "giving", + "holiday", + "party", + "present", + "wrapped", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f79c", + "label": "Gifts", + "svg": { + "solid": { + "last_modified": 1628088635504, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M240.6 194.1c1.9-30.8 17.3-61.2 44-79.8C279.4 103.5 268.7 96 256 96h-29.4l30.7-22c7.2-5.1 8.9-15.1 3.7-22.3l-9.3-13c-5.1-7.2-15.1-8.9-22.3-3.7l-32 22.9 11.5-30.6c3.1-8.3-1.1-17.5-9.4-20.6l-15-5.6c-8.3-3.1-17.5 1.1-20.6 9.4l-19.9 53-19.9-53.1C121 2.1 111.8-2.1 103.5 1l-15 5.6C80.2 9.7 76 19 79.2 27.2l11.5 30.6L58.6 35c-7.2-5.1-17.2-3.5-22.3 3.7l-9.3 13c-5.1 7.2-3.5 17.2 3.7 22.3l30.7 22H32c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h168.9c-5.5-9.5-8.9-20.3-8.9-32V256c0-29.9 20.8-55 48.6-61.9zM224 480c0 17.7 14.3 32 32 32h160V384H224v96zm224 32h160c17.7 0 32-14.3 32-32v-96H448v128zm160-288h-20.4c2.6-7.6 4.4-15.5 4.4-23.8 0-35.5-27-72.2-72.1-72.2-48.1 0-75.9 47.7-87.9 75.3-12.1-27.6-39.9-75.3-87.9-75.3-45.1 0-72.1 36.7-72.1 72.2 0 8.3 1.7 16.2 4.4 23.8H256c-17.7 0-32 14.3-32 32v96h192V224h15.3l.7-.2.7.2H448v128h192v-96c0-17.7-14.3-32-32-32zm-272 0c-2.7-1.4-5.1-3-7.2-4.8-7.3-6.4-8.8-13.8-8.8-19 0-9.7 6.4-24.2 24.1-24.2 18.7 0 35.6 27.4 44.5 48H336zm199.2-4.8c-2.1 1.8-4.5 3.4-7.2 4.8h-52.6c8.8-20.3 25.8-48 44.5-48 17.7 0 24.1 14.5 24.1 24.2 0 5.2-1.5 12.6-8.8 19z" + } + }, + "free": [ + "solid" + ] + }, + "git": { + "changes": [ + "4.1", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d3", + "label": "Git", + "voted": false, + "svg": { + "brands": { + "last_modified": 1563977084863, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216.29 158.39H137C97 147.9 6.51 150.63 6.51 233.18c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.61 0 393.35 0 411.65c0 32.11 28.05 50.82 101.63 50.82 70.75 0 111.79-26.42 111.79-73.18 0-58.66-45.16-56.5-151.63-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.89 32.1-104.89 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11zm-50.81-134.58c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16zm133.3 100.51v-32.1c26.75-3.66 27.24-2 27.24-11V203.61c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.71c0 6.51.4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.31c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61zM512 350.46c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.75c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z" + } + }, + "free": [ + "brands" + ] + }, + "git-alt": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f841", + "label": "Git Alt", + "svg": { + "brands": { + "last_modified": 1563977084862, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M439.55 236.05L244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" + } + }, + "free": [ + "brands" + ] + }, + "git-square": { + "changes": [ + "4.1", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d2", + "label": "Git Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1563977084863, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M100.59 334.24c48.57 3.31 58.95 2.11 58.95 11.94 0 20-65.55 20.06-65.55 1.52.01-5.09 3.29-9.4 6.6-13.46zm27.95-116.64c-32.29 0-33.75 44.47-.75 44.47 32.51 0 31.71-44.47.75-44.47zM448 80v352a48 48 0 0 1-48 48H48a48 48 0 0 1-48-48V80a48 48 0 0 1 48-48h352a48 48 0 0 1 48 48zm-227 69.31c0 14.49 8.38 22.88 22.86 22.88 14.74 0 23.13-8.39 23.13-22.88S258.62 127 243.88 127c-14.48 0-22.88 7.84-22.88 22.31zM199.18 195h-49.55c-25-6.55-81.56-4.85-81.56 46.75 0 18.8 9.4 32 21.85 38.11C74.23 294.23 66.8 301 66.8 310.6c0 6.87 2.79 13.22 11.18 16.76-8.9 8.4-14 14.48-14 25.92C64 373.35 81.53 385 127.52 385c44.22 0 69.87-16.51 69.87-45.73 0-36.67-28.23-35.32-94.77-39.38l8.38-13.43c17 4.74 74.19 6.23 74.19-42.43 0-11.69-4.83-19.82-9.4-25.67l23.38-1.78zm84.34 109.84l-13-1.78c-3.82-.51-4.07-1-4.07-5.09V192.52h-52.6l-2.79 20.57c15.75 5.55 17 4.86 17 10.17V298c0 5.62-.31 4.58-17 6.87v20.06h72.42zM384 315l-6.87-22.37c-40.93 15.37-37.85-12.41-37.85-16.73v-60.72h37.85v-25.41h-35.82c-2.87 0-2 2.52-2-38.63h-24.18c-2.79 27.7-11.68 38.88-34 41.42v22.62c20.47 0 19.82-.85 19.82 2.54v66.57c0 28.72 11.43 40.91 41.67 40.91 14.45 0 30.45-4.83 41.38-10.2z" + } + }, + "free": [ + "brands" + ] + }, + "github": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f09b", + "label": "GitHub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860992, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" + } + }, + "free": [ + "brands" + ] + }, + "github-alt": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f113", + "label": "Alternate GitHub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860991, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" + } + }, + "free": [ + "brands" + ] + }, + "github-square": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f092", + "label": "GitHub Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860991, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" + } + }, + "free": [ + "brands" + ] + }, + "gitkraken": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a6", + "label": "GitKraken", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860992, + "raw": "", + "viewBox": [ + "0", + "0", + "592", + "512" + ], + "width": 592, + "height": 512, + "path": "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" + } + }, + "free": [ + "brands" + ] + }, + "gitlab": { + "changes": [ + "4.6", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Axosoft" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f296", + "label": "GitLab", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633724, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M105.2 24.9c-3.1-8.9-15.7-8.9-18.9 0L29.8 199.7h132c-.1 0-56.6-174.8-56.6-174.8zM.9 287.7c-2.6 8 .3 16.9 7.1 22l247.9 184-226.2-294zm160.8-88l94.3 294 94.3-294zm349.4 88l-28.8-88-226.3 294 247.9-184c6.9-5.1 9.7-14 7.2-22zM425.7 24.9c-3.1-8.9-15.7-8.9-18.9 0l-56.6 174.8h132z" + } + }, + "free": [ + "brands" + ] + }, + "gitter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f426", + "label": "Gitter", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860992, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" + } + }, + "free": [ + "brands" + ] + }, + "glass-cheers": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "celebration", + "champagne", + "clink", + "drink", + "holiday", + "new year's eve", + "party", + "toast" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f79f", + "label": "Glass Cheers", + "svg": { + "solid": { + "last_modified": 1628088635505, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M639.4 433.6c-8.4-20.4-31.8-30.1-52.2-21.6l-22.1 9.2-38.7-101.9c47.9-35 64.8-100.3 34.5-152.8L474.3 16c-8-13.9-25.1-19.7-40-13.6L320 49.8 205.7 2.4c-14.9-6.2-32-.3-40 13.6L79.1 166.5C48.9 219 65.7 284.3 113.6 319.2L74.9 421.1l-22.1-9.2c-20.4-8.5-43.7 1.2-52.2 21.6-1.7 4.1.2 8.8 4.3 10.5l162.3 67.4c4.1 1.7 8.7-.2 10.4-4.3 8.4-20.4-1.2-43.8-21.6-52.3l-22.1-9.2L173.3 342c4.4.5 8.8 1.3 13.1 1.3 51.7 0 99.4-33.1 113.4-85.3l20.2-75.4 20.2 75.4c14 52.2 61.7 85.3 113.4 85.3 4.3 0 8.7-.8 13.1-1.3L506 445.6l-22.1 9.2c-20.4 8.5-30.1 31.9-21.6 52.3 1.7 4.1 6.4 6 10.4 4.3L635.1 444c4-1.7 6-6.3 4.3-10.4zM275.9 162.1l-112.1-46.5 36.5-63.4 94.5 39.2-18.9 70.7zm88.2 0l-18.9-70.7 94.5-39.2 36.5 63.4-112.1 46.5z" + } + }, + "free": [ + "solid" + ] + }, + "glass-martini": { + "changes": [ + "1", + "5.0.0", + "5.1.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "drink", + "liquor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f000", + "label": "Martini Glass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635506, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z" + } + }, + "free": [ + "solid" + ] + }, + "glass-martini-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "drink", + "liquor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57b", + "label": "Alternate Glass Martini", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635505, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z" + } + }, + "free": [ + "solid" + ] + }, + "glass-whiskey": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "bourbon", + "drink", + "liquor", + "neat", + "rye", + "scotch", + "whisky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a0", + "label": "Glass Whiskey", + "svg": { + "solid": { + "last_modified": 1628088635506, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 32H32C12.5 32-2.4 49.2.3 68.5l56 356.5c4.5 31.5 31.5 54.9 63.4 54.9h273c31.8 0 58.9-23.4 63.4-54.9l55.6-356.5C514.4 49.2 499.5 32 480 32zm-37.4 64l-30 192h-313L69.4 96h373.2z" + } + }, + "free": [ + "solid" + ] + }, + "glasses": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "hipster", + "nerd", + "reading", + "sight", + "spectacles", + "vision" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f530", + "label": "Glasses", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635507, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z" + } + }, + "free": [ + "solid" + ] + }, + "glide": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a5", + "label": "Glide", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860993, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" + } + }, + "free": [ + "brands" + ] + }, + "glide-g": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a6", + "label": "Glide G", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860992, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" + } + }, + "free": [ + "brands" + ] + }, + "globe": { + "changes": [ + "2", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "coordinates", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ac", + "label": "Globe", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635509, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" + } + }, + "free": [ + "solid" + ] + }, + "globe-africa": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57c", + "label": "Globe with Africa shown", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635507, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z" + } + }, + "free": [ + "solid" + ] + }, + "globe-americas": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57d", + "label": "Globe with Americas shown", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635507, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z" + } + }, + "free": [ + "solid" + ] + }, + "globe-asia": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57e", + "label": "Globe with Asia shown", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635507, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z" + } + }, + "free": [ + "solid" + ] + }, + "globe-europe": { + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a2", + "label": "Globe with Europe shown", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635508, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm200 248c0 22.5-3.9 44.2-10.8 64.4h-20.3c-4.3 0-8.4-1.7-11.4-4.8l-32-32.6c-4.5-4.6-4.5-12.1.1-16.7l12.5-12.5v-8.7c0-3-1.2-5.9-3.3-8l-9.4-9.4c-2.1-2.1-5-3.3-8-3.3h-16c-6.2 0-11.3-5.1-11.3-11.3 0-3 1.2-5.9 3.3-8l9.4-9.4c2.1-2.1 5-3.3 8-3.3h32c6.2 0 11.3-5.1 11.3-11.3v-9.4c0-6.2-5.1-11.3-11.3-11.3h-36.7c-8.8 0-16 7.2-16 16v4.5c0 6.9-4.4 13-10.9 15.2l-31.6 10.5c-3.3 1.1-5.5 4.1-5.5 7.6v2.2c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8s-3.6-8-8-8H247c-3 0-5.8 1.7-7.2 4.4l-9.4 18.7c-2.7 5.4-8.2 8.8-14.3 8.8H194c-8.8 0-16-7.2-16-16V199c0-4.2 1.7-8.3 4.7-11.3l20.1-20.1c4.6-4.6 7.2-10.9 7.2-17.5 0-3.4 2.2-6.5 5.5-7.6l40-13.3c1.7-.6 3.2-1.5 4.4-2.7l26.8-26.8c2.1-2.1 3.3-5 3.3-8 0-6.2-5.1-11.3-11.3-11.3H258l-16 16v8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-20c0-2.5 1.2-4.9 3.2-6.4l28.9-21.7c1.9-.1 3.8-.3 5.7-.3C358.3 56 448 145.7 448 256zM130.1 149.1c0-3 1.2-5.9 3.3-8l25.4-25.4c2.1-2.1 5-3.3 8-3.3 6.2 0 11.3 5.1 11.3 11.3v16c0 3-1.2 5.9-3.3 8l-9.4 9.4c-2.1 2.1-5 3.3-8 3.3h-16c-6.2 0-11.3-5.1-11.3-11.3zm128 306.4v-7.1c0-8.8-7.2-16-16-16h-20.2c-10.8 0-26.7-5.3-35.4-11.8l-22.2-16.7c-11.5-8.6-18.2-22.1-18.2-36.4v-23.9c0-16 8.4-30.8 22.1-39l42.9-25.7c7.1-4.2 15.2-6.5 23.4-6.5h31.2c10.9 0 21.4 3.9 29.6 10.9l43.2 37.1h18.3c8.5 0 16.6 3.4 22.6 9.4l17.3 17.3c3.4 3.4 8.1 5.3 12.9 5.3H423c-32.4 58.9-93.8 99.5-164.9 103.1z" + } + }, + "free": [ + "solid" + ] + }, + "gofore": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a7", + "label": "Gofore", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860993, + "raw": "", + "viewBox": [ + "0", + "0", + "400", + "512" + ], + "width": 400, + "height": 512, + "path": "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" + } + }, + "free": [ + "brands" + ] + }, + "golf-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "caddy", + "eagle", + "putt", + "tee" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f450", + "label": "Golf Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635509, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z" + } + }, + "free": [ + "solid" + ] + }, + "goodreads": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a8", + "label": "Goodreads", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860993, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" + } + }, + "free": [ + "brands" + ] + }, + "goodreads-g": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a9", + "label": "Goodreads G", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860993, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" + } + }, + "free": [ + "brands" + ] + }, + "google": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a0", + "label": "Google Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860995, + "raw": "", + "viewBox": [ + "0", + "0", + "488", + "512" + ], + "width": 488, + "height": 512, + "path": "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" + } + }, + "free": [ + "brands" + ] + }, + "google-drive": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3aa", + "label": "Google Drive", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860994, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" + } + }, + "free": [ + "brands" + ] + }, + "google-pay": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e079", + "label": "Google Pay", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539198, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M105.72,215v41.25h57.1a49.66,49.66,0,0,1-21.14,32.6c-9.54,6.55-21.72,10.28-36,10.28-27.6,0-50.93-18.91-59.3-44.22a65.61,65.61,0,0,1,0-41l0,0c8.37-25.46,31.7-44.37,59.3-44.37a56.43,56.43,0,0,1,40.51,16.08L176.47,155a101.24,101.24,0,0,0-70.75-27.84,105.55,105.55,0,0,0-94.38,59.11,107.64,107.64,0,0,0,0,96.18v.15a105.41,105.41,0,0,0,94.38,59c28.47,0,52.55-9.53,70-25.91,20-18.61,31.41-46.15,31.41-78.91A133.76,133.76,0,0,0,205.38,215Zm389.41-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46,0-39.34,8.34-50.5,24.86l20.85,13.26q11.45-17,31.26-17a34.05,34.05,0,0,1,22.75,8.79A28.14,28.14,0,0,1,487.79,248v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44,0-29.65,3.88-39.49,11.77s-14.82,18.31-14.82,31.56a39.74,39.74,0,0,0,13.94,31.27c9.25,8.34,21,12.51,34.79,12.51,16.29,0,29.21-7.3,39-21.89h1v17.72h22.61V250C510.25,233.45,505.26,220.34,495.13,211ZM475.9,300.3a37.32,37.32,0,0,1-26.57,11.16A28.61,28.61,0,0,1,431,305.21a19.41,19.41,0,0,1-7.77-15.63c0-7,3.22-12.81,9.54-17.42s14.53-7,24.07-7C470,265,480.3,268,487.64,273.94,487.64,284.07,483.68,292.85,475.9,300.3Zm-93.65-142A55.71,55.71,0,0,0,341.74,142H279.07V328.74H302.7V253.1h39c16,0,29.5-5.36,40.51-15.93.88-.89,1.76-1.79,2.65-2.68A54.45,54.45,0,0,0,382.25,158.26Zm-16.58,62.23a30.65,30.65,0,0,1-23.34,9.68H302.7V165h39.63a32,32,0,0,1,22.6,9.23A33.18,33.18,0,0,1,365.67,220.49ZM614.31,201,577.77,292.7h-.45L539.9,201H514.21L566,320.55l-29.35,64.32H561L640,201Z" + } + }, + "free": [ + "brands" + ] + }, + "google-play": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ab", + "label": "Google Play", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860994, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" + } + }, + "free": [ + "brands" + ] + }, + "google-plus": { + "changes": [ + "4.6", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus-circle", + "google-plus-official" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2b3", + "label": "Google Plus", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539198, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256,8C119.1,8,8,119.1,8,256S119.1,504,256,504,504,392.9,504,256,392.9,8,256,8ZM185.3,380a124,124,0,0,1,0-248c31.3,0,60.1,11,83,32.3l-33.6,32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9,0-77.2,35.5-77.2,78.1S142.3,334,185.3,334c32.6,0,64.9-19.1,70.1-53.3H185.3V238.1H302.2a109.2,109.2,0,0,1,1.9,20.7c0,70.8-47.5,121.2-118.8,121.2ZM415.5,273.8v35.5H380V273.8H344.5V238.3H380V202.8h35.5v35.5h35.2v35.5Z" + } + }, + "free": [ + "brands" + ] + }, + "google-plus-g": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus", + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0d5", + "label": "Google Plus G", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860994, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" + } + }, + "free": [ + "brands" + ] + }, + "google-plus-square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0d4", + "label": "Google Plus Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860994, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" + } + }, + "free": [ + "brands" + ] + }, + "google-wallet": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ee", + "label": "Google Wallet", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860995, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" + } + }, + "free": [ + "brands" + ] + }, + "gopuram": { + "changes": [ + "5.3.0", + "5.7.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "entrance", + "hinduism", + "temple", + "tower" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f664", + "label": "Gopuram", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635509, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 352h-16V240c0-8.8-7.2-16-16-16h-16v-80c0-8.8-7.2-16-16-16h-16V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16S96 7.2 96 16v112H80c-8.8 0-16 7.2-16 16v80H48c-8.8 0-16 7.2-16 16v112H16c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16h80V352h32V224h32v-96h32v96h-32v128h-32v160h80v-80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v80h80V352h-32V224h-32v-96h32v96h32v128h32v160h80c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zM232 176c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v48h-48zm56 176h-64v-64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "graduation-cap": { + "changes": [ + "4.1", + "5.0.0", + "5.2.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "ceremony", + "college", + "graduate", + "learning", + "school", + "student" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f19d", + "label": "Graduation Cap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635510, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M622.34 153.2L343.4 67.5c-15.2-4.67-31.6-4.67-46.79 0L17.66 153.2c-23.54 7.23-23.54 38.36 0 45.59l48.63 14.94c-10.67 13.19-17.23 29.28-17.88 46.9C38.78 266.15 32 276.11 32 288c0 10.78 5.68 19.85 13.86 25.65L20.33 428.53C18.11 438.52 25.71 448 35.94 448h56.11c10.24 0 17.84-9.48 15.62-19.47L82.14 313.65C90.32 307.85 96 298.78 96 288c0-11.57-6.47-21.25-15.66-26.87.76-15.02 8.44-28.3 20.69-36.72L296.6 284.5c9.06 2.78 26.44 6.25 46.79 0l278.95-85.7c23.55-7.24 23.55-38.36 0-45.6zM352.79 315.09c-28.53 8.76-52.84 3.92-65.59 0l-145.02-44.55L128 384c0 35.35 85.96 64 192 64s192-28.65 192-64l-14.18-113.47-145.03 44.56z" + } + }, + "free": [ + "solid" + ] + }, + "gratipay": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "like", + "love" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f184", + "label": "Gratipay (Gittip)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860995, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" + } + }, + "free": [ + "brands" + ] + }, + "grav": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d6", + "label": "Grav", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860995, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" + } + }, + "free": [ + "brands" + ] + }, + "greater-than": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f531", + "label": "Greater Than", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635511, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z" + } + }, + "free": [ + "solid" + ] + }, + "greater-than-equal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f532", + "label": "Greater Than Equal To", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635510, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "grimace": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "cringe", + "emoticon", + "face", + "teeth" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f57f", + "label": "Grimacing Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635511, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z" + }, + "regular": { + "last_modified": 1628088634835, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f580", + "label": "Grinning Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635513, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1628088634838, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-alt": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f581", + "label": "Alternate Grinning Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635511, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1628088634836, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-beam": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f582", + "label": "Grinning Face With Smiling Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635511, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1628088634836, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-beam-sweat": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "embarass", + "emoticon", + "face", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f583", + "label": "Grinning Face With Sweat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635511, + "raw": "", + "viewBox": [ + "0", + "0", + "504", + "512" + ], + "width": 504, + "height": 512, + "path": "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1628088634836, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-hearts": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "love", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f584", + "label": "Smiling Face With Heart-Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635511, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z" + }, + "regular": { + "last_modified": 1628088634836, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-squint": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f585", + "label": "Grinning Squinting Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635512, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1628088634837, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-squint-tears": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f586", + "label": "Rolling on the Floor Laughing", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635512, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z" + }, + "regular": { + "last_modified": 1628088634837, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-stars": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "star-struck" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f587", + "label": "Star-Struck", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635512, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z" + }, + "regular": { + "last_modified": 1628088634837, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-tears": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f588", + "label": "Face With Tears of Joy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635512, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1628088634837, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-tongue": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f589", + "label": "Face With Tongue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635513, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" + }, + "regular": { + "last_modified": 1628088634838, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-tongue-squint": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58a", + "label": "Squinting Face With Tongue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635513, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z" + }, + "regular": { + "last_modified": 1628088634837, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-tongue-wink": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58b", + "label": "Winking Face With Tongue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635513, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" + }, + "regular": { + "last_modified": 1628088634838, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grin-wink": { + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "flirt", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58c", + "label": "Grinning Winking Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635513, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z" + }, + "regular": { + "last_modified": 1628088634838, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "grip-horizontal": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58d", + "label": "Grip Horizontal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635514, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "grip-lines": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a4", + "label": "Grip Lines", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635514, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 288H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-128H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "grip-lines-vertical": { + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a5", + "label": "Grip Lines Vertical", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635514, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M96 496V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm128 0V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "grip-vertical": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58e", + "label": "Grip Vertical", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635515, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "gripfire": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ac", + "label": "Gripfire, Inc.", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722330, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4.4 3.3.6 6.7.6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5zm205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6z" + } + }, + "free": [ + "brands" + ] + }, + "grunt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ad", + "label": "Grunt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722330, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37zM160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9-1.9 2-2.2 4.7-.9 8.1 3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8.6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7zm189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59zM191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8zm61.7 230.7h-29.4c-4.2 0-7.2.9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3z" + } + }, + "free": [ + "brands" + ] + }, + "guilded": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07e", + "label": "Guilded", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785923, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M443.427,64H4.571c0,103.26,22.192,180.06,43.418,222.358C112.046,414.135,224,448,225.256,448a312.824,312.824,0,0,0,140.55-103.477c25.907-33.923,53.1-87.19,65.916-145.761H171.833c4.14,36.429,22.177,67.946,45.1,86.944h88.589c-17.012,28.213-48.186,54.4-80.456,69.482-31.232-13.259-69.09-46.544-96.548-98.362-26.726-53.833-27.092-105.883-27.092-105.883H437.573A625.91,625.91,0,0,0,443.427,64Z" + } + }, + "free": [ + "brands" + ] + }, + "guitar": { + "changes": [ + "5.6.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acoustic", + "instrument", + "music", + "rock", + "rock and roll", + "song", + "strings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a6", + "label": "Guitar", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635515, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.63 39L473 9.37a32 32 0 0 0-45.26 0L381.46 55.7a35.14 35.14 0 0 0-8.53 13.79L360.77 106l-76.26 76.26c-12.16-8.76-25.5-15.74-40.1-19.14-33.45-7.78-67-.88-89.88 22a82.45 82.45 0 0 0-20.24 33.47c-6 18.56-23.21 32.69-42.15 34.46-23.7 2.27-45.73 11.45-62.61 28.44C-16.11 327-7.9 409 47.58 464.45S185 528 230.56 482.52c17-16.88 26.16-38.9 28.45-62.71 1.76-18.85 15.89-36.13 34.43-42.14a82.6 82.6 0 0 0 33.48-20.25c22.87-22.88 29.74-56.36 22-89.75-3.39-14.64-10.37-28-19.16-40.2L406 151.23l36.48-12.16a35.14 35.14 0 0 0 13.79-8.53l46.33-46.32a32 32 0 0 0 .03-45.22zM208 352a48 48 0 1 1 48-48 48 48 0 0 1-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "gulp": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ae", + "label": "Gulp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860996, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" + } + }, + "free": [ + "brands" + ] + }, + "h-square": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "emergency", + "hospital", + "hotel", + "map" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fd", + "label": "H Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635516, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "hacker-news": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d4", + "label": "Hacker News", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860996, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + }, + "free": [ + "brands" + ] + }, + "hacker-news-square": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3af", + "label": "Hacker News Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860996, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + }, + "free": [ + "brands" + ] + }, + "hackerrank": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5f7", + "label": "Hackerrank", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775899, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M477.5 128C463 103.05 285.13 0 256.16 0S49.25 102.79 34.84 128s-14.49 230.8 0 256 192.38 128 221.32 128S463 409.08 477.49 384s14.51-231 .01-256zM316.13 414.22c-4 0-40.91-35.77-38-38.69.87-.87 6.26-1.48 17.55-1.83 0-26.23.59-68.59.94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88.23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11.92-33.44 3-84-.15-212.67v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87.87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.39h80.26c0-4.55.39-34.74-1.2-83.64-.1-3.39.95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.64 336 341.29 336 373.69c8.87.35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z" + } + }, + "free": [ + "brands" + ] + }, + "hamburger": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "beef", + "burger", + "burger king", + "cheeseburger", + "fast food", + "grill", + "ground beef", + "mcdonalds", + "sandwich" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f805", + "label": "Hamburger", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635517, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 256H48a48 48 0 0 0 0 96h416a48 48 0 0 0 0-96zm16 128H32a16 16 0 0 0-16 16v16a64 64 0 0 0 64 64h352a64 64 0 0 0 64-64v-16a16 16 0 0 0-16-16zM58.64 224h394.72c34.57 0 54.62-43.9 34.82-75.88C448 83.2 359.55 32.1 256 32c-103.54.1-192 51.2-232.18 116.11C4 180.09 24.07 224 58.64 224zM384 112a16 16 0 1 1-16 16 16 16 0 0 1 16-16zM256 80a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm-128 32a16 16 0 1 1-16 16 16 16 0 0 1 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "hammer": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "repair", + "settings", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e3", + "label": "Hammer", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635518, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M571.31 193.94l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31-28.9-28.9c5.63-21.31.36-44.9-16.35-61.61l-45.25-45.25c-62.48-62.48-163.79-62.48-226.28 0l90.51 45.25v18.75c0 16.97 6.74 33.25 18.75 45.25l49.14 49.14c16.71 16.71 40.3 21.98 61.61 16.35l28.9 28.9-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l90.51-90.51c6.23-6.24 6.23-16.37-.02-22.62zm-286.72-15.2c-3.7-3.7-6.84-7.79-9.85-11.95L19.64 404.96c-25.57 23.88-26.26 64.19-1.53 88.93s65.05 24.05 88.93-1.53l238.13-255.07c-3.96-2.91-7.9-5.87-11.44-9.41l-49.14-49.14z" + } + }, + "free": [ + "solid" + ] + }, + "hamsa": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amulet", + "christianity", + "islam", + "jewish", + "judaism", + "muslim", + "protection" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f665", + "label": "Hamsa", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635518, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M509.34 307.25C504.28 295.56 492.75 288 480 288h-64V80c0-22-18-40-40-40s-40 18-40 40v134c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V40c0-22-18-40-40-40s-40 18-40 40v174c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V80c0-22-18-40-40-40S96 58 96 80v208H32c-12.75 0-24.28 7.56-29.34 19.25a31.966 31.966 0 0 0 5.94 34.58l102.69 110.03C146.97 490.08 199.69 512 256 512s109.03-21.92 144.72-60.14L503.4 341.83a31.966 31.966 0 0 0 5.94-34.58zM256 416c-53.02 0-96-64-96-64s42.98-64 96-64 96 64 96 64-42.98 64-96 64zm0-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "lift" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4bd", + "label": "Hand Holding", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635521, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-heart": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "charity", + "gift", + "lift", + "package" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4be", + "label": "Hand Holding Heart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635519, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-medical": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "covid-19", + "donate", + "help" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05c", + "label": "Hand Holding Medical Cross", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635519, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M159.88,175.82h64v64a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16v-64h64a16,16,0,0,0,16-16v-64a16,16,0,0,0-16-16h-64v-64a16,16,0,0,0-16-16h-64a16,16,0,0,0-16,16v64h-64a16,16,0,0,0-16,16v64A16,16,0,0,0,159.88,175.82ZM568.07,336.13a39.91,39.91,0,0,0-55.93-8.47L392.47,415.84H271.86a16,16,0,0,1,0-32H350.1c16,0,30.75-10.87,33.37-26.61a32.06,32.06,0,0,0-31.62-37.38h-160a117.7,117.7,0,0,0-74.12,26.25l-46.5,37.74H15.87a16.11,16.11,0,0,0-16,16v96a16.11,16.11,0,0,0,16,16h347a104.8,104.8,0,0,0,61.7-20.27L559.6,392A40,40,0,0,0,568.07,336.13Z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-usd": { + "changes": [ + "5.0.9", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "carry", + "dollar sign", + "donation", + "giving", + "lift", + "money", + "price" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c0", + "label": "Hand Holding US Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635520, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M271.06,144.3l54.27,14.3a8.59,8.59,0,0,1,6.63,8.1c0,4.6-4.09,8.4-9.12,8.4h-35.6a30,30,0,0,1-11.19-2.2c-5.24-2.2-11.28-1.7-15.3,2l-19,17.5a11.68,11.68,0,0,0-2.25,2.66,11.42,11.42,0,0,0,3.88,15.74,83.77,83.77,0,0,0,34.51,11.5V240c0,8.8,7.83,16,17.37,16h17.37c9.55,0,17.38-7.2,17.38-16V222.4c32.93-3.6,57.84-31,53.5-63-3.15-23-22.46-41.3-46.56-47.7L282.68,97.4a8.59,8.59,0,0,1-6.63-8.1c0-4.6,4.09-8.4,9.12-8.4h35.6A30,30,0,0,1,332,83.1c5.23,2.2,11.28,1.7,15.3-2l19-17.5A11.31,11.31,0,0,0,368.47,61a11.43,11.43,0,0,0-3.84-15.78,83.82,83.82,0,0,0-34.52-11.5V16c0-8.8-7.82-16-17.37-16H295.37C285.82,0,278,7.2,278,16V33.6c-32.89,3.6-57.85,31-53.51,63C227.63,119.6,247,137.9,271.06,144.3ZM565.27,328.1c-11.8-10.7-30.2-10-42.6,0L430.27,402a63.64,63.64,0,0,1-40,14H272a16,16,0,0,1,0-32h78.29c15.9,0,30.71-10.9,33.25-26.6a31.2,31.2,0,0,0,.46-5.46A32,32,0,0,0,352,320H192a117.66,117.66,0,0,0-74.1,26.29L71.4,384H16A16,16,0,0,0,0,400v96a16,16,0,0,0,16,16H372.77a64,64,0,0,0,40-14L564,377a32,32,0,0,0,1.28-48.9Z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-water": { + "changes": [ + "5.0.9", + "5.13.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "covid-19", + "drought", + "grow", + "lift" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c1", + "label": "Hand Holding Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635520, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 256c53 0 96-42.1 96-94 0-40-57.1-120.7-83.2-155.6-6.4-8.5-19.2-8.5-25.6 0C249.1 41.3 192 122 192 162c0 51.9 43 94 96 94zm277.3 72.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" + } + }, + "free": [ + "solid" + ] + }, + "hand-lizard": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "game", + "roshambo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f258", + "label": "Lizard (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635521, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z" + }, + "regular": { + "last_modified": 1628088634846, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-middle-finger": { + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "flip the bird", + "gesture", + "hate", + "rude" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f806", + "label": "Hand with Middle Finger Raised", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635521, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M479.93 317.12a37.33 37.33 0 0 0-28.28-36.19L416 272v-49.59c0-11.44-9.69-21.29-23.15-23.54l-38.4-6.4C336.63 189.5 320 200.86 320 216v32a8 8 0 0 1-16 0V50c0-26.28-20.25-49.2-46.52-50A48 48 0 0 0 208 48v200a8 8 0 0 1-16 0v-32c0-15.15-16.63-26.51-34.45-23.54l-30.68 5.12c-18 3-30.87 16.12-30.87 31.38V376a8 8 0 0 1-16 0v-76l-27.36 15A37.34 37.34 0 0 0 32 348.4v73.47a37.31 37.31 0 0 0 10.93 26.39l30.93 30.93A112 112 0 0 0 153.05 512h215A112 112 0 0 0 480 400z" + } + }, + "free": [ + "solid" + ] + }, + "hand-paper": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "game", + "halt", + "roshambo", + "stop" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f256", + "label": "Paper (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635522, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z" + }, + "regular": { + "last_modified": 1628088634846, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-peace": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "rest", + "truce" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25b", + "label": "Peace (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635522, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z" + }, + "regular": { + "last_modified": 1628088634847, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-point-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-down", + "point" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a7", + "label": "Hand Pointing Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635523, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" + }, + "regular": { + "last_modified": 1628088634847, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-point-left": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "finger", + "hand-o-left", + "left", + "point", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a5", + "label": "Hand Pointing Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635523, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z" + }, + "regular": { + "last_modified": 1628088634847, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-point-right": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "forward", + "hand-o-right", + "next", + "point", + "right" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a4", + "label": "Hand Pointing Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635523, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" + }, + "regular": { + "last_modified": 1628088634847, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-point-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-up", + "point" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a6", + "label": "Hand Pointing Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635524, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" + }, + "regular": { + "last_modified": 1628088634848, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-pointer": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25a", + "label": "Pointer (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635524, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z" + }, + "regular": { + "last_modified": 1628088634848, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-rock": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fist", + "game", + "roshambo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f255", + "label": "Rock (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635524, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464.8 80c-26.9-.4-48.8 21.2-48.8 48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v32h-8V80.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v136l-8-7.1v-48.1c0-26.3-20.9-48.3-47.2-48.8C21.9 127.6 0 149.2 0 176v66.4c0 27.4 11.7 53.5 32.2 71.8l111.7 99.3c10.2 9.1 16.1 22.2 16.1 35.9v6.7c0 13.3 10.7 24 24 24h240c13.3 0 24-10.7 24-24v-2.9c0-12.8 2.6-25.5 7.5-37.3l49-116.3c5-11.8 7.5-24.5 7.5-37.3V128.8c0-26.3-20.9-48.4-47.2-48.8z" + }, + "regular": { + "last_modified": 1628088634848, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-scissors": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cut", + "game", + "roshambo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f257", + "label": "Scissors (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635525, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z" + }, + "regular": { + "last_modified": 1628088634849, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hand-sparkles": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "covid-19", + "hygiene", + "magic", + "soap", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05d", + "label": "Hand Sparkles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635525, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M106.66,170.64l.09,0,49.55-20.65a7.32,7.32,0,0,0,3.68-6h0a7.29,7.29,0,0,0-3.68-6l-49.57-20.67-.07,0L86,67.68a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L3.7,138A7.29,7.29,0,0,0,0,144H0a7.32,7.32,0,0,0,3.68,6L53.27,170.6l.07,0L74,220.26a6.65,6.65,0,0,0,11.92,0l20.69-49.62ZM471.38,467.41l-1-.42-1-.5a38.67,38.67,0,0,1,0-69.14l1-.49,1-.43,37.49-15.63,15.63-37.48.41-1,.47-.95c3.85-7.74,10.58-13.63,18.35-17.34,0-1.33.25-2.69.27-4V144a32,32,0,0,0-64,0v72a8,8,0,0,1-8,8H456a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H360a8,8,0,0,1-8-8V32a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H264a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0v241l-23.59-32.49a40,40,0,0,0-64.71,47.09L229.3,492.21A48.07,48.07,0,0,0,268.09,512H465.7c19.24,0,35.65-11.73,43.24-28.79l-.07-.17ZM349.79,339.52,320,351.93l-12.42,29.78a4,4,0,0,1-7.15,0L288,351.93l-29.79-12.41a4,4,0,0,1,0-7.16L288,319.94l12.42-29.78a4,4,0,0,1,7.15,0L320,319.94l29.79,12.42a4,4,0,0,1,0,7.16ZM640,431.91a7.28,7.28,0,0,0-3.68-6l-49.57-20.67-.07,0L566,355.63a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L483.7,426a7.28,7.28,0,0,0-3.68,6h0a7.29,7.29,0,0,0,3.68,5.95l49.57,20.67.07,0L554,508.21a6.65,6.65,0,0,0,11.92,0l20.69-49.62h0l.09,0,49.55-20.66a7.29,7.29,0,0,0,3.68-5.95h0Z" + } + }, + "free": [ + "solid" + ] + }, + "hand-spock": { + "changes": [ + "4.4", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "live long", + "prosper", + "salute", + "star trek", + "vulcan" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f259", + "label": "Spock (Hand)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635526, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.9005,145.27027,442.604,432.09391A103.99507,103.99507,0,0,1,341.43745,512H214.074a135.96968,135.96968,0,0,1-93.18489-36.95291L12.59072,373.12723a39.992,39.992,0,0,1,54.8122-58.24988l60.59342,57.02528v0a283.24849,283.24849,0,0,0-11.6703-80.46734L73.63726,147.36011a40.00575,40.00575,0,1,1,76.71833-22.7187l37.15458,125.39477a8.33113,8.33113,0,0,0,16.05656-4.4414L153.26183,49.95406A39.99638,39.99638,0,1,1,230.73015,30.0166l56.09491,218.15825a10.42047,10.42047,0,0,0,20.30018-.501L344.80766,63.96966a40.052,40.052,0,0,1,51.30245-30.0893c19.86073,6.2998,30.86262,27.67378,26.67564,48.08487l-33.83869,164.966a7.55172,7.55172,0,0,0,14.74406,3.2666l29.3973-123.45874a39.99414,39.99414,0,1,1,77.81208,18.53121Z" + }, + "regular": { + "last_modified": 1628088634849, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M501.03053,116.17605c-19.39059-31.50779-51.24406-35.72849-66.31044-35.01756-14.11325-50.81051-62.0038-54.08-70.73816-54.08a74.03091,74.03091,0,0,0-72.23816,58.916l-4.64648,22.66014-13.68357-53.207c-9.09569-35.37107-46.412-64.05074-89.66-53.07223a73.89749,73.89749,0,0,0-55.121,78.94722,73.68273,73.68273,0,0,0-64.8495,94.42181l24.35933,82.19721c-38.24017-7.54492-62.79677,16.18358-68.11512,21.84764a73.6791,73.6791,0,0,0,3.19921,104.19329l91.36509,85.9765A154.164,154.164,0,0,0,220.62279,512h107.4549A127.30079,127.30079,0,0,0,452.3392,413.86139l57.623-241.96272A73.20274,73.20274,0,0,0,501.03053,116.17605Zm-37.7597,44.60544L405.64788,402.74812a79.46616,79.46616,0,0,1-77.57019,61.25972H220.62279a106.34052,106.34052,0,0,1-73.1366-28.998l-91.369-85.98041C31.34381,325.72669,66.61133,288.131,91.39644,311.5392l51.123,48.10739c5.42577,5.10937,13.48239.71679,13.48239-5.82617a246.79914,246.79914,0,0,0-10.17771-70.1523l-36.01362-121.539c-9.7324-32.88279,39.69916-47.27145,49.38664-14.625l31.3437,105.77923c5.59374,18.90428,33.78119,10.71288,28.9648-8.00781L177.06427,80.23662c-8.50389-33.1035,41.43157-45.64646,49.86515-12.83593l47.32609,184.035c4.42773,17.24218,29.16207,16.5039,32.71089-.80468l31.791-154.9706c6.81054-33.1074,57.51748-24.10741,50.11906,11.96288L360.32764,246.78924c-3.72265,18.10936,23.66793,24.63084,28.05659,6.21679L413.185,148.85962C421.1498,115.512,471.14,127.79713,463.27083,160.78149Z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hands": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "hold", + "lift" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c2", + "label": "Hands", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635527, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "hands-helping": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "handshake", + "partnership", + "volunteering" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c4", + "label": "Helping Hands", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635526, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z" + } + }, + "free": [ + "solid" + ] + }, + "hands-wash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "hygiene", + "soap", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05e", + "label": "Hands Wash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635526, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M496,224a48,48,0,1,0-48-48A48,48,0,0,0,496,224ZM311.47,178.45A56.77,56.77,0,0,1,328,176a56,56,0,0,1,19,3.49l15.35-48.61A24,24,0,0,0,342,99.74c-11.53-1.35-22.21,6.44-25.71,17.51l-20.9,66.17ZM93.65,386.33c.8-.19,1.54-.54,2.35-.71V359.93a156,156,0,0,1,107.06-148l73.7-22.76L310.92,81.05a24,24,0,0,0-20.33-31.11c-11.53-1.34-22.22,6.45-25.72,17.52L231.42,173.88a8,8,0,0,1-15.26-4.83L259.53,31.26A24,24,0,0,0,239.2.15C227.67-1.19,217,6.6,213.49,17.66L165.56,169.37a8,8,0,1,1-15.26-4.82l38.56-122a24,24,0,0,0-20.33-31.11C157,10,146.32,17.83,142.82,28.9l-60,189.85L80.76,168.7A24,24,0,0,0,56.9,144.55c-13.23-.05-24.72,10.54-24.9,23.86V281.14A123.69,123.69,0,0,0,93.65,386.33ZM519.1,336H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,279.84,498.71,272,487.1,272H288l47.09-17.06a24,24,0,0,0-14.18-45.88L213.19,242.31A123.88,123.88,0,0,0,128,360v25.65a79.78,79.78,0,0,1,58,108.63A118.9,118.9,0,0,0,248,512H456a24,24,0,0,0,23.54-28.76C477.35,471.84,466.71,464,455.1,464H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,407.84,498.71,400,487.1,400H360a8,8,0,0,1,0-16H520a24,24,0,0,0,23.54-28.76C541.35,343.84,530.71,336,519.1,336ZM416,64a32,32,0,1,0-32-32A32,32,0,0,0,416,64ZM112,416a48,48,0,1,0,48,48A48,48,0,0,0,112,416Z" + } + }, + "free": [ + "solid" + ] + }, + "handshake": { + "changes": [ + "4.7", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "meeting", + "partnership" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b5", + "label": "Handshake", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635528, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z" + }, + "regular": { + "last_modified": 1628088634850, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "handshake-alt-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05f", + "label": "Handshake Alternate Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635527, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M358.59,195.6,504.2,313.8a63.4,63.4,0,0,1,22.21,37.91H624a16.05,16.05,0,0,0,16-16V143.91A16,16,0,0,0,624,128H512L457.41,73.41A32,32,0,0,0,434.8,64H348.91a32,32,0,0,0-21.61,8.41l-88.12,80.68-25.69-19.85L289.09,64H205.3a32,32,0,0,0-22.6,9.41l-20.34,20.3L45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.54,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45L303.4,202.72l32.69-29.92,27-24.7a16,16,0,0,1,21.61,23.61ZM16,128A16.05,16.05,0,0,0,0,144V335.91a16,16,0,0,0,16,16H146.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L23.56,128Z" + } + }, + "free": [ + "solid" + ] + }, + "handshake-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e060", + "label": "Handshake Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635528, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0,128.21V384H64a32,32,0,0,0,32-32V184L23.83,128.21ZM48,320.1a16,16,0,1,1-16,16A16,16,0,0,1,48,320.1Zm80,31.81h18.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L128,208.72Zm416-223.7V352.1a32,32,0,0,0,32,32h64V128.21ZM592,352.1a16,16,0,1,1,16-16A16,16,0,0,1,592,352.1ZM303.33,202.67l59.58-54.57a16,16,0,0,1,21.59,23.61L358.41,195.6,504,313.8a73.08,73.08,0,0,1,7.91,7.7V128L457.3,73.41A31.76,31.76,0,0,0,434.7,64H348.8a31.93,31.93,0,0,0-21.6,8.41l-88.07,80.64-25.64-19.81L289.09,64H205.3a32,32,0,0,0-22.6,9.41L162.36,93.72,45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.65-25.27a16,16,0,0,0-2.82-22.45Z" + } + }, + "free": [ + "solid" + ] + }, + "hanukiah": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candle", + "hanukkah", + "jewish", + "judaism", + "light" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e6", + "label": "Hanukiah", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635529, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M232 160c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm-64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm224 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm88 8c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v120h32V168zm-440-8c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm520 0h-32c-8.84 0-16 7.16-16 16v112c0 17.67-14.33 32-32 32H352V128c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v192H96c-17.67 0-32-14.33-32-32V176c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v112c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V176c0-8.84-7.16-16-16-16zm-16-32c13.25 0 24-11.94 24-26.67S608 48 608 48s-24 38.61-24 53.33S594.75 128 608 128zm-576 0c13.25 0 24-11.94 24-26.67S32 48 32 48 8 86.61 8 101.33 18.75 128 32 128zm288-48c13.25 0 24-11.94 24-26.67S320 0 320 0s-24 38.61-24 53.33S306.75 80 320 80zm-208 48c13.25 0 24-11.94 24-26.67S112 48 112 48s-24 38.61-24 53.33S98.75 128 112 128zm64 0c13.25 0 24-11.94 24-26.67S176 48 176 48s-24 38.61-24 53.33S162.75 128 176 128zm64 0c13.25 0 24-11.94 24-26.67S240 48 240 48s-24 38.61-24 53.33S226.75 128 240 128zm160 0c13.25 0 24-11.94 24-26.67S400 48 400 48s-24 38.61-24 53.33S386.75 128 400 128zm64 0c13.25 0 24-11.94 24-26.67S464 48 464 48s-24 38.61-24 53.33S450.75 128 464 128zm64 0c13.25 0 24-11.94 24-26.67S528 48 528 48s-24 38.61-24 53.33S514.75 128 528 128z" + } + }, + "free": [ + "solid" + ] + }, + "hard-hat": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "hardhat", + "helmet", + "safety" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f807", + "label": "Hard Hat", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635529, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 288c0-80.25-49.28-148.92-119.19-177.62L320 192V80a16 16 0 0 0-16-16h-96a16 16 0 0 0-16 16v112l-40.81-81.62C81.28 139.08 32 207.75 32 288v64h448zm16 96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "hashtag": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Twitter", + "instagram", + "pound", + "social media", + "tag" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f292", + "label": "Hashtag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635529, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" + } + }, + "free": [ + "solid" + ] + }, + "hat-cowboy": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8c0", + "label": "Cowboy Hat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635530, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M490 296.9C480.51 239.51 450.51 64 392.3 64c-14 0-26.49 5.93-37 14a58.21 58.21 0 0 1-70.58 0c-10.51-8-23-14-37-14-58.2 0-88.2 175.47-97.71 232.88C188.81 309.47 243.73 320 320 320s131.23-10.51 170-23.1zm142.9-37.18a16 16 0 0 0-19.75 1.5c-1 .9-101.27 90.78-293.16 90.78-190.82 0-292.22-89.94-293.24-90.84A16 16 0 0 0 1 278.53C1.73 280.55 78.32 480 320 480s318.27-199.45 319-201.47a16 16 0 0 0-6.09-18.81z" + } + }, + "free": [ + "solid" + ] + }, + "hat-cowboy-side": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8c1", + "label": "Cowboy Hat Side", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635530, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M260.8 291.06c-28.63-22.94-62-35.06-96.4-35.06C87 256 21.47 318.72 1.43 412.06c-3.55 16.6-.43 33.83 8.57 47.3C18.75 472.47 31.83 480 45.88 480H592c-103.21 0-155-37.07-233.19-104.46zm234.65-18.29L468.4 116.2A64 64 0 0 0 392 64.41L200.85 105a64 64 0 0 0-50.35 55.79L143.61 226c6.9-.83 13.7-2 20.79-2 41.79 0 82 14.55 117.29 42.82l98 84.48C450.76 412.54 494.9 448 592 448a48 48 0 0 0 48-48c0-25.39-29.6-119.33-144.55-127.23z" + } + }, + "free": [ + "solid" + ] + }, + "hat-wizard": { + "changes": [ + "5.4.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "accessory", + "buckle", + "clothing", + "d&d", + "dnd", + "fantasy", + "halloween", + "head", + "holiday", + "mage", + "magic", + "pointy", + "witch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e8", + "label": "Wizard's Hat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635532, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-304-64l-64-32 64-32 32-64 32 64 64 32-64 32-16 32h208l-86.41-201.63a63.955 63.955 0 0 1-1.89-45.45L416 0 228.42 107.19a127.989 127.989 0 0 0-53.46 59.15L64 416h144l-16-32zm64-224l16-32 16 32 32 16-32 16-16 32-16-32-32-16 32-16z" + } + }, + "free": [ + "solid" + ] + }, + "hdd": { + "changes": [ + "2", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hard drive", + "harddrive", + "machine", + "save", + "storage" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a0", + "label": "HDD", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635532, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" + }, + "regular": { + "last_modified": 1628088634853, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "head-side-cough": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e061", + "label": "Head Side Cough", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635533, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304ZM552,416a24,24,0,1,0,24,24A24,24,0,0,0,552,416Zm-64-56a24,24,0,1,0,24,24A24,24,0,0,0,488,360ZM616,464a24,24,0,1,0,24,24A24,24,0,0,0,616,464Zm0-104a24,24,0,1,0,24,24A24,24,0,0,0,616,360Zm-64-40a24,24,0,1,0,24,24A24,24,0,0,0,552,320Zm-74.78-45c-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192C86,0,0,86,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320a32,32,0,0,1,0-64h96V320h32A32,32,0,0,0,477.22,275ZM288,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,288,224Z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-cough-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e062", + "label": "Head Side-cough-slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635533, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M454.11,319.21c19.56-3.81,31.62-25,23.11-44.21-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192A190.64,190.64,0,0,0,84.18,33.3L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM313.39,210.45,263.61,172c5.88-7.14,14.43-12,24.36-12a32.06,32.06,0,0,1,32,32C320,199,317.24,205.17,313.39,210.45ZM616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304Zm-64,64a24,24,0,1,0-24-24A24,24,0,0,0,552,368ZM288,384a32,32,0,0,1,32-32h19.54L20.73,105.59A190.86,190.86,0,0,0,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320A32,32,0,0,1,288,384Zm328-24a24,24,0,1,0,24,24A24,24,0,0,0,616,360Z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-mask": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "covid-19", + "filter", + "respirator", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e063", + "label": "Head Side Mask", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635534, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M.15,184.42C-2.17,244.21,23,298.06,64,334.88V512H224V316.51L3.67,156.25A182.28,182.28,0,0,0,.15,184.42ZM509.22,275c-21-47.12-48.5-151.75-73.12-186.75A208.11,208.11,0,0,0,266.11,0H200C117,0,42.48,50.57,13.25,123.65L239.21,288H511.76A31.35,31.35,0,0,0,509.22,275ZM320,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,320,224Zm16,144H496l16-48H256V512H401.88a64,64,0,0,0,60.71-43.76L464,464H336a16,16,0,0,1,0-32H474.67l10.67-32H336a16,16,0,0,1,0-32Z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-virus": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "covid-19", + "flu", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e064", + "label": "Head Side Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635534, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M272,240a16,16,0,1,0,16,16A16,16,0,0,0,272,240Zm-64-64a16,16,0,1,0,16,16A16,16,0,0,0,208,176Zm301.2,99c-20.93-47.12-48.43-151.73-73.07-186.75A207.9,207.9,0,0,0,266.09,0H192C86,0,0,86,0,192A191.23,191.23,0,0,0,64,334.81V512H320V448h64a64,64,0,0,0,64-64V320H480A32,32,0,0,0,509.2,275ZM368,240H355.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C290.47,297.09,256,311.37,256,339.88V352a16,16,0,0,1-32,0V339.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H112a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V96a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C313.09,173.53,327.37,208,355.88,208H368a16,16,0,0,1,0,32Z" + } + }, + "free": [ + "solid" + ] + }, + "heading": { + "changes": [ + "4.1", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "header", + "text", + "title" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1dc", + "label": "heading", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635535, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 96v320h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H320a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V288H160v128h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V96H32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16h-32v128h192V96h-32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "headphones": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f025", + "label": "headphones", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635536, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z" + } + }, + "free": [ + "solid" + ] + }, + "headphones-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58f", + "label": "Alternate Headphones", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635536, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z" + } + }, + "free": [ + "solid" + ] + }, + "headset": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "gamer", + "gaming", + "listen", + "live chat", + "microphone", + "shot caller", + "sound", + "support", + "telemarketer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f590", + "label": "Headset", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635536, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z" + } + }, + "free": [ + "solid" + ] + }, + "heart": { + "changes": [ + "1", + "5.0.0", + "5.0.9", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "like", + "love", + "relationship", + "valentine" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f004", + "label": "Heart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635538, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" + }, + "regular": { + "last_modified": 1628088634856, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "heart-broken": { + "changes": [ + "5.6.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "breakup", + "crushed", + "dislike", + "dumped", + "grief", + "love", + "lovesick", + "relationship", + "sad" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a9", + "label": "Heart Broken", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635537, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M473.7 73.8l-2.4-2.5c-46-47-118-51.7-169.6-14.8L336 159.9l-96 64 48 128-144-144 96-64-28.6-86.5C159.7 19.6 87 24 40.7 71.4l-2.4 2.4C-10.4 123.6-12.5 202.9 31 256l212.1 218.6c7.1 7.3 18.6 7.3 25.7 0L481 255.9c43.5-53 41.4-132.3-7.3-182.1z" + } + }, + "free": [ + "solid" + ] + }, + "heartbeat": { + "changes": [ + "4.3", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "ekg", + "electrocardiogram", + "health", + "lifeline", + "vital signs" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21e", + "label": "Heartbeat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635538, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z" + } + }, + "free": [ + "solid" + ] + }, + "helicopter": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "airwolf", + "apache", + "chopper", + "flight", + "fly", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f533", + "label": "Helicopter", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635539, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z" + } + }, + "free": [ + "solid" + ] + }, + "highlighter": { + "changes": [ + "5.1.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "marker", + "sharpie", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f591", + "label": "Highlighter", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635540, + "raw": "", + "viewBox": [ + "0", + "0", + "544", + "512" + ], + "width": 544, + "height": 512, + "path": "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z" + } + }, + "free": [ + "solid" + ] + }, + "hiking": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "backpack", + "fall", + "fitness", + "outdoors", + "person", + "seasonal", + "walking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ec", + "label": "Hiking", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635540, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z" + } + }, + "free": [ + "solid" + ] + }, + "hippo": { + "changes": [ + "5.4.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "fauna", + "hippopotamus", + "hungry", + "mammal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ed", + "label": "Hippo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635540, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M581.12 96.2c-27.67-.15-52.5 17.58-76.6 26.62C489.98 88.27 455.83 64 416 64c-11.28 0-21.95 2.3-32 5.88V56c0-13.26-10.75-24-24-24h-16c-13.25 0-24 10.74-24 24v48.98C286.01 79.58 241.24 64 192 64 85.96 64 0 135.64 0 224v240c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16v-70.79C128.35 407.57 166.72 416 208 416s79.65-8.43 112-22.79V464c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V288h128v32c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-32c17.67 0 32-14.33 32-32v-92.02c0-34.09-24.79-67.59-58.88-67.78zM448 176c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "hips": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f452", + "label": "Hips", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722330, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7c-1.8 0-2.7.9-2.7 2.7v279.2c0 1.9.9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3zm478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5.4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4.2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3.7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zM228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9z" + } + }, + "free": [ + "brands" + ] + }, + "hire-a-helper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b0", + "label": "HireAHelper", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860997, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" + } + }, + "free": [ + "brands" + ] + }, + "history": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rewind", + "clock", + "reverse", + "time", + "time machine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1da", + "label": "History", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635540, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" + } + }, + "free": [ + "solid" + ] + }, + "hive": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07f", + "label": "Hive Blockchain Network", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785923, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M260.353,254.878,131.538,33.1a2.208,2.208,0,0,0-3.829.009L.3,254.887A2.234,2.234,0,0,0,.3,257.122L129.116,478.9a2.208,2.208,0,0,0,3.83-.009L260.358,257.113A2.239,2.239,0,0,0,260.353,254.878Zm39.078-25.713a2.19,2.19,0,0,0,1.9,1.111h66.509a2.226,2.226,0,0,0,1.9-3.341L259.115,33.111a2.187,2.187,0,0,0-1.9-1.111H190.707a2.226,2.226,0,0,0-1.9,3.341ZM511.7,254.886,384.9,33.112A2.2,2.2,0,0,0,382.99,32h-66.6a2.226,2.226,0,0,0-1.906,3.34L440.652,256,314.481,476.66a2.226,2.226,0,0,0,1.906,3.34h66.6a2.2,2.2,0,0,0,1.906-1.112L511.7,257.114A2.243,2.243,0,0,0,511.7,254.886ZM366.016,284.917H299.508a2.187,2.187,0,0,0-1.9,1.111l-108.8,190.631a2.226,2.226,0,0,0,1.9,3.341h66.509a2.187,2.187,0,0,0,1.9-1.111l108.8-190.631A2.226,2.226,0,0,0,366.016,284.917Z" + } + }, + "free": [ + "brands" + ] + }, + "hockey-puck": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "ice", + "nhl", + "sport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f453", + "label": "Hockey Puck", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635541, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z" + } + }, + "free": [ + "solid" + ] + }, + "holly-berry": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catwoman", + "christmas", + "decoration", + "flora", + "halle", + "holiday", + "ororo munroe", + "plant", + "storm", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7aa", + "label": "Holly Berry", + "svg": { + "solid": { + "last_modified": 1628088635542, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M144 192c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm112-48c0 26.5 21.5 48 48 48s48-21.5 48-48-21.5-48-48-48-48 21.5-48 48zm-32-48c26.5 0 48-21.5 48-48S250.5 0 224 0s-48 21.5-48 48 21.5 48 48 48zm-16.2 139.1c.1-12.4-13.1-20.1-23.8-13.7-34.3 20.3-71.4 32.7-108.7 36.2-9.7.9-15.6 11.3-11.6 20.2 6.2 13.9 11.1 28.6 14.7 43.8 3.6 15.2-5.3 30.6-20.2 35.1-14.9 4.5-30.1 7.6-45.3 9.1-9.7 1-15.7 11.3-11.7 20.2 15 32.8 22.9 69.5 23 107.7.1 14.4 15.2 23.1 27.6 16 33.2-19 68.9-30.5 104.8-33.9 9.7-.9 15.6-11.3 11.6-20.2-6.2-13.9-11.1-28.6-14.7-43.8-3.6-15.2 5.3-30.6 20.2-35.1 14.9-4.5 30.1-7.6 45.3-9.1 9.7-1 15.7-11.3 11.7-20.2-15.5-34.2-23.3-72.5-22.9-112.3zM435 365.6c-15.2-1.6-30.3-4.7-45.3-9.1-14.9-4.5-23.8-19.9-20.2-35.1 3.6-15.2 8.5-29.8 14.7-43.8 4-8.9-1.9-19.3-11.6-20.2-37.3-3.5-74.4-15.9-108.7-36.2-10.7-6.3-23.9 1.4-23.8 13.7 0 1.6-.2 3.2-.2 4.9.2 33.3 7 65.7 19.9 94 5.7 12.4 5.2 26.6-.6 38.9 4.9 1.2 9.9 2.2 14.8 3.7 14.9 4.5 23.8 19.9 20.2 35.1-3.6 15.2-8.5 29.8-14.7 43.8-4 8.9 1.9 19.3 11.6 20.2 35.9 3.4 71.6 14.9 104.8 33.9 12.5 7.1 27.6-1.6 27.6-16 .2-38.2 8-75 23-107.7 4.3-8.7-1.8-19.1-11.5-20.1z" + } + }, + "free": [ + "solid" + ] + }, + "home": { + "changes": [ + "1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "house", + "main" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f015", + "label": "home", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635543, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z" + } + }, + "free": [ + "solid" + ] + }, + "hooli": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f427", + "label": "Hooli", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699928, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3zm408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zm-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zM65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z" + } + }, + "free": [ + "brands" + ] + }, + "hornbill": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f592", + "label": "Hornbill", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775899, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M76.38 370.3a37.8 37.8 0 1 1-32.07-32.42c-78.28-111.35 52-190.53 52-190.53-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49.93 64.06 39.81 72.87a140.38 140.38 0 0 0 131.66 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zm108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0-31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.42 140.42 0 0 1 207 132.71c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.59-54.06zm304.19 134.17a37.94 37.94 0 1 0-53.84-28.7C403 126.13 344.89 99 251.28 100.33l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.37 140.37 0 0 1 130.49 88.76c39.1 9 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 49-194.61a37.45 37.45 0 0 0 19.31-3.5zM374.06 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15a140.34 140.34 0 0 1-91.39 131.45c-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z" + } + }, + "free": [ + "brands" + ] + }, + "horse": { + "changes": [ + "5.4.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "equus", + "fauna", + "mammmal", + "mare", + "neigh", + "pony" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6f0", + "label": "Horse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635545, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M575.92 76.6c-.01-8.13-3.02-15.87-8.58-21.8-3.78-4.03-8.58-9.12-13.69-14.5 11.06-6.84 19.5-17.49 22.18-30.66C576.85 4.68 572.96 0 567.9 0H447.92c-70.69 0-128 57.31-128 128H160c-28.84 0-54.4 12.98-72 33.11V160c-48.53 0-88 39.47-88 88v56c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-56c0-13.22 6.87-24.39 16.78-31.68-.21 2.58-.78 5.05-.78 7.68 0 27.64 11.84 52.36 30.54 69.88l-25.72 68.6a63.945 63.945 0 0 0-2.16 37.99l24.85 99.41A15.982 15.982 0 0 0 107.02 512h65.96c10.41 0 18.05-9.78 15.52-19.88l-26.31-105.26 23.84-63.59L320 345.6V496c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V318.22c19.74-20.19 32-47.75 32-78.22 0-.22-.07-.42-.08-.64V136.89l16 7.11 18.9 37.7c7.45 14.87 25.05 21.55 40.49 15.37l32.55-13.02a31.997 31.997 0 0 0 20.12-29.74l-.06-77.71zm-64 19.4c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "horse-head": { + "changes": [ + "5.6.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "equus", + "fauna", + "mammmal", + "mare", + "neigh", + "pony" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ab", + "label": "Horse Head", + "svg": { + "solid": { + "last_modified": 1628088635544, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M509.8 332.5l-69.9-164.3c-14.9-41.2-50.4-71-93-79.2 18-10.6 46.3-35.9 34.2-82.3-1.3-5-7.1-7.9-12-6.1L166.9 76.3C35.9 123.4 0 238.9 0 398.8V480c0 17.7 14.3 32 32 32h236.2c23.8 0 39.3-25 28.6-46.3L256 384v-.7c-45.6-3.5-84.6-30.7-104.3-69.6-1.6-3.1-.9-6.9 1.6-9.3l12.1-12.1c3.9-3.9 10.6-2.7 12.9 2.4 14.8 33.7 48.2 57.4 87.4 57.4 17.2 0 33-5.1 46.8-13.2l46 63.9c6 8.4 15.7 13.3 26 13.3h50.3c8.5 0 16.6-3.4 22.6-9.4l45.3-39.8c8.9-9.1 11.7-22.6 7.1-34.4zM328 224c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "hospital": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "covid-19", + "emergency room", + "medical center" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0f8", + "label": "hospital", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635546, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z" + }, + "regular": { + "last_modified": 1628088634861, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hospital-alt": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "covid-19", + "emergency room", + "medical center" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47d", + "label": "Alternate Hospital", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635545, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" + } + }, + "free": [ + "solid" + ] + }, + "hospital-symbol": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "covid-19", + "emergency", + "map" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47e", + "label": "Hospital Symbol", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635545, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z" + } + }, + "free": [ + "solid" + ] + }, + "hospital-user": { + "changes": [ + "5.7.0", + "5.13.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "network", + "patient", + "primary care" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f80d", + "label": "Hospital with User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635545, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M480 320a96 96 0 1 0-96-96 96 96 0 0 0 96 96zm48 32a22.88 22.88 0 0 0-7.06 1.09 124.76 124.76 0 0 1-81.89 0A22.82 22.82 0 0 0 432 352a112 112 0 0 0-112 112.62c.14 26.26 21.73 47.38 48 47.38h224c26.27 0 47.86-21.12 48-47.38A112 112 0 0 0 528 352zm-198.09 10.45A145.19 145.19 0 0 1 352 344.62V128a32 32 0 0 0-32-32h-32V32a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v64H32a32 32 0 0 0-32 32v368a16 16 0 0 0 16 16h288.31A78.62 78.62 0 0 1 288 464.79a143.06 143.06 0 0 1 41.91-102.34zM144 404a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm48-122a6 6 0 0 1-6 6h-20a6 6 0 0 1-6-6v-26h-26a6 6 0 0 1-6-6v-20a6 6 0 0 1 6-6h26V70a6 6 0 0 1 6-6h20a6 6 0 0 1 6 6v26h26a6 6 0 0 1 6 6v20a6 6 0 0 1-6 6h-26zm80 250a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12z" + } + }, + "free": [ + "solid" + ] + }, + "hot-tub": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "jacuzzi", + "massage", + "sauna", + "spa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f593", + "label": "Hot Tub", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635547, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z" + } + }, + "free": [ + "solid" + ] + }, + "hotdog": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bun", + "chili", + "frankfurt", + "frankfurter", + "kosher", + "polish", + "sandwich", + "sausage", + "vienna", + "weiner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f80f", + "label": "Hot Dog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635547, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488.56 23.44a80 80 0 0 0-113.12 0l-352 352a80 80 0 1 0 113.12 113.12l352-352a80 80 0 0 0 0-113.12zm-49.93 95.19c-19.6 19.59-37.52 22.67-51.93 25.14C373.76 146 364.4 147.6 352 160s-14 21.76-16.23 34.71c-2.48 14.4-5.55 32.33-25.15 51.92s-37.52 22.67-51.92 25.15C245.75 274 236.4 275.6 224 288s-14 21.75-16.23 34.7c-2.47 14.4-5.54 32.33-25.14 51.92s-37.53 22.68-51.93 25.15C117.76 402 108.4 403.6 96 416a16 16 0 0 1-22.63-22.63c19.6-19.59 37.52-22.67 51.92-25.14 13-2.22 22.3-3.82 34.71-16.23s14-21.75 16.22-34.7c2.48-14.4 5.55-32.33 25.15-51.92s37.52-22.67 51.92-25.14c13-2.22 22.3-3.83 34.7-16.23s14-21.76 16.24-34.71c2.47-14.4 5.54-32.33 25.14-51.92s37.52-22.68 51.92-25.15C394.24 110 403.59 108.41 416 96a16 16 0 0 1 22.63 22.63zM31.44 322.18L322.18 31.44l-11.54-11.55c-25-25-63.85-26.66-86.79-3.72L16.17 223.85c-22.94 22.94-21.27 61.79 3.72 86.78zm449.12-132.36L189.82 480.56l11.54 11.55c25 25 63.85 26.66 86.79 3.72l207.68-207.68c22.94-22.94 21.27-61.79-3.72-86.79z" + } + }, + "free": [ + "solid" + ] + }, + "hotel": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "inn", + "lodging", + "motel", + "resort", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f594", + "label": "Hotel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635547, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" + } + }, + "free": [ + "solid" + ] + }, + "hotjar": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b1", + "label": "Hotjar", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860997, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" + } + }, + "free": [ + "brands" + ] + }, + "hourglass": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f254", + "label": "Hourglass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635549, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z" + }, + "regular": { + "last_modified": 1628088634863, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "hourglass-end": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f253", + "label": "Hourglass End", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635548, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z" + } + }, + "free": [ + "solid" + ] + }, + "hourglass-half": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f252", + "label": "Hourglass Half", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635548, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z" + } + }, + "free": [ + "solid" + ] + }, + "hourglass-start": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f251", + "label": "Hourglass Start", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635548, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z" + } + }, + "free": [ + "solid" + ] + }, + "house-damage": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "home", + "insurance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6f1", + "label": "Damaged House", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635549, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 114.96L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496c0 8.84 7.16 16 16 16h149.23L192 439.19l104.11-64-60.16-119.22L384 392.75l-104.11 64L319.81 512H496c8.84 0 16-7.16 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2L288 114.96zm282.69 121.32L512 184.45V48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v51.69L314.75 10.31C307.12 3.45 297.56.01 288 0s-19.1 3.41-26.7 10.27L5.31 236.28c-6.57 5.91-7.12 16.02-1.21 22.6l21.4 23.82c5.9 6.57 16.02 7.12 22.6 1.21L277.42 81.63c6.05-5.33 15.12-5.33 21.17 0L527.91 283.9c6.57 5.9 16.69 5.36 22.6-1.21l21.4-23.82c5.9-6.57 5.36-16.69-1.22-22.59z" + } + }, + "free": [ + "solid" + ] + }, + "house-user": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "home", + "isolation", + "quarantine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e065", + "label": "House User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635551, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M570.69,236.27,512,184.44V48a16,16,0,0,0-16-16H432a16,16,0,0,0-16,16V99.67L314.78,10.3C308.5,4.61,296.53,0,288,0s-20.46,4.61-26.74,10.3l-256,226A18.27,18.27,0,0,0,0,248.2a18.64,18.64,0,0,0,4.09,10.71L25.5,282.7a21.14,21.14,0,0,0,12,5.3,21.67,21.67,0,0,0,10.69-4.11l15.9-14V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V269.88l15.91,14A21.94,21.94,0,0,0,538.63,288a20.89,20.89,0,0,0,11.87-5.31l21.41-23.81A21.64,21.64,0,0,0,576,248.19,21,21,0,0,0,570.69,236.27ZM288,176a64,64,0,1,1-64,64A64,64,0,0,1,288,176ZM400,448H176a16,16,0,0,1-16-16,96,96,0,0,1,96-96h64a96,96,0,0,1,96,96A16,16,0,0,1,400,448Z" + } + }, + "free": [ + "solid" + ] + }, + "houzz": { + "changes": [ + "4.4", + "5.0.0", + "5.0.9", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f27c", + "label": "Houzz", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775899, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z" + } + }, + "free": [ + "brands" + ] + }, + "hryvnia": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "money", + "ukraine", + "ukrainian" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6f2", + "label": "Hryvnia", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635552, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-41.86c13.41-28.63 13.74-63.33-4.13-94.05C303.34 49.84 267.1 32 229.96 32h-78.82c-24.32 0-47.86 8.53-66.54 24.09L72.83 65.9c-10.18 8.49-11.56 23.62-3.07 33.8l20.49 24.59c8.49 10.19 23.62 11.56 33.81 3.07l11.73-9.78c4.32-3.6 9.77-5.57 15.39-5.57h83.62c11.69 0 21.2 9.52 21.2 21.2 0 5.91-2.48 11.58-6.81 15.58L219.7 176H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h134.37l-34.67 32H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h41.86c-13.41 28.63-13.74 63.33 4.13 94.05C80.66 462.15 116.9 480 154.04 480h78.82c24.32 0 47.86-8.53 66.54-24.09l11.77-9.81c10.18-8.49 11.56-23.62 3.07-33.8l-20.49-24.59c-8.49-10.19-23.62-11.56-33.81-3.07l-11.75 9.8a23.992 23.992 0 0 1-15.36 5.56H149.2c-11.69 0-21.2-9.52-21.2-21.2 0-5.91 2.48-11.58 6.81-15.58L164.3 336H368c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H233.63l34.67-32H368z" + } + }, + "free": [ + "solid" + ] + }, + "html5": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f13b", + "label": "HTML 5 Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860998, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" + } + }, + "free": [ + "brands" + ] + }, + "hubspot": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b2", + "label": "HubSpot", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860998, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" + } + }, + "free": [ + "brands" + ] + }, + "i-cursor": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "editing", + "i-beam", + "type", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f246", + "label": "I Beam Cursor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635553, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z" + } + }, + "free": [ + "solid" + ] + }, + "ice-cream": { + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "chocolate", + "cone", + "dessert", + "frozen", + "scoop", + "sorbet", + "vanilla", + "yogurt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f810", + "label": "Ice Cream", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635553, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M368 160h-.94a144 144 0 1 0-286.12 0H80a48 48 0 0 0 0 96h288a48 48 0 0 0 0-96zM195.38 493.69a31.52 31.52 0 0 0 57.24 0L352 288H96z" + } + }, + "free": [ + "solid" + ] + }, + "icicles": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "frozen", + "hanging", + "ice", + "seasonal", + "sharp" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ad", + "label": "Icicles", + "svg": { + "solid": { + "last_modified": 1628088635553, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.4 37.9C515.1 18.2 500 0 480 0H32C10.6 0-4.8 20.7 1.4 41.2l87.1 273.4c2.5 7.2 12.7 7.2 15.1 0L140 190.5l44.2 187.3c1.9 8.3 13.7 8.3 15.6 0l46.5-196.9 34.1 133.4c2.3 7.6 13 7.6 15.3 0l45.8-172.5 66.7 363.8c1.7 8.6 14 8.6 15.7 0l87.5-467.7z" + } + }, + "free": [ + "solid" + ] + }, + "icons": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "emoji", + "heart", + "image", + "music", + "photo", + "symbols" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f86d", + "label": "Icons", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635554, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M116.65 219.35a15.68 15.68 0 0 0 22.65 0l96.75-99.83c28.15-29 26.5-77.1-4.91-103.88C203.75-7.7 163-3.5 137.86 22.44L128 32.58l-9.85-10.14C93.05-3.5 52.25-7.7 24.86 15.64c-31.41 26.78-33 74.85-5 103.88zm143.92 100.49h-48l-7.08-14.24a27.39 27.39 0 0 0-25.66-17.78h-71.71a27.39 27.39 0 0 0-25.66 17.78l-7 14.24h-48A27.45 27.45 0 0 0 0 347.3v137.25A27.44 27.44 0 0 0 27.43 512h233.14A27.45 27.45 0 0 0 288 484.55V347.3a27.45 27.45 0 0 0-27.43-27.46zM144 468a52 52 0 1 1 52-52 52 52 0 0 1-52 52zm355.4-115.9h-60.58l22.36-50.75c2.1-6.65-3.93-13.21-12.18-13.21h-75.59c-6.3 0-11.66 3.9-12.5 9.1l-16.8 106.93c-1 6.3 4.88 11.89 12.5 11.89h62.31l-24.2 83c-1.89 6.65 4.2 12.9 12.23 12.9a13.26 13.26 0 0 0 10.92-5.25l92.4-138.91c4.88-6.91-1.16-15.7-10.87-15.7zM478.08.33L329.51 23.17C314.87 25.42 304 38.92 304 54.83V161.6a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V99.66l112-17.22v47.18a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V32c0-19.48-16-34.42-33.92-31.67z" + } + }, + "free": [ + "solid" + ] + }, + "id-badge": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "contact", + "identification", + "license", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2c1", + "label": "Identification Badge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635554, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" + }, + "regular": { + "last_modified": 1628088634869, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "id-card": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3", + "5.8.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2c2", + "label": "Identification Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635554, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z" + }, + "regular": { + "last_modified": 1628088634869, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "id-card-alt": { + "changes": [ + "5.0.7", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47f", + "label": "Alternate Identification Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635554, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z" + } + }, + "free": [ + "solid" + ] + }, + "ideal": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e013", + "label": "iDeal", + "voted": true, + "svg": { + "brands": { + "last_modified": 1573074807767, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M125.61,165.48a49.07,49.07,0,1,0,49.06,49.06A49.08,49.08,0,0,0,125.61,165.48ZM86.15,425.84h78.94V285.32H86.15Zm151.46-211.6c0-20-10-22.53-18.74-22.53H204.82V237.5h14.05C228.62,237.5,237.61,234.69,237.61,214.24Zm201.69,46V168.93h22.75V237.5h33.69C486.5,113.08,388.61,86.19,299.67,86.19H204.84V169h14c25.6,0,41.5,17.35,41.5,45.26,0,28.81-15.52,46-41.5,46h-14V425.88h94.83c144.61,0,194.94-67.16,196.72-165.64Zm-109.75,0H273.3V169h54.43v22.73H296v10.58h30V225H296V237.5h33.51Zm74.66,0-5.16-17.67H369.31l-5.18,17.67H340.47L368,168.92h32.35l27.53,91.34ZM299.65,32H32V480H299.65c161.85,0,251-79.73,251-224.52C550.62,172,518,32,299.65,32Zm0,426.92H53.07V53.07H299.65c142.1,0,229.9,64.61,229.9,202.41C529.55,389.57,448.55,458.92,299.65,458.92Zm83.86-264.85L376,219.88H392.4l-7.52-25.81Z" + } + }, + "free": [ + "brands" + ] + }, + "igloo": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dome", + "dwelling", + "eskimo", + "home", + "house", + "ice", + "snow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ae", + "label": "Igloo", + "svg": { + "solid": { + "last_modified": 1628088635555, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M320 33.9c-10.5-1.2-21.2-1.9-32-1.9-99.8 0-187.8 50.8-239.4 128H320V33.9zM96 192H30.3C11.1 230.6 0 274 0 320h96V192zM352 39.4V160h175.4C487.2 99.9 424.8 55.9 352 39.4zM480 320h96c0-46-11.1-89.4-30.3-128H480v128zm-64 64v96h128c17.7 0 32-14.3 32-32v-96H411.5c2.6 10.3 4.5 20.9 4.5 32zm32-192H128v128h49.8c22.2-38.1 63-64 110.2-64s88 25.9 110.2 64H448V192zM0 448c0 17.7 14.3 32 32 32h128v-96c0-11.1 1.9-21.7 4.5-32H0v96zm288-160c-53 0-96 43-96 96v96h192v-96c0-53-43-96-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "image": { + "changes": [ + "1", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f03e", + "label": "Image", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635555, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z" + }, + "regular": { + "last_modified": 1628088634870, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "images": { + "changes": [ + "1", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f302", + "label": "Images", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635555, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z" + }, + "regular": { + "last_modified": 1628088634871, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "imdb": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d8", + "label": "IMDB", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722331, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.3 229.2H21c.1-.1.2-.3.3-.4zM97 319.8H64V192h33zm113.2 0h-28.7v-86.4l-11.6 86.4h-20.6l-12.2-84.5v84.5h-29V192h42.8c3.3 19.8 6 39.9 8.7 59.9l7.6-59.9h43zm11.4 0V192h24.6c17.6 0 44.7-1.6 49 20.9 1.7 7.6 1.4 16.3 1.4 24.4 0 88.5 11.1 82.6-75 82.5zm160.9-29.2c0 15.7-2.4 30.9-22.2 30.9-9 0-15.2-3-20.9-9.8l-1.9 8.1h-29.8V192h31.7v41.7c6-6.5 12-9.2 20.9-9.2 21.4 0 22.2 12.8 22.2 30.1zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4zm85.5 26.1c0-5.4 1.1-12.7-6.2-12.7-6 0-4.9 8.9-4.9 12.7 0 .6-1.1 39.6 1.1 44.7.8 1.6 2.2 2.4 3.8 2.4 7.8 0 6.2-9 6.2-14.4z" + } + }, + "free": [ + "brands" + ] + }, + "inbox": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "desk", + "email", + "mail", + "message" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f01c", + "label": "inbox", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635556, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z" + } + }, + "free": [ + "solid" + ] + }, + "indent": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03c", + "label": "Indent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635556, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M27.31 363.3l96-96a16 16 0 0 0 0-22.62l-96-96C17.27 138.66 0 145.78 0 160v192c0 14.31 17.33 21.3 27.31 11.3zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "industry": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "factory", + "industrial", + "manufacturing", + "mill", + "warehouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f275", + "label": "Industry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635556, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z" + } + }, + "free": [ + "solid" + ] + }, + "infinity": { + "changes": [ + "5.0.13", + "5.3.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "eternity", + "forever", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f534", + "label": "Infinity", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635557, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z" + } + }, + "free": [ + "solid" + ] + }, + "info": { + "changes": [ + "3.1", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f129", + "label": "Info", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635557, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "info-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05a", + "label": "Info Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635557, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" + } + }, + "free": [ + "solid" + ] + }, + "innosoft": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e080", + "label": "Innosoft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785923, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M422.559,159.71a27.379,27.379,0,0,0-13.866-23.337,26.42,26.42,0,0,0-26.211.133L73.943,314.647V176.261a11.955,11.955,0,0,1,6.047-10.34L218.066,86.208a12.153,12.153,0,0,1,11.922.025l32.656,18.853L112.581,191.723v56L359.642,105.086,241.129,36.679c-10.992-6.129-22.3-6.255-33.8-.27l-164.6,95.026c-10.634,6.12-16.771,16.39-17.29,29.124l0,191.5c.17,10.135,5.08,18.672,13.474,23.428a27.037,27.037,0,0,0,26.736-.045L374.057,197.376V335.657a11.976,11.976,0,0,1-5.92,10.368L230.025,425.77a12.175,12.175,0,0,1-11.937.062l-32.723-18.9,150.051-86.627v-56L88.367,406.932l118.794,68.583a33.88,33.88,0,0,0,34.25-.327l164.527-94.995c10.746-6.631,16.649-17.118,16.624-29.528Z" + } + }, + "free": [ + "brands" + ] + }, + "instagram": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16d", + "label": "Instagram", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860998, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" + } + }, + "free": [ + "brands" + ] + }, + "instagram-square": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e055", + "label": "Instagram Square", + "voted": true, + "svg": { + "brands": { + "last_modified": 1581349336590, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" + } + }, + "free": [ + "brands" + ] + }, + "instalod": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e081", + "label": "InstaLOD", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785924, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M153.384,480H387.113L502.554,275.765,204.229,333.211ZM504.726,240.078,387.113,32H155.669L360.23,267.9ZM124.386,48.809,7.274,256,123.236,461.154,225.627,165.561Z" + } + }, + "free": [ + "brands" + ] + }, + "intercom": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "customer", + "messenger" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7af", + "label": "Intercom", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860998, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zm-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0V106.6zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0V144zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7zm5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0v134.3z" + } + }, + "free": [ + "brands" + ] + }, + "internet-explorer": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f26b", + "label": "Internet-explorer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860999, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" + } + }, + "free": [ + "brands" + ] + }, + "invision": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7b0", + "label": "InVision", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860999, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6zM176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4zM332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9.7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3.1-14.3.9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52z" + } + }, + "free": [ + "brands" + ] + }, + "ioxhost": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f208", + "label": "ioxhost", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860999, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" + } + }, + "free": [ + "brands" + ] + }, + "italic": { + "changes": [ + "1", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f033", + "label": "italic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635559, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M320 48v32a16 16 0 0 1-16 16h-62.76l-80 320H208a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h62.76l80-320H112a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "itch-io": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83a", + "label": "itch.io", + "svg": { + "brands": { + "last_modified": 1558987775900, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M71.92 34.77C50.2 47.67 7.4 96.84 7 109.73v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.56 32.4 325.76 32 256 32S91.14 33.1 71.92 34.77zm132.32 134.39c-22 38.4-77.9 38.71-99.85.25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.13 17.73 269.15 80 18.67 302.08 18.12 379.76 0 31.65-32.27 21.32-232 17.75-269.15-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1-51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a436.91 436.91 0 0 1 88.18 0C318.22 223 332.85 223 349.31 223c52.33 0 65.22 77.53 83.87 144.45 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.93 8.79-155.55 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.45 83.88-144.45zM256 270.79s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34.16 23.33.16 11.65.54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z" + } + }, + "free": [ + "brands" + ] + }, + "itunes": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b4", + "label": "iTunes", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860999, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" + } + }, + "free": [ + "brands" + ] + }, + "itunes-note": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b5", + "label": "Itunes Note", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440860999, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" + } + }, + "free": [ + "brands" + ] + }, + "java": { + "changes": [ + "5.0.10", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e4", + "label": "Java", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775900, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M277.74 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.84 0 242.84 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.19 12.19 0 0 1-2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0-8.2 6.3 70.45 70.45 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.84 509.4 401 461.3 348 437.4zM124.44 396c-78.7 22 47.9 67.4 148.1 24.5a185.89 185.89 0 0 1-28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.64 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.37 60.37 0 0 1-21.1-12.8z" + } + }, + "free": [ + "brands" + ] + }, + "jedi": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crest", + "force", + "sith", + "skywalker", + "star wars", + "yoda" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f669", + "label": "Jedi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635559, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M535.95308,352c-42.64069,94.17188-137.64086,160-247.9848,160q-6.39844,0-12.84377-.29688C171.15558,506.9375,81.26481,442.23438,40.01474,352H79.93668L21.3272,293.40625a264.82522,264.82522,0,0,1-5.10938-39.42187,273.6653,273.6653,0,0,1,.5-29.98438H63.93665L22.546,182.625A269.79782,269.79782,0,0,1,130.51489,20.54688a16.06393,16.06393,0,0,1,9.28127-3,16.36332,16.36332,0,0,1,13.5,7.25,16.02739,16.02739,0,0,1,1.625,15.09374,138.387,138.387,0,0,0-9.84376,51.26563c0,45.10937,21.04691,86.57813,57.71884,113.73437a16.29989,16.29989,0,0,1,1.20313,25.39063c-26.54692,23.98437-41.17194,56.5-41.17194,91.57813,0,60.03124,42.95319,110.28124,99.89079,121.92187l2.5-65.26563L238.062,397a8.33911,8.33911,0,0,1-10-.75,8.025,8.025,0,0,1-1.39063-9.9375l20.125-33.76562-42.06257-8.73438a7.9898,7.9898,0,0,1,0-15.65625l42.06257-8.71875-20.10941-33.73438a7.99122,7.99122,0,0,1,11.35939-10.71874L268.437,295.64062,279.95265,7.67188a7.97138,7.97138,0,0,1,8-7.67188h.04687a8.02064,8.02064,0,0,1,7.95314,7.70312L307.48394,295.625l30.39068-20.67188a8.08327,8.08327,0,0,1,10,.8125,7.99866,7.99866,0,0,1,1.39062,9.90626L329.12461,319.4375l42.07819,8.73438a7.99373,7.99373,0,0,1,0,15.65624l-42.07819,8.71876,20.1094,33.73437a7.97791,7.97791,0,0,1-1.32812,9.92187A8.25739,8.25739,0,0,1,337.87462,397L310.7027,378.53125l2.5,65.34375c48.48446-9.40625,87.57828-48.15625,97.31267-96.5A123.52652,123.52652,0,0,0,371.9528,230.29688a16.30634,16.30634,0,0,1,1.20313-25.42188c36.65631-27.17188,57.6876-68.60938,57.6876-113.73438a138.01689,138.01689,0,0,0-9.85939-51.3125,15.98132,15.98132,0,0,1,1.60937-15.09374,16.36914,16.36914,0,0,1,13.5-7.23438,16.02453,16.02453,0,0,1,9.25,2.98438A271.26947,271.26947,0,0,1,553.25,182.76562L511.99992,224h46.9532C559.3125,229.76562,560,235.45312,560,241.26562a270.092,270.092,0,0,1-5.125,51.85938L495.98427,352Z" + } + }, + "free": [ + "solid" + ] + }, + "jedi-order": { + "changes": [ + "5.0.12", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f50e", + "label": "Jedi Order", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699929, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7z" + } + }, + "free": [ + "brands" + ] + }, + "jenkins": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b6", + "label": "Jenkis", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" + } + }, + "free": [ + "brands" + ] + }, + "jira": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7b1", + "label": "Jira", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6zm-241.5 90l-76-75.7 76-75.7 76 75.7-76 75.7z" + } + }, + "free": [ + "brands" + ] + }, + "joget": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b7", + "label": "Joget", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722332, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2zm51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6zm-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9zm183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5z" + } + }, + "free": [ + "brands" + ] + }, + "joint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blunt", + "cannabis", + "doobie", + "drugs", + "marijuana", + "roach", + "smoke", + "smoking", + "spliff" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f595", + "label": "Joint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635559, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "joomla": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1aa", + "label": "Joomla Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" + } + }, + "free": [ + "brands" + ] + }, + "journal-whills": { + "changes": [ + "5.3.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "force", + "jedi", + "sith", + "star wars", + "yoda" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66a", + "label": "Journal of the Whills", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635560, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M438.40625,377.59375c-3.20313,12.8125-3.20313,57.60937,0,73.60937Q447.9922,460.78907,448,470.40625v16c0,16-12.79688,25.59375-25.59375,25.59375H96c-54.40625,0-96-41.59375-96-96V96C0,41.59375,41.59375,0,96,0H422.40625C438.40625,0,448,9.59375,448,25.59375v332.8125Q448,372.79688,438.40625,377.59375ZM380.79688,384H96c-16,0-32,12.79688-32,32s12.79688,32,32,32H380.79688ZM128.01562,176.01562c0,.51563.14063.98438.14063,1.5l37.10937,32.46876A7.99954,7.99954,0,0,1,160,224h-.01562a9.17678,9.17678,0,0,1-5.25-1.98438L131.14062,201.375C142.6875,250.95312,186.90625,288,240,288s97.3125-37.04688,108.875-86.625l-23.59375,20.64062a8.02516,8.02516,0,0,1-5.26563,1.96876H320a9.14641,9.14641,0,0,1-6.01562-2.71876A9.26508,9.26508,0,0,1,312,216a9.097,9.097,0,0,1,2.73438-6.01562l37.10937-32.46876c.01563-.53124.15625-1,.15625-1.51562,0-11.04688-2.09375-21.51562-5.06251-31.59375l-21.26562,21.25a8.00467,8.00467,0,0,1-11.32812-11.3125l26.42187-26.40625a111.81517,111.81517,0,0,0-46.35937-49.26562,63.02336,63.02336,0,0,1-14.0625,82.64062A55.83846,55.83846,0,0,1,251.625,254.73438l-1.42188-34.28126,12.67188,8.625a3.967,3.967,0,0,0,2.25.6875,3.98059,3.98059,0,0,0,3.43749-6.03124l-8.53124-14.3125,17.90625-3.71876a4.00647,4.00647,0,0,0,0-7.84374l-17.90625-3.71876,8.53124-14.3125a3.98059,3.98059,0,0,0-3.43749-6.03124,4.726,4.726,0,0,0-2.25.67187L248.6875,184.125,244,71.82812a4.00386,4.00386,0,0,0-8,0l-4.625,110.8125-12-8.15624a4.003,4.003,0,0,0-5.68751,5.35937l8.53126,14.3125L204.3125,197.875a3.99686,3.99686,0,0,0,0,7.82812l17.90625,3.73438-8.53126,14.29688a4.72469,4.72469,0,0,0-.56249,2.04687,4.59547,4.59547,0,0,0,1.25,2.90625,4.01059,4.01059,0,0,0,2.75,1.09375,4.09016,4.09016,0,0,0,2.25-.6875l10.35937-7.04687L228.375,254.76562a55.86414,55.86414,0,0,1-28.71875-93.45312,63.01119,63.01119,0,0,1-14.04688-82.65625,111.93158,111.93158,0,0,0-46.375,49.26563l26.42187,26.42187a7.99917,7.99917,0,0,1-11.3125,11.3125l-21.26563-21.26563C130.09375,154.48438,128,164.95312,128.01562,176.01562Z" + } + }, + "free": [ + "solid" + ] + }, + "js": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b8", + "label": "JavaScript (JS)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861001, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + }, + "free": [ + "brands" + ] + }, + "js-square": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b9", + "label": "JavaScript (JS) Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + }, + "free": [ + "brands" + ] + }, + "jsfiddle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1cc", + "label": "jsFiddle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861001, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" + } + }, + "free": [ + "brands" + ] + }, + "kaaba": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "cube", + "islam", + "muslim" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66b", + "label": "Kaaba", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635560, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M554.12 83.51L318.36 4.93a95.962 95.962 0 0 0-60.71 0L21.88 83.51A32.006 32.006 0 0 0 0 113.87v49.01l265.02-79.51c15.03-4.5 30.92-4.5 45.98 0l265 79.51v-49.01c0-13.77-8.81-26-21.88-30.36zm-279.9 30.52L0 196.3v228.38c0 15 10.42 27.98 25.06 31.24l242.12 53.8a95.937 95.937 0 0 0 41.65 0l242.12-53.8c14.64-3.25 25.06-16.24 25.06-31.24V196.29l-274.2-82.26c-9.04-2.72-18.59-2.72-27.59 0zM128 230.11c0 3.61-2.41 6.77-5.89 7.72l-80 21.82C37.02 261.03 32 257.2 32 251.93v-16.58c0-3.61 2.41-6.77 5.89-7.72l80-21.82c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm144-39.28c0 3.61-2.41 6.77-5.89 7.72l-96 26.18c-5.09 1.39-10.11-2.44-10.11-7.72v-16.58c0-3.61 2.41-6.77 5.89-7.72l96-26.18c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm176 22.7c0-5.28 5.02-9.11 10.11-7.72l80 21.82c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-80-21.82a7.997 7.997 0 0 1-5.89-7.72v-16.58zm-144-39.27c0-5.28 5.02-9.11 10.11-7.72l96 26.18c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-96-26.18a7.997 7.997 0 0 1-5.89-7.72v-16.58z" + } + }, + "free": [ + "solid" + ] + }, + "kaggle": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5fa", + "label": "Kaggle", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775901, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M304.2 501.5L158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z" + } + }, + "free": [ + "brands" + ] + }, + "key": { + "changes": [ + "1", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "lock", + "password", + "private", + "secret", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f084", + "label": "key", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635561, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "keybase": { + "changes": [ + "5.0.11", + "5.8.0", + "5.10.2", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f5", + "label": "Keybase", + "voted": true, + "svg": { + "brands": { + "last_modified": 1568817883851, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z" + } + }, + "free": [ + "brands" + ] + }, + "keyboard": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessory", + "edit", + "input", + "text", + "type", + "write" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f11c", + "label": "Keyboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635561, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" + }, + "regular": { + "last_modified": 1628088634880, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "keycdn": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ba", + "label": "KeyCDN", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861001, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" + } + }, + "free": [ + "brands" + ] + }, + "khanda": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chakkar", + "sikh", + "sikhism", + "sword" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66d", + "label": "Khanda", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635562, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M415.81 66c-6.37-3.5-14.37-2.33-19.36 3.02a15.974 15.974 0 0 0-1.91 19.52c16.49 26.16 25.2 56.39 25.2 87.41-.19 53.25-26.77 102.69-71.27 132.41l-76.63 53.35v-20.1l44.05-36.09c3.92-4.2 5-10.09 2.81-15.28L310.85 273c33.84-19.26 56.94-55.25 56.94-96.99 0-40.79-22.02-76.13-54.59-95.71l5.22-11.44c2.34-5.53.93-11.83-3.57-16.04L255.86 0l-58.99 52.81c-4.5 4.21-5.9 10.51-3.57 16.04l5.22 11.44c-32.57 19.58-54.59 54.93-54.59 95.72 0 41.75 23.09 77.73 56.94 96.99l-7.85 17.24c-2.19 5.18-1.1 11.07 2.81 15.28l44.05 36.09v19.9l-76.59-53.33C119.02 278.62 92.44 229.19 92.26 176c0-31.08 8.71-61.31 25.2-87.47 3.87-6.16 2.4-13.77-2.59-19.08-5-5.34-13.68-6.2-20.02-2.7C16.32 109.6-22.3 205.3 13.36 295.99c7.07 17.99 17.89 34.38 30.46 49.06l55.97 65.36c4.87 5.69 13.04 7.24 19.65 3.72l79.35-42.23L228 392.23l-47.08 32.78c-1.67-.37-3.23-1.01-5.01-1.01-13.25 0-23.99 10.74-23.99 24 0 13.25 10.74 24 23.99 24 12.1 0 21.69-9.11 23.33-20.76l40.63-28.28v29.95c-9.39 5.57-15.99 15.38-15.99 27.1 0 17.67 14.32 32 31.98 32s31.98-14.33 31.98-32c0-11.71-6.61-21.52-15.99-27.1v-30.15l40.91 28.48C314.41 462.89 324 472 336.09 472c13.25 0 23.99-10.75 23.99-24 0-13.26-10.74-24-23.99-24-1.78 0-3.34.64-5.01 1.01L284 392.23l29.21-20.34 79.35 42.23c6.61 3.52 14.78 1.97 19.65-3.71l52.51-61.31c18.87-22.02 34-47.5 41.25-75.59 21.62-83.66-16.45-167.27-90.16-207.51zm-95.99 110c0 22.3-11.49 41.92-28.83 53.38l-5.65-12.41c-8.75-24.52-8.75-51.04 0-75.56l7.83-17.18c16.07 11.65 26.65 30.45 26.65 51.77zm-127.93 0c0-21.32 10.58-40.12 26.66-51.76l7.83 17.18c8.75 24.52 8.75 51.03 0 75.56l-5.65 12.41c-17.34-11.46-28.84-31.09-28.84-53.39z" + } + }, + "free": [ + "solid" + ] + }, + "kickstarter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bb", + "label": "Kickstarter", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861002, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" + } + }, + "free": [ + "brands" + ] + }, + "kickstarter-k": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bc", + "label": "Kickstarter K", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861001, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" + } + }, + "free": [ + "brands" + ] + }, + "kiss": { + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f596", + "label": "Kissing Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635563, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1628088634881, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "kiss-beam": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f597", + "label": "Kissing Face With Smiling Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635562, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z" + }, + "regular": { + "last_modified": 1628088634881, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "kiss-wink-heart": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f598", + "label": "Face Blowing a Kiss", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635563, + "raw": "", + "viewBox": [ + "0", + "0", + "504", + "512" + ], + "width": 504, + "height": 512, + "path": "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z" + }, + "regular": { + "last_modified": 1628088634881, + "raw": "", + "viewBox": [ + "0", + "0", + "504", + "512" + ], + "width": 504, + "height": 512, + "path": "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "kiwi-bird": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "fauna", + "new zealand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f535", + "label": "Kiwi Bird", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635563, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z" + } + }, + "free": [ + "solid" + ] + }, + "korvue": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42f", + "label": "KORVUE", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861002, + "raw": "", + "viewBox": [ + "0", + "0", + "446", + "512" + ], + "width": 446, + "height": 512, + "path": "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" + } + }, + "free": [ + "brands" + ] + }, + "landmark": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "memorable", + "monument", + "politics" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66f", + "label": "Landmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635565, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M501.62 92.11L267.24 2.04a31.958 31.958 0 0 0-22.47 0L10.38 92.11A16.001 16.001 0 0 0 0 107.09V144c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-36.91c0-6.67-4.14-12.64-10.38-14.98zM64 192v160H48c-8.84 0-16 7.16-16 16v48h448v-48c0-8.84-7.16-16-16-16h-16V192h-64v160h-96V192h-64v160h-96V192H64zm432 256H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "language": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "dialect", + "idiom", + "localize", + "speech", + "translate", + "vernacular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ab", + "label": "Language", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635566, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M152.1 236.2c-3.5-12.1-7.8-33.2-7.8-33.2h-.5s-4.3 21.1-7.8 33.2l-11.1 37.5H163zM616 96H336v320h280c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm-24 120c0 6.6-5.4 12-12 12h-11.4c-6.9 23.6-21.7 47.4-42.7 69.9 8.4 6.4 17.1 12.5 26.1 18 5.5 3.4 7.3 10.5 4.1 16.2l-7.9 13.9c-3.4 5.9-10.9 7.8-16.7 4.3-12.6-7.8-24.5-16.1-35.4-24.9-10.9 8.7-22.7 17.1-35.4 24.9-5.8 3.5-13.3 1.6-16.7-4.3l-7.9-13.9c-3.2-5.6-1.4-12.8 4.2-16.2 9.3-5.7 18-11.7 26.1-18-7.9-8.4-14.9-17-21-25.7-4-5.7-2.2-13.6 3.7-17.1l6.5-3.9 7.3-4.3c5.4-3.2 12.4-1.7 16 3.4 5 7 10.8 14 17.4 20.9 13.5-14.2 23.8-28.9 30-43.2H412c-6.6 0-12-5.4-12-12v-16c0-6.6 5.4-12 12-12h64v-16c0-6.6 5.4-12 12-12h16c6.6 0 12 5.4 12 12v16h64c6.6 0 12 5.4 12 12zM0 120v272c0 13.3 10.7 24 24 24h280V96H24c-13.3 0-24 10.7-24 24zm58.9 216.1L116.4 167c1.7-4.9 6.2-8.1 11.4-8.1h32.5c5.1 0 9.7 3.3 11.4 8.1l57.5 169.1c2.6 7.8-3.1 15.9-11.4 15.9h-22.9a12 12 0 0 1-11.5-8.6l-9.4-31.9h-60.2l-9.1 31.8c-1.5 5.1-6.2 8.7-11.5 8.7H70.3c-8.2 0-14-8.1-11.4-15.9z" + } + }, + "free": [ + "solid" + ] + }, + "laptop": { + "changes": [ + "3", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "device", + "mac", + "macbook", + "machine", + "pc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f109", + "label": "Laptop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635567, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z" + } + }, + "free": [ + "solid" + ] + }, + "laptop-code": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "develop", + "device", + "mac", + "macbook", + "machine", + "pc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5fc", + "label": "Laptop Code", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635566, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z" + } + }, + "free": [ + "solid" + ] + }, + "laptop-house": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "covid-19", + "device", + "office", + "remote", + "work from home" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e066", + "label": "Laptop House", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635566, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M272,288H208a16,16,0,0,1-16-16V208a16,16,0,0,1,16-16h64a16,16,0,0,1,16,16v37.12C299.11,232.24,315,224,332.8,224H469.74l6.65-7.53A16.51,16.51,0,0,0,480,207a16.31,16.31,0,0,0-4.75-10.61L416,144V48a16,16,0,0,0-16-16H368a16,16,0,0,0-16,16V87.3L263.5,8.92C258,4,247.45,0,240.05,0s-17.93,4-23.47,8.92L4.78,196.42A16.15,16.15,0,0,0,0,207a16.4,16.4,0,0,0,3.55,9.39L22.34,237.7A16.22,16.22,0,0,0,33,242.48,16.51,16.51,0,0,0,42.34,239L64,219.88V384a32,32,0,0,0,32,32H272ZM629.33,448H592V288c0-17.67-12.89-32-28.8-32H332.8c-15.91,0-28.8,14.33-28.8,32V448H266.67A10.67,10.67,0,0,0,256,458.67v10.66A42.82,42.82,0,0,0,298.6,512H597.4A42.82,42.82,0,0,0,640,469.33V458.67A10.67,10.67,0,0,0,629.33,448ZM544,448H352V304H544Z" + } + }, + "free": [ + "solid" + ] + }, + "laptop-medical": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "device", + "ehr", + "electronic health records", + "history" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f812", + "label": "Laptop Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635567, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M232 224h56v56a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8h-56v-56a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8zM576 48a48.14 48.14 0 0 0-48-48H112a48.14 48.14 0 0 0-48 48v336h512zm-64 272H128V64h384zm112 96H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33-17.47-32.77-32H16a16 16 0 0 0-16 16v16a64.19 64.19 0 0 0 64 64h512a64.19 64.19 0 0 0 64-64v-16a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "laravel": { + "changes": [ + "5.0.0", + "5.0.3", + "5.11.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bd", + "label": "Laravel", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539199, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504.4,115.83a5.72,5.72,0,0,0-.28-.68,8.52,8.52,0,0,0-.53-1.25,6,6,0,0,0-.54-.71,9.36,9.36,0,0,0-.72-.94c-.23-.22-.52-.4-.77-.6a8.84,8.84,0,0,0-.9-.68L404.4,55.55a8,8,0,0,0-8,0L300.12,111h0a8.07,8.07,0,0,0-.88.69,7.68,7.68,0,0,0-.78.6,8.23,8.23,0,0,0-.72.93c-.17.24-.39.45-.54.71a9.7,9.7,0,0,0-.52,1.25c-.08.23-.21.44-.28.68a8.08,8.08,0,0,0-.28,2.08V223.18l-80.22,46.19V63.44a7.8,7.8,0,0,0-.28-2.09c-.06-.24-.2-.45-.28-.68a8.35,8.35,0,0,0-.52-1.24c-.14-.26-.37-.47-.54-.72a9.36,9.36,0,0,0-.72-.94,9.46,9.46,0,0,0-.78-.6,9.8,9.8,0,0,0-.88-.68h0L115.61,1.07a8,8,0,0,0-8,0L11.34,56.49h0a6.52,6.52,0,0,0-.88.69,7.81,7.81,0,0,0-.79.6,8.15,8.15,0,0,0-.71.93c-.18.25-.4.46-.55.72a7.88,7.88,0,0,0-.51,1.24,6.46,6.46,0,0,0-.29.67,8.18,8.18,0,0,0-.28,2.1v329.7a8,8,0,0,0,4,6.95l192.5,110.84a8.83,8.83,0,0,0,1.33.54c.21.08.41.2.63.26a7.92,7.92,0,0,0,4.1,0c.2-.05.37-.16.55-.22a8.6,8.6,0,0,0,1.4-.58L404.4,400.09a8,8,0,0,0,4-6.95V287.88l92.24-53.11a8,8,0,0,0,4-7V117.92A8.63,8.63,0,0,0,504.4,115.83ZM111.6,17.28h0l80.19,46.15-80.2,46.18L31.41,63.44Zm88.25,60V278.6l-46.53,26.79-33.69,19.4V123.5l46.53-26.79Zm0,412.78L23.37,388.5V77.32L57.06,96.7l46.52,26.8V338.68a6.94,6.94,0,0,0,.12.9,8,8,0,0,0,.16,1.18h0a5.92,5.92,0,0,0,.38.9,6.38,6.38,0,0,0,.42,1v0a8.54,8.54,0,0,0,.6.78,7.62,7.62,0,0,0,.66.84l0,0c.23.22.52.38.77.58a8.93,8.93,0,0,0,.86.66l0,0,0,0,92.19,52.18Zm8-106.17-80.06-45.32,84.09-48.41,92.26-53.11,80.13,46.13-58.8,33.56Zm184.52,4.57L215.88,490.11V397.8L346.6,323.2l45.77-26.15Zm0-119.13L358.68,250l-46.53-26.79V131.79l33.69,19.4L392.37,178Zm8-105.28-80.2-46.17,80.2-46.16,80.18,46.15Zm8,105.28V178L455,151.19l33.68-19.4v91.39h0Z" + } + }, + "free": [ + "brands" + ] + }, + "lastfm": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f202", + "label": "last.fm", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861002, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" + } + }, + "free": [ + "brands" + ] + }, + "lastfm-square": { + "changes": [ + "4.2", + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f203", + "label": "last.fm Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861002, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" + } + }, + "free": [ + "brands" + ] + }, + "laugh": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f599", + "label": "Grinning Face With Big Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635568, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z" + }, + "regular": { + "last_modified": 1628088634887, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "laugh-beam": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59a", + "label": "Laugh Face with Beaming Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635568, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" + }, + "regular": { + "last_modified": 1628088634886, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "laugh-squint": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59b", + "label": "Laughing Squinting Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635568, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" + }, + "regular": { + "last_modified": 1628088634886, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "laugh-wink": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59c", + "label": "Laughing Winking Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635568, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" + }, + "regular": { + "last_modified": 1628088634886, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "layer-group": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "develop", + "layers", + "map", + "stack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5fd", + "label": "Layer Group", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635569, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M12.41 148.02l232.94 105.67c6.8 3.09 14.49 3.09 21.29 0l232.94-105.67c16.55-7.51 16.55-32.52 0-40.03L266.65 2.31a25.607 25.607 0 0 0-21.29 0L12.41 107.98c-16.55 7.51-16.55 32.53 0 40.04zm487.18 88.28l-58.09-26.33-161.64 73.27c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.51 209.97l-58.1 26.33c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 276.3c16.55-7.5 16.55-32.5 0-40zm0 127.8l-57.87-26.23-161.86 73.37c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.29 337.87 12.41 364.1c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 404.1c16.55-7.5 16.55-32.5 0-40z" + } + }, + "free": [ + "solid" + ] + }, + "leaf": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "nature", + "plant", + "vegan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06c", + "label": "leaf", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635571, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z" + } + }, + "free": [ + "solid" + ] + }, + "leanpub": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f212", + "label": "Leanpub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861003, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" + } + }, + "free": [ + "brands" + ] + }, + "lemon": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "citrus", + "lemonade", + "lime", + "tart" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f094", + "label": "Lemon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635571, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z" + }, + "regular": { + "last_modified": 1628088634889, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "less": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41d", + "label": "Less", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861003, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" + } + }, + "free": [ + "brands" + ] + }, + "less-than": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f536", + "label": "Less Than", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635572, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z" + } + }, + "free": [ + "solid" + ] + }, + "less-than-equal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f537", + "label": "Less Than Equal To", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635571, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "level-down-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "level-down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3be", + "label": "Alternate Level Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635572, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z" + } + }, + "free": [ + "solid" + ] + }, + "level-up-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "level-up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3bf", + "label": "Alternate Level Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635572, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z" + } + }, + "free": [ + "solid" + ] + }, + "life-ring": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coast guard", + "help", + "overboard", + "save", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1cd", + "label": "Life Ring", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635573, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z" + }, + "regular": { + "last_modified": 1628088634891, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "lightbulb": { + "changes": [ + "3", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "energy", + "idea", + "inspiration", + "light" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0eb", + "label": "Lightbulb", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635576, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z" + }, + "regular": { + "last_modified": 1628088634894, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M176 80c-52.94 0-96 43.06-96 96 0 8.84 7.16 16 16 16s16-7.16 16-16c0-35.3 28.72-64 64-64 8.84 0 16-7.16 16-16s-7.16-16-16-16zM96.06 459.17c0 3.15.93 6.22 2.68 8.84l24.51 36.84c2.97 4.46 7.97 7.14 13.32 7.14h78.85c5.36 0 10.36-2.68 13.32-7.14l24.51-36.84c1.74-2.62 2.67-5.7 2.68-8.84l.05-43.18H96.02l.04 43.18zM176 0C73.72 0 0 82.97 0 176c0 44.37 16.45 84.85 43.56 115.78 16.64 18.99 42.74 58.8 52.42 92.16v.06h48v-.12c-.01-4.77-.72-9.51-2.15-14.07-5.59-17.81-22.82-64.77-62.17-109.67-20.54-23.43-31.52-53.15-31.61-84.14-.2-73.64 59.67-128 127.95-128 70.58 0 128 57.42 128 128 0 30.97-11.24 60.85-31.65 84.14-39.11 44.61-56.42 91.47-62.1 109.46a47.507 47.507 0 0 0-2.22 14.3v.1h48v-.05c9.68-33.37 35.78-73.18 52.42-92.16C335.55 260.85 352 220.37 352 176 352 78.8 273.2 0 176 0z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "line": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c0", + "label": "Line", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861003, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z" + } + }, + "free": [ + "brands" + ] + }, + "link": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "chain", + "connect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c1", + "label": "Link", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635577, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z" + } + }, + "free": [ + "solid" + ] + }, + "linkedin": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin-square" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f08c", + "label": "LinkedIn", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861003, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" + } + }, + "free": [ + "brands" + ] + }, + "linkedin-in": { + "changes": [ + "2", + "5.0.0", + "5.4.1", + "5.8.0", + "5.8.1" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0e1", + "label": "LinkedIn In", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775902, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z" + } + }, + "free": [ + "brands" + ] + }, + "linode": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b8", + "label": "Linode", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633724, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z" + } + }, + "free": [ + "brands" + ] + }, + "linux": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "tux" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17c", + "label": "Linux", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722333, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" + } + }, + "free": [ + "brands" + ] + }, + "lira-sign": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "money", + "try", + "turkish" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f195", + "label": "Turkish Lira Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635578, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z" + } + }, + "free": [ + "solid" + ] + }, + "list": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03a", + "label": "List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635579, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M80 368H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm0-320H16A16 16 0 0 0 0 64v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16zm0 160H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm416 176H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "list-alt": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f022", + "label": "Alternate List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635578, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z" + }, + "regular": { + "last_modified": 1628088634896, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "list-ol": { + "changes": [ + "2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "numbers", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cb", + "label": "list-ol", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635579, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M61.77 401l17.5-20.15a19.92 19.92 0 0 0 5.07-14.19v-3.31C84.34 356 80.5 352 73 352H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h22.83a157.41 157.41 0 0 0-11 12.31l-5.61 7c-4 5.07-5.25 10.13-2.8 14.88l1.05 1.93c3 5.76 6.29 7.88 12.25 7.88h4.73c10.33 0 15.94 2.44 15.94 9.09 0 4.72-4.2 8.22-14.36 8.22a41.54 41.54 0 0 1-15.47-3.12c-6.49-3.88-11.74-3.5-15.6 3.12l-5.59 9.31c-3.72 6.13-3.19 11.72 2.63 15.94 7.71 4.69 20.38 9.44 37 9.44 34.16 0 48.5-22.75 48.5-44.12-.03-14.38-9.12-29.76-28.73-34.88zM496 224H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h64a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H64V40a8 8 0 0 0-8-8H32a8 8 0 0 0-7.14 4.42l-8 16A8 8 0 0 0 24 64h8v64H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8zm-3.91 160H80a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H41.32c3.29-10.29 48.34-18.68 48.34-56.44 0-29.06-25-39.56-44.47-39.56-21.36 0-33.8 10-40.46 18.75-4.37 5.59-3 10.84 2.8 15.37l8.58 6.88c5.61 4.56 11 2.47 16.12-2.44a13.44 13.44 0 0 1 9.46-3.84c3.33 0 9.28 1.56 9.28 8.75C51 248.19 0 257.31 0 304.59v4C0 316 5.08 320 12.09 320z" + } + }, + "free": [ + "solid" + ] + }, + "list-ul": { + "changes": [ + "2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ca", + "label": "list-ul", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635579, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M48 48a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm448 16H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "location-arrow": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "compass", + "coordinate", + "direction", + "gps", + "map", + "navigation", + "place" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f124", + "label": "location-arrow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635580, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M444.52 3.52L28.74 195.42c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 51.17 70.36 67.17 92.75 19.19l191.9-415.78c15.99-38.39-25.59-79.97-63.97-63.97z" + } + }, + "free": [ + "solid" + ] + }, + "lock": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "security" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f023", + "label": "lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635582, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" + } + }, + "free": [ + "solid" + ] + }, + "lock-open": { + "changes": [ + "3.1", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "security" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c1", + "label": "Lock Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635581, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z" + } + }, + "free": [ + "solid" + ] + }, + "long-arrow-alt-down": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f309", + "label": "Alternate Long Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635582, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z" + } + }, + "free": [ + "solid" + ] + }, + "long-arrow-alt-left": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30a", + "label": "Alternate Long Arrow Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635582, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z" + } + }, + "free": [ + "solid" + ] + }, + "long-arrow-alt-right": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30b", + "label": "Alternate Long Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635582, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z" + } + }, + "free": [ + "solid" + ] + }, + "long-arrow-alt-up": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30c", + "label": "Alternate Long Arrow Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635582, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z" + } + }, + "free": [ + "solid" + ] + }, + "low-vision": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "eye", + "sight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a8", + "label": "Low Vision", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635584, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z" + } + }, + "free": [ + "solid" + ] + }, + "luggage-cart": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "baggage", + "suitcase", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f59d", + "label": "Luggage Cart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635584, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z" + } + }, + "free": [ + "solid" + ] + }, + "lungs": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "breath", + "covid-19", + "organ", + "respiratory" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f604", + "label": "Lungs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635585, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M636.11 390.15C614.44 308.85 580.07 231 534.1 159.13 511.98 124.56 498.03 96 454.05 96 415.36 96 384 125.42 384 161.71v60.11l-32.88-21.92a15.996 15.996 0 0 1-7.12-13.31V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v170.59c0 5.35-2.67 10.34-7.12 13.31L256 221.82v-60.11C256 125.42 224.64 96 185.95 96c-43.98 0-57.93 28.56-80.05 63.13C59.93 231 25.56 308.85 3.89 390.15 1.3 399.84 0 409.79 0 419.78c0 61.23 62.48 105.44 125.24 88.62l59.5-15.95c42.18-11.3 71.26-47.47 71.26-88.62v-87.49l-85.84 57.23a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09L320 235.23l167.59 111.72a7.994 7.994 0 0 1 2.22 11.09l-8.88 13.31a7.994 7.994 0 0 1-11.09 2.22L384 316.34v87.49c0 41.15 29.08 77.31 71.26 88.62l59.5 15.95C577.52 525.22 640 481.01 640 419.78c0-9.99-1.3-19.94-3.89-29.63z" + } + }, + "free": [ + "solid" + ] + }, + "lungs-virus": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "covid-19", + "respiratory", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e067", + "label": "Lungs Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635585, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M344,150.68V16A16,16,0,0,0,328,0H312a16,16,0,0,0-16,16V150.68a46.45,46.45,0,0,1,48,0ZM195.54,444.46a48.06,48.06,0,0,1,0-67.88l8.58-8.58H192a48,48,0,0,1,0-96h12.12l-8.58-8.57a48,48,0,0,1,60.46-74V161.75C256,125.38,224.62,96,186,96c-44,0-58,28.5-80.12,63.13a819.52,819.52,0,0,0-102,231A113.16,113.16,0,0,0,0,419.75C0,481,62.5,525.26,125.25,508.38l59.5-15.87a98.51,98.51,0,0,0,52.5-34.75,46.49,46.49,0,0,1-41.71-13.3Zm226.29-22.63a16,16,0,0,0,0-22.62l-8.58-8.58C393.09,370.47,407.37,336,435.88,336H448a16,16,0,0,0,0-32H435.88c-28.51,0-42.79-34.47-22.63-54.62l8.58-8.58a16,16,0,0,0-22.63-22.63l-8.57,8.58C370.47,246.91,336,232.63,336,204.12V192a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.58c20.16,20.15,5.88,54.62-22.63,54.62H192a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.58a16,16,0,1,0,22.63,22.62l8.57-8.57C269.53,393.1,304,407.38,304,435.88V448a16,16,0,0,0,32,0V435.88c0-28.5,34.47-42.78,54.63-22.62l8.57,8.57a16,16,0,0,0,22.63,0ZM288,304a16,16,0,1,1,16-16A16,16,0,0,1,288,304Zm64,64a16,16,0,1,1,16-16A16,16,0,0,1,352,368Zm284.12,22.13a819.52,819.52,0,0,0-102-231C512,124.5,498,96,454,96c-38.62,0-70,29.38-70,65.75v27.72a48,48,0,0,1,60.46,74L435.88,272H448a48,48,0,0,1,0,96H435.88l8.58,8.58a47.7,47.7,0,0,1-41.71,81.18,98.51,98.51,0,0,0,52.5,34.75l59.5,15.87C577.5,525.26,640,481,640,419.75A113.16,113.16,0,0,0,636.12,390.13Z" + } + }, + "free": [ + "solid" + ] + }, + "lyft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c3", + "label": "lyft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861004, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" + } + }, + "free": [ + "brands" + ] + }, + "magento": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c4", + "label": "Magento", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861004, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" + } + }, + "free": [ + "brands" + ] + }, + "magic": { + "changes": [ + "2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "mage", + "magic", + "spell", + "wand", + "witch", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d0", + "label": "magic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635586, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z" + } + }, + "free": [ + "solid" + ] + }, + "magnet": { + "changes": [ + "1", + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Attract", + "lodestone", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f076", + "label": "magnet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635586, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M164.07 148.1H12a12 12 0 0 1-12-12v-80a36 36 0 0 1 36-36h104a36 36 0 0 1 36 36v80a11.89 11.89 0 0 1-11.93 12zm347.93-12V56a36 36 0 0 0-36-36H372a36 36 0 0 0-36 36v80a12 12 0 0 0 12 12h152a11.89 11.89 0 0 0 12-11.9zm-164 44a12 12 0 0 0-12 12v52c0 128.1-160 127.9-160 0v-52a12 12 0 0 0-12-12H12.1a12 12 0 0 0-12 12.1c.1 21.4.6 40.3 0 53.3 0 150.6 136.17 246.6 256.75 246.6s255-96 255-246.7c-.6-12.8-.2-33 0-53.2a12 12 0 0 0-12-12.1z" + } + }, + "free": [ + "solid" + ] + }, + "mail-bulk": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "envelope", + "letter", + "post office", + "postal", + "postcard", + "send", + "stamp", + "usps" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f674", + "label": "Mail Bulk", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635586, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z" + } + }, + "free": [ + "solid" + ] + }, + "mailchimp": { + "changes": [ + "5.1.0", + "5.7.0", + "5.8.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f59e", + "label": "Mailchimp", + "voted": true, + "svg": { + "brands": { + "last_modified": 1563977084863, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M330.61 243.52a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.49 72.49 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.85 102.85 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.86 106.86 0 0 1 362.55 421a132.45 132.45 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.86 41.86 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z" + } + }, + "free": [ + "brands" + ] + }, + "male": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "man", + "person", + "profile", + "user" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f183", + "label": "Male", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635587, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "mandalorian": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50f", + "label": "Mandalorian", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775903, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M232.27 511.89c-1-3.26-1.69-15.83-1.39-24.58.55-15.89 1-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92.38 92.38 0 0 0-.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.54 109.54 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34.21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1-1.55 4.26c-1 1-1.14.91-2.05-.53a14.87 14.87 0 0 1-1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.24 14.24 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36.66.51 1.35.34 1.52s.41 2.09 1.29 4.27a38.14 38.14 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95.7-3 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32.22 32.22 0 0 0-2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79.1 18.55a101.2 101.2 0 0 0-1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.67 18.67 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.38 9.38 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a132.88 132.88 0 0 0-2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.15 43.15 0 0 1 165.24 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a22.7 22.7 0 0 0-2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.66 6.66 0 0 0-1.34 2.32c0 .58-2.61 4.91-5.42 9a30.39 30.39 0 0 0-2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.57 29.57 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.54 29.54 0 0 0 5.82 1.36 18.18 18.18 0 0 1 6 1.91 22.67 22.67 0 0 0 5 2.17c2.51.68 3 .57 7.05-1.67l4.35-2.4L268.32 5c10.44-.4 10.81-.47 15.26-2.68L288.16 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a35.76 35.76 0 0 0 2.1 5.91 13.55 13.55 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.77 14.77 0 0 1-1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.33 18.33 0 0 1-4.09 3.71 13.62 13.62 0 0 0-4.38 4.78 5.89 5.89 0 0 1-2.49 2.91 6.88 6.88 0 0 0-2.45 1.71 67.62 67.62 0 0 1-7 5.38c-3.33 2.34-6.87 5-7.87 6A7.27 7.27 0 0 1 224 100a5.76 5.76 0 0 0-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.45 36.45 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56.71 8.84a33.45 33.45 0 0 0-1.06 8.91c0 4.88.22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.09 40.09 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.37 18.37 0 0 1 2.86-7.73 20.39 20.39 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.62 14.62 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.28 9.28 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69.52 12.69-11 22.84l-4 3.49.07 5.19a40.81 40.81 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15a61.31 61.31 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36.47 2.26.78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43.17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1-1.73-10.79 100.5 100.5 0 0 0-1.73-10.79 37.53 37.53 0 0 1-1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62.62 0 0 1-1-.14zm-87.18-266.59c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.28 86.25 255 78.55 268c-31 52-6 101.59 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.3 70.64-78.7 91.18-105.29 61.71z" + } + }, + "free": [ + "brands" + ] + }, + "map": { + "changes": [ + "4.4", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f279", + "label": "Map", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635591, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z" + }, + "regular": { + "last_modified": 1628088634905, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "map-marked": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f59f", + "label": "Map Marked", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635588, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" + } + }, + "free": [ + "solid" + ] + }, + "map-marked-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a0", + "label": "Alternate Map Marked", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635587, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" + } + }, + "free": [ + "solid" + ] + }, + "map-marker": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f041", + "label": "map-marker", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635590, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z" + } + }, + "free": [ + "solid" + ] + }, + "map-marker-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c5", + "label": "Alternate Map Marker", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635588, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" + } + }, + "free": [ + "solid" + ] + }, + "map-pin": { + "changes": [ + "4.4", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "agree", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "marker", + "navigation", + "pin", + "place", + "position", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f276", + "label": "Map Pin", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635590, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M112 316.94v156.69l22.02 33.02c4.75 7.12 15.22 7.12 19.97 0L176 473.63V316.94c-10.39 1.92-21.06 3.06-32 3.06s-21.61-1.14-32-3.06zM144 0C64.47 0 0 64.47 0 144s64.47 144 144 144 144-64.47 144-144S223.53 0 144 0zm0 76c-37.5 0-68 30.5-68 68 0 6.62-5.38 12-12 12s-12-5.38-12-12c0-50.73 41.28-92 92-92 6.62 0 12 5.38 12 12s-5.38 12-12 12z" + } + }, + "free": [ + "solid" + ] + }, + "map-signs": { + "changes": [ + "4.4", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "directory", + "map", + "signage", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f277", + "label": "Map Signs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635591, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M507.31 84.69L464 41.37c-6-6-14.14-9.37-22.63-9.37H288V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v16H56c-13.25 0-24 10.75-24 24v80c0 13.25 10.75 24 24 24h385.37c8.49 0 16.62-3.37 22.63-9.37l43.31-43.31c6.25-6.26 6.25-16.38 0-22.63zM224 496c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V384h-64v112zm232-272H288v-32h-64v32H70.63c-8.49 0-16.62 3.37-22.63 9.37L4.69 276.69c-6.25 6.25-6.25 16.38 0 22.63L48 342.63c6 6 14.14 9.37 22.63 9.37H456c13.25 0 24-10.75 24-24v-80c0-13.25-10.75-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "markdown": { + "changes": [ + "5.2.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f60f", + "label": "Markdown", + "voted": true, + "svg": { + "brands": { + "last_modified": 1548364699930, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z" + } + }, + "free": [ + "brands" + ] + }, + "marker": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "sharpie", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a1", + "label": "Marker", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635591, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z" + } + }, + "free": [ + "solid" + ] + }, + "mars": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "male" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f222", + "label": "Mars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635593, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "mars-double": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f227", + "label": "Mars Double", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635592, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z" + } + }, + "free": [ + "solid" + ] + }, + "mars-stroke": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f229", + "label": "Mars Stroke", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635592, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "mars-stroke-h": { + "changes": [ + "4.3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22b", + "label": "Mars Stroke Horizontal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635592, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" + } + }, + "free": [ + "solid" + ] + }, + "mars-stroke-v": { + "changes": [ + "4.3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22a", + "label": "Mars Stroke Vertical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635592, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" + } + }, + "free": [ + "solid" + ] + }, + "mask": { + "changes": [ + "5.4.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "carnivale", + "costume", + "disguise", + "halloween", + "secret", + "super hero" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6fa", + "label": "Mask", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635593, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z" + } + }, + "free": [ + "solid" + ] + }, + "mastodon": { + "changes": [ + "5.0.11", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f6", + "label": "Mastodon", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775904, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z" + } + }, + "free": [ + "brands" + ] + }, + "maxcdn": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f136", + "label": "MaxCDN", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861005, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" + } + }, + "free": [ + "brands" + ] + }, + "mdb": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8ca", + "label": "Material Design for Bootstrap", + "svg": { + "brands": { + "last_modified": 1568817883852, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M17.37 160.41L7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.59H146.7L106 277.74 63.67 160.41zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.46V204.78s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.29-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.58H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.46l.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z" + } + }, + "free": [ + "brands" + ] + }, + "medal": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "ribbon", + "star", + "trophy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a2", + "label": "Medal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635594, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z" + } + }, + "free": [ + "solid" + ] + }, + "medapps": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c6", + "label": "MedApps", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861005, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" + } + }, + "free": [ + "brands" + ] + }, + "medium": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23a", + "label": "Medium", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633724, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z" + } + }, + "free": [ + "brands" + ] + }, + "medium-m": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c7", + "label": "Medium M", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633724, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z" + } + }, + "free": [ + "brands" + ] + }, + "medkit": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "first aid", + "firstaid", + "health", + "help", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fa", + "label": "medkit", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635594, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "medrt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c8", + "label": "MRT", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861006, + "raw": "", + "viewBox": [ + "0", + "0", + "544", + "512" + ], + "width": 544, + "height": 512, + "path": "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" + } + }, + "free": [ + "brands" + ] + }, + "meetup": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2e0", + "label": "Meetup", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861006, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" + } + }, + "free": [ + "brands" + ] + }, + "megaport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5a3", + "label": "Megaport", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722334, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z" + } + }, + "free": [ + "brands" + ] + }, + "meh": { + "changes": [ + "3.1", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "neutral", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f11a", + "label": "Neutral Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635594, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1628088634908, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "meh-blank": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "neutral", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5a4", + "label": "Face Without Mouth", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635594, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1628088634908, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "meh-rolling-eyes": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "neutral", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5a5", + "label": "Face With Rolling Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635594, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z" + }, + "regular": { + "last_modified": 1628088634908, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "memory": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "DIMM", + "RAM", + "hardware", + "storage", + "technology" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f538", + "label": "Memory", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635595, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z" + } + }, + "free": [ + "solid" + ] + }, + "mendeley": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7b3", + "label": "Mendeley", + "voted": true, + "svg": { + "brands": { + "last_modified": 1548363722334, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4.7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1.1-.2.2-.3.4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3zm-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8z" + } + }, + "free": [ + "brands" + ] + }, + "menorah": { + "changes": [ + "5.3.0", + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candle", + "hanukkah", + "jewish", + "judaism", + "light" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f676", + "label": "Menorah", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635595, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M144 128h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm192 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm80-32c17.67 0 32-14.33 32-32S608 0 608 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S512 0 512 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S416 0 416 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S320 0 320 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S224 0 224 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S128 0 128 0 96 46.33 96 64s14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S32 0 32 0 0 46.33 0 64s14.33 32 32 32zm544 192c0 17.67-14.33 32-32 32H352V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v176H96c-17.67 0-32-14.33-32-32V144c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v144c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144z" + } + }, + "free": [ + "solid" + ] + }, + "mercury": { + "changes": [ + "4.3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "transgender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f223", + "label": "Mercury", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635595, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" + } + }, + "free": [ + "solid" + ] + }, + "meteor": { + "changes": [ + "5.5.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armageddon", + "asteroid", + "comet", + "shooting star", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f753", + "label": "Meteor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635596, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.328,20.8027c-11.60759,38.70264-34.30724,111.70173-61.30311,187.70077,6.99893,2.09372,13.4042,4,18.60653,5.59368a16.06158,16.06158,0,0,1,9.49854,22.906c-22.106,42.29635-82.69047,152.795-142.47819,214.40356-.99984,1.09373-1.99969,2.5-2.99954,3.49995A194.83046,194.83046,0,1,1,57.085,179.41009c.99985-1,2.40588-2,3.49947-3,61.59994-59.90549,171.97367-120.40473,214.37343-142.4982a16.058,16.058,0,0,1,22.90274,9.49988c1.59351,5.09368,3.49947,11.5936,5.5929,18.59351C379.34818,35.00565,452.43074,12.30281,491.12794.70921A16.18325,16.18325,0,0,1,511.328,20.8027ZM319.951,320.00207A127.98041,127.98041,0,1,0,191.97061,448.00046,127.97573,127.97573,0,0,0,319.951,320.00207Zm-127.98041-31.9996a31.9951,31.9951,0,1,1-31.9951-31.9996A31.959,31.959,0,0,1,191.97061,288.00247Zm31.9951,79.999a15.99755,15.99755,0,1,1-15.99755-15.9998A16.04975,16.04975,0,0,1,223.96571,368.00147Z" + } + }, + "free": [ + "solid" + ] + }, + "microblog": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e01a", + "label": "Micro.blog", + "voted": true, + "svg": { + "brands": { + "last_modified": 1573074807768, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M399.36,362.23c29.49-34.69,47.1-78.34,47.1-125.79C446.46,123.49,346.86,32,224,32S1.54,123.49,1.54,236.44,101.14,440.87,224,440.87a239.28,239.28,0,0,0,79.44-13.44,7.18,7.18,0,0,1,8.12,2.56c18.58,25.09,47.61,42.74,79.89,49.92a4.42,4.42,0,0,0,5.22-3.43,4.37,4.37,0,0,0-.85-3.62,87,87,0,0,1,3.69-110.69ZM329.52,212.4l-57.3,43.49L293,324.75a6.5,6.5,0,0,1-9.94,7.22L224,290.92,164.94,332a6.51,6.51,0,0,1-9.95-7.22l20.79-68.86-57.3-43.49a6.5,6.5,0,0,1,3.8-11.68l71.88-1.51,23.66-67.92a6.5,6.5,0,0,1,12.28,0l23.66,67.92,71.88,1.51a6.5,6.5,0,0,1,3.88,11.68Z" + } + }, + "free": [ + "brands" + ] + }, + "microchip": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hardware", + "processor", + "technology" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2db", + "label": "Microchip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635596, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z" + } + }, + "free": [ + "solid" + ] + }, + "microphone": { + "changes": [ + "3.1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f130", + "label": "microphone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635598, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "microphone-alt": { + "changes": [ + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c9", + "label": "Alternate Microphone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635597, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z" + } + }, + "free": [ + "solid" + ] + }, + "microphone-alt-slash": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f539", + "label": "Alternate Microphone Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635597, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "microphone-slash": { + "changes": [ + "3.1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f131", + "label": "Microphone Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635597, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "microscope": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "electron", + "lens", + "optics", + "science", + "shrink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f610", + "label": "Microscope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635598, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M160 320h12v16c0 8.84 7.16 16 16 16h40c8.84 0 16-7.16 16-16v-16h12c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32V16c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v16c-17.67 0-32 14.33-32 32v224c0 17.67 14.33 32 32 32zm304 128h-1.29C493.24 413.99 512 369.2 512 320c0-105.88-86.12-192-192-192v64c70.58 0 128 57.42 128 128s-57.42 128-128 128H48c-26.51 0-48 21.49-48 48 0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48zm-360-32h208c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8H104c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8z" + } + }, + "free": [ + "solid" + ] + }, + "microsoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ca", + "label": "Microsoft", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861006, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" + } + }, + "free": [ + "brands" + ] + }, + "minus": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "minify", + "negative", + "remove", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f068", + "label": "minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635600, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "minus-circle": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "hide", + "negative", + "remove", + "shape", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f056", + "label": "Minus Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635599, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z" + } + }, + "free": [ + "solid" + ] + }, + "minus-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "minify", + "negative", + "remove", + "shape", + "trash" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f146", + "label": "Minus Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635600, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z" + }, + "regular": { + "last_modified": 1628088634912, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "mitten": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "cold", + "glove", + "hands", + "knitted", + "seasonal", + "warmth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7b5", + "label": "Mitten", + "svg": { + "solid": { + "last_modified": 1628088635601, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M368 416H48c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm57-209.1c-27.2-22.6-67.5-19-90.1 8.2l-20.9 25-29.6-128.4c-18-77.5-95.4-125.9-172.8-108C34.2 21.6-14.2 98.9 3.7 176.4L51.6 384h309l72.5-87c22.7-27.2 19-67.5-8.1-90.1z" + } + }, + "free": [ + "solid" + ] + }, + "mix": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3cb", + "label": "Mix", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861007, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" + } + }, + "free": [ + "brands" + ] + }, + "mixcloud": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f289", + "label": "Mixcloud", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861007, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z" + } + }, + "free": [ + "brands" + ] + }, + "mixer": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e056", + "label": "Mixer", + "voted": true, + "svg": { + "brands": { + "last_modified": 1581349336590, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M114.57,76.07a45.71,45.71,0,0,0-67.51-6.41c-17.58,16.18-19,43.52-4.75,62.77l91.78,123L41.76,379.58c-14.23,19.25-13.11,46.59,4.74,62.77A45.71,45.71,0,0,0,114,435.94L242.89,262.7a12.14,12.14,0,0,0,0-14.23ZM470.24,379.58,377.91,255.45l91.78-123c14.22-19.25,12.83-46.59-4.75-62.77a45.71,45.71,0,0,0-67.51,6.41l-128,172.12a12.14,12.14,0,0,0,0,14.23L398,435.94a45.71,45.71,0,0,0,67.51,6.41C483.35,426.17,484.47,398.83,470.24,379.58Z" + } + }, + "free": [ + "brands" + ] + }, + "mizuni": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3cc", + "label": "Mizuni", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861007, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" + } + }, + "free": [ + "brands" + ] + }, + "mobile": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "cellphone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10b", + "label": "Mobile Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635602, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "mobile-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "cellphone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3cd", + "label": "Alternate Mobile", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635601, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z" + } + }, + "free": [ + "solid" + ] + }, + "modx": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f285", + "label": "MODX", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861007, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" + } + }, + "free": [ + "brands" + ] + }, + "monero": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d0", + "label": "Monero", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861007, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" + } + }, + "free": [ + "brands" + ] + }, + "money-bill": { + "changes": [ + "2", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d6", + "label": "Money Bill", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635603, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-alt": { + "changes": [ + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f3d1", + "label": "Alternate Money Bill", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635602, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" + }, + "regular": { + "last_modified": 1628088634914, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "money-bill-wave": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53a", + "label": "Wavy Money Bill", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635603, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-wave-alt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53b", + "label": "Alternate Wavy Money Bill", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635602, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z" + } + }, + "free": [ + "solid" + ] + }, + "money-check": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53c", + "label": "Money Check", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635604, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "money-check-alt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53d", + "label": "Alternate Money Check", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635603, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z" + } + }, + "free": [ + "solid" + ] + }, + "monument": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "landmark", + "memorable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a6", + "label": "Monument", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635605, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" + } + }, + "free": [ + "solid" + ] + }, + "moon": { + "changes": [ + "3.2", + "5.0.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "contrast", + "crescent", + "dark", + "lunar", + "night" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f186", + "label": "Moon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635606, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" + }, + "regular": { + "last_modified": 1628088634918, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "mortar-pestle": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crush", + "culinary", + "grind", + "medical", + "mix", + "pharmacy", + "prescription", + "spices" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a7", + "label": "Mortar Pestle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635606, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "mosque": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "islam", + "landmark", + "muslim" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f678", + "label": "Mosque", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635607, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V160H0v320zm579.16-192c17.86-17.39 28.84-37.34 28.84-58.91 0-52.86-41.79-93.79-87.92-122.9-41.94-26.47-80.63-57.77-111.96-96.22L400 0l-8.12 9.97c-31.33 38.45-70.01 69.76-111.96 96.22C233.79 135.3 192 176.23 192 229.09c0 21.57 10.98 41.52 28.84 58.91h358.32zM608 320H192c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h32v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h64v-72c0-48 48-72 48-72s48 24 48 72v72h64v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h32c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM64 0S0 32 0 96v32h128V96c0-64-64-96-64-96z" + } + }, + "free": [ + "solid" + ] + }, + "motorcycle": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "machine", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21c", + "label": "Motorcycle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635607, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512.9 192c-14.9-.1-29.1 2.3-42.4 6.9L437.6 144H520c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24h-45.3c-6.8 0-13.3 2.9-17.8 7.9l-37.5 41.7-22.8-38C392.2 68.4 384.4 64 376 64h-80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h66.4l19.2 32H227.9c-17.7-23.1-44.9-40-99.9-40H72.5C59 104 47.7 115 48 128.5c.2 13 10.9 23.5 24 23.5h56c24.5 0 38.7 10.9 47.8 24.8l-11.3 20.5c-13-3.9-26.9-5.7-41.3-5.2C55.9 194.5 1.6 249.6 0 317c-1.6 72.1 56.3 131 128 131 59.6 0 109.7-40.8 124-96h84.2c13.7 0 24.6-11.4 24-25.1-2.1-47.1 17.5-93.7 56.2-125l12.5 20.8c-27.6 23.7-45.1 58.9-44.8 98.2.5 69.6 57.2 126.5 126.8 127.1 71.6.7 129.8-57.5 129.2-129.1-.7-69.6-57.6-126.4-127.2-126.9zM128 400c-44.1 0-80-35.9-80-80s35.9-80 80-80c4.2 0 8.4.3 12.5 1L99 316.4c-8.8 16 2.8 35.6 21 35.6h81.3c-12.4 28.2-40.6 48-73.3 48zm463.9-75.6c-2.2 40.6-35 73.4-75.5 75.5-46.1 2.5-84.4-34.3-84.4-79.9 0-21.4 8.4-40.8 22.1-55.1l49.4 82.4c4.5 7.6 14.4 10 22 5.5l13.7-8.2c7.6-4.5 10-14.4 5.5-22l-48.6-80.9c5.2-1.1 10.5-1.6 15.9-1.6 45.6-.1 82.3 38.2 79.9 84.3z" + } + }, + "free": [ + "solid" + ] + }, + "mountain": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "glacier", + "hiking", + "hill", + "landscape", + "travel", + "view" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6fc", + "label": "Mountain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635607, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M634.92 462.7l-288-448C341.03 5.54 330.89 0 320 0s-21.03 5.54-26.92 14.7l-288 448a32.001 32.001 0 0 0-1.17 32.64A32.004 32.004 0 0 0 32 512h576c11.71 0 22.48-6.39 28.09-16.67a31.983 31.983 0 0 0-1.17-32.63zM320 91.18L405.39 224H320l-64 64-38.06-38.06L320 91.18z" + } + }, + "free": [ + "solid" + ] + }, + "mouse": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "click", + "computer", + "cursor", + "input", + "peripheral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8cc", + "label": "Mouse", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635608, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 352a160 160 0 0 0 160 160h64a160 160 0 0 0 160-160V224H0zM176 0h-16A160 160 0 0 0 0 160v32h176zm48 0h-16v192h176v-32A160 160 0 0 0 224 0z" + } + }, + "free": [ + "solid" + ] + }, + "mouse-pointer": { + "changes": [ + "4.4", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f245", + "label": "Mouse Pointer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635608, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z" + } + }, + "free": [ + "solid" + ] + }, + "mug-hot": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caliente", + "cocoa", + "coffee", + "cup", + "drink", + "holiday", + "hot chocolate", + "steam", + "tea", + "warmth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7b6", + "label": "Mug Hot", + "svg": { + "solid": { + "last_modified": 1628088635609, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M127.1 146.5c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C111.8 5.9 105 0 96.8 0H80.4C70.6 0 63 8.5 64.1 18c3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zm112 0c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C223.8 5.9 217 0 208.8 0h-16.4c-9.8 0-17.5 8.5-16.3 18 3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zM400 192H32c-17.7 0-32 14.3-32 32v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.8 0 112-50.2 112-112s-50.2-112-112-112zm0 160h-16v-96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "music": { + "changes": [ + "1", + "5.0.0", + "5.2.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lyrics", + "melody", + "note", + "sing", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f001", + "label": "Music", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635611, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M470.38 1.51L150.41 96A32 32 0 0 0 128 126.51v261.41A139 139 0 0 0 96 384c-53 0-96 28.66-96 64s43 64 96 64 96-28.66 96-64V214.32l256-75v184.61a138.4 138.4 0 0 0-32-3.93c-53 0-96 28.66-96 64s43 64 96 64 96-28.65 96-64V32a32 32 0 0 0-41.62-30.49z" + } + }, + "free": [ + "solid" + ] + }, + "napster": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d2", + "label": "Napster", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861007, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" + } + }, + "free": [ + "brands" + ] + }, + "neos": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f612", + "label": "Neos", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775904, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M415.44 512h-95.11L212.12 357.46v91.1L125.69 512H28V29.82L68.47 0h108.05l123.74 176.13V63.45L386.69 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.64h84.79l52.35-38.17h-78.27L69 13zm82.54 466.61l80-58.78v-101l-79.76-114.4v220.94L49 501.89h72.34zM80.63 10.77l310.6 442.57h82.37V10.77h-79.75v317.56L170.91 10.77zM311 191.65l72 102.81V15.93l-72 53v122.72z" + } + }, + "free": [ + "brands" + ] + }, + "network-wired": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "connect", + "ethernet", + "internet", + "intranet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ff", + "label": "Wired Network", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635611, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 264v-16c0-8.84-7.16-16-16-16H344v-40h72c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H224c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h72v40H16c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h104v40H64c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h304v40h-56c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h104c8.84 0 16-7.16 16-16zM256 128V64h128v64H256zm-64 320H96v-64h96v64zm352 0h-96v-64h96v64z" + } + }, + "free": [ + "solid" + ] + }, + "neuter": { + "changes": [ + "4.3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22c", + "label": "Neuter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635612, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "newspaper": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "article", + "editorial", + "headline", + "journal", + "journalism", + "news", + "press" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1ea", + "label": "Newspaper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635612, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" + }, + "regular": { + "last_modified": 1628088634926, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "nimblr": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5a8", + "label": "Nimblr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775905, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M246.6 299.29c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27zM113 326.25c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.76 159C157 159 89.45 178.77 59.25 227L14 0v335.48C14 433.13 93.61 512 191.76 512s177.76-78.95 177.76-176.52S290.13 159 191.76 159zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59s59.24-131.59 132.51-131.59 132.51 58.86 132.51 131.54S265 467.07 191.76 467.07z" + } + }, + "free": [ + "brands" + ] + }, + "node": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f419", + "label": "Node.js", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861008, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" + } + }, + "free": [ + "brands" + ] + }, + "node-js": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d3", + "label": "Node.js JS", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861008, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" + } + }, + "free": [ + "brands" + ] + }, + "not-equal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53e", + "label": "Not Equal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635612, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z" + } + }, + "free": [ + "solid" + ] + }, + "notes-medical": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "doctor", + "ehr", + "health", + "history", + "records" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f481", + "label": "Medical Notes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635613, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z" + } + }, + "free": [ + "solid" + ] + }, + "npm": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d4", + "label": "npm", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861008, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" + } + }, + "free": [ + "brands" + ] + }, + "ns8": { + "changes": [ + "5.0.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d5", + "label": "NS8", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785924, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M104.324,269.172h26.067V242.994H104.324Zm52.466-26.178-.055-26.178v-.941a39.325,39.325,0,0,0-78.644.941v.166h26.4v-.166a12.98,12.98,0,0,1,25.956,0v26.178Zm52.356,25.846a91.1,91.1,0,0,1-91.1,91.1h-.609a91.1,91.1,0,0,1-91.1-91.1H0v.166A117.33,117.33,0,0,0,117.44,386.28h.775A117.331,117.331,0,0,0,235.49,268.84V242.828H209.146Zm-157.233,0a65.362,65.362,0,0,0,130.723,0H156.292a39.023,39.023,0,0,1-78.035,0V242.883H51.968v-26.62A65.42,65.42,0,0,1,182.8,217.48v25.293h26.344V217.48a91.761,91.761,0,0,0-183.522,0v25.4H51.913Zm418.4-71.173c13.67,0,24.573,6.642,30.052,18.264l.719,1.549,23.245-11.511-.609-1.439c-8.025-19.26-28.5-31.27-53.407-31.27-23.134,0-43.611,11.4-50.972,28.447-.123,26.876-.158,23.9,0,24.85,4.7,11.013,14.555,19.37,28.668,24.241a102.033,102.033,0,0,0,19.813,3.984c5.479.72,10.626,1.384,15.829,3.1,6.364,2.1,10.46,5.257,12.84,9.851v9.851c-3.708,7.527-13.781,12.342-25.791,12.342-14.334,0-25.956-6.918-31.933-19.039l-.72-1.494L415.026,280.9l.553,1.439c7.915,19.426,29.609,32.044,55.289,32.044,23.632,0,44.608-11.4,52.3-28.447l.166-25.9-.166-.664c-4.87-11.014-15.219-19.647-28.944-24.241-7.693-2.712-14.335-3.6-20.7-4.427a83.777,83.777,0,0,1-14.832-2.878c-6.31-1.937-10.4-5.092-12.619-9.63v-8.412C449.45,202.427,458.969,197.667,470.315,197.667ZM287.568,311.344h26.067v-68.4H287.568Zm352.266-53.3c-2.933-6.254-8.3-12.01-15.441-16.714A37.99,37.99,0,0,0,637.4,226l.166-25.347-.166-.664C630.038,184,610.667,173.26,589.25,173.26S548.461,184,541.1,199.992l-.166,25.347.166.664a39.643,39.643,0,0,0,13.006,15.331c-7.2,4.7-12.508,10.46-15.441,16.714l-.166,28.889.166.72c7.582,15.994,27.893,26.731,50.585,26.731s43.057-10.737,50.584-26.731l.166-28.89Zm-73.22-50.806c3.6-6.31,12.563-10.516,22.58-10.516s19.038,4.206,22.636,10.516v13.725c-3.542,6.2-12.563,10.349-22.636,10.349s-19.094-4.15-22.58-10.349Zm47.319,72.169c-3.764,6.641-13.338,10.9-24.683,10.9-11.125,0-20.976-4.372-24.684-10.9V263.25c3.708-6.309,13.5-10.515,24.684-10.515,11.345,0,20.919,4.15,24.683,10.515ZM376.4,265.962l-59.827-89.713h-29v40.623h26.51v.387l62.539,94.085H402.3V176.249H376.4Z" + } + }, + "free": [ + "brands" + ] + }, + "nutritionix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d6", + "label": "Nutritionix", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861009, + "raw": "", + "viewBox": [ + "0", + "0", + "400", + "512" + ], + "width": 400, + "height": 512, + "path": "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" + } + }, + "free": [ + "brands" + ] + }, + "object-group": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "combine", + "copy", + "design", + "merge", + "select" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f247", + "label": "Object Group", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635613, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z" + }, + "regular": { + "last_modified": 1628088634927, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "object-ungroup": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "design", + "merge", + "select", + "separate" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f248", + "label": "Object Ungroup", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635613, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z" + }, + "regular": { + "last_modified": 1628088634927, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "octopus-deploy": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e082", + "label": "Octopus Deploy", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785924, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z" + } + }, + "free": [ + "brands" + ] + }, + "odnoklassniki": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f263", + "label": "Odnoklassniki", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861009, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" + } + }, + "free": [ + "brands" + ] + }, + "odnoklassniki-square": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f264", + "label": "Odnoklassniki Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861009, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" + } + }, + "free": [ + "brands" + ] + }, + "oil-can": { + "changes": [ + "5.2.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "crude", + "gasoline", + "grease", + "lubricate", + "petroleum" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f613", + "label": "Oil Can", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635614, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M629.8 160.31L416 224l-50.49-25.24a64.07 64.07 0 0 0-28.62-6.76H280v-48h56c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h56v48h-56L37.72 166.86a31.9 31.9 0 0 0-5.79-.53C14.67 166.33 0 180.36 0 198.34v94.95c0 15.46 11.06 28.72 26.28 31.48L96 337.46V384c0 17.67 14.33 32 32 32h274.63c8.55 0 16.75-3.42 22.76-9.51l212.26-214.75c1.5-1.5 2.34-3.54 2.34-5.66V168c.01-5.31-5.08-9.15-10.19-7.69zM96 288.67l-48-8.73v-62.43l48 8.73v62.43zm453.33 84.66c0 23.56 19.1 42.67 42.67 42.67s42.67-19.1 42.67-42.67S592 288 592 288s-42.67 61.77-42.67 85.33z" + } + }, + "free": [ + "solid" + ] + }, + "old-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f510", + "label": "Old Republic", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861009, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" + } + }, + "free": [ + "brands" + ] + }, + "om": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "hinduism", + "jainism", + "mantra" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f679", + "label": "Om", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635615, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M360.6 60.94a10.43 10.43 0 0 0 14.76 0l21.57-21.56a10.43 10.43 0 0 0 0-14.76L375.35 3.06c-4.08-4.07-10.68-4.07-14.76 0l-21.57 21.56a10.43 10.43 0 0 0 0 14.76l21.58 21.56zM412.11 192c-26.69 0-51.77 10.39-70.64 29.25l-24.25 24.25c-6.78 6.77-15.78 10.5-25.38 10.5H245c10.54-22.1 14.17-48.11 7.73-75.23-10.1-42.55-46.36-76.11-89.52-83.19-36.15-5.93-70.9 5.04-96.01 28.78-7.36 6.96-6.97 18.85 1.12 24.93l26.15 19.63c5.72 4.3 13.66 4.32 19.2-.21 8.45-6.9 19.02-10.71 30.27-10.71 26.47 0 48.01 21.53 48.01 48s-21.54 48-48.01 48h-31.9c-11.96 0-19.74 12.58-14.39 23.28l16.09 32.17c2.53 5.06 7.6 8.1 13.17 8.55h33.03c35.3 0 64.01 28.7 64.01 64s-28.71 64-64.01 64c-96.02 0-122.35-54.02-145.15-92.03-4.53-7.55-14.77-3.58-14.79 5.22C-.09 416 41.13 512 159.94 512c70.59 0 128.02-57.42 128.02-128 0-23.42-6.78-45.1-17.81-64h21.69c26.69 0 51.77-10.39 70.64-29.25l24.25-24.25c6.78-6.77 15.78-10.5 25.38-10.5 19.78 0 35.88 16.09 35.88 35.88V392c0 13.23-18.77 24-32.01 24-39.4 0-66.67-24.24-81.82-42.89-4.77-5.87-14.2-2.54-14.2 5.02V416s0 64 96.02 64c48.54 0 96.02-39.47 96.02-88V291.88c0-55.08-44.8-99.88-99.89-99.88zm42.18-124.73c-85.55 65.12-169.05 2.75-172.58.05-6.02-4.62-14.44-4.38-20.14.55-5.74 4.92-7.27 13.17-3.66 19.8 1.61 2.95 40.37 72.34 118.8 72.34 79.92 0 98.78-31.36 101.75-37.66 1.02-2.12 1.53-4.47 1.53-6.83V80c0-13.22-15.14-20.69-25.7-12.73z" + } + }, + "free": [ + "solid" + ] + }, + "opencart": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23d", + "label": "OpenCart", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861009, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" + } + }, + "free": [ + "brands" + ] + }, + "openid": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19b", + "label": "OpenID", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861010, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" + } + }, + "free": [ + "brands" + ] + }, + "opera": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26a", + "label": "Opera", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861010, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" + } + }, + "free": [ + "brands" + ] + }, + "optin-monster": { + "changes": [ + "4.4", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23c", + "label": "Optin Monster", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699930, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7.3-6.5.3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8.9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8.5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4.5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3.5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1.2-3.7-.7-7.2-1.7-10.7zm-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7zm-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3.3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7zm-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1.5-8.1.8-11.6.8-1.9-21.9-6.8-44-14.3-64.6 3.7.3 8.1.3 11.8.3zM47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1.8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7zm9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2zm47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5zm184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9zm115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3.3 26.6.3 39.5 1.1zm-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0zM278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7zm-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9zm-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6.8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5zm-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2zm-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9zm337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3.3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2.8 2.2.8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53zm10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8.3 1.9.5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7zm105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3.9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5zM372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5zM74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8zm215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8zM68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1zm433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2zM478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5.9-8.4-20.2-23.5-29.1-25.1z" + } + }, + "free": [ + "brands" + ] + }, + "orcid": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8d2", + "label": "ORCID", + "svg": { + "brands": { + "last_modified": 1568817883852, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z" + } + }, + "free": [ + "brands" + ] + }, + "osi": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41a", + "label": "Open Source Initiative", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775906, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 266.44C10.3 130.64 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0-64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8z" + } + }, + "free": [ + "brands" + ] + }, + "otter": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "badger", + "fauna", + "fur", + "mammal", + "marten" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f700", + "label": "Otter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635616, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 32h-32l-13.25-13.25A63.97 63.97 0 0 0 517.49 0H497c-11.14 0-22.08 2.91-31.75 8.43L312 96h-56C149.96 96 64 181.96 64 288v1.61c0 32.75-16 62.14-39.56 84.89-18.19 17.58-28.1 43.68-23.19 71.8 6.76 38.8 42.9 65.7 82.28 65.7H192c17.67 0 32-14.33 32-32s-14.33-32-32-32H80c-8.83 0-16-7.17-16-16s7.17-16 16-16h224c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-64l149.49-80.5L448 416h80c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-28.22l-55.11-110.21L521.14 192H544c53.02 0 96-42.98 96-96V64c0-17.67-14.33-32-32-32zm-96 16c8.84 0 16 7.16 16 16s-7.16 16-16 16-16-7.16-16-16 7.16-16 16-16zm32 96h-34.96L407.2 198.84l-13.77-27.55L512 112h77.05c-6.62 18.58-24.22 32-45.05 32z" + } + }, + "free": [ + "solid" + ] + }, + "outdent": { + "changes": [ + "1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03b", + "label": "Outdent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635617, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M100.69 363.29c10 10 27.31 2.93 27.31-11.31V160c0-14.32-17.33-21.31-27.31-11.31l-96 96a16 16 0 0 0 0 22.62zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "page4": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d7", + "label": "page4 Corporation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861010, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" + } + }, + "free": [ + "brands" + ] + }, + "pagelines": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "leaf", + "leaves", + "nature", + "plant", + "tree" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f18c", + "label": "Pagelines", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861011, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" + } + }, + "free": [ + "brands" + ] + }, + "pager": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beeper", + "cellphone", + "communication" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f815", + "label": "Pager", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635618, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 64H64a64 64 0 0 0-64 64v256a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V128a64 64 0 0 0-64-64zM160 368H80a16 16 0 0 1-16-16v-16a16 16 0 0 1 16-16h80zm128-16a16 16 0 0 1-16 16h-80v-48h80a16 16 0 0 1 16 16zm160-128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32v-64a32 32 0 0 1 32-32h320a32 32 0 0 1 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "paint-brush": { + "changes": [ + "4.2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fc", + "label": "Paint Brush", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635619, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z" + } + }, + "free": [ + "solid" + ] + }, + "paint-roller": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5aa", + "label": "Paint Roller", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635619, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "palette": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53f", + "label": "Palette", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635620, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "palfed": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d8", + "label": "Palfed", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861011, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" + } + }, + "free": [ + "brands" + ] + }, + "pallet": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "inventory", + "shipping", + "warehouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f482", + "label": "Pallet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635620, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z" + } + }, + "free": [ + "solid" + ] + }, + "paper-plane": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "float", + "fold", + "mail", + "paper", + "send" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1d8", + "label": "Paper Plane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635621, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z" + }, + "regular": { + "last_modified": 1628088634934, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "paperclip": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "connect", + "link" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c6", + "label": "Paperclip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635621, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" + } + }, + "free": [ + "solid" + ] + }, + "parachute-box": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "rescue", + "supplies" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4cd", + "label": "Parachute Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635622, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z" + } + }, + "free": [ + "solid" + ] + }, + "paragraph": { + "changes": [ + "4.1", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "format", + "text", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1dd", + "label": "paragraph", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635622, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 48v32a16 16 0 0 1-16 16h-48v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V96h-32v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V352h-32a160 160 0 0 1 0-320h240a16 16 0 0 1 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "parking": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "car", + "garage", + "meter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f540", + "label": "Parking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635623, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "passport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "id", + "identification", + "issued", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ab", + "label": "Passport", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635623, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z" + } + }, + "free": [ + "solid" + ] + }, + "pastafarianism": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agnosticism", + "atheism", + "flying spaghetti monster", + "fsm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f67b", + "label": "Pastafarianism", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635624, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624.54 347.67c-32.7-12.52-57.36 4.25-75.37 16.45-17.06 11.53-23.25 14.42-31.41 11.36-8.12-3.09-10.83-9.38-15.89-29.38-3.33-13.15-7.44-29.32-17.95-42.65 2.24-2.91 4.43-5.79 6.38-8.57C500.47 304.45 513.71 312 532 312c33.95 0 50.87-25.78 62.06-42.83 10.59-16.14 15-21.17 21.94-21.17 13.25 0 24-10.75 24-24s-10.75-24-24-24c-33.95 0-50.87 25.78-62.06 42.83-10.6 16.14-15 21.17-21.94 21.17-17.31 0-37.48-61.43-97.26-101.91l17.25-34.5C485.43 125.5 512 97.98 512 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 13.02 3.94 25.1 10.62 35.21l-18.15 36.3c-16.98-4.6-35.6-7.51-56.46-7.51s-39.49 2.91-56.46 7.51l-18.15-36.3C252.06 89.1 256 77.02 256 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 33.98 26.56 61.5 60.02 63.6l17.25 34.5C145.68 202.44 125.15 264 108 264c-6.94 0-11.34-5.03-21.94-21.17C74.88 225.78 57.96 200 24 200c-13.25 0-24 10.75-24 24s10.75 24 24 24c6.94 0 11.34 5.03 21.94 21.17C57.13 286.22 74.05 312 108 312c18.29 0 31.53-7.55 41.7-17.11 1.95 2.79 4.14 5.66 6.38 8.57-10.51 13.33-14.62 29.5-17.95 42.65-5.06 20-7.77 26.28-15.89 29.38-8.11 3.06-14.33.17-31.41-11.36-18.03-12.2-42.72-28.92-75.37-16.45-12.39 4.72-18.59 18.58-13.87 30.97 4.72 12.41 18.61 18.61 30.97 13.88 8.16-3.09 14.34-.19 31.39 11.36 13.55 9.16 30.83 20.86 52.42 20.84 7.17 0 14.83-1.28 22.97-4.39 32.66-12.44 39.98-41.33 45.33-62.44 2.21-8.72 3.99-14.49 5.95-18.87 16.62 13.61 36.95 25.88 61.64 34.17-9.96 37-32.18 90.8-60.26 90.8-13.25 0-24 10.75-24 24s10.75 24 24 24c66.74 0 97.05-88.63 107.42-129.14 6.69.6 13.42 1.14 20.58 1.14s13.89-.54 20.58-1.14C350.95 423.37 381.26 512 448 512c13.25 0 24-10.75 24-24s-10.75-24-24-24c-27.94 0-50.21-53.81-60.22-90.81 24.69-8.29 45-20.56 61.62-34.16 1.96 4.38 3.74 10.15 5.95 18.87 5.34 21.11 12.67 50 45.33 62.44 8.14 3.11 15.8 4.39 22.97 4.39 21.59 0 38.87-11.69 52.42-20.84 17.05-11.55 23.28-14.45 31.39-11.36 12.39 4.75 26.27-1.47 30.97-13.88 4.71-12.4-1.49-26.26-13.89-30.98zM448 48c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zm-256 0c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "paste": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "copy", + "document", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ea", + "label": "Paste", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635624, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" + } + }, + "free": [ + "solid" + ] + }, + "patreon": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d9", + "label": "Patreon", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861011, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" + } + }, + "free": [ + "brands" + ] + }, + "pause": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "hold", + "wait" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04c", + "label": "pause", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635624, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" + } + }, + "free": [ + "solid" + ] + }, + "pause-circle": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hold", + "wait" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f28b", + "label": "Pause Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635624, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z" + }, + "regular": { + "last_modified": 1628088634938, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "paw": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "cat", + "dog", + "pet", + "print" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b0", + "label": "Paw", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635625, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z" + } + }, + "free": [ + "solid" + ] + }, + "paypal": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ed", + "label": "Paypal", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861011, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" + } + }, + "free": [ + "brands" + ] + }, + "peace": { + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "serenity", + "tranquility", + "truce", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f67c", + "label": "Peace", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635626, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm184 248c0 31.93-8.2 61.97-22.57 88.17L280 240.63V74.97c86.23 15.21 152 90.5 152 181.03zM216 437.03c-33.86-5.97-64.49-21.2-89.29-43.02L216 322.57v114.46zm64-114.46L369.29 394c-24.8 21.82-55.43 37.05-89.29 43.02V322.57zm-64-247.6v165.66L86.57 344.17C72.2 317.97 64 287.93 64 256c0-90.53 65.77-165.82 152-181.03z" + } + }, + "free": [ + "solid" + ] + }, + "pen": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f304", + "label": "Pen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635627, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z" + } + }, + "free": [ + "solid" + ] + }, + "pen-alt": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f305", + "label": "Alternate Pen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635626, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z" + } + }, + "free": [ + "solid" + ] + }, + "pen-fancy": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ac", + "label": "Pen Fancy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635626, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z" + } + }, + "free": [ + "solid" + ] + }, + "pen-nib": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ad", + "label": "Pen Nib", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635627, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z" + } + }, + "free": [ + "solid" + ] + }, + "pen-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pencil-square", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f14b", + "label": "Pen Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635627, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z" + } + }, + "free": [ + "solid" + ] + }, + "pencil-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f303", + "label": "Alternate Pencil", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635627, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" + } + }, + "free": [ + "solid" + ] + }, + "pencil-ruler": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "draw", + "pencil" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ae", + "label": "Pencil Ruler", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635628, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z" + } + }, + "free": [ + "solid" + ] + }, + "penny-arcade": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "pax", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f704", + "label": "Penny Arcade", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861011, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M421.91 164.27c-4.49 19.45-1.4 6.06-15.1 65.29l39.73-10.61c-22.34-49.61-17.29-38.41-24.63-54.68zm-206.09 51.11c-20.19 5.4-11.31 3.03-39.63 10.58l4.46 46.19c28.17-7.59 20.62-5.57 34.82-9.34 42.3-9.79 32.85-56.42.35-47.43zm326.16-26.19l-45.47-99.2c-5.69-12.37-19.46-18.84-32.62-15.33-70.27 18.75-38.72 10.32-135.59 36.23a27.618 27.618 0 0 0-18.89 17.41C144.26 113.27 0 153.75 0 226.67c0 33.5 30.67 67.11 80.9 95.37l1.74 17.88a27.891 27.891 0 0 0-17.77 28.67l4.3 44.48c1.39 14.31 13.43 25.21 27.8 25.2 5.18-.01-3.01 1.78 122.53-31.76 12.57-3.37 21.12-15.02 20.58-28.02 216.59 45.5 401.99-5.98 399.89-84.83.01-28.15-22.19-66.56-97.99-104.47zM255.14 298.3l-21.91 5.88-48.44 12.91 2.46 23.55 20.53-5.51 4.51 44.51-115.31 30.78-4.3-44.52 20.02-5.35-11.11-114.64-20.12 5.39-4.35-44.5c178.15-47.54 170.18-46.42 186.22-46.65 56.66-1.13 64.15 71.84 42.55 104.43a86.7 86.7 0 0 1-50.75 33.72zm199.18 16.62l-3.89-39.49 14.9-3.98-6.61-14.68-57.76 15.42-4.1 17.54 19.2-5.12 4.05 39.54-112.85 30.07-4.46-44.43 20.99-5.59 33.08-126.47-17.15 4.56-4.2-44.48c93.36-24.99 65.01-17.41 135.59-36.24l66.67 145.47 20.79-5.56 4.3 44.48-108.55 28.96z" + } + }, + "free": [ + "brands" + ] + }, + "people-arrows": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "personal space", + "social distance", + "space", + "spread", + "users" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e068", + "label": "People Arrows", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635628, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z" + } + }, + "free": [ + "solid" + ] + }, + "people-carry": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "carry", + "fragile", + "help", + "movers", + "package" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ce", + "label": "People Carry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635629, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z" + } + }, + "free": [ + "solid" + ] + }, + "pepper-hot": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buffalo wings", + "capsicum", + "chili", + "chilli", + "habanero", + "jalapeno", + "mexican", + "spicy", + "tabasco", + "vegetable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f816", + "label": "Hot Pepper", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635629, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M330.67 263.12V173.4l-52.75-24.22C219.44 218.76 197.58 400 56 400a56 56 0 0 0 0 112c212.64 0 370.65-122.87 419.18-210.34l-37.05-38.54zm131.09-128.37C493.92 74.91 477.18 26.48 458.62 3a8 8 0 0 0-11.93-.59l-22.9 23a8.06 8.06 0 0 0-.89 10.23c6.86 10.36 17.05 35.1-1.4 72.32A142.85 142.85 0 0 0 364.34 96c-28 0-54 8.54-76.34 22.59l74.67 34.29v78.24h89.09L506.44 288c3.26-12.62 5.56-25.63 5.56-39.31a154 154 0 0 0-50.24-113.94z" + } + }, + "free": [ + "solid" + ] + }, + "perbyte": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e083", + "label": "PerByte", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785924, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M305.314,284.578H246.6V383.3h58.711q24.423,0,38.193-13.77t13.77-36.11q0-21.826-14.032-35.335T305.314,284.578ZM149.435,128.7H90.724v98.723h58.711q24.42,0,38.19-13.773t13.77-36.107q0-21.826-14.029-35.338T149.435,128.7ZM366.647,32H81.353A81.445,81.445,0,0,0,0,113.352V398.647A81.445,81.445,0,0,0,81.353,480H366.647A81.445,81.445,0,0,0,448,398.647V113.352A81.445,81.445,0,0,0,366.647,32Zm63.635,366.647a63.706,63.706,0,0,1-63.635,63.635H81.353a63.706,63.706,0,0,1-63.635-63.635V113.352A63.706,63.706,0,0,1,81.353,49.718H366.647a63.706,63.706,0,0,1,63.635,63.634ZM305.314,128.7H246.6v98.723h58.711q24.423,0,38.193-13.773t13.77-36.107q0-21.826-14.032-35.338T305.314,128.7Z" + } + }, + "free": [ + "brands" + ] + }, + "percent": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "fraction", + "proportion", + "rate", + "ratio" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f295", + "label": "Percent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635629, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z" + } + }, + "free": [ + "solid" + ] + }, + "percentage": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "fraction", + "proportion", + "rate", + "ratio" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f541", + "label": "Percentage", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635630, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z" + } + }, + "free": [ + "solid" + ] + }, + "periscope": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3da", + "label": "Periscope", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861011, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" + } + }, + "free": [ + "brands" + ] + }, + "person-booth": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "changing", + "changing room", + "election", + "human", + "person", + "vote", + "voting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f756", + "label": "Person Entering Booth", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635630, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M192 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h-64v176zm32-272h-50.9l-45.2-45.3C115.8 166.6 99.7 160 82.7 160H64c-17.1 0-33.2 6.7-45.3 18.8C6.7 190.9 0 207 0 224.1L.2 320 0 480c0 17.7 14.3 32 31.9 32 17.6 0 32-14.3 32-32l.1-100.7c.9.5 1.6 1.3 2.5 1.7l29.1 43v56c0 17.7 14.3 32 32 32s32-14.3 32-32v-56.5c0-9.9-2.3-19.8-6.7-28.6l-41.2-61.3V253l20.9 20.9c9.1 9.1 21.1 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32zM64 128c26.5 0 48-21.5 48-48S90.5 32 64 32 16 53.5 16 80s21.5 48 48 48zm224-96l31.5 223.1-30.9 154.6c-4.3 21.6 13 38.3 31.4 38.3 15.2 0 28-9.1 32.3-30.4.9 16.9 14.6 30.4 31.7 30.4 17.7 0 32-14.3 32-32 0 17.7 14.3 32 32 32s32-14.3 32-32V0H288v32zm-96 0v160h64V0h-32c-17.7 0-32 14.3-32 32zM544 0h-32v496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "phabricator": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3db", + "label": "Phabricator", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861012, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" + } + }, + "free": [ + "brands" + ] + }, + "phoenix-framework": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3dc", + "label": "Phoenix Framework", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861012, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" + } + }, + "free": [ + "brands" + ] + }, + "phoenix-squadron": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f511", + "label": "Phoenix Squadron", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775907, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M96 63.38C142.49 27.25 201.55 7.31 260.51 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.17 27 191 48.84 162.21 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3.3a203 203 0 0 1-35.82 15.37c-20 6.17-42.16 8.46-62.1.78 12.79 1.73 26.06.31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.57 526.57 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0-51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28.75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.64 183.64 0 0 0-14.21-104.64c20.78 32 32.34 69.58 35.71 107.48.49 12.73.49 25.51 0 38.23A243.21 243.21 0 0 1 482 371.34c-26.12 47.34-68 85.63-117.19 108-78.29 36.23-174.68 31.32-248-14.68A248.34 248.34 0 0 1 25.36 366 238.34 238.34 0 0 1 0 273.08v-31.34C3.93 172 40.87 105.82 96 63.38m222 80.33a79.13 79.13 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7z" + } + }, + "free": [ + "brands" + ] + }, + "phone": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f095", + "label": "Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635634, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z" + } + }, + "free": [ + "solid" + ] + }, + "phone-alt": { + "changes": [ + "5.9.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f879", + "label": "Alternate Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635632, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z" + } + }, + "free": [ + "solid" + ] + }, + "phone-slash": { + "changes": [ + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "cancel", + "earphone", + "mute", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3dd", + "label": "Phone Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635633, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" + } + }, + "free": [ + "solid" + ] + }, + "phone-square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f098", + "label": "Phone Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635634, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z" + } + }, + "free": [ + "solid" + ] + }, + "phone-square-alt": { + "changes": [ + "5.9.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f87b", + "label": "Alternate Phone Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635633, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z" + } + }, + "free": [ + "solid" + ] + }, + "phone-volume": { + "changes": [ + "4.6", + "5.0.0", + "5.0.3", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "sound", + "support", + "telephone", + "voice", + "volume-control-phone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a0", + "label": "Phone Volume", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635634, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z" + } + }, + "free": [ + "solid" + ] + }, + "photo-video": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "av", + "film", + "image", + "library", + "media" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f87c", + "label": "Photo Video", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635635, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 0H160a32 32 0 0 0-32 32v96h160V64h192v320h128a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32zM232 103a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm352 208a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm-168 57H32a32 32 0 0 0-32 32v288a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM96 224a32 32 0 1 1-32 32 32 32 0 0 1 32-32zm288 224H64v-32l64-64 32 32 128-128 96 96z" + } + }, + "free": [ + "solid" + ] + }, + "php": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f457", + "label": "PHP", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861012, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper": { + "changes": [ + "4.6", + "5.0.0", + "5.0.10", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ae", + "label": "Pied Piper Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539200, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M455.93,23.2C429.23,30,387.79,51.69,341.35,90.66A206,206,0,0,0,240,64C125.13,64,32,157.12,32,272s93.13,208,208,208,208-93.13,208-208a207.25,207.25,0,0,0-58.75-144.81,155.35,155.35,0,0,0-17,27.4A176.16,176.16,0,0,1,417.1,272c0,97.66-79.44,177.11-177.09,177.11a175.81,175.81,0,0,1-87.63-23.4c82.94-107.33,150.79-37.77,184.31-226.65,5.79-32.62,28-94.26,126.23-160.18C471,33.45,465.35,20.8,455.93,23.2ZM125,406.4A176.66,176.66,0,0,1,62.9,272C62.9,174.34,142.35,94.9,240,94.9a174,174,0,0,1,76.63,17.75C250.64,174.76,189.77,265.52,125,406.4Z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-alt": { + "changes": [ + "4.1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a8", + "label": "Alternate Pied Piper Logo (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699930, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-hat": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f4e5", + "label": "Pied Piper Hat (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861013, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-pp": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a7", + "label": "Pied Piper PP Logo (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861013, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-square": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e01e", + "label": "Pied Piper Square Logo (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1573074807768, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" + } + }, + "free": [ + "brands" + ] + }, + "piggy-bank": { + "changes": [ + "5.0.9", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "save", + "savings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d3", + "label": "Piggy Bank", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635637, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z" + } + }, + "free": [ + "solid" + ] + }, + "pills": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "prescription", + "tablets" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f484", + "label": "Pills", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635637, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z" + } + }, + "free": [ + "solid" + ] + }, + "pinterest": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f0d2", + "label": "Pinterest", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861014, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" + } + }, + "free": [ + "brands" + ] + }, + "pinterest-p": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f231", + "label": "Pinterest P", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861013, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" + } + }, + "free": [ + "brands" + ] + }, + "pinterest-square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f0d3", + "label": "Pinterest Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861013, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" + } + }, + "free": [ + "brands" + ] + }, + "pizza-slice": { + "changes": [ + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheese", + "chicago", + "italian", + "mozzarella", + "new york", + "pepperoni", + "pie", + "slice", + "teenage mutant ninja turtles", + "tomato" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f818", + "label": "Pizza Slice", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635638, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M158.87.15c-16.16-1.52-31.2 8.42-35.33 24.12l-14.81 56.27c187.62 5.49 314.54 130.61 322.48 317l56.94-15.78c15.72-4.36 25.49-19.68 23.62-35.9C490.89 165.08 340.78 17.32 158.87.15zm-58.47 112L.55 491.64a16.21 16.21 0 0 0 20 19.75l379-105.1c-4.27-174.89-123.08-292.14-299.15-294.1zM128 416a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm48-152a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm104 104a32 32 0 1 1 32-32 32 32 0 0 1-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "place-of-worship": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "church", + "holy", + "mosque", + "synagogue" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f67f", + "label": "Place of Worship", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635638, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M620.61 366.55L512 320v192h112c8.84 0 16-7.16 16-16V395.96a32 32 0 0 0-19.39-29.41zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.55A32 32 0 0 0 0 395.96zm464.46-149.28L416 217.6V102.63c0-8.49-3.37-16.62-9.38-22.63L331.31 4.69c-6.25-6.25-16.38-6.25-22.62 0L233.38 80c-6 6-9.38 14.14-9.38 22.63V217.6l-48.46 29.08A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.66-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44z" + } + }, + "free": [ + "solid" + ] + }, + "plane": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "destination", + "fly", + "location", + "mode", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f072", + "label": "plane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635640, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z" + } + }, + "free": [ + "solid" + ] + }, + "plane-arrival": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "arriving", + "destination", + "fly", + "land", + "landing", + "location", + "mode", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5af", + "label": "Plane Arrival", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635639, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z" + } + }, + "free": [ + "solid" + ] + }, + "plane-departure": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "departing", + "destination", + "fly", + "location", + "mode", + "take off", + "taking off", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b0", + "label": "Plane Departure", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635639, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z" + } + }, + "free": [ + "solid" + ] + }, + "plane-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane mode", + "canceled", + "covid-19", + "delayed", + "grounded", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e069", + "label": "Plane Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635640, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M32.48,147.88,64,256,32.48,364.13A16,16,0,0,0,48,384H88a16,16,0,0,0,12.8-6.41L144,320H246.85l-49,171.59A16,16,0,0,0,213.2,512h65.5a16,16,0,0,0,13.89-8.06l66.6-116.54L34.35,136.34A15.47,15.47,0,0,0,32.48,147.88ZM633.82,458.09,455.14,320H512c35.34,0,96-28.66,96-64s-60.66-64-96-64H397.7L292.61,8.06C290.06,3.61,283.84,0,278.71,0H213.2a16,16,0,0,0-15.38,20.39l36.94,129.29L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09Z" + } + }, + "free": [ + "solid" + ] + }, + "play": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "playing", + "sound", + "start", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04b", + "label": "play", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635642, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" + } + }, + "free": [ + "solid" + ] + }, + "play-circle": { + "changes": [ + "3.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "playing", + "sound", + "start", + "video" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f144", + "label": "Play Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635641, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z" + }, + "regular": { + "last_modified": 1628088634950, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "playstation": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3df", + "label": "PlayStation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861014, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" + } + }, + "free": [ + "brands" + ] + }, + "plug": { + "changes": [ + "4.2", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "electric", + "online", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e6", + "label": "Plug", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635642, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M320,32a32,32,0,0,0-64,0v96h64Zm48,128H16A16,16,0,0,0,0,176v32a16,16,0,0,0,16,16H32v32A160.07,160.07,0,0,0,160,412.8V512h64V412.8A160.07,160.07,0,0,0,352,256V224h16a16,16,0,0,0,16-16V176A16,16,0,0,0,368,160ZM128,32a32,32,0,0,0-64,0v96h64Z" + } + }, + "free": [ + "solid" + ] + }, + "plus": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f067", + "label": "plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635643, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "plus-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f055", + "label": "Plus Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635642, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" + } + }, + "free": [ + "solid" + ] + }, + "plus-square": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0fe", + "label": "Plus Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635643, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" + }, + "regular": { + "last_modified": 1628088634951, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "podcast": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "broadcast", + "music", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ce", + "label": "Podcast", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635644, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "poll": { + "changes": [ + "5.3.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f681", + "label": "Poll", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635646, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM160 368c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V240c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v128zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V144c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v224zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-64c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v64z" + } + }, + "free": [ + "solid" + ] + }, + "poll-h": { + "changes": [ + "5.3.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f682", + "label": "Poll H", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635645, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 432V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48zM112 192c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h128c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-64z" + } + }, + "free": [ + "solid" + ] + }, + "poo": { + "changes": [ + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "poop", + "shit", + "smile", + "turd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2fe", + "label": "Poo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635646, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "poo-storm": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "euphemism", + "lightning", + "mess", + "poop", + "shit", + "turd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75a", + "label": "Poo Storm", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635646, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M308 336h-57.7l17.3-64.9c2-7.6-3.7-15.1-11.6-15.1h-68c-6 0-11.1 4.5-11.9 10.4l-16 120c-1 7.2 4.6 13.6 11.9 13.6h59.3l-23 97.2c-1.8 7.6 4 14.8 11.7 14.8 4.2 0 8.2-2.2 10.4-6l88-152c4.6-8-1.2-18-10.4-18zm66.4-111.3c5.9-9.6 9.6-20.6 9.6-32.7 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C218.3 14.6 224 30.6 224 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 12.1 3.7 23.1 9.6 32.7C32.6 228 0 262.2 0 304c0 44 36 80 80 80h48.3c.1-.6 0-1.2 0-1.8l16-120c3-21.8 21.7-38.2 43.7-38.2h68c13.8 0 26.5 6.3 34.9 17.2s11.2 24.8 7.6 38.1l-6.6 24.7h16c15.7 0 30.3 8.4 38.1 22 7.8 13.6 7.8 30.5 0 44l-8.1 14h30c44 0 80-36 80-80 .1-41.8-32.5-76-73.5-79.3z" + } + }, + "free": [ + "solid" + ] + }, + "poop": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "poop", + "shit", + "smile", + "turd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f619", + "label": "Poop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635647, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M451.36 369.14C468.66 355.99 480 335.41 480 312c0-39.77-32.24-72-72-72h-14.07c13.42-11.73 22.07-28.78 22.07-48 0-35.35-28.65-64-64-64h-5.88c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96-5.17 0-10.15.74-15.11 1.52C250.31 14.64 256 30.62 256 48c0 44.18-35.82 80-80 80h-16c-35.35 0-64 28.65-64 64 0 19.22 8.65 36.27 22.07 48H104c-39.76 0-72 32.23-72 72 0 23.41 11.34 43.99 28.64 57.14C26.31 374.62 0 404.12 0 440c0 39.76 32.24 72 72 72h368c39.76 0 72-32.24 72-72 0-35.88-26.31-65.38-60.64-70.86z" + } + }, + "free": [ + "solid" + ] + }, + "portrait": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "id", + "image", + "photo", + "picture", + "selfie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3e0", + "label": "Portrait", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635648, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" + } + }, + "free": [ + "solid" + ] + }, + "pound-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "gbp", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f154", + "label": "Pound Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635648, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z" + } + }, + "free": [ + "solid" + ] + }, + "power-off": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "computer", + "on", + "reboot", + "restart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f011", + "label": "Power Off", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635648, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "pray": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "preach", + "religion", + "worship" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f683", + "label": "Pray", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635649, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-30.63 169.75c14.06 16.72 39 19.09 55.97 5.22l88-72.02c17.09-13.98 19.59-39.19 5.62-56.28-13.97-17.11-39.19-19.59-56.31-5.62l-57.44 47-38.91-46.31c-15.44-18.39-39.22-27.92-64-25.33-24.19 2.48-45.25 16.27-56.37 36.92l-49.37 92.03c-23.4 43.64-8.69 96.37 34.19 123.75L131.56 432H40c-22.09 0-40 17.91-40 40s17.91 40 40 40h208c34.08 0 53.77-42.79 28.28-68.28L166.42 333.86l34.8-64.87 24.15 28.76z" + } + }, + "free": [ + "solid" + ] + }, + "praying-hands": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "preach", + "religion", + "worship" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f684", + "label": "Praying Hands", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635649, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M272 191.91c-17.6 0-32 14.4-32 32v80c0 8.84-7.16 16-16 16s-16-7.16-16-16v-76.55c0-17.39 4.72-34.47 13.69-49.39l77.75-129.59c9.09-15.16 4.19-34.81-10.97-43.91-14.45-8.67-32.72-4.3-42.3 9.21-.2.23-.62.21-.79.48l-117.26 175.9C117.56 205.9 112 224.31 112 243.29v80.23l-90.12 30.04A31.974 31.974 0 0 0 0 383.91v96c0 10.82 8.52 32 32 32 2.69 0 5.41-.34 8.06-1.03l179.19-46.62C269.16 449.99 304 403.8 304 351.91v-128c0-17.6-14.4-32-32-32zm346.12 161.73L528 323.6v-80.23c0-18.98-5.56-37.39-16.12-53.23L394.62 14.25c-.18-.27-.59-.24-.79-.48-9.58-13.51-27.85-17.88-42.3-9.21-15.16 9.09-20.06 28.75-10.97 43.91l77.75 129.59c8.97 14.92 13.69 32 13.69 49.39V304c0 8.84-7.16 16-16 16s-16-7.16-16-16v-80c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 51.89 34.84 98.08 84.75 112.34l179.19 46.62c2.66.69 5.38 1.03 8.06 1.03 23.48 0 32-21.18 32-32v-96c0-13.77-8.81-25.99-21.88-30.35z" + } + }, + "free": [ + "solid" + ] + }, + "prescription": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b1", + "label": "Prescription", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635650, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z" + } + }, + "free": [ + "solid" + ] + }, + "prescription-bottle": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f485", + "label": "Prescription Bottle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635649, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "prescription-bottle-alt": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f486", + "label": "Alternate Prescription Bottle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635649, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z" + } + }, + "free": [ + "solid" + ] + }, + "print": { + "changes": [ + "1", + "5.0.0", + "5.3.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "business", + "copy", + "document", + "office", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02f", + "label": "print", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635650, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "procedures": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "EKG", + "bed", + "electrocardiogram", + "health", + "hospital", + "life", + "patient", + "vital" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f487", + "label": "Procedures", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635651, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" + } + }, + "free": [ + "solid" + ] + }, + "product-hunt": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f288", + "label": "Product Hunt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861014, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" + } + }, + "free": [ + "brands" + ] + }, + "project-diagram": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "network", + "pert" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f542", + "label": "Project Diagram", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635651, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "pump-medical": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "medical grade", + "sanitizer", + "soap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06a", + "label": "Pump Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635651, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M235.51,159.82H84.24A64,64,0,0,0,20.51,218L.14,442a64,64,0,0,0,63.74,69.8h192A64,64,0,0,0,319.61,442L299.24,218A64,64,0,0,0,235.51,159.82Zm4.37,173.33a13.35,13.35,0,0,1-13.34,13.34h-40v40a13.33,13.33,0,0,1-13.33,13.33H146.54a13.33,13.33,0,0,1-13.33-13.33v-40h-40a13.34,13.34,0,0,1-13.33-13.34V306.49a13.33,13.33,0,0,1,13.33-13.34h40v-40a13.33,13.33,0,0,1,13.33-13.33h26.67a13.33,13.33,0,0,1,13.33,13.33v40h40a13.34,13.34,0,0,1,13.34,13.34ZM379.19,93.88,335.87,50.56a64,64,0,0,0-45.24-18.74H223.88a32,32,0,0,0-32-32h-64a32,32,0,0,0-32,32v96h128v-32h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.19,93.88Z" + } + }, + "free": [ + "solid" + ] + }, + "pump-soap": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "sanitizer", + "soap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06b", + "label": "Pump Soap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635652, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M235.63,160H84.37a64,64,0,0,0-63.74,58.21L.27,442.21A64,64,0,0,0,64,512H256a64,64,0,0,0,63.74-69.79l-20.36-224A64,64,0,0,0,235.63,160ZM160,416c-33.12,0-60-26.33-60-58.75,0-25,35.7-75.47,52-97.27A10,10,0,0,1,168,260c16.33,21.8,52,72.27,52,97.27C220,389.67,193.12,416,160,416ZM379.31,94.06,336,50.74A64,64,0,0,0,290.75,32H224A32,32,0,0,0,192,0H128A32,32,0,0,0,96,32v96H224V96h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.31,94.06Z" + } + }, + "free": [ + "solid" + ] + }, + "pushed": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e1", + "label": "Pushed", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861014, + "raw": "", + "viewBox": [ + "0", + "0", + "432", + "512" + ], + "width": 432, + "height": 512, + "path": "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" + } + }, + "free": [ + "brands" + ] + }, + "puzzle-piece": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add-on", + "addon", + "game", + "section" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12e", + "label": "Puzzle Piece", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635652, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z" + } + }, + "free": [ + "solid" + ] + }, + "python": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e2", + "label": "Python", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722335, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" + } + }, + "free": [ + "brands" + ] + }, + "qq": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d6", + "label": "QQ", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861014, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" + } + }, + "free": [ + "brands" + ] + }, + "qrcode": { + "changes": [ + "1", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "barcode", + "info", + "information", + "scan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f029", + "label": "qrcode", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635653, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z" + } + }, + "free": [ + "solid" + ] + }, + "question": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f128", + "label": "Question", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635653, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" + } + }, + "free": [ + "solid" + ] + }, + "question-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f059", + "label": "Question Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635653, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z" + }, + "regular": { + "last_modified": 1628088634958, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "quidditch": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bludger", + "broom", + "golden snitch", + "harry potter", + "hogwarts", + "quaffle", + "sport", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f458", + "label": "Quidditch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635654, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z" + } + }, + "free": [ + "solid" + ] + }, + "quinscape": { + "changes": [ + "5.0.5", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f459", + "label": "QuinScape", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775907, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.36 237.36 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5zm-.1-.1l.4.1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0-99.2-99.2z" + } + }, + "free": [ + "brands" + ] + }, + "quora": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c4", + "label": "Quora", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861015, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" + } + }, + "free": [ + "brands" + ] + }, + "quote-left": { + "changes": [ + "3", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10d", + "label": "quote-left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635654, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "quote-right": { + "changes": [ + "3", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10e", + "label": "quote-right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635654, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "quran": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "islam", + "muslim", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f687", + "label": "Quran", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635654, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM301.08 145.82c.6-1.21 1.76-1.82 2.92-1.82s2.32.61 2.92 1.82l11.18 22.65 25 3.63c2.67.39 3.74 3.67 1.81 5.56l-18.09 17.63 4.27 24.89c.36 2.11-1.31 3.82-3.21 3.82-.5 0-1.02-.12-1.52-.38L304 211.87l-22.36 11.75c-.5.26-1.02.38-1.52.38-1.9 0-3.57-1.71-3.21-3.82l4.27-24.89-18.09-17.63c-1.94-1.89-.87-5.17 1.81-5.56l24.99-3.63 11.19-22.65zm-57.89-69.01c13.67 0 27.26 2.49 40.38 7.41a6.775 6.775 0 1 1-2.38 13.12c-.67 0-3.09-.21-4.13-.21-52.31 0-94.86 42.55-94.86 94.86 0 52.3 42.55 94.86 94.86 94.86 1.03 0 3.48-.21 4.13-.21 3.93 0 6.8 3.14 6.8 6.78 0 2.98-1.94 5.51-4.62 6.42-13.07 4.87-26.59 7.34-40.19 7.34C179.67 307.19 128 255.51 128 192c0-63.52 51.67-115.19 115.19-115.19zM380.8 448H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z" + } + }, + "free": [ + "solid" + ] + }, + "r-project": { + "changes": [ + "5.0.11", + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f7", + "label": "R Project", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861015, + "raw": "", + "viewBox": [ + "0", + "0", + "581", + "512" + ], + "width": 581, + "height": 512, + "path": "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" + } + }, + "free": [ + "brands" + ] + }, + "radiation": { + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7b9", + "label": "Radiation", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635656, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M328.2 255.8h151.6c9.1 0 16.8-7.7 16.2-16.8-5.1-75.8-44.4-142.2-102.5-184.2-7.4-5.3-17.9-2.9-22.7 4.8L290.4 188c22.6 14.3 37.8 39.2 37.8 67.8zm-37.8 67.7c-12.3 7.7-26.8 12.4-42.4 12.4-15.6 0-30-4.7-42.4-12.4L125.2 452c-4.8 7.7-2.4 18.1 5.6 22.4C165.7 493.2 205.6 504 248 504s82.3-10.8 117.2-29.6c8-4.3 10.4-14.8 5.6-22.4l-80.4-128.5zM248 303.8c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm-231.8-48h151.6c0-28.6 15.2-53.5 37.8-67.7L125.2 59.7c-4.8-7.7-15.3-10.2-22.7-4.8C44.4 96.9 5.1 163.3 0 239.1c-.6 9 7.1 16.7 16.2 16.7z" + } + }, + "free": [ + "solid" + ] + }, + "radiation-alt": { + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ba", + "label": "Alternate Radiation", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635655, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M312 256h79.1c9.2 0 16.9-7.7 16-16.8-4.6-43.6-27-81.8-59.5-107.8-7.6-6.1-18.8-4.5-24 3.8L281.9 202c18 11.2 30.1 31.2 30.1 54zm-97.8 54.1L172.4 377c-4.9 7.8-2.4 18.4 5.8 22.5 21.1 10.4 44.7 16.5 69.8 16.5s48.7-6.1 69.9-16.5c8.2-4.1 10.6-14.7 5.8-22.5l-41.8-66.9c-9.8 6.2-21.4 9.9-33.8 9.9s-24.1-3.7-33.9-9.9zM104.9 256H184c0-22.8 12.1-42.8 30.2-54.1l-41.7-66.8c-5.2-8.3-16.4-9.9-24-3.8-32.6 26-54.9 64.2-59.5 107.8-1.1 9.2 6.7 16.9 15.9 16.9zM248 504c137 0 248-111 248-248S385 8 248 8 0 119 0 256s111 248 248 248zm0-432c101.5 0 184 82.5 184 184s-82.5 184-184 184S64 357.5 64 256 146.5 72 248 72zm0 216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "rainbow": { + "changes": [ + "5.5.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "gold", + "leprechaun", + "prism", + "rain", + "sky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75b", + "label": "Rainbow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635656, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M268.3 32.7C115.4 42.9 0 176.9 0 330.2V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C64 186.8 180.9 80.3 317.5 97.9 430.4 112.4 512 214 512 327.8V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-165.3-140-298.6-307.7-287.3zm-5.6 96.9C166 142 96 229.1 96 326.7V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-74.8 64.5-134.8 140.8-127.4 66.5 6.5 115.2 66.2 115.2 133.1V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-114.2-100.2-205.4-217.3-190.4zm6.2 96.3c-45.6 8.9-76.9 51.5-76.9 97.9V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-17.6 14.3-32 32-32s32 14.4 32 32v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-59.2-53.8-106-115.1-94.1z" + } + }, + "free": [ + "solid" + ] + }, + "random": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "shuffle", + "sort", + "swap", + "switch", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f074", + "label": "random", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635658, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z" + } + }, + "free": [ + "solid" + ] + }, + "raspberry-pi": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7bb", + "label": "Raspberry Pi", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861015, + "raw": "", + "viewBox": [ + "0", + "0", + "407", + "512" + ], + "width": 407, + "height": 512, + "path": "M372 232.5l-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2.7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6.8C271.6.6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9.1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6.1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7zm-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9zm-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80c24.5-15.8 59.8-5.6 78.8 22.8s14.6 64.2-9.9 80zM238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7.8 14.1.6 23.9.8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8.4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2.1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7.9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6.9 2.7 3.6 4.4 6.7 5.8-15.4.9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8zm-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8zm-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8.7 8.3.1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6.4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3.4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6.2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6zm60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9zM38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3zm91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7zm-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8zM205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9.5 11-28.8 35.9-57.2 35.4zm58.9-124.9c.2 29.7-26.2 53.8-58.8 54-32.6.2-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54 32.6-.2 59.2 23.8 59.4 53.4v.6zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3zm22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3z" + } + }, + "free": [ + "brands" + ] + }, + "ravelry": { + "changes": [ + "4.7", + "5.0.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d9", + "label": "Ravelry", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785924, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M498.252,234.223c-1.208-10.34-1.7-20.826-3.746-31a310.306,310.306,0,0,0-9.622-36.6,184.068,184.068,0,0,0-30.874-57.5,251.154,251.154,0,0,0-18.818-21.689,237.362,237.362,0,0,0-47.113-36.116A240.8,240.8,0,0,0,331.356,26.65c-11.018-3.1-22.272-5.431-33.515-7.615-6.78-1.314-13.749-1.667-20.627-2.482-.316-.036-.6-.358-.9-.553q-16.143.009-32.288.006c-2.41.389-4.808.925-7.236,1.15a179.331,179.331,0,0,0-34.256,7.1,221.5,221.5,0,0,0-39.768,16.355,281.385,281.385,0,0,0-38.08,24.158c-6.167,4.61-12.268,9.36-17.974,14.518C96.539,88.494,86.34,97.72,76.785,107.555a243.878,243.878,0,0,0-33.648,43.95,206.488,206.488,0,0,0-20.494,44.6,198.2,198.2,0,0,0-7.691,34.759A201.13,201.13,0,0,0,13.4,266.385a299.716,299.716,0,0,0,4.425,40.24,226.865,226.865,0,0,0,16.73,53.3,210.543,210.543,0,0,0,24,39.528,213.589,213.589,0,0,0,26.358,28.416A251.313,251.313,0,0,0,126.7,458.455a287.831,287.831,0,0,0,55.9,25.277,269.5,269.5,0,0,0,40.641,9.835c6.071,1.01,12.275,1.253,18.412,1.873a4.149,4.149,0,0,1,1.19.56h32.289c2.507-.389,5-.937,7.527-1.143,16.336-1.332,32.107-5.335,47.489-10.717A219.992,219.992,0,0,0,379.1,460.322c9.749-6.447,19.395-13.077,28.737-20.1,5.785-4.348,10.988-9.5,16.3-14.457,3.964-3.7,7.764-7.578,11.51-11.5a232.162,232.162,0,0,0,31.427-41.639c9.542-16.045,17.355-32.905,22.3-50.926,2.859-10.413,4.947-21.045,7.017-31.652,1.032-5.279,1.251-10.723,1.87-16.087.036-.317.358-.6.552-.9V236.005A9.757,9.757,0,0,1,498.252,234.223Zm-161.117-1.15s-16.572-2.98-28.47-2.98c-27.2,0-33.57,14.9-33.57,37.04V360.8H201.582V170.062H275.1v31.931c8.924-26.822,26.771-36.189,62.04-36.189Z" + } + }, + "free": [ + "brands" + ] + }, + "react": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41b", + "label": "React", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722335, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" + } + }, + "free": [ + "brands" + ] + }, + "reacteurope": { + "changes": [ + "5.5.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f75d", + "label": "ReactEurope", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775908, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M250.6 211.74l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm63.7 0l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76zm-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8zm-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0-4.2-3.4h-6.9a3.68 3.68 0 0 0-4 3.4l-11 59.2c-.5 2.7.9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3l4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5.04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0-2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1zm10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364.42 364.42 0 0 0-35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a587.83 587.83 0 0 0-84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2.1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0-93.9.9 547.76 547.76 0 0 1 42.2-52.4Q277.3 86 272.2 81a598.25 598.25 0 0 0-50.7 64.2 569.69 569.69 0 0 0-84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695.38 695.38 0 0 0 93.9-.9 547.76 547.76 0 0 1-42.2 52.4q5.1 5.25 10.2 10.2a588.47 588.47 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123zm9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1-10.7-5.7l-.1.1a19.61 19.61 0 0 1-5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535.3 535.3 0 0 1-72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1-6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a711.91 711.91 0 0 1-112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1-3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a548.81 548.81 0 0 1-72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4.2-8.4-1a17.58 17.58 0 0 1-6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.64c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.42 23.42 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a711.72 711.72 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.42 21.42 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.74 20.74 0 0 1 6.8 4.3l.1.1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a359.71 359.71 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5zm-114.4-114h-1.2a1.74 1.74 0 0 0-1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0-1.9-1.9H309a1.81 1.81 0 0 0-2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0-2.2-1.9zM321.7 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0-2-2.06zm-7.4-99.4L286 192l-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z" + } + }, + "free": [ + "brands" + ] + }, + "readme": { + "changes": [ + "5.0.9", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4d5", + "label": "ReadMe", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861016, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" + } + }, + "free": [ + "brands" + ] + }, + "rebel": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d0", + "label": "Rebel Alliance", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861016, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" + } + }, + "free": [ + "brands" + ] + }, + "receipt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "check", + "invoice", + "money", + "pay", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f543", + "label": "Receipt", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635658, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z" + } + }, + "free": [ + "solid" + ] + }, + "record-vinyl": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LP", + "album", + "analog", + "music", + "phonograph", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8d9", + "label": "Record Vinyl", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635659, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm0-272C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 376a128 128 0 1 1 128-128 128 128 0 0 1-128 128z" + } + }, + "free": [ + "solid" + ] + }, + "recycle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Waste", + "compost", + "garbage", + "reuse", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b8", + "label": "Recycle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635660, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z" + } + }, + "free": [ + "solid" + ] + }, + "red-river": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e3", + "label": "red river", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861016, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" + } + }, + "free": [ + "brands" + ] + }, + "reddit": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a1", + "label": "reddit Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861017, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" + } + }, + "free": [ + "brands" + ] + }, + "reddit-alien": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f281", + "label": "reddit Alien", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861016, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" + } + }, + "free": [ + "brands" + ] + }, + "reddit-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a2", + "label": "reddit Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861017, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" + } + }, + "free": [ + "brands" + ] + }, + "redhat": { + "changes": [ + "5.6.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7bc", + "label": "Redhat", + "voted": true, + "svg": { + "brands": { + "last_modified": 1563977084863, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M341.52 285.56c33.65 0 82.34-6.94 82.34-47 .22-6.74.86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.11 228.47 106.11M429 254.84c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.74.08-235.91-73.65-235.91-122.33a49.55 49.55 0 0 1 4.06-19.72C58.56 200.86 0 208.93 0 260.63c0 84.67 200.63 189 359.49 189 121.79 0 152.51-55.08 152.51-98.58 0-34.21-29.59-73.05-82.93-96.24" + } + }, + "free": [ + "brands" + ] + }, + "redo": { + "changes": [ + "1", + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f01e", + "label": "Redo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635660, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z" + } + }, + "free": [ + "solid" + ] + }, + "redo-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f9", + "label": "Alternate Redo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635660, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z" + } + }, + "free": [ + "solid" + ] + }, + "registered": { + "changes": [ + "4.4", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "trademark" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25d", + "label": "Registered Trademark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635661, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z" + }, + "regular": { + "last_modified": 1628088634966, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "remove-format": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "font", + "format", + "remove", + "style", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f87d", + "label": "Remove Format", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635661, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M336 416h-11.17l9.26-27.77L267 336.4 240.49 416H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm297.82 42.1L377 259.59 426.17 112H544v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16H176a16 16 0 0 0-16 16v43.9L45.46 3.38A16 16 0 0 0 23 6.19L3.37 31.46a16 16 0 0 0 2.81 22.45l588.36 454.72a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zM309.91 207.76L224 141.36V112h117.83z" + } + }, + "free": [ + "solid" + ] + }, + "renren": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18b", + "label": "Renren", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861017, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" + } + }, + "free": [ + "brands" + ] + }, + "reply": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3e5", + "label": "Reply", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635663, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" + } + }, + "free": [ + "solid" + ] + }, + "reply-all": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f122", + "label": "reply-all", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635663, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z" + } + }, + "free": [ + "solid" + ] + }, + "replyd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e6", + "label": "replyd", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861017, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" + } + }, + "free": [ + "brands" + ] + }, + "republican": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "conservative", + "election", + "elephant", + "politics", + "republican party", + "right", + "right-wing", + "usa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75e", + "label": "Republican", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635664, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 192c0-88.4-71.6-160-160-160H160C71.6 32 0 103.6 0 192v64h544v-64zm-367.7-21.6l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L128 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L272 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L416 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zM624 320h-32c-8.8 0-16 7.2-16 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V288H0v176c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-80h192v80c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V352h32v43.3c0 41.8 30 80.1 71.6 84.3 47.8 4.9 88.4-32.7 88.4-79.6v-64c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "researchgate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f8", + "label": "Researchgate", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861017, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" + } + }, + "free": [ + "brands" + ] + }, + "resolving": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e7", + "label": "Resolving", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" + } + }, + "free": [ + "brands" + ] + }, + "restroom": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "john", + "loo", + "potty", + "washroom", + "waste", + "wc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7bd", + "label": "Restroom", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635664, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 128c35.3 0 64-28.7 64-64S163.3 0 128 0 64 28.7 64 64s28.7 64 64 64zm384 0c35.3 0 64-28.7 64-64S547.3 0 512 0s-64 28.7-64 64 28.7 64 64 64zm127.3 226.5l-45.6-185.8c-3.3-13.5-15.5-23-29.8-24.2-15 9.7-32.8 15.5-52 15.5-19.2 0-37-5.8-52-15.5-14.3 1.2-26.5 10.7-29.8 24.2l-45.6 185.8C381 369.6 393 384 409.2 384H464v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V384h54.8c16.2 0 28.2-14.4 24.5-29.5zM336 0h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zM180.1 144.4c-15 9.8-32.9 15.6-52.1 15.6-19.2 0-37.1-5.8-52.1-15.6C51.3 146.5 32 166.9 32 192v136c0 13.3 10.7 24 24 24h8v136c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V352h8c13.3 0 24-10.7 24-24V192c0-25.1-19.3-45.5-43.9-47.6z" + } + }, + "free": [ + "solid" + ] + }, + "retweet": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "share", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f079", + "label": "Retweet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635664, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z" + } + }, + "free": [ + "solid" + ] + }, + "rev": { + "changes": [ + "5.1.0", + "5.1.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5b2", + "label": "Rev.io", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775909, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M289.67 274.89a65.57 65.57 0 1 1-65.56-65.56 65.64 65.64 0 0 1 65.56 65.56zm139.55-5.05h-.13a204.69 204.69 0 0 0-74.32-153l-45.38 26.2a157.07 157.07 0 0 1 71.81 131.84C381.2 361.5 310.73 432 224.11 432S67 361.5 67 274.88c0-81.88 63-149.27 143-156.43v39.12l108.77-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.57 0 111.59 89.12 202.29 200.06 205v.11h210.16V269.84z" + } + }, + "free": [ + "brands" + ] + }, + "ribbon": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "cause", + "lapel", + "pin" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d6", + "label": "Ribbon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635665, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z" + } + }, + "free": [ + "solid" + ] + }, + "ring": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "Gollum", + "band", + "binding", + "d&d", + "dnd", + "engagement", + "fantasy", + "gold", + "jewelry", + "marriage", + "precious" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f70b", + "label": "Ring", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635665, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 64C110.06 64 0 125.91 0 208v98.13C0 384.48 114.62 448 256 448s256-63.52 256-141.87V208c0-82.09-110.06-144-256-144zm0 64c106.04 0 192 35.82 192 80 0 9.26-3.97 18.12-10.91 26.39C392.15 208.21 328.23 192 256 192s-136.15 16.21-181.09 42.39C67.97 226.12 64 217.26 64 208c0-44.18 85.96-80 192-80zM120.43 264.64C155.04 249.93 201.64 240 256 240s100.96 9.93 135.57 24.64C356.84 279.07 308.93 288 256 288s-100.84-8.93-135.57-23.36z" + } + }, + "free": [ + "solid" + ] + }, + "road": { + "changes": [ + "1", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "highway", + "map", + "pavement", + "route", + "street", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f018", + "label": "road", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635666, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M573.19 402.67l-139.79-320C428.43 71.29 417.6 64 405.68 64h-97.59l2.45 23.16c.5 4.72-3.21 8.84-7.96 8.84h-29.16c-4.75 0-8.46-4.12-7.96-8.84L267.91 64h-97.59c-11.93 0-22.76 7.29-27.73 18.67L2.8 402.67C-6.45 423.86 8.31 448 30.54 448h196.84l10.31-97.68c.86-8.14 7.72-14.32 15.91-14.32h68.8c8.19 0 15.05 6.18 15.91 14.32L348.62 448h196.84c22.23 0 36.99-24.14 27.73-45.33zM260.4 135.16a8 8 0 0 1 7.96-7.16h39.29c4.09 0 7.53 3.09 7.96 7.16l4.6 43.58c.75 7.09-4.81 13.26-11.93 13.26h-40.54c-7.13 0-12.68-6.17-11.93-13.26l4.59-43.58zM315.64 304h-55.29c-9.5 0-16.91-8.23-15.91-17.68l5.07-48c.86-8.14 7.72-14.32 15.91-14.32h45.15c8.19 0 15.05 6.18 15.91 14.32l5.07 48c1 9.45-6.41 17.68-15.91 17.68z" + } + }, + "free": [ + "solid" + ] + }, + "robot": { + "changes": [ + "5.0.13", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "automate", + "computer", + "cyborg" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f544", + "label": "Robot", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635666, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z" + } + }, + "free": [ + "solid" + ] + }, + "rocket": { + "changes": [ + "3.1", + "5.0.0", + "5.7.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aircraft", + "app", + "jet", + "launch", + "nasa", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f135", + "label": "rocket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635667, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z" + } + }, + "free": [ + "solid" + ] + }, + "rocketchat": { + "changes": [ + "5.0.0", + "5.4.2", + "5.8.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e8", + "label": "Rocket.Chat", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785925, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M284.046,224.8a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,284.046,224.8Zm-110.45,0a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,173.6,224.8Zm220.923,0a34.114,34.114,0,1,0,34.317,34.113A34.215,34.215,0,0,0,394.519,224.8Zm153.807-55.319c-15.535-24.172-37.31-45.57-64.681-63.618-52.886-34.817-122.374-54-195.666-54a405.975,405.975,0,0,0-72.032,6.357,238.524,238.524,0,0,0-49.51-36.588C99.684-11.7,40.859.711,11.135,11.421A14.291,14.291,0,0,0,5.58,34.782C26.542,56.458,61.222,99.3,52.7,138.252c-33.142,33.9-51.112,74.776-51.112,117.337,0,43.372,17.97,84.248,51.112,118.148,8.526,38.956-26.154,81.816-47.116,103.491a14.284,14.284,0,0,0,5.555,23.34c29.724,10.709,88.549,23.147,155.324-10.2a238.679,238.679,0,0,0,49.51-36.589A405.972,405.972,0,0,0,288,460.14c73.313,0,142.8-19.159,195.667-53.975,27.371-18.049,49.145-39.426,64.679-63.619,17.309-26.923,26.07-55.916,26.07-86.125C574.394,225.4,565.634,196.43,548.326,169.485ZM284.987,409.9a345.65,345.65,0,0,1-89.446-11.5l-20.129,19.393a184.366,184.366,0,0,1-37.138,27.585,145.767,145.767,0,0,1-52.522,14.87c.983-1.771,1.881-3.563,2.842-5.356q30.258-55.68,16.325-100.078c-32.992-25.962-52.778-59.2-52.778-95.4,0-83.1,104.254-150.469,232.846-150.469s232.867,67.373,232.867,150.469C517.854,342.525,413.6,409.9,284.987,409.9Z" + } + }, + "free": [ + "brands" + ] + }, + "rockrms": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e9", + "label": "Rockrms", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" + } + }, + "free": [ + "brands" + ] + }, + "route": { + "changes": [ + "5.0.9", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "navigation", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d7", + "label": "Route", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635668, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 320h-96c-17.6 0-32-14.4-32-32s14.4-32 32-32h96s96-107 96-160-43-96-96-96-96 43-96 96c0 25.5 22.2 63.4 45.3 96H320c-52.9 0-96 43.1-96 96s43.1 96 96 96h96c17.6 0 32 14.4 32 32s-14.4 32-32 32H185.5c-16 24.8-33.8 47.7-47.3 64H416c52.9 0 96-43.1 96-96s-43.1-96-96-96zm0-256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM96 256c-53 0-96 43-96 96s96 160 96 160 96-107 96-160-43-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "rss": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f09e", + "label": "rss", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635669, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z" + } + }, + "free": [ + "solid" + ] + }, + "rss-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f143", + "label": "RSS Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635668, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z" + } + }, + "free": [ + "solid" + ] + }, + "ruble-sign": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "money", + "rub" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f158", + "label": "Ruble Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635669, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z" + } + }, + "free": [ + "solid" + ] + }, + "ruler": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f545", + "label": "Ruler", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635671, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z" + } + }, + "free": [ + "solid" + ] + }, + "ruler-combined": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f546", + "label": "Ruler Combined", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635669, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "ruler-horizontal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f547", + "label": "Ruler Horizontal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635670, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "ruler-vertical": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f548", + "label": "Ruler Vertical", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635670, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" + } + }, + "free": [ + "solid" + ] + }, + "running": { + "changes": [ + "5.4.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "health", + "jog", + "person", + "run", + "sport", + "sprint" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f70c", + "label": "Running", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635671, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M272 96c26.51 0 48-21.49 48-48S298.51 0 272 0s-48 21.49-48 48 21.49 48 48 48zM113.69 317.47l-14.8 34.52H32c-17.67 0-32 14.33-32 32s14.33 32 32 32h77.45c19.25 0 36.58-11.44 44.11-29.09l8.79-20.52-10.67-6.3c-17.32-10.23-30.06-25.37-37.99-42.61zM384 223.99h-44.03l-26.06-53.25c-12.5-25.55-35.45-44.23-61.78-50.94l-71.08-21.14c-28.3-6.8-57.77-.55-80.84 17.14l-39.67 30.41c-14.03 10.75-16.69 30.83-5.92 44.86s30.84 16.66 44.86 5.92l39.69-30.41c7.67-5.89 17.44-8 25.27-6.14l14.7 4.37-37.46 87.39c-12.62 29.48-1.31 64.01 26.3 80.31l84.98 50.17-27.47 87.73c-5.28 16.86 4.11 34.81 20.97 40.09 3.19 1 6.41 1.48 9.58 1.48 13.61 0 26.23-8.77 30.52-22.45l31.64-101.06c5.91-20.77-2.89-43.08-21.64-54.39l-61.24-36.14 31.31-78.28 20.27 41.43c8 16.34 24.92 26.89 43.11 26.89H384c17.67 0 32-14.33 32-32s-14.33-31.99-32-31.99z" + } + }, + "free": [ + "solid" + ] + }, + "rupee-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "indian", + "inr", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f156", + "label": "Indian Rupee Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635671, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z" + } + }, + "free": [ + "solid" + ] + }, + "rust": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07a", + "label": "Rust", + "voted": true, + "svg": { + "brands": { + "last_modified": 1599860539200, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M508.52,249.75,486.7,236.24c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35,7.35,0,0,0-2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35,7.35,0,0,0-4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35,7.35,0,0,0-6.95-10.39l-25.82.91q-1.79-2.22-3.61-4.4L439,81.84A7.36,7.36,0,0,0,430.16,73L405,78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35,7.35,0,0,0-10.39-7L367.7,53.23c-1.7-.94-3.43-1.84-5.15-2.73L358.4,25.08a7.35,7.35,0,0,0-11.54-4.79L326,35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35,7.35,0,0,0-12.25-2.44l-17.5,18.72c-1.95-.21-3.91-.38-5.88-.55L262.25,3.48a7.35,7.35,0,0,0-12.5,0L236.24,25.3c-2,.17-3.93.34-5.88.55L212.86,7.13a7.35,7.35,0,0,0-12.25,2.44l-9,24c-1.89.55-3.79,1.08-5.66,1.68l-20.82-15a7.35,7.35,0,0,0-11.54,4.79l-4.15,25.41c-1.73.9-3.45,1.79-5.16,2.73L120.88,42.55a7.35,7.35,0,0,0-10.39,7l.92,25.81c-1.49,1.19-3,2.39-4.42,3.61L81.84,73A7.36,7.36,0,0,0,73,81.84L78.93,107c-1.23,1.45-2.43,2.93-3.62,4.41l-25.81-.91a7.42,7.42,0,0,0-6.37,3.26,7.35,7.35,0,0,0-.57,7.13l10.66,23.41c-.94,1.7-1.83,3.43-2.73,5.16L25.08,153.6a7.35,7.35,0,0,0-4.79,11.54l15,20.82c-.59,1.87-1.13,3.77-1.68,5.66l-24,9a7.35,7.35,0,0,0-2.44,12.25l18.72,17.5c-.21,1.95-.38,3.91-.55,5.88L3.48,249.75a7.35,7.35,0,0,0,0,12.5L25.3,275.76c.17,2,.34,3.92.55,5.87L7.13,299.13a7.35,7.35,0,0,0,2.44,12.25l24,9c.55,1.89,1.08,3.78,1.68,5.65l-15,20.83a7.35,7.35,0,0,0,4.79,11.54l25.42,4.15c.9,1.72,1.79,3.45,2.73,5.14L42.56,391.12a7.35,7.35,0,0,0,.57,7.13,7.13,7.13,0,0,0,6.37,3.26l25.83-.91q1.77,2.22,3.6,4.4L73,430.16A7.36,7.36,0,0,0,81.84,439L107,433.07q2.18,1.83,4.41,3.61l-.92,25.82a7.35,7.35,0,0,0,10.39,6.95l23.43-10.68c1.69.94,3.42,1.83,5.14,2.73l4.15,25.42a7.34,7.34,0,0,0,11.54,4.78l20.83-15c1.86.6,3.76,1.13,5.65,1.68l9,24a7.36,7.36,0,0,0,12.25,2.44l17.5-18.72c1.95.21,3.92.38,5.88.55l13.51,21.82a7.35,7.35,0,0,0,12.5,0l13.51-21.82c2-.17,3.93-.34,5.88-.56l17.5,18.73a7.36,7.36,0,0,0,12.25-2.44l9-24c1.89-.55,3.78-1.08,5.65-1.68l20.82,15a7.34,7.34,0,0,0,11.54-4.78l4.15-25.42c1.72-.9,3.45-1.79,5.15-2.73l23.42,10.68a7.35,7.35,0,0,0,10.39-6.95l-.91-25.82q2.22-1.79,4.4-3.61L430.16,439a7.36,7.36,0,0,0,8.84-8.84L433.07,405q1.83-2.17,3.61-4.4l25.82.91a7.23,7.23,0,0,0,6.37-3.26,7.35,7.35,0,0,0,.58-7.13L458.77,367.7c.94-1.7,1.83-3.43,2.73-5.15l25.42-4.15a7.35,7.35,0,0,0,4.79-11.54l-15-20.83c.59-1.87,1.13-3.76,1.67-5.65l24-9a7.35,7.35,0,0,0,2.44-12.25l-18.72-17.5c.21-1.95.38-3.91.55-5.87l21.82-13.51a7.35,7.35,0,0,0,0-12.5Zm-151,129.08A13.91,13.91,0,0,0,341,389.51l-7.64,35.67A187.51,187.51,0,0,1,177,424.44l-7.64-35.66a13.87,13.87,0,0,0-16.46-10.68l-31.51,6.76a187.38,187.38,0,0,1-16.26-19.21H258.3c1.72,0,2.89-.29,2.89-1.91V309.55c0-1.57-1.17-1.91-2.89-1.91H213.47l.05-34.35H262c4.41,0,23.66,1.28,29.79,25.87,1.91,7.55,6.17,32.14,9.06,40,2.89,8.82,14.6,26.46,27.1,26.46H407a187.3,187.3,0,0,1-17.34,20.09Zm25.77,34.49A15.24,15.24,0,1,1,368,398.08h.44A15.23,15.23,0,0,1,383.24,413.32Zm-225.62-.68a15.24,15.24,0,1,1-15.25-15.25h.45A15.25,15.25,0,0,1,157.62,412.64ZM69.57,234.15l32.83-14.6a13.88,13.88,0,0,0,7.06-18.33L102.69,186h26.56V305.73H75.65A187.65,187.65,0,0,1,69.57,234.15ZM58.31,198.09a15.24,15.24,0,0,1,15.23-15.25H74a15.24,15.24,0,1,1-15.67,15.24Zm155.16,24.49.05-35.32h63.26c3.28,0,23.07,3.77,23.07,18.62,0,12.29-15.19,16.7-27.68,16.7ZM399,306.71c-9.8,1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4,18.86-11.95,38.46-29.64,38.46-53.26,0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23H116.32A187.49,187.49,0,0,1,221.21,70.06l23.47,24.6a13.82,13.82,0,0,0,19.6.44l26.26-25a187.51,187.51,0,0,1,128.37,91.43l-18,40.57A14,14,0,0,0,408,220.43l34.59,15.33a187.12,187.12,0,0,1,.4,32.54H423.71c-1.91,0-2.69,1.27-2.69,3.13v8.82C421,301,409.31,305.58,399,306.71ZM240,60.21A15.24,15.24,0,0,1,255.21,45h.45A15.24,15.24,0,1,1,240,60.21ZM436.84,214a15.24,15.24,0,1,1,0-30.48h.44a15.24,15.24,0,0,1-.44,30.48Z" + } + }, + "free": [ + "brands" + ] + }, + "sad-cry": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "tear", + "tears" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b3", + "label": "Crying Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635672, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z" + }, + "regular": { + "last_modified": 1628088634976, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "sad-tear": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "tear", + "tears" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b4", + "label": "Loudly Crying Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635673, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z" + }, + "regular": { + "last_modified": 1628088634977, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "safari": { + "changes": [ + "4.4", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f267", + "label": "Safari", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539200, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M274.69,274.69l-37.38-37.38L166,346ZM256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8ZM411.85,182.79l14.78-6.13A8,8,0,0,1,437.08,181h0a8,8,0,0,1-4.33,10.46L418,197.57a8,8,0,0,1-10.45-4.33h0A8,8,0,0,1,411.85,182.79ZM314.43,94l6.12-14.78A8,8,0,0,1,331,74.92h0a8,8,0,0,1,4.33,10.45l-6.13,14.78a8,8,0,0,1-10.45,4.33h0A8,8,0,0,1,314.43,94ZM256,60h0a8,8,0,0,1,8,8V84a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V68A8,8,0,0,1,256,60ZM181,74.92a8,8,0,0,1,10.46,4.33L197.57,94a8,8,0,1,1-14.78,6.12l-6.13-14.78A8,8,0,0,1,181,74.92Zm-63.58,42.49h0a8,8,0,0,1,11.31,0L140,128.72A8,8,0,0,1,140,140h0a8,8,0,0,1-11.31,0l-11.31-11.31A8,8,0,0,1,117.41,117.41ZM60,256h0a8,8,0,0,1,8-8H84a8,8,0,0,1,8,8h0a8,8,0,0,1-8,8H68A8,8,0,0,1,60,256Zm40.15,73.21-14.78,6.13A8,8,0,0,1,74.92,331h0a8,8,0,0,1,4.33-10.46L94,314.43a8,8,0,0,1,10.45,4.33h0A8,8,0,0,1,100.15,329.21Zm4.33-136h0A8,8,0,0,1,94,197.57l-14.78-6.12A8,8,0,0,1,74.92,181h0a8,8,0,0,1,10.45-4.33l14.78,6.13A8,8,0,0,1,104.48,193.24ZM197.57,418l-6.12,14.78a8,8,0,0,1-14.79-6.12l6.13-14.78A8,8,0,1,1,197.57,418ZM264,444a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V428a8,8,0,0,1,8-8h0a8,8,0,0,1,8,8Zm67-6.92h0a8,8,0,0,1-10.46-4.33L314.43,418a8,8,0,0,1,4.33-10.45h0a8,8,0,0,1,10.45,4.33l6.13,14.78A8,8,0,0,1,331,437.08Zm63.58-42.49h0a8,8,0,0,1-11.31,0L372,383.28A8,8,0,0,1,372,372h0a8,8,0,0,1,11.31,0l11.31,11.31A8,8,0,0,1,394.59,394.59ZM286.25,286.25,110.34,401.66,225.75,225.75,401.66,110.34ZM437.08,331h0a8,8,0,0,1-10.45,4.33l-14.78-6.13a8,8,0,0,1-4.33-10.45h0A8,8,0,0,1,418,314.43l14.78,6.12A8,8,0,0,1,437.08,331ZM444,264H428a8,8,0,0,1-8-8h0a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8h0A8,8,0,0,1,444,264Z" + } + }, + "free": [ + "brands" + ] + }, + "salesforce": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83b", + "label": "Salesforce", + "svg": { + "brands": { + "last_modified": 1558987775911, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M248.89 245.64h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12zm136.66-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20zm-243.22 23.76a8.63 8.63 0 0 0-3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93.95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65zM640 232c0 87.58-80 154.39-165.36 136.43-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.89 92.18-213.81-5.17C8.91 428.78-50.19 266.52 53.36 205.61 18.61 126.18 76 32 167.67 32a124.24 124.24 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.69 640 232zm-519.55 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17.71 1.64-.47.24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0-.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1-19-6.35c-.47-.23-1.42-.71-1.65.71l-2.4 7.47c-.47.94.23 1.18.23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0-.24 1.41l2.59 7.06a1 1 0 0 0 1.18.7c.65 0 6.8-4 16.93-4 4 0 7.06.71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0-7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61.32-21.64-22.78-21.64zM199 200.24a1.11 1.11 0 0 0-1.18-1.18H188a1.11 1.11 0 0 0-1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16.23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12.15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.35-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.11 38.11 0 0 1 16.7 4.23s1.18.71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0-.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1-19-6.35 1 1 0 0 0-1.65.71l-2.35 7.52c-.47.94.23 1.18.23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.09 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14.94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17.47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0-1.17 1.18l-1.42 7.76c0 .7.24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41.71-.24.71-2.59 6.82-2.83 7.53s0 1.41.47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52.09.3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52zm45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0-1.18-1.17h-9.4a1.11 1.11 0 0 0-1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91.05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0-.47-1.41zm46.81 54.1l-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.85 34.85 0 0 1 11.52 1.65s.94.47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53.23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59.74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.45 44.45 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.58 38.58 0 0 0-1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.36-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01.94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z" + } + }, + "free": [ + "brands" + ] + }, + "sass": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41e", + "label": "Sass", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775912, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M301.84 378.92c-.3.6-.6 1.08 0 0zm249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.83 122.83 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.24 201.24 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31.31 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201.24 201.24 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z" + } + }, + "free": [ + "brands" + ] + }, + "satellite": { + "changes": [ + "5.6.0", + "5.10.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communications", + "hardware", + "orbit", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7bf", + "label": "Satellite", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635674, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.60969,310.04206l-96.70393,96.71625a31.88151,31.88151,0,0,1-45.00765,0L280.572,326.34115l-9.89231,9.90759a190.56343,190.56343,0,0,1-5.40716,168.52287c-4.50077,8.50115-16.39342,9.59505-23.20707,2.79725L134.54715,400.05428l-17.7999,17.79929c.70324,2.60972,1.60965,5.00067,1.60965,7.79793a32.00544,32.00544,0,1,1-32.00544-32.00434c2.79735,0,5.18838.90637,7.7982,1.60959l17.7999-17.79929L4.43129,269.94287c-6.798-6.81342-5.70409-18.6119,2.79735-23.20627a190.58161,190.58161,0,0,1,168.52864-5.407l9.79854-9.79821-80.31053-80.41716a32.002,32.002,0,0,1,0-45.09987L201.96474,9.29814A31.62639,31.62639,0,0,1,224.46868,0a31.99951,31.99951,0,0,1,22.59759,9.29814l80.32615,80.30777,47.805-47.89713a33.6075,33.6075,0,0,1,47.50808,0l47.50807,47.50645a33.63308,33.63308,0,0,1,0,47.50644l-47.805,47.89713L502.71908,265.036A31.78938,31.78938,0,0,1,502.60969,310.04206ZM219.56159,197.433l73.82505-73.82252-68.918-68.9-73.80942,73.80689Zm237.74352,90.106-68.90233-68.9156-73.825,73.82252,68.918,68.9Z" + } + }, + "free": [ + "solid" + ] + }, + "satellite-dish": { + "changes": [ + "5.6.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "SETI", + "communications", + "hardware", + "receiver", + "saucer", + "signal", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c0", + "label": "Satellite Dish", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635674, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M305.44954,462.59c7.39157,7.29792,6.18829,20.09661-3.00038,25.00356-77.713,41.80281-176.72559,29.9105-242.34331-35.7082C-5.49624,386.28227-17.404,287.362,24.41381,209.554c4.89125-9.095,17.68975-10.29834,25.00318-3.00043L166.22872,323.36708l27.39411-27.39452c-.68759-2.60974-1.594-5.00071-1.594-7.81361a32.00407,32.00407,0,1,1,32.00407,32.00455c-2.79723,0-5.20378-.89075-7.79786-1.594l-27.40974,27.41015ZM511.9758,303.06732a16.10336,16.10336,0,0,1-16.002,17.00242H463.86031a15.96956,15.96956,0,0,1-15.89265-15.00213C440.46671,175.5492,336.45348,70.53427,207.03078,63.53328a15.84486,15.84486,0,0,1-15.00191-15.90852V16.02652A16.09389,16.09389,0,0,1,209.031.02425C372.25491,8.61922,503.47472,139.841,511.9758,303.06732Zm-96.01221-.29692a16.21093,16.21093,0,0,1-16.11142,17.29934H367.645a16.06862,16.06862,0,0,1-15.89265-14.70522c-6.90712-77.01094-68.118-138.91037-144.92467-145.22376a15.94,15.94,0,0,1-14.79876-15.89289V112.13393a16.134,16.134,0,0,1,17.29908-16.096C319.45132,104.5391,407.55627,192.64538,415.96359,302.7704Z" + } + }, + "free": [ + "solid" + ] + }, + "save": { + "changes": [ + "2", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "disk", + "download", + "floppy", + "floppy-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c7", + "label": "Save", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635675, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" + }, + "regular": { + "last_modified": 1628088634979, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "schlix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ea", + "label": "SCHLIX", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861019, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" + } + }, + "free": [ + "brands" + ] + }, + "school": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "education", + "learn", + "student", + "teacher" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f549", + "label": "School", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635679, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "screwdriver": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "mechanic", + "repair", + "settings", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54a", + "label": "Screwdriver", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635679, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z" + } + }, + "free": [ + "solid" + ] + }, + "scribd": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f28a", + "label": "Scribd", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861019, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" + } + }, + "free": [ + "brands" + ] + }, + "scroll": { + "changes": [ + "5.4.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "announcement", + "d&d", + "dnd", + "fantasy", + "paper", + "script" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f70e", + "label": "Scroll", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635680, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M48 0C21.53 0 0 21.53 0 48v64c0 8.84 7.16 16 16 16h80V48C96 21.53 74.47 0 48 0zm208 412.57V352h288V96c0-52.94-43.06-96-96-96H111.59C121.74 13.41 128 29.92 128 48v368c0 38.87 34.65 69.65 74.75 63.12C234.22 474 256 444.46 256 412.57zM288 384v32c0 52.93-43.06 96-96 96h336c61.86 0 112-50.14 112-112 0-8.84-7.16-16-16-16H288z" + } + }, + "free": [ + "solid" + ] + }, + "sd-card": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "memory", + "photo", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c2", + "label": "Sd Card", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635681, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M320 0H128L0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 160h-48V64h48v96zm80 0h-48V64h48v96zm80 0h-48V64h48v96z" + } + }, + "free": [ + "solid" + ] + }, + "search": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "preview", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f002", + "label": "Search", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635682, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" + } + }, + "free": [ + "solid" + ] + }, + "search-dollar": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "money", + "preview", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f688", + "label": "Search Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635681, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm27.11-152.54l-45.01-13.5c-5.16-1.55-8.77-6.78-8.77-12.73 0-7.27 5.3-13.19 11.8-13.19h28.11c4.56 0 8.96 1.29 12.82 3.72 3.24 2.03 7.36 1.91 10.13-.73l11.75-11.21c3.53-3.37 3.33-9.21-.57-12.14-9.1-6.83-20.08-10.77-31.37-11.35V112c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v16.12c-23.63.63-42.68 20.55-42.68 45.07 0 19.97 12.99 37.81 31.58 43.39l45.01 13.5c5.16 1.55 8.77 6.78 8.77 12.73 0 7.27-5.3 13.19-11.8 13.19h-28.1c-4.56 0-8.96-1.29-12.82-3.72-3.24-2.03-7.36-1.91-10.13.73l-11.75 11.21c-3.53 3.37-3.33 9.21.57 12.14 9.1 6.83 20.08 10.77 31.37 11.35V304c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-16.12c23.63-.63 42.68-20.54 42.68-45.07 0-19.97-12.99-37.81-31.59-43.39z" + } + }, + "free": [ + "solid" + ] + }, + "search-location": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "preview", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f689", + "label": "Search Location", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635681, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm.02-239.96c-40.78 0-73.84 33.05-73.84 73.83 0 32.96 48.26 93.05 66.75 114.86a9.24 9.24 0 0 0 14.18 0c18.49-21.81 66.75-81.89 66.75-114.86 0-40.78-33.06-73.83-73.84-73.83zm0 96c-13.26 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "search-minus": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "minify", + "negative", + "smaller", + "zoom", + "zoom out" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f010", + "label": "Search Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635681, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" + } + }, + "free": [ + "solid" + ] + }, + "search-plus": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "positive", + "zoom", + "zoom in" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00e", + "label": "Search Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635682, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" + } + }, + "free": [ + "solid" + ] + }, + "searchengin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3eb", + "label": "Searchengin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861019, + "raw": "", + "viewBox": [ + "0", + "0", + "460", + "512" + ], + "width": 460, + "height": 512, + "path": "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" + } + }, + "free": [ + "brands" + ] + }, + "seedling": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "flora", + "grow", + "plant", + "vegan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d8", + "label": "Seedling", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635682, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z" + } + }, + "free": [ + "solid" + ] + }, + "sellcast": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eercast" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2da", + "label": "Sellcast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861019, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" + } + }, + "free": [ + "brands" + ] + }, + "sellsy": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f213", + "label": "Sellsy", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861019, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" + } + }, + "free": [ + "brands" + ] + }, + "server": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "database", + "hardware", + "network" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f233", + "label": "Server", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635685, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "servicestack": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ec", + "label": "Servicestack", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861019, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" + } + }, + "free": [ + "brands" + ] + }, + "shapes": { + "changes": [ + "5.2.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "build", + "circle", + "square", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f61f", + "label": "Shapes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635685, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M128,256A128,128,0,1,0,256,384,128,128,0,0,0,128,256Zm379-54.86L400.07,18.29a37.26,37.26,0,0,0-64.14,0L229,201.14C214.76,225.52,232.58,256,261.09,256H474.91C503.42,256,521.24,225.52,507,201.14ZM480,288H320a32,32,0,0,0-32,32V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V320A32,32,0,0,0,480,288Z" + } + }, + "free": [ + "solid" + ] + }, + "share": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f064", + "label": "Share", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635686, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z" + } + }, + "free": [ + "solid" + ] + }, + "share-alt": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e0", + "label": "Alternate Share", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635686, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "share-alt-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e1", + "label": "Alternate Share Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635686, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z" + } + }, + "free": [ + "solid" + ] + }, + "share-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14d", + "label": "Share Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635686, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z" + }, + "regular": { + "last_modified": 1628088634989, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "shekel-sign": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "ils", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f20b", + "label": "Shekel Sign", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635687, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "shield-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "block", + "defend", + "security", + "winner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ed", + "label": "Alternate Shield", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635687, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3zM256.1 446.3l-.1-381 175.9 73.3c-3.3 151.4-82.1 261.1-175.8 307.7z" + } + }, + "free": [ + "solid" + ] + }, + "shield-virus": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibodies", + "barrier", + "covid-19", + "health", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06c", + "label": "Shield Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635689, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M224,192a16,16,0,1,0,16,16A16,16,0,0,0,224,192ZM466.5,83.68l-192-80A57.4,57.4,0,0,0,256.05,0a57.4,57.4,0,0,0-18.46,3.67l-192,80A47.93,47.93,0,0,0,16,128C16,326.5,130.5,463.72,237.5,508.32a48.09,48.09,0,0,0,36.91,0C360.09,472.61,496,349.3,496,128A48,48,0,0,0,466.5,83.68ZM384,256H371.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C306.47,313.09,272,327.37,272,355.88V368a16,16,0,0,1-32,0V355.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H128a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V112a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C329.09,189.53,343.37,224,371.88,224H384a16,16,0,0,1,0,32Zm-96,0a16,16,0,1,0,16,16A16,16,0,0,0,288,256Z" + } + }, + "free": [ + "solid" + ] + }, + "ship": { + "changes": [ + "4.3", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "boat", + "sea", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21a", + "label": "Ship", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635689, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z" + } + }, + "free": [ + "solid" + ] + }, + "shipping-fast": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "express", + "fedex", + "mail", + "overnight", + "package", + "ups" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48b", + "label": "Shipping Fast", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635690, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" + } + }, + "free": [ + "solid" + ] + }, + "shirtsinbulk": { + "changes": [ + "4.3", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f214", + "label": "Shirts in Bulk", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699931, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M100 410.3l30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5l30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14l4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8L91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5l4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5l4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2l4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3zm-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38zM52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z" + } + }, + "free": [ + "brands" + ] + }, + "shoe-prints": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "feet", + "footprints", + "steps", + "walk" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54b", + "label": "Shoe Prints", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635691, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z" + } + }, + "free": [ + "solid" + ] + }, + "shopify": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e057", + "label": "Shopify", + "voted": false, + "svg": { + "brands": { + "last_modified": 1581349336591, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M388.32,104.1a4.66,4.66,0,0,0-4.4-4c-2,0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76,472S388.72,106.5,388.32,104.1ZM288.65,70.47a116.67,116.67,0,0,0-7.21-17.61C271,32.85,255.42,22,237,22a15,15,0,0,0-4,.4c-.4-.8-1.2-1.2-1.6-2C223.4,11.63,213,7.63,200.58,8c-24,.8-48,18-67.25,48.83-13.61,21.62-24,48.84-26.82,70.06-27.62,8.4-46.83,14.41-47.23,14.81-14,4.4-14.41,4.8-16,18-1.2,10-38,291.82-38,291.82L307.86,504V65.67a41.66,41.66,0,0,0-4.4.4S297.86,67.67,288.65,70.47ZM233.41,87.69c-16,4.8-33.63,10.4-50.84,15.61,4.8-18.82,14.41-37.63,25.62-50,4.4-4.4,10.41-9.61,17.21-12.81C232.21,54.86,233.81,74.48,233.41,87.69ZM200.58,24.44A27.49,27.49,0,0,1,215,28c-6.4,3.2-12.81,8.41-18.81,14.41-15.21,16.42-26.82,42-31.62,66.45-14.42,4.41-28.83,8.81-42,12.81C131.33,83.28,163.75,25.24,200.58,24.44ZM154.15,244.61c1.6,25.61,69.25,31.22,73.25,91.66,2.8,47.64-25.22,80.06-65.65,82.47-48.83,3.2-75.65-25.62-75.65-25.62l10.4-44s26.82,20.42,48.44,18.82c14-.8,19.22-12.41,18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44,27.22-93.27,94.47-97.68,26-1.6,39.23,4.81,39.23,4.81L221.4,225.39s-17.21-8-37.63-6.4C154.15,221,153.75,239.8,154.15,244.61ZM249.42,82.88c0-12-1.6-29.22-7.21-43.63,18.42,3.6,27.22,24,31.23,36.43Q262.63,78.68,249.42,82.88Z" + } + }, + "free": [ + "brands" + ] + }, + "shopping-bag": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f290", + "label": "Shopping Bag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635691, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "shopping-basket": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f291", + "label": "Shopping Basket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635691, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "shopping-cart": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f07a", + "label": "shopping-cart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635691, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z" + } + }, + "free": [ + "solid" + ] + }, + "shopware": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5b5", + "label": "Shopware", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775913, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M403.5 455.41A246.17 246.17 0 0 1 256 504C118.81 504 8 393 8 256 8 118.81 119 8 256 8a247.39 247.39 0 0 1 165.7 63.5 3.57 3.57 0 0 1-2.86 6.18A418.62 418.62 0 0 0 362.13 74c-129.36 0-222.4 53.47-222.4 155.35 0 109 92.13 145.88 176.83 178.73 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.09a3.64 3.64 0 0 0-1.27-2.44c-51.76-43-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.09z" + } + }, + "free": [ + "brands" + ] + }, + "shower": { + "changes": [ + "4.7", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "clean", + "faucet", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cc", + "label": "Shower", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635692, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304,320a16,16,0,1,0,16,16A16,16,0,0,0,304,320Zm32-96a16,16,0,1,0,16,16A16,16,0,0,0,336,224Zm32,64a16,16,0,1,0-16-16A16,16,0,0,0,368,288Zm-32,32a16,16,0,1,0-16-16A16,16,0,0,0,336,320Zm-32-64a16,16,0,1,0,16,16A16,16,0,0,0,304,256Zm128-32a16,16,0,1,0-16-16A16,16,0,0,0,432,224Zm-48,16a16,16,0,1,0,16-16A16,16,0,0,0,384,240Zm-16-48a16,16,0,1,0,16,16A16,16,0,0,0,368,192Zm96,32a16,16,0,1,0,16,16A16,16,0,0,0,464,224Zm32-32a16,16,0,1,0,16,16A16,16,0,0,0,496,192Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,432,256Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,400,288Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,336,352Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,304,384Zm64-64a16,16,0,1,0,16,16A16,16,0,0,0,368,320Zm21.65-218.35-11.3-11.31a16,16,0,0,0-22.63,0L350.05,96A111.19,111.19,0,0,0,272,64c-19.24,0-37.08,5.3-52.9,13.85l-10-10A121.72,121.72,0,0,0,123.44,32C55.49,31.5,0,92.91,0,160.85V464a16,16,0,0,0,16,16H48a16,16,0,0,0,16-16V158.4c0-30.15,21-58.2,51-61.93a58.38,58.38,0,0,1,48.93,16.67l10,10C165.3,138.92,160,156.76,160,176a111.23,111.23,0,0,0,32,78.05l-5.66,5.67a16,16,0,0,0,0,22.62l11.3,11.31a16,16,0,0,0,22.63,0L389.65,124.28A16,16,0,0,0,389.65,101.65Z" + } + }, + "free": [ + "solid" + ] + }, + "shuttle-van": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "machine", + "public-transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b6", + "label": "Shuttle Van", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635693, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z" + } + }, + "free": [ + "solid" + ] + }, + "sign": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "real estate", + "signage", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d9", + "label": "Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635695, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z" + } + }, + "free": [ + "solid" + ] + }, + "sign-in-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f6", + "label": "Alternate Sign In", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635694, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z" + } + }, + "free": [ + "solid" + ] + }, + "sign-language": { + "changes": [ + "4.6", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Translate", + "asl", + "deaf", + "hands" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a7", + "label": "Sign Language", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635695, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z" + } + }, + "free": [ + "solid" + ] + }, + "sign-out-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout", + "sign-out" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f5", + "label": "Alternate Sign Out", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635695, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z" + } + }, + "free": [ + "solid" + ] + }, + "signal": { + "changes": [ + "1", + "5.0.0", + "5.3.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "bars", + "graph", + "online", + "reception", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f012", + "label": "signal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635698, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M216 288h-48c-8.84 0-16 7.16-16 16v192c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V304c0-8.84-7.16-16-16-16zM88 384H40c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16zm256-192h-48c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm128-96h-48c-8.84 0-16 7.16-16 16v384c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112c0-8.84-7.16-16-16-16zM600 0h-48c-8.84 0-16 7.16-16 16v480c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "signature": { + "changes": [ + "5.1.0", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "cursive", + "name", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b7", + "label": "Signature", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635698, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M623.2 192c-51.8 3.5-125.7 54.7-163.1 71.5-29.1 13.1-54.2 24.4-76.1 24.4-22.6 0-26-16.2-21.3-51.9 1.1-8 11.7-79.2-42.7-76.1-25.1 1.5-64.3 24.8-169.5 126L192 182.2c30.4-75.9-53.2-151.5-129.7-102.8L7.4 116.3C0 121-2.2 130.9 2.5 138.4l17.2 27c4.7 7.5 14.6 9.7 22.1 4.9l58-38.9c18.4-11.7 40.7 7.2 32.7 27.1L34.3 404.1C27.5 421 37 448 64 448c8.3 0 16.5-3.2 22.6-9.4 42.2-42.2 154.7-150.7 211.2-195.8-2.2 28.5-2.1 58.9 20.6 83.8 15.3 16.8 37.3 25.3 65.5 25.3 35.6 0 68-14.6 102.3-30 33-14.8 99-62.6 138.4-65.8 8.5-.7 15.2-7.3 15.2-15.8v-32.1c.2-9.1-7.5-16.8-16.6-16.2z" + } + }, + "free": [ + "solid" + ] + }, + "sim-card": { + "changes": [ + "5.6.0", + "5.8.2", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "hardware", + "portable", + "storage", + "technology", + "tiny" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c4", + "label": "SIM Card", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635699, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128L256 0H64C28.7 0 0 28.7 0 64zm224 192h-64v-64h64v64zm96 0h-64v-64h32c17.7 0 32 14.3 32 32v32zm-64 128h64v32c0 17.7-14.3 32-32 32h-32v-64zm-96 0h64v64h-64v-64zm-96 0h64v64H96c-17.7 0-32-14.3-32-32v-32zm0-96h256v64H64v-64zm0-64c0-17.7 14.3-32 32-32h32v64H64v-32z" + } + }, + "free": [ + "solid" + ] + }, + "simplybuilt": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f215", + "label": "SimplyBuilt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861020, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" + } + }, + "free": [ + "brands" + ] + }, + "sink": { + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "faucet", + "kitchen", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06d", + "label": "Sink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635699, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32,416a96,96,0,0,0,96,96H384a96,96,0,0,0,96-96V384H32ZM496,288H400V256h64a16,16,0,0,0,16-16V224a16,16,0,0,0-16-16H384a32,32,0,0,0-32,32v48H288V96a32,32,0,0,1,64,0v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V96A96.16,96.16,0,0,0,300.87,1.86C255.29,10.71,224,53.36,224,99.79V288H160V240a32,32,0,0,0-32-32H48a16,16,0,0,0-16,16v16a16,16,0,0,0,16,16h64v32H16A16,16,0,0,0,0,304v32a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V304A16,16,0,0,0,496,288Z" + } + }, + "free": [ + "solid" + ] + }, + "sistrix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ee", + "label": "SISTRIX", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861020, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" + } + }, + "free": [ + "brands" + ] + }, + "sitemap": { + "changes": [ + "2", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "hierarchy", + "ia", + "information architecture", + "organization" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e8", + "label": "Sitemap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635700, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "sith": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f512", + "label": "Sith", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861020, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" + } + }, + "free": [ + "brands" + ] + }, + "skating": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "figure skating", + "fitness", + "ice", + "person", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c5", + "label": "Skating", + "svg": { + "solid": { + "last_modified": 1628088635700, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 448c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c26.5 0 48-21.5 48-48 0-8.8-7.2-16-16-16zm-282.2 8.6c-6.2 6.2-16.4 6.3-22.6 0l-67.9-67.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l67.9 67.9c9.4 9.4 21.7 14 34 14s24.6-4.7 33.9-14c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.3-22.7 0zm56.1-179.8l-93.7 93.7c-12.5 12.5-12.5 32.8 0 45.2 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4l91.9-91.9-30.2-30.2c-5-5-9.4-10.7-13.2-16.8zM128 160h105.5l-20.1 17.2c-13.5 11.5-21.6 28.4-22.3 46.1-.7 17.8 6.1 35.2 18.7 47.7l78.2 78.2V432c0 17.7 14.3 32 32 32s32-14.3 32-32v-89.4c0-12.6-5.1-25-14.1-33.9l-61-61c.5-.4 1.2-.6 1.7-1.1l82.3-82.3c11.5-11.5 14.9-28.6 8.7-43.6-6.2-15-20.7-24.7-37-24.7H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "sketch": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7c6", + "label": "Sketch", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775914, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M27.5 162.2L9 187.1h90.5l6.9-130.7-78.9 105.8zM396.3 45.7L267.7 32l135.7 147.2-7.1-133.5zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69L406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480l144.9-283.8z" + } + }, + "free": [ + "brands" + ] + }, + "skiing": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "downhill", + "fast", + "fitness", + "olympics", + "outdoors", + "person", + "seasonal", + "slalom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c9", + "label": "Skiing", + "svg": { + "solid": { + "last_modified": 1628088635701, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm73 356.1c-9.4-9.4-24.6-9.4-33.9 0-12.1 12.1-30.5 15.4-45.1 8.7l-135.8-70.2 49.2-73.8c12.7-19 10.2-44.5-6-60.6L293 215.7l-107-53.1c-2.9 19.9 3.4 40 17.7 54.4l75.1 75.2-45.9 68.8L35 258.7c-11.7-6-26.2-1.5-32.3 10.3-6.1 11.8-1.5 26.3 10.3 32.3l391.9 202.5c11.9 5.5 24.5 8.1 37.1 8.1 23.2 0 46-9 63-26 9.3-9.3 9.3-24.5 0-33.8zM120 91.6l-11.5 22.5c14.4 7.3 31.2 4.9 42.8-4.8l47.2 23.4c-.1.1-.1.2-.2.3l114.5 56.8 32.4-13 6.4 19.1c4 12.1 12.6 22 24 27.7l58.1 29c15.9 7.9 35 1.5 42.9-14.3 7.9-15.8 1.5-35-14.3-42.9l-52.1-26.1-17.1-51.2c-8.1-24.2-40.9-56.6-84.5-39.2l-81.2 32.5-62.5-31c.3-14.5-7.2-28.6-20.9-35.6l-11.1 21.7h-.2l-34.4-7c-1.8-.4-3.7.2-5 1.7-1.9 2.2-1.7 5.5.5 7.4l26.2 23z" + } + }, + "free": [ + "solid" + ] + }, + "skiing-nordic": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "cross country", + "fitness", + "outdoors", + "person", + "seasonal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ca", + "label": "Skiing Nordic", + "svg": { + "solid": { + "last_modified": 1628088635701, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M336 96c26.5 0 48-21.5 48-48S362.5 0 336 0s-48 21.5-48 48 21.5 48 48 48zm216 320c-13.2 0-24 10.7-24 24 0 13.2-10.8 24-24 24h-69.5L460 285.6c11.7-4.7 20.1-16.2 20.1-29.6 0-17.7-14.3-32-32-32h-44L378 170.8c-12.5-25.5-35.5-44.2-61.8-50.9L245 98.7c-28.3-6.8-57.8-.5-80.8 17.1l-39.7 30.4c-14 10.7-16.7 30.8-5.9 44.9.7.9 1.7 1.3 2.4 2.1L66.9 464H24c-13.2 0-24 10.7-24 24s10.8 24 24 24h480c39.7 0 72-32.3 72-72 0-13.2-10.8-24-24-24zm-260.5 48h-96.9l43.1-91-22-13c-12.1-7.2-21.9-16.9-29.5-27.8L123.7 464H99.5l52.3-261.4c4.1-1 8.1-2.9 11.7-5.6l39.7-30.4c7.7-5.9 17.4-8 25.3-6.1l14.7 4.4-37.5 87.4c-12.6 29.5-1.3 64 26.3 80.3l85 50.2-25.5 81.2zm110.6 0h-43.6l23.6-75.5c5.9-20.8-2.9-43.1-21.6-54.4L299.3 298l31.3-78.3 20.3 41.4c8 16.3 24.9 26.9 43.1 26.9h33.3l-25.2 176z" + } + }, + "free": [ + "solid" + ] + }, + "skull": { + "changes": [ + "5.0.13", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "bones", + "skeleton", + "x-ray", + "yorick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54c", + "label": "Skull", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635702, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "skull-crossbones": { + "changes": [ + "5.4.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "alert", + "bones", + "d&d", + "danger", + "dead", + "deadly", + "death", + "dnd", + "fantasy", + "halloween", + "holiday", + "jolly-roger", + "pirate", + "poison", + "skeleton", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f714", + "label": "Skull & Crossbones", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635702, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M439.15 453.06L297.17 384l141.99-69.06c7.9-3.95 11.11-13.56 7.15-21.46L432 264.85c-3.95-7.9-13.56-11.11-21.47-7.16L224 348.41 37.47 257.69c-7.9-3.95-17.51-.75-21.47 7.16L1.69 293.48c-3.95 7.9-.75 17.51 7.15 21.46L150.83 384 8.85 453.06c-7.9 3.95-11.11 13.56-7.15 21.47l14.31 28.63c3.95 7.9 13.56 11.11 21.47 7.15L224 419.59l186.53 90.72c7.9 3.95 17.51.75 21.47-7.15l14.31-28.63c3.95-7.91.74-17.52-7.16-21.47zM150 237.28l-5.48 25.87c-2.67 12.62 5.42 24.85 16.45 24.85h126.08c11.03 0 19.12-12.23 16.45-24.85l-5.5-25.87c41.78-22.41 70-62.75 70-109.28C368 57.31 303.53 0 224 0S80 57.31 80 128c0 46.53 28.22 86.87 70 109.28zM280 112c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32zm-112 0c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "skyatlas": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f216", + "label": "skyatlas", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861020, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" + } + }, + "free": [ + "brands" + ] + }, + "skype": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f17e", + "label": "Skype", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861020, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" + } + }, + "free": [ + "brands" + ] + }, + "slack": { + "changes": [ + "4.1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f198", + "label": "Slack Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722337, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z" + } + }, + "free": [ + "brands" + ] + }, + "slack-hash": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3ef", + "label": "Slack Hashtag", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633724, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z" + } + }, + "free": [ + "brands" + ] + }, + "slash": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "close", + "mute", + "off", + "stop", + "x" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f715", + "label": "Slash", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635702, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M594.53 508.63L6.18 53.9c-6.97-5.42-8.23-15.47-2.81-22.45L23.01 6.18C28.43-.8 38.49-2.06 45.47 3.37L633.82 458.1c6.97 5.42 8.23 15.47 2.81 22.45l-19.64 25.27c-5.42 6.98-15.48 8.23-22.46 2.81z" + } + }, + "free": [ + "solid" + ] + }, + "sleigh": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "claus", + "fly", + "holiday", + "santa", + "sled", + "snow", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7cc", + "label": "Sleigh", + "svg": { + "solid": { + "last_modified": 1628088635703, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M612.7 350.7l-9.3-7.4c-6.9-5.5-17-4.4-22.5 2.5l-10 12.5c-5.5 6.9-4.4 17 2.5 22.5l9.3 7.4c5.9 4.7 9.2 11.7 9.2 19.2 0 13.6-11 24.6-24.6 24.6H48c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h516c39 0 73.7-29.3 75.9-68.3 1.4-23.8-8.7-46.3-27.2-61zM32 224c0 59.6 40.9 109.2 96 123.5V400h64v-48h192v48h64v-48c53 0 96-43 96-96v-96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96v64c0 35.3-28.7 64-64 64h-20.7c-65.8 0-125.9-37.2-155.3-96-29.4-58.8-89.6-96-155.3-96H32C14.3 32 0 46.3 0 64s14.3 32 32 32v128z" + } + }, + "free": [ + "solid" + ] + }, + "sliders-h": { + "changes": [ + "4.1", + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "adjust", + "settings", + "sliders", + "toggle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1de", + "label": "Horizontal Sliders", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635703, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "slideshare": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e7", + "label": "Slideshare", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722337, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z" + } + }, + "free": [ + "brands" + ] + }, + "smile": { + "changes": [ + "3.1", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "approve", + "emoticon", + "face", + "happy", + "rating", + "satisfied" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f118", + "label": "Smiling Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635704, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z" + }, + "regular": { + "last_modified": 1628088635004, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "smile-beam": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "positive" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b8", + "label": "Beaming Face With Smiling Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635704, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z" + }, + "regular": { + "last_modified": 1628088635004, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "smile-wink": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "hint", + "joke" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f4da", + "label": "Winking Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635704, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z" + }, + "regular": { + "last_modified": 1628088635004, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "smog": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dragon", + "fog", + "haze", + "pollution", + "smoke", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75f", + "label": "Smog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635705, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 368H80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm-480 96H16c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm416 0H224c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h336c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zM144 288h156.1c22.5 19.7 51.6 32 83.9 32s61.3-12.3 83.9-32H528c61.9 0 112-50.1 112-112S589.9 64 528 64c-18 0-34.7 4.6-49.7 12.1C454 31 406.8 0 352 0c-41 0-77.8 17.3-104 44.8C221.8 17.3 185 0 144 0 64.5 0 0 64.5 0 144s64.5 144 144 144z" + } + }, + "free": [ + "solid" + ] + }, + "smoking": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "cancer", + "cigarette", + "nicotine", + "smoking status", + "tobacco" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48d", + "label": "Smoking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635705, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z" + } + }, + "free": [ + "solid" + ] + }, + "smoking-ban": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "cancel", + "no smoking", + "non-smoking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54d", + "label": "Smoking Ban", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635705, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z" + } + }, + "free": [ + "solid" + ] + }, + "sms": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chat", + "conversation", + "message", + "mobile", + "notification", + "phone", + "sms", + "texting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7cd", + "label": "SMS", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635705, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7 1.3 3 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128.2 304H116c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H156c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-19 38.6-42.4 38.6zm191.8-8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-68.2l-24.8 55.8c-2.9 5.9-11.4 5.9-14.3 0L224 227.8V296c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V192c0-8.8 7.2-16 16-16h16c6.1 0 11.6 3.4 14.3 8.8l17.7 35.4 17.7-35.4c2.7-5.4 8.3-8.8 14.3-8.8h16c8.8 0 16 7.2 16 16v104zm48.3 8H356c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H396c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-18.9 38.6-42.3 38.6z" + } + }, + "free": [ + "solid" + ] + }, + "snapchat": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ab", + "label": "Snapchat", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633725, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" + } + }, + "free": [ + "brands" + ] + }, + "snapchat-ghost": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ac", + "label": "Snapchat Ghost", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633725, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z" + } + }, + "free": [ + "brands" + ] + }, + "snapchat-square": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ad", + "label": "Snapchat Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633725, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" + } + }, + "free": [ + "brands" + ] + }, + "snowboarding": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "fitness", + "olympics", + "outdoors", + "person" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ce", + "label": "Snowboarding", + "svg": { + "solid": { + "last_modified": 1628088635706, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm28.8 153.6c5.8 4.3 12.5 6.4 19.2 6.4 9.7 0 19.3-4.4 25.6-12.8 10.6-14.1 7.8-34.2-6.4-44.8l-111.4-83.5c-13.8-10.3-29.1-18.4-45.4-23.8l-63.7-21.2-26.1-52.1C244.7 2 225.5-4.4 209.7 3.5c-15.8 7.9-22.2 27.1-14.3 42.9l29.1 58.1c5.7 11.4 15.6 19.9 27.7 24l16.4 5.5-41.2 20.6c-21.8 10.9-35.4 32.8-35.4 57.2v53.1l-74.1 24.7c-16.8 5.6-25.8 23.7-20.2 40.5 1.7 5.2 4.9 9.4 8.7 12.9l-38.7-14.1c-9.7-3.5-17.4-10.6-21.8-20-5.6-12-19.9-17.2-31.9-11.6s-17.2 19.9-11.6 31.9c9.8 21 27.1 36.9 48.9 44.8l364.8 132.7c9.7 3.5 19.7 5.3 29.7 5.3 12.5 0 24.9-2.7 36.5-8.2 12-5.6 17.2-19.9 11.6-31.9S474 454.7 462 460.3c-9.3 4.4-19.8 4.8-29.5 1.3l-90.8-33.1c8.7-4.1 15.6-11.8 17.8-21.9l21.9-102c3.9-18.2-3.2-37.2-18.1-48.4l-52-39 66-30.5 83.5 62.9zm-144.4 51.7l-19.7 92c-1.5 7.1-.1 13.9 2.8 20l-169.4-61.6c2.7-.2 5.4-.4 8-1.3l85-28.4c19.6-6.5 32.8-24.8 32.8-45.5V256l60.5 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "snowflake": { + "changes": [ + "4.7", + "5.0.0", + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "winter" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2dc", + "label": "Snowflake", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635706, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M440.3 345.2l-33.8-19.5 26-7c8.2-2.2 13.1-10.7 10.9-18.9l-4-14.9c-2.2-8.2-10.7-13.1-18.9-10.9l-70.8 19-63.9-37 63.8-36.9 70.8 19c8.2 2.2 16.7-2.7 18.9-10.9l4-14.9c2.2-8.2-2.7-16.7-10.9-18.9l-26-7 33.8-19.5c7.4-4.3 9.9-13.7 5.7-21.1L430.4 119c-4.3-7.4-13.7-9.9-21.1-5.7l-33.8 19.5 7-26c2.2-8.2-2.7-16.7-10.9-18.9l-14.9-4c-8.2-2.2-16.7 2.7-18.9 10.9l-19 70.8-62.8 36.2v-77.5l53.7-53.7c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0L256 56.4V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v40.4l-19.7-19.7c-6.2-6.2-16.4-6.2-22.6 0L138.3 48c-6.3 6.2-6.3 16.4 0 22.6l53.7 53.7v77.5l-62.8-36.2-19-70.8c-2.2-8.2-10.7-13.1-18.9-10.9l-14.9 4c-8.2 2.2-13.1 10.7-10.9 18.9l7 26-33.8-19.5c-7.4-4.3-16.8-1.7-21.1 5.7L2.1 145.7c-4.3 7.4-1.7 16.8 5.7 21.1l33.8 19.5-26 7c-8.3 2.2-13.2 10.7-11 19l4 14.9c2.2 8.2 10.7 13.1 18.9 10.9l70.8-19 63.8 36.9-63.8 36.9-70.8-19c-8.2-2.2-16.7 2.7-18.9 10.9l-4 14.9c-2.2 8.2 2.7 16.7 10.9 18.9l26 7-33.8 19.6c-7.4 4.3-9.9 13.7-5.7 21.1l15.5 26.8c4.3 7.4 13.7 9.9 21.1 5.7l33.8-19.5-7 26c-2.2 8.2 2.7 16.7 10.9 18.9l14.9 4c8.2 2.2 16.7-2.7 18.9-10.9l19-70.8 62.8-36.2v77.5l-53.7 53.7c-6.3 6.2-6.3 16.4 0 22.6l11.3 11.3c6.2 6.2 16.4 6.2 22.6 0l19.7-19.7V496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-40.4l19.7 19.7c6.2 6.2 16.4 6.2 22.6 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6L256 387.7v-77.5l62.8 36.2 19 70.8c2.2 8.2 10.7 13.1 18.9 10.9l14.9-4c8.2-2.2 13.1-10.7 10.9-18.9l-7-26 33.8 19.5c7.4 4.3 16.8 1.7 21.1-5.7l15.5-26.8c4.3-7.3 1.8-16.8-5.6-21z" + }, + "regular": { + "last_modified": 1628088635006, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M440.1 355.2l-39.2-23 34.1-9.3c8.4-2.3 13.4-11.1 11.1-19.6l-4.1-15.5c-2.2-8.5-10.9-13.6-19.3-11.3L343 298.2 271.2 256l71.9-42.2 79.7 21.7c8.4 2.3 17-2.8 19.3-11.3l4.1-15.5c2.2-8.5-2.7-17.3-11.1-19.6l-34.1-9.3 39.2-23c7.5-4.4 10.1-14.2 5.8-21.9l-7.9-13.9c-4.3-7.7-14-10.3-21.5-5.9l-39.2 23 9.1-34.7c2.2-8.5-2.7-17.3-11.1-19.6l-15.2-4.1c-8.4-2.3-17 2.8-19.3 11.3l-21.3 81-71.9 42.2v-84.5L306 70.4c6.1-6.2 6.1-16.4 0-22.6l-11.1-11.3c-6.1-6.2-16.1-6.2-22.2 0l-24.9 25.4V16c0-8.8-7-16-15.7-16h-15.7c-8.7 0-15.7 7.2-15.7 16v46.1l-24.9-25.4c-6.1-6.2-16.1-6.2-22.2 0L142.1 48c-6.1 6.2-6.1 16.4 0 22.6l58.3 59.3v84.5l-71.9-42.2-21.3-81c-2.2-8.5-10.9-13.6-19.3-11.3L72.7 84c-8.4 2.3-13.4 11.1-11.1 19.6l9.1 34.7-39.2-23c-7.5-4.4-17.1-1.8-21.5 5.9l-7.9 13.9c-4.3 7.7-1.8 17.4 5.8 21.9l39.2 23-34.1 9.1c-8.4 2.3-13.4 11.1-11.1 19.6L6 224.2c2.2 8.5 10.9 13.6 19.3 11.3l79.7-21.7 71.9 42.2-71.9 42.2-79.7-21.7c-8.4-2.3-17 2.8-19.3 11.3l-4.1 15.5c-2.2 8.5 2.7 17.3 11.1 19.6l34.1 9.3-39.2 23c-7.5 4.4-10.1 14.2-5.8 21.9L10 391c4.3 7.7 14 10.3 21.5 5.9l39.2-23-9.1 34.7c-2.2 8.5 2.7 17.3 11.1 19.6l15.2 4.1c8.4 2.3 17-2.8 19.3-11.3l21.3-81 71.9-42.2v84.5l-58.3 59.3c-6.1 6.2-6.1 16.4 0 22.6l11.1 11.3c6.1 6.2 16.1 6.2 22.2 0l24.9-25.4V496c0 8.8 7 16 15.7 16h15.7c8.7 0 15.7-7.2 15.7-16v-46.1l24.9 25.4c6.1 6.2 16.1 6.2 22.2 0l11.1-11.3c6.1-6.2 6.1-16.4 0-22.6l-58.3-59.3v-84.5l71.9 42.2 21.3 81c2.2 8.5 10.9 13.6 19.3 11.3L375 428c8.4-2.3 13.4-11.1 11.1-19.6l-9.1-34.7 39.2 23c7.5 4.4 17.1 1.8 21.5-5.9l7.9-13.9c4.6-7.5 2.1-17.3-5.5-21.7z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "snowman": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "decoration", + "frost", + "frosty", + "holiday" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d0", + "label": "Snowman", + "svg": { + "solid": { + "last_modified": 1628088635707, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.9 152.3l-5.9-14.5c-3.3-8-12.6-11.9-20.8-8.7L456 140.6v-29c0-8.6-7.2-15.6-16-15.6h-16c-8.8 0-16 7-16 15.6v46.9c0 .5.3 1 .3 1.5l-56.4 23c-5.9-10-13.3-18.9-22-26.6 13.6-16.6 22-37.4 22-60.5 0-53-43-96-96-96s-96 43-96 96c0 23.1 8.5 43.9 22 60.5-8.7 7.7-16 16.6-22 26.6l-56.4-23c.1-.5.3-1 .3-1.5v-46.9C104 103 96.8 96 88 96H72c-8.8 0-16 7-16 15.6v29l-28.1-11.5c-8.2-3.2-17.5.7-20.8 8.7l-5.9 14.5c-3.3 8 .7 17.1 8.9 20.3l135.2 55.2c-.4 4-1.2 8-1.2 12.2 0 10.1 1.7 19.6 4.2 28.9C120.9 296.4 104 334.2 104 376c0 54 28.4 100.9 70.8 127.8 9.3 5.9 20.3 8.2 31.3 8.2h99.2c13.3 0 26.3-4.1 37.2-11.7 46.5-32.3 74.4-89.4 62.9-152.6-5.5-30.2-20.5-57.6-41.6-79 2.5-9.2 4.2-18.7 4.2-28.7 0-4.2-.8-8.1-1.2-12.2L502 172.6c8.1-3.1 12.1-12.2 8.9-20.3zM224 96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 272c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-88s-16-23.2-16-32 7.2-16 16-16 16 7.2 16 16-16 32-16 32zm32-56c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "snowplow": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean up", + "cold", + "road", + "storm", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d2", + "label": "Snowplow", + "svg": { + "solid": { + "last_modified": 1628088635707, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M120 376c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm238.6 49.4c-14.5-14.5-22.6-34.1-22.6-54.6V269.2c0-20.5 8.1-40.1 22.6-54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.2-16.4-6.2-22.6 0l-36.7 36.7c-26.5 26.5-41.4 62.4-41.4 99.9V288h-64v-50.9c0-8.7-1.8-17.2-5.2-25.2L364.5 29.1C356.9 11.4 339.6 0 320.3 0H176c-26.5 0-48 21.5-48 48v112h-16c-26.5 0-48 21.5-48 48v91.2C26.3 317.2 0 355.4 0 400c0 61.9 50.1 112 112 112h256c61.9 0 112-50.1 112-112 0-17.3-4.2-33.4-11.2-48H512v18.7c0 37.5 14.9 73.4 41.4 99.9l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7zM192 64h117.8l68.6 160H256l-64-64V64zm176 384H112c-26.5 0-48-21.5-48-48s21.5-48 48-48h256c26.5 0 48 21.5 48 48s-21.5 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "soap": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubbles", + "clean", + "covid-19", + "hygiene", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06e", + "label": "Soap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635708, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416,192a95.42,95.42,0,0,1-30.94,70.21A95.8,95.8,0,0,1,352,448H160a96,96,0,0,1,0-192h88.91A95.3,95.3,0,0,1,224,192H96A96,96,0,0,0,0,288V416a96,96,0,0,0,96,96H416a96,96,0,0,0,96-96V288A96,96,0,0,0,416,192Zm-96,64a64,64,0,1,0-64-64A64,64,0,0,0,320,256ZM208,96a48,48,0,1,0-48-48A48,48,0,0,0,208,96ZM384,64a32,32,0,1,0-32-32A32,32,0,0,0,384,64ZM160,288a64,64,0,0,0,0,128H352a64,64,0,0,0,0-128Z" + } + }, + "free": [ + "solid" + ] + }, + "socks": { + "changes": [ + "5.3.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "business socks", + "business time", + "clothing", + "feet", + "flight of the conchords", + "wednesday" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f696", + "label": "Socks", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635708, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M214.66 311.01L288 256V96H128v176l-86.65 64.61c-39.4 29.56-53.86 84.42-29.21 127.06C30.39 495.25 63.27 512 96.08 512c20.03 0 40.25-6.25 57.52-19.2l21.86-16.39c-29.85-55.38-13.54-125.84 39.2-165.4zM288 32c0-11.05 3.07-21.3 8.02-30.38C293.4.92 290.85 0 288 0H160c-17.67 0-32 14.33-32 32v32h160V32zM480 0H352c-17.67 0-32 14.33-32 32v32h192V32c0-17.67-14.33-32-32-32zM320 272l-86.13 64.61c-39.4 29.56-53.86 84.42-29.21 127.06 18.25 31.58 50.61 48.33 83.42 48.33 20.03 0 40.25-6.25 57.52-19.2l115.2-86.4A127.997 127.997 0 0 0 512 304V96H320v176z" + } + }, + "free": [ + "solid" + ] + }, + "solar-panel": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "eco-friendly", + "energy", + "green", + "sun" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ba", + "label": "Solar Panel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635708, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z" + } + }, + "free": [ + "solid" + ] + }, + "sort": { + "changes": [ + "2", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "order" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0dc", + "label": "Sort", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635713, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" + } + }, + "free": [ + "solid" + ] + }, + "sort-alpha-down": { + "changes": [ + "3.2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f15d", + "label": "Sort Alphabetical Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635709, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm240-64H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z" + } + }, + "free": [ + "solid" + ] + }, + "sort-alpha-down-alt": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f881", + "label": "Alternate Sort Alphabetical Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635708, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm112-128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z" + } + }, + "free": [ + "solid" + ] + }, + "sort-alpha-up": { + "changes": [ + "3.2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f15e", + "label": "Sort Alphabetical Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635709, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm400 128H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z" + } + }, + "free": [ + "solid" + ] + }, + "sort-alpha-up-alt": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f882", + "label": "Alternate Sort Alphabetical Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635709, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm272 64h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z" + } + }, + "free": [ + "solid" + ] + }, + "sort-amount-down": { + "changes": [ + "3.2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "number", + "order", + "sort-amount-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f160", + "label": "Sort Amount Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635709, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-128-64h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm256-192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "sort-amount-down-alt": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f884", + "label": "Alternate Sort Amount Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635709, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm-64 0h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z" + } + }, + "free": [ + "solid" + ] + }, + "sort-amount-up": { + "changes": [ + "3.2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f161", + "label": "Sort Amount Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635710, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.77 160 16 160zm416 0H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "sort-amount-up-alt": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f885", + "label": "Alternate Sort Amount Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635710, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.39-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160z" + } + }, + "free": [ + "solid" + ] + }, + "sort-down": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "descending", + "filter", + "order", + "sort-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0dd", + "label": "Sort Down (Descending)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635710, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" + } + }, + "free": [ + "solid" + ] + }, + "sort-numeric-down": { + "changes": [ + "3.2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f162", + "label": "Sort Numeric Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635711, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zm26.15 162.91a79 79 0 0 0-55 54.17c-14.25 51.05 21.21 97.77 68.85 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zm-176-4h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z" + } + }, + "free": [ + "solid" + ] + }, + "sort-numeric-down-alt": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f886", + "label": "Alternate Sort Numeric Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635711, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm224 64h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z" + } + }, + "free": [ + "solid" + ] + }, + "sort-numeric-up": { + "changes": [ + "3.2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f163", + "label": "Sort Numeric Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635711, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M330.17 258.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zM304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zM107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31z" + } + }, + "free": [ + "solid" + ] + }, + "sort-numeric-up-alt": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f887", + "label": "Alternate Sort Numeric Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635711, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31zM400 416h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z" + } + }, + "free": [ + "solid" + ] + }, + "sort-up": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "ascending", + "filter", + "order", + "sort-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0de", + "label": "Sort Up (Ascending)", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635712, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" + } + }, + "free": [ + "solid" + ] + }, + "soundcloud": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1be", + "label": "SoundCloud", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861021, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" + } + }, + "free": [ + "brands" + ] + }, + "sourcetree": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7d3", + "label": "Sourcetree", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775915, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.86 202.86 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.18 203.18 0 0 0 427.2 203zm-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0z" + } + }, + "free": [ + "brands" + ] + }, + "spa": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flora", + "massage", + "mindfulness", + "plant", + "wellness" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bb", + "label": "Spa", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635713, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z" + } + }, + "free": [ + "solid" + ] + }, + "space-shuttle": { + "changes": [ + "4.1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "astronaut", + "machine", + "nasa", + "rocket", + "space", + "transportation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f197", + "label": "Space Shuttle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635713, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z" + } + }, + "free": [ + "solid" + ] + }, + "speakap": { + "changes": [ + "5.0.0", + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f3", + "label": "Speakap", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775916, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M64 391.78C-15.41 303.59-8 167.42 80.64 87.64s224.8-73 304.21 15.24 72 224.36-16.64 304.14c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.91 35-346.23-67.5zm213.31-211.6l38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33.29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23.18 96.42.33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75.41-23.25 31-25.37 37.53-25.26.43 0 26.62.26 39.62 17.37z" + } + }, + "free": [ + "brands" + ] + }, + "speaker-deck": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83c", + "label": "Speaker Deck", + "svg": { + "brands": { + "last_modified": 1558987775916, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M213.86 296H100a100 100 0 0 1 0-200h132.84a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.82a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.86c26.48 0 26.46-40 0-40zM298 416a120.21 120.21 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0-19.66-20H296.42a60.77 60.77 0 0 0 0-80h136.93c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z" + } + }, + "free": [ + "brands" + ] + }, + "spell-check": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dictionary", + "edit", + "editor", + "grammar", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f891", + "label": "Spell Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635715, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M272 256h91.36c43.2 0 82-32.2 84.51-75.34a79.82 79.82 0 0 0-25.26-63.07 79.81 79.81 0 0 0 9.06-44.91C427.9 30.57 389.3 0 347 0h-75a16 16 0 0 0-16 16v224a16 16 0 0 0 16 16zm40-200h40a24 24 0 0 1 0 48h-40zm0 96h56a24 24 0 0 1 0 48h-56zM155.12 22.25A32 32 0 0 0 124.64 0H99.36a32 32 0 0 0-30.48 22.25L.59 235.73A16 16 0 0 0 16 256h24.93a16 16 0 0 0 15.42-11.73L68.29 208h87.42l11.94 36.27A16 16 0 0 0 183.07 256H208a16 16 0 0 0 15.42-20.27zM89.37 144L112 75.3l22.63 68.7zm482 132.48l-45.21-45.3a15.88 15.88 0 0 0-22.59 0l-151.5 151.5-55.41-55.5a15.88 15.88 0 0 0-22.59 0l-45.3 45.3a16 16 0 0 0 0 22.59l112 112.21a15.89 15.89 0 0 0 22.6 0l208-208.21a16 16 0 0 0-.02-22.59z" + } + }, + "free": [ + "solid" + ] + }, + "spider": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arachnid", + "bug", + "charlotte", + "crawl", + "eight", + "halloween" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f717", + "label": "Spider", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635716, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M151.17 167.35L177.1 176h4.67l5.22-26.12c.72-3.58 1.8-7.58 3.21-11.79l-20.29-40.58 23.8-71.39c2.79-8.38-1.73-17.44-10.12-20.24L168.42.82c-8.38-2.8-17.45 1.73-20.24 10.12l-25.89 77.68a32.04 32.04 0 0 0 1.73 24.43l27.15 54.3zm422.14 182.03l-52.75-79.12a32.002 32.002 0 0 0-26.62-14.25H416l68.99-24.36a32.03 32.03 0 0 0 16.51-12.61l53.6-80.41c4.9-7.35 2.91-17.29-4.44-22.19l-13.31-8.88c-7.35-4.9-17.29-2.91-22.19 4.44l-50.56 75.83L404.1 208H368l-10.37-51.85C355.44 145.18 340.26 96 288 96c-52.26 0-67.44 49.18-69.63 60.15L208 208h-36.1l-60.49-20.17L60.84 112c-4.9-7.35-14.83-9.34-22.19-4.44l-13.31 8.88c-7.35 4.9-9.34 14.83-4.44 22.19l53.6 80.41a32.03 32.03 0 0 0 16.51 12.61L160 256H82.06a32.02 32.02 0 0 0-26.63 14.25L2.69 349.38c-4.9 7.35-2.92 17.29 4.44 22.19l13.31 8.88c7.35 4.9 17.29 2.91 22.19-4.44l48-72h47.06l-60.83 97.33A31.988 31.988 0 0 0 72 418.3V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-73.11l74.08-118.53c-1.01 14.05-2.08 28.11-2.08 42.21C192 399.64 232.76 448 288 448s96-48.36 96-101.43c0-14.1-1.08-28.16-2.08-42.21L456 422.89V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-77.71c0-6-1.69-11.88-4.86-16.96L438.31 304h47.06l48 72c4.9 7.35 14.84 9.34 22.19 4.44l13.31-8.88c7.36-4.9 9.34-14.83 4.44-22.18zM406.09 97.51l-20.29 40.58c1.41 4.21 2.49 8.21 3.21 11.79l5.22 26.12h4.67l25.93-8.65 27.15-54.3a31.995 31.995 0 0 0 1.73-24.43l-25.89-77.68C425.03 2.56 415.96-1.98 407.58.82l-15.17 5.06c-8.38 2.8-12.91 11.86-10.12 20.24l23.8 71.39z" + } + }, + "free": [ + "solid" + ] + }, + "spinner": { + "changes": [ + "3", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "loading", + "progress" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f110", + "label": "Spinner", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635716, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "splotch": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ink", + "blob", + "blotch", + "glob", + "stain" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bc", + "label": "Splotch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635717, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z" + } + }, + "free": [ + "solid" + ] + }, + "spotify": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1bc", + "label": "Spotify", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861022, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" + } + }, + "free": [ + "brands" + ] + }, + "spray-can": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Paint", + "aerosol", + "design", + "graffiti", + "tag" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bd", + "label": "Spray Can", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635717, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "square": { + "changes": [ + "2", + "5.0.0", + "5.10.1", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "shape" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c8", + "label": "Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635719, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" + }, + "regular": { + "last_modified": 1628088635020, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "square-full": { + "changes": [ + "5.0.5", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f45c", + "label": "Square Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635718, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 512H0V0h512v512z" + } + }, + "free": [ + "solid" + ] + }, + "square-root-alt": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "calculus", + "division", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f698", + "label": "Alternate Square Root", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635718, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M571.31 251.31l-22.62-22.62c-6.25-6.25-16.38-6.25-22.63 0L480 274.75l-46.06-46.06c-6.25-6.25-16.38-6.25-22.63 0l-22.62 22.62c-6.25 6.25-6.25 16.38 0 22.63L434.75 320l-46.06 46.06c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L480 365.25l46.06 46.06c6.25 6.25 16.38 6.25 22.63 0l22.62-22.62c6.25-6.25 6.25-16.38 0-22.63L525.25 320l46.06-46.06c6.25-6.25 6.25-16.38 0-22.63zM552 0H307.65c-14.54 0-27.26 9.8-30.95 23.87l-84.79 322.8-58.41-106.1A32.008 32.008 0 0 0 105.47 224H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h43.62l88.88 163.73C168.99 503.5 186.3 512 204.94 512c17.27 0 44.44-9 54.28-41.48L357.03 96H552c13.25 0 24-10.75 24-24V24c0-13.26-10.75-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "squarespace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5be", + "label": "Squarespace", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861022, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" + } + }, + "free": [ + "brands" + ] + }, + "stack-exchange": { + "changes": [ + "4", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18d", + "label": "Stack Exchange", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861022, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" + } + }, + "free": [ + "brands" + ] + }, + "stack-overflow": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16c", + "label": "Stack Overflow", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722337, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z" + } + }, + "free": [ + "brands" + ] + }, + "stackpath": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f842", + "label": "Stackpath", + "svg": { + "brands": { + "last_modified": 1558987775917, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98zM448 32v448H0V32zM151.3 287.84c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18.56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29zm125.38-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.18h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36zM297.94 325L347 186.78h-31.09L268 325zm106.52-138.22h-31.09L325.46 325h29.94z" + } + }, + "free": [ + "brands" + ] + }, + "stamp": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "certificate", + "imprint", + "rubber", + "seal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bf", + "label": "Stamp", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635720, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "star": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "favorite", + "important", + "night", + "rating", + "score" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f005", + "label": "Star", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635723, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" + }, + "regular": { + "last_modified": 1628088635024, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "star-and-crescent": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "islam", + "muslim", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f699", + "label": "Star and Crescent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635720, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M340.47 466.36c-1.45 0-6.89.46-9.18.46-116.25 0-210.82-94.57-210.82-210.82S215.04 45.18 331.29 45.18c2.32 0 7.7.46 9.18.46 7.13 0 13.33-5.03 14.75-12.07 1.46-7.25-2.55-14.49-9.47-17.09C316.58 5.54 286.39 0 256 0 114.84 0 0 114.84 0 256s114.84 256 256 256c30.23 0 60.28-5.49 89.32-16.32 5.96-2.02 10.28-7.64 10.28-14.26 0-8.09-6.39-15.06-15.13-15.06zm162.99-252.5l-76.38-11.1-34.16-69.21c-1.83-3.7-5.38-5.55-8.93-5.55s-7.1 1.85-8.93 5.55l-34.16 69.21-76.38 11.1c-8.17 1.18-11.43 11.22-5.52 16.99l55.27 53.87-13.05 76.07c-1.11 6.44 4.01 11.66 9.81 11.66 1.53 0 3.11-.36 4.64-1.17L384 335.37l68.31 35.91c1.53.8 3.11 1.17 4.64 1.17 5.8 0 10.92-5.23 9.81-11.66l-13.05-76.07 55.27-53.87c5.91-5.77 2.65-15.81-5.52-16.99z" + } + }, + "free": [ + "solid" + ] + }, + "star-half": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f089", + "label": "star-half", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635721, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z" + }, + "regular": { + "last_modified": 1628088635022, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "star-half-alt": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c0", + "label": "Alternate Star Half", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635721, + "raw": "", + "viewBox": [ + "0", + "0", + "536", + "512" + ], + "width": 536, + "height": 512, + "path": "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z" + } + }, + "free": [ + "solid" + ] + }, + "star-of-david": { + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "jewish", + "judaism", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f69a", + "label": "Star of David", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635721, + "raw": "", + "viewBox": [ + "0", + "0", + "464", + "512" + ], + "width": 464, + "height": 512, + "path": "M405.68 256l53.21-89.39C473.3 142.4 455.48 112 426.88 112H319.96l-55.95-93.98C256.86 6.01 244.43 0 232 0s-24.86 6.01-32.01 18.02L144.04 112H37.11c-28.6 0-46.42 30.4-32.01 54.61L58.32 256 5.1 345.39C-9.31 369.6 8.51 400 37.11 400h106.93l55.95 93.98C207.14 505.99 219.57 512 232 512s24.86-6.01 32.01-18.02L319.96 400h106.93c28.6 0 46.42-30.4 32.01-54.61L405.68 256zm-12.78-88l-19.8 33.26L353.3 168h39.6zm-52.39 88l-52.39 88H175.88l-52.39-88 52.38-88h112.25l52.39 88zM232 73.72L254.79 112h-45.57L232 73.72zM71.1 168h39.6l-19.8 33.26L71.1 168zm0 176l19.8-33.26L110.7 344H71.1zM232 438.28L209.21 400h45.57L232 438.28zM353.29 344l19.8-33.26L392.9 344h-39.61z" + } + }, + "free": [ + "solid" + ] + }, + "star-of-life": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health", + "medical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f621", + "label": "Star of Life", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635722, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z" + } + }, + "free": [ + "solid" + ] + }, + "staylinked": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f5", + "label": "StayLinked", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722337, + "raw": "", + "viewBox": [ + "0", + "0", + "440", + "512" + ], + "width": 440, + "height": 512, + "path": "M382.7 292.5l2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7.7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2z" + } + }, + "free": [ + "brands" + ] + }, + "steam": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b6", + "label": "Steam", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861023, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" + } + }, + "free": [ + "brands" + ] + }, + "steam-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b7", + "label": "Steam Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861022, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" + } + }, + "free": [ + "brands" + ] + }, + "steam-symbol": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f6", + "label": "Steam Symbol", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861022, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" + } + }, + "free": [ + "brands" + ] + }, + "step-backward": { + "changes": [ + "1", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f048", + "label": "step-backward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635725, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" + } + }, + "free": [ + "solid" + ] + }, + "step-forward": { + "changes": [ + "1", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f051", + "label": "step-forward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635726, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" + } + }, + "free": [ + "solid" + ] + }, + "stethoscope": { + "changes": [ + "3", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "diagnosis", + "doctor", + "general practitioner", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f1", + "label": "Stethoscope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635726, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "sticker-mule": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f7", + "label": "Sticker Mule", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699931, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M561.7 199.6c-1.3.3.3 0 0 0zm-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3.5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8.4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5.5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5.5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4.5 1 1 2 1.5 3.5.5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5.5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5.3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6.5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3.8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9z" + } + }, + "free": [ + "brands" + ] + }, + "sticky-note": { + "changes": [ + "4.4", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "message", + "note", + "paper", + "reminder", + "sticker" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f249", + "label": "Sticky Note", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635726, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z" + }, + "regular": { + "last_modified": 1628088635027, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "stop": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "square" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04d", + "label": "stop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635727, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "stop-circle": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "circle", + "square" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f28d", + "label": "Stop Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635727, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" + }, + "regular": { + "last_modified": 1628088635028, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "stopwatch": { + "changes": [ + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "clock", + "reminder", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f2", + "label": "Stopwatch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635728, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" + } + }, + "free": [ + "solid" + ] + }, + "stopwatch-20": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ABCs", + "countdown", + "covid-19", + "happy birthday", + "i will survive", + "reminder", + "seconds", + "time", + "timer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06f", + "label": "Stopwatch 20", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635728, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M398.5,190.91l.59-.61,26.59-26.58a16,16,0,0,0,0-22.63L403,118.41a16,16,0,0,0-22.63,0l-24.68,24.68A206.68,206.68,0,0,0,256,98.5V64h32a16,16,0,0,0,16-16V16A16,16,0,0,0,288,0H160a16.05,16.05,0,0,0-16,16V48a16.05,16.05,0,0,0,16,16h32V98.5A207.92,207.92,0,0,0,16.09,297.57C12.64,411.5,106.76,510.22,220.72,512,337.13,513.77,432,420,432,304A206,206,0,0,0,398.5,190.91ZM204.37,377.55a8.2,8.2,0,0,1,8.32,8.07v22.31a8.2,8.2,0,0,1-8.32,8.07H121.52a16.46,16.46,0,0,1-16.61-17.62c2.78-35.22,14.67-57.41,38.45-91.37,20.42-29.19,27.1-37.32,27.1-62.34,0-16.92-1.79-24.27-12.21-24.27-9.39,0-12.69,7.4-12.69,22.68v5.23a8.2,8.2,0,0,1-8.33,8.07h-24.9a8.2,8.2,0,0,1-8.33-8.07v-4.07c0-27.3,8.48-60.24,56.43-60.24,43,0,55.57,25.85,55.57,61,0,35.58-12.44,51.21-34.35,81.31-11.56,15-24.61,35.57-26.41,51.2ZM344,352.32c0,35.16-12.3,63.68-57.23,63.68C243.19,416,232,386.48,232,352.55V247.22c0-40.73,19.58-63.22,56.2-63.22C325,184,344,206.64,344,245.3ZM287.87,221.73c-9.41,0-13.23,7.5-13.23,20V357.68c0,13.11,3.59,20.59,13.23,20.59s13-8,13-21.27V241.06C300.89,229.79,297.88,221.73,287.87,221.73Z" + } + }, + "free": [ + "solid" + ] + }, + "store": { + "changes": [ + "5.0.13", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "purchase", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54e", + "label": "Store", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635729, + "raw": "", + "viewBox": [ + "0", + "0", + "616", + "512" + ], + "width": 616, + "height": 512, + "path": "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z" + } + }, + "free": [ + "solid" + ] + }, + "store-alt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "purchase", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54f", + "label": "Alternate Store", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635729, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z" + } + }, + "free": [ + "solid" + ] + }, + "store-alt-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e070", + "label": "Alternate Store Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635728, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M17.89,123.62,5.51,142.2c-14.2,21.3,1,49.8,26.59,49.8h74.26ZM576,413.42V224H512V364L384,265V224H330.92l-41.4-32H608c25.5,0,40.7-28.5,26.59-49.8l-85.29-128A32.18,32.18,0,0,0,522.6,0H117.42A31.87,31.87,0,0,0,90.81,14.2l-10.66,16L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.81l19.64-25.26a16,16,0,0,0-2.81-22.45ZM320,384H128V224H64V480a32,32,0,0,0,32,32H352a32,32,0,0,0,32-32V406.59l-64-49.47Z" + } + }, + "free": [ + "solid" + ] + }, + "store-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e071", + "label": "Store Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635729, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M121.51,384V284.2a119.43,119.43,0,0,1-28,3.8,123.46,123.46,0,0,1-17.1-1.2,114.88,114.88,0,0,1-15.58-3.6V480c0,17.7,13.59,32,30.4,32H505.75L348.42,384Zm-28-128.09c25.1,0,47.29-10.72,64-27.24L24,120.05c-30.52,53.39-2.45,126.53,56.49,135A95.68,95.68,0,0,0,93.48,255.91ZM602.13,458.09,547.2,413.41V283.2a93.5,93.5,0,0,1-15.57,3.6,127.31,127.31,0,0,1-17.29,1.2,114.89,114.89,0,0,1-28-3.8v79.68L348.52,251.77a88.06,88.06,0,0,0,25.41,4.14c28.11,0,53-13,70.11-33.11,17.19,20.11,42.08,33.11,70.11,33.11a94.31,94.31,0,0,0,13-.91c59.66-8.41,88-82.8,56.06-136.4L521.55,15A30.1,30.1,0,0,0,495.81,0H112A30.11,30.11,0,0,0,86.27,15L76.88,30.78,43.19,3.38A14.68,14.68,0,0,0,21.86,6.19L3.2,31.45A16.58,16.58,0,0,0,5.87,53.91L564.81,508.63a14.69,14.69,0,0,0,21.33-2.82l18.66-25.26A16.58,16.58,0,0,0,602.13,458.09Z" + } + }, + "free": [ + "solid" + ] + }, + "strava": { + "changes": [ + "5.0.0", + "5.0.1", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f428", + "label": "Strava", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775918, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M158.4 0L7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z" + } + }, + "free": [ + "brands" + ] + }, + "stream": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "flow", + "list", + "timeline" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f550", + "label": "Stream", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635729, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "street-view": { + "changes": [ + "4.3", + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "location", + "map", + "navigation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21d", + "label": "Street View", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635730, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M367.9 329.76c-4.62 5.3-9.78 10.1-15.9 13.65v22.94c66.52 9.34 112 28.05 112 49.65 0 30.93-93.12 56-208 56S48 446.93 48 416c0-21.6 45.48-40.3 112-49.65v-22.94c-6.12-3.55-11.28-8.35-15.9-13.65C58.87 345.34 0 378.05 0 416c0 53.02 114.62 96 256 96s256-42.98 256-96c0-37.95-58.87-70.66-144.1-86.24zM256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-64 192v96c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-96c17.67 0 32-14.33 32-32v-96c0-26.51-21.49-48-48-48h-11.8c-11.07 5.03-23.26 8-36.2 8s-25.13-2.97-36.2-8H208c-26.51 0-48 21.49-48 48v96c0 17.67 14.33 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "strikethrough": { + "changes": [ + "2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cc", + "label": "Strikethrough", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635731, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 224H293.9l-87.17-26.83A43.55 43.55 0 0 1 219.55 112h66.79A49.89 49.89 0 0 1 331 139.58a16 16 0 0 0 21.46 7.15l42.94-21.47a16 16 0 0 0 7.16-21.46l-.53-1A128 128 0 0 0 287.51 32h-68a123.68 123.68 0 0 0-123 135.64c2 20.89 10.1 39.83 21.78 56.36H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-180.24 96A43 43 0 0 1 336 356.45 43.59 43.59 0 0 1 292.45 400h-66.79A49.89 49.89 0 0 1 181 372.42a16 16 0 0 0-21.46-7.15l-42.94 21.47a16 16 0 0 0-7.16 21.46l.53 1A128 128 0 0 0 224.49 480h68a123.68 123.68 0 0 0 123-135.64 114.25 114.25 0 0 0-5.34-24.36z" + } + }, + "free": [ + "solid" + ] + }, + "stripe": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f429", + "label": "Stripe", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722338, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M165 144.7l-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6l-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1zm92.3-72.3l-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4zM640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9zm-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7zm-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8zm-126.7 33.7h44.6V183.2h-44.6z" + } + }, + "free": [ + "brands" + ] + }, + "stripe-s": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42a", + "label": "Stripe S", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775919, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.09 396.09 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9z" + } + }, + "free": [ + "brands" + ] + }, + "stroopwafel": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "caramel", + "cookie", + "dessert", + "sweets", + "waffle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f551", + "label": "Stroopwafel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635731, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z" + } + }, + "free": [ + "solid" + ] + }, + "studiovinari": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f8", + "label": "Studio Vinari", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861023, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" + } + }, + "free": [ + "brands" + ] + }, + "stumbleupon": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a4", + "label": "StumbleUpon Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861023, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" + } + }, + "free": [ + "brands" + ] + }, + "stumbleupon-circle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a3", + "label": "StumbleUpon Circle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861023, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" + } + }, + "free": [ + "brands" + ] + }, + "subscript": { + "changes": [ + "3.1", + "5.0.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12c", + "label": "subscript", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635731, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 448h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 352h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "subway": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "railway", + "train", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f239", + "label": "Subway", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635731, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "suitcase": { + "changes": [ + "3", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f2", + "label": "Suitcase", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635732, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z" + } + }, + "free": [ + "solid" + ] + }, + "suitcase-rolling": { + "changes": [ + "5.1.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c1", + "label": "Suitcase Rolling", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635732, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z" + } + }, + "free": [ + "solid" + ] + }, + "sun": { + "changes": [ + "3.2", + "5.0.0", + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brighten", + "contrast", + "day", + "lighter", + "sol", + "solar", + "star", + "weather" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f185", + "label": "Sun", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635734, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z" + }, + "regular": { + "last_modified": 1628088635035, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M494.2 221.9l-59.8-40.5 13.7-71c2.6-13.2-1.6-26.8-11.1-36.4-9.6-9.5-23.2-13.7-36.2-11.1l-70.9 13.7-40.4-59.9c-15.1-22.3-51.9-22.3-67 0l-40.4 59.9-70.8-13.7C98 60.4 84.5 64.5 75 74.1c-9.5 9.6-13.7 23.1-11.1 36.3l13.7 71-59.8 40.5C6.6 229.5 0 242 0 255.5s6.7 26 17.8 33.5l59.8 40.5-13.7 71c-2.6 13.2 1.6 26.8 11.1 36.3 9.5 9.5 22.9 13.7 36.3 11.1l70.8-13.7 40.4 59.9C230 505.3 242.6 512 256 512s26-6.7 33.5-17.8l40.4-59.9 70.9 13.7c13.4 2.7 26.8-1.6 36.3-11.1 9.5-9.5 13.6-23.1 11.1-36.3l-13.7-71 59.8-40.5c11.1-7.5 17.8-20.1 17.8-33.5-.1-13.6-6.7-26.1-17.9-33.7zm-112.9 85.6l17.6 91.2-91-17.6L256 458l-51.9-77-90.9 17.6 17.6-91.2-76.8-52 76.8-52-17.6-91.2 91 17.6L256 53l51.9 76.9 91-17.6-17.6 91.1 76.8 52-76.8 52.1zM256 152c-57.3 0-104 46.7-104 104s46.7 104 104 104 104-46.7 104-104-46.7-104-104-104zm0 160c-30.9 0-56-25.1-56-56s25.1-56 56-56 56 25.1 56 56-25.1 56-56 56z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "superpowers": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2dd", + "label": "Superpowers", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861023, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" + } + }, + "free": [ + "brands" + ] + }, + "superscript": { + "changes": [ + "3.1", + "5.0.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "exponential", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12b", + "label": "superscript", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635735, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 160h-16V16a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 64h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "supple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f9", + "label": "Supple", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861024, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" + } + }, + "free": [ + "brands" + ] + }, + "surprise": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "shocked" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c2", + "label": "Hushed Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635735, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1628088635036, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "suse": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7d6", + "label": "Suse", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775920, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M471.08 102.66s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.12 307 7 335.06a111 111 0 0 0 16.5 35.7c17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2.3 27.8 24.3 42.6 41.5 42.6a49 49 0 0 0 15.8-2.7c6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9.5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14V316c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5.4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3.5-76.2-25.4-81.6-28.2-.3-.4.1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7.8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3.1-.1-.9-.3-.9.7zm60.4 72.8a37.54 37.54 0 0 1 38.9-36.3c33.4 1.2 48.8 42.3 24.4 65.2-24.2 22.7-64.4 4.6-63.3-28.9zm38.6-25.3a26.27 26.27 0 1 0 25.4 27.2 26.19 26.19 0 0 0-25.4-27.2zm4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.64 0 15.64z" + } + }, + "free": [ + "brands" + ] + }, + "swatchbook": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "Pantone", + "color", + "design", + "hue", + "palette" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c3", + "label": "Swatchbook", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635736, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M434.66,167.71h0L344.5,77.36a31.83,31.83,0,0,0-45-.07h0l-.07.07L224,152.88V424L434.66,212.9A32,32,0,0,0,434.66,167.71ZM480,320H373.09L186.68,506.51c-2.06,2.07-4.5,3.58-6.68,5.49H480a32,32,0,0,0,32-32V352A32,32,0,0,0,480,320ZM192,32A32,32,0,0,0,160,0H32A32,32,0,0,0,0,32V416a96,96,0,0,0,192,0ZM96,440a24,24,0,1,1,24-24A24,24,0,0,1,96,440Zm32-184H64V192h64Zm0-128H64V64h64Z" + } + }, + "free": [ + "solid" + ] + }, + "swift": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8e1", + "label": "Swift", + "svg": { + "brands": { + "last_modified": 1568817883852, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 156.09c0-4.51-.08-9-.2-13.52a196.31 196.31 0 0 0-2.58-29.42 99.62 99.62 0 0 0-9.22-28A94.08 94.08 0 0 0 394.84 44a99.17 99.17 0 0 0-28-9.22 195 195 0 0 0-29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.14c-4.51 0-9 .08-13.52.2-2.45.07-4.91.15-7.37.27a171.68 171.68 0 0 0-22.06 2.32 103.06 103.06 0 0 0-21.21 6.1q-3.46 1.45-6.81 3.12a94.66 94.66 0 0 0-18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.86 93.86 0 0 0 12 85.17a99.45 99.45 0 0 0-9.22 28 196.31 196.31 0 0 0-2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.83c0 4.51.08 9 .21 13.51a196.08 196.08 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.31 94.31 0 0 0 53.17 468a99.47 99.47 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5.12 9 .17 13.52.2H323.91c4.51 0 9-.08 13.52-.2a196.59 196.59 0 0 0 29.44-2.59 99.57 99.57 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.84a99.3 99.3 0 0 0 9.22-28 194.79 194.79 0 0 0 2.59-29.42c.12-4.5.17-9 .2-13.51V172.14c-.01-5.35-.01-10.7-.01-16.05zm-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42.25c-39.5 21-92.53 22.54-145.85-.38A234.64 234.64 0 0 1 45 290.12a230.63 230.63 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.09-147.22a197.09 197.09 0 0 1-18.78-25.9c43.7 40 112.7 90.22 137.48 104.12-52.57-55.49-98.89-123.94-96.72-121.74 82.79 83.42 159.18 130.59 159.18 130.59 2.88 1.58 5 2.85 6.73 4a127.44 127.44 0 0 0 4.16-12.47c13.22-48.33-1.66-103.58-35.31-149.2C329.61 141.75 375 229.34 356.4 303.42c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z" + } + }, + "free": [ + "brands" + ] + }, + "swimmer": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "athlete", + "head", + "man", + "olympics", + "person", + "pool", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c4", + "label": "Swimmer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635736, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z" + } + }, + "free": [ + "solid" + ] + }, + "swimming-pool": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ladder", + "recreation", + "swim", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c5", + "label": "Swimming Pool", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635736, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z" + } + }, + "free": [ + "solid" + ] + }, + "symfony": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83d", + "label": "Symfony", + "svg": { + "brands": { + "last_modified": 1558987775920, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.85 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.72-29 34.46-58.4 39.82-71.58 40.26-24.65.85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71.11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.35 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53 25.16-.81 44.19 10.59 44.83 28.65.25 7.69-4.17 22.59-19.52 23.13z" + } + }, + "free": [ + "brands" + ] + }, + "synagogue": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "jewish", + "judaism", + "religion", + "star of david", + "temple" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f69b", + "label": "Synagogue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635738, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M70 196.51L6.67 268.29A26.643 26.643 0 0 0 0 285.93V512h128V239.58l-38-43.07c-5.31-6.01-14.69-6.01-20 0zm563.33 71.78L570 196.51c-5.31-6.02-14.69-6.02-20 0l-38 43.07V512h128V285.93c0-6.5-2.37-12.77-6.67-17.64zM339.99 7.01c-11.69-9.35-28.29-9.35-39.98 0l-128 102.4A32.005 32.005 0 0 0 160 134.4V512h96v-92.57c0-31.88 21.78-61.43 53.25-66.55C349.34 346.35 384 377.13 384 416v96h96V134.4c0-9.72-4.42-18.92-12.01-24.99l-128-102.4zm52.07 215.55c1.98 3.15-.29 7.24-4 7.24h-38.94L324 269.79c-1.85 2.95-6.15 2.95-8 0l-25.12-39.98h-38.94c-3.72 0-5.98-4.09-4-7.24l19.2-30.56-19.2-30.56c-1.98-3.15.29-7.24 4-7.24h38.94l25.12-40c1.85-2.95 6.15-2.95 8 0l25.12 39.98h38.95c3.71 0 5.98 4.09 4 7.24L372.87 192l19.19 30.56z" + } + }, + "free": [ + "solid" + ] + }, + "sync": { + "changes": [ + "1", + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f021", + "label": "Sync", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635739, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z" + } + }, + "free": [ + "solid" + ] + }, + "sync-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f1", + "label": "Alternate Sync", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635738, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "syringe": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "immunizations", + "medical", + "needle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48e", + "label": "Syringe", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635739, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z" + } + }, + "free": [ + "solid" + ] + }, + "table": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "excel", + "spreadsheet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ce", + "label": "table", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635740, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" + } + }, + "free": [ + "solid" + ] + }, + "table-tennis": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "paddle", + "ping pong" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f45d", + "label": "Table Tennis", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635739, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "tablet": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10a", + "label": "tablet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635741, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "tablet-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3fa", + "label": "Alternate Tablet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635740, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z" + } + }, + "free": [ + "solid" + ] + }, + "tablets": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f490", + "label": "Tablets", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635741, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z" + } + }, + "free": [ + "solid" + ] + }, + "tachometer-alt": { + "changes": [ + "5.0.0", + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3fd", + "label": "Alternate Tachometer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635743, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 32C128.94 32 0 160.94 0 320c0 52.8 14.25 102.26 39.06 144.8 5.61 9.62 16.3 15.2 27.44 15.2h443c11.14 0 21.83-5.58 27.44-15.2C561.75 422.26 576 372.8 576 320c0-159.06-128.94-288-288-288zm0 64c14.71 0 26.58 10.13 30.32 23.65-1.11 2.26-2.64 4.23-3.45 6.67l-9.22 27.67c-5.13 3.49-10.97 6.01-17.64 6.01-17.67 0-32-14.33-32-32S270.33 96 288 96zM96 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm48-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm246.77-72.41l-61.33 184C343.13 347.33 352 364.54 352 384c0 11.72-3.38 22.55-8.88 32H232.88c-5.5-9.45-8.88-20.28-8.88-32 0-33.94 26.5-61.43 59.9-63.59l61.34-184.01c4.17-12.56 17.73-19.45 30.36-15.17 12.57 4.19 19.35 17.79 15.17 30.36zm14.66 57.2l15.52-46.55c3.47-1.29 7.13-2.23 11.05-2.23 17.67 0 32 14.33 32 32s-14.33 32-32 32c-11.38-.01-20.89-6.28-26.57-15.22zM480 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "tag": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "label", + "price", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02b", + "label": "tag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635745, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "tags": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "label", + "price", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02c", + "label": "tags", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635745, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z" + } + }, + "free": [ + "solid" + ] + }, + "tape": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "package", + "sticky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4db", + "label": "Tape", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635746, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z" + } + }, + "free": [ + "solid" + ] + }, + "tasks": { + "changes": [ + "2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "progress", + "project management", + "settings", + "to do" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ae", + "label": "Tasks", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635747, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "taxi": { + "changes": [ + "4.1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cab", + "cabbie", + "car", + "car service", + "lyft", + "machine", + "transportation", + "travel", + "uber", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ba", + "label": "Taxi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635747, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "teamspeak": { + "changes": [ + "5.0.11", + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f9", + "label": "TeamSpeak", + "voted": true, + "svg": { + "brands": { + "last_modified": 1558987775921, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M244.2 346.79c2.4-12.3-12-30-32.4-48.7-20.9-19.2-48.2-39.1-63.4-46.6-21.7-12-41.7-1.8-46.3 22.7-5 26.2 0 51.4 14.5 73.9 10.2 15.5 25.4 22.7 43.4 24 11.6.6 52.5 2.2 61.7-1 11.9-4.3 20.1-11.8 22.5-24.3zm205 20.8a5.22 5.22 0 0 0-8.3 2.4c-8 25.4-44.7 112.5-172.1 121.5-149.7 10.5 80.3 43.6 145.4-6.4 22.7-17.4 47.6-35 46.6-85.4-.4-10.1-4.9-26.69-11.6-32.1zm62-122.4c-.3-18.9-8.6-33.4-26-42.2-2.9-1.3-5-2.7-5.9-6.4A222.64 222.64 0 0 0 438.9 103c-1.1-1.5-3.5-3.2-2.2-5 8.5-11.5-.3-18-7-24.4Q321.4-31.11 177.4 13.09c-40.1 12.3-73.9 35.6-102 67.4-4 4.3-6.7 9.1-3 14.5 3 4 1.3 6.2-1 9.3C51.6 132 38.2 162.59 32.1 196c-.7 4.3-2.9 6-6.4 7.8-14.2 7-22.5 18.5-24.9 34L0 264.29v20.9c0 30.8 21 50.4 51.8 49 7.7-.3 11.7-4.3 12-11.5 2-77.5-2.4-95.4 3.7-125.8C92.1 72.39 234.3 5 345.3 65.39 411.4 102 445.7 159 447.6 234.79c.8 28.2 0 56.5 0 84.6 0 7 2.2 12.5 9.4 14.2 24.1 5 49.2-12 53.2-36.7 2.9-17.1 1-34.5 1-51.7zm-159.6 131.5c36.5 2.8 59.3-28.5 58.4-60.5-2.1-45.2-66.2-16.5-87.8-8-73.2 28.1-45 54.9-22.2 60.8z" + } + }, + "free": [ + "brands" + ] + }, + "teeth": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "dental", + "dentist", + "gums", + "mouth", + "smile", + "tooth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f62e", + "label": "Teeth", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635748, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96zM160 368c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm128 128c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64z" + } + }, + "free": [ + "solid" + ] + }, + "teeth-open": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dental", + "dentist", + "gums bite", + "mouth", + "smile", + "tooth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f62f", + "label": "Teeth Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635747, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 0H96C42.98 0 0 42.98 0 96v64c0 35.35 28.66 64 64 64h512c35.34 0 64-28.65 64-64V96c0-53.02-42.98-96-96-96zM160 176c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm128 0c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm0 144H64c-35.34 0-64 28.65-64 64v32c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96v-32c0-35.35-28.66-64-64-64zm-416 80c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32zm144-8c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm144 0c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm128 8c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32z" + } + }, + "free": [ + "solid" + ] + }, + "telegram": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c6", + "label": "Telegram", + "voted": false, + "svg": { + "brands": { + "last_modified": 1628088633726, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z" + } + }, + "free": [ + "brands" + ] + }, + "telegram-plane": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3fe", + "label": "Telegram Plane", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861024, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" + } + }, + "free": [ + "brands" + ] + }, + "temperature-high": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "covid-19", + "mercury", + "summer", + "thermometer", + "warm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f769", + "label": "High Temperature", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635749, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-low": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "cool", + "covid-19", + "mercury", + "thermometer", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f76b", + "label": "Low Temperature", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635749, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V304c0-8.8-7.2-16-16-16s-16 7.2-16 16v18.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z" + } + }, + "free": [ + "solid" + ] + }, + "tencent-weibo": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d5", + "label": "Tencent Weibo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861024, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" + } + }, + "free": [ + "brands" + ] + }, + "tenge": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "kazakhstan", + "money", + "price" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d7", + "label": "Tenge", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635750, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 160H12c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h140v228c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V240h140c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12zm0-128H12C5.4 32 0 37.4 0 44v56c0 6.6 5.4 12 12 12h360c6.6 0 12-5.4 12-12V44c0-6.6-5.4-12-12-12z" + } + }, + "free": [ + "solid" + ] + }, + "terminal": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code", + "command", + "console", + "development", + "prompt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f120", + "label": "Terminal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635750, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "text-height": { + "changes": [ + "1", + "5.0.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f034", + "label": "text-height", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635751, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M304 32H16A16 16 0 0 0 0 48v96a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32h56v304H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-40V112h56v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm256 336h-48V144h48c14.31 0 21.33-17.31 11.31-27.31l-80-80a16 16 0 0 0-22.62 0l-80 80C379.36 126 384.36 144 400 144h48v224h-48c-14.31 0-21.32 17.31-11.31 27.31l80 80a16 16 0 0 0 22.62 0l80-80C580.64 386 575.64 368 560 368z" + } + }, + "free": [ + "solid" + ] + }, + "text-width": { + "changes": [ + "1", + "5.0.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f035", + "label": "Text Width", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635751, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 32H16A16 16 0 0 0 0 48v80a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h120v112h-24a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-24V112h120v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm-68.69 260.69C354 283.36 336 288.36 336 304v48H112v-48c0-14.31-17.31-21.32-27.31-11.31l-80 80a16 16 0 0 0 0 22.62l80 80C94 484.64 112 479.64 112 464v-48h224v48c0 14.31 17.31 21.33 27.31 11.31l80-80a16 16 0 0 0 0-22.62z" + } + }, + "free": [ + "solid" + ] + }, + "th": { + "changes": [ + "1", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00a", + "label": "th", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635752, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "th-large": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f009", + "label": "th-large", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635752, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "th-list": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00b", + "label": "th-list", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635752, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "the-red-yeti": { + "changes": [ + "5.3.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f69d", + "label": "The Red Yeti", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775921, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488.23 241.7l20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0-25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5.5a239.36 239.36 0 0 0-68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0-.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.26 194.26 0 0 0-46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.18 200.18 0 0 0-27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7.7 3.4 1.2 5.2 0 25.5.4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A181.84 181.84 0 0 0 495 255a44.74 44.74 0 0 0-6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242.44 242.44 0 0 1-27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.38 56.38 0 0 1-1.7-15.2c5.4.5 8.8 3.4 9.3 10.1.5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8.9-.7 14.8h-2.5a62.32 62.32 0 0 0-8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5zm-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5.5 20.9 1.2a52.35 52.35 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.89 42.89 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a234.68 234.68 0 0 0-6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1.5c-11.8 13.5-27.8 21.9-48.5 24.8a201.26 201.26 0 0 1-23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0-14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7.5 1.2c2 .2 3.9.5 6.2.7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4.5 13 1 19.4 1.2 6.4 0 8.4.5 5.4 1.2a189.6 189.6 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141.13 141.13 0 0 1-3 28.3 209.91 209.91 0 0 1-16 46l2.5.5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2.2-.2.2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.27-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3.5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6zm276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.57 262.57 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2.7 89.5zm115.3-214.4l-2.5.5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.82 214.82 0 0 1-93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2.4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7.5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254.21 254.21 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3l-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.22 50.22 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8zm3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.57 39.57 0 0 0-14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2.5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5.5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9zm-45-5.5c1.6.3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5.5.5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0-.5-1.7 14.21 14.21 0 0 0-13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.61 99.61 0 0 0-2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6zm18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.14 72.14 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.21 39.21 0 0 1-11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26zm42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9.5.5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.47 83.47 0 0 0 1.7 33.7c.1.5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2.5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1.5c-5.9 1.2-12.3 4.2-19.4 8.4z" + } + }, + "free": [ + "brands" + ] + }, + "theater-masks": { + "changes": [ + "5.2.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "comedy", + "perform", + "theatre", + "tragedy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f630", + "label": "Theater Masks", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635752, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M206.86 245.15c-35.88 10.45-59.95 41.2-57.53 74.1 11.4-12.72 28.81-23.7 49.9-30.92l7.63-43.18zM95.81 295L64.08 115.49c-.29-1.62.28-2.62.24-2.65 57.76-32.06 123.12-49.01 189.01-49.01 1.61 0 3.23.17 4.85.19 13.95-13.47 31.73-22.83 51.59-26 18.89-3.02 38.05-4.55 57.18-5.32-9.99-13.95-24.48-24.23-41.77-27C301.27 1.89 277.24 0 253.32 0 176.66 0 101.02 19.42 33.2 57.06 9.03 70.48-3.92 98.48 1.05 126.58l31.73 179.51c14.23 80.52 136.33 142.08 204.45 142.08 3.59 0 6.75-.46 10.01-.8-13.52-17.08-28.94-40.48-39.5-67.58-47.61-12.98-106.06-51.62-111.93-84.79zm97.55-137.46c-.73-4.12-2.23-7.87-4.07-11.4-8.25 8.91-20.67 15.75-35.32 18.32-14.65 2.58-28.67.4-39.48-5.17-.52 3.94-.64 7.98.09 12.1 3.84 21.7 24.58 36.19 46.34 32.37 21.75-3.82 36.28-24.52 32.44-46.22zM606.8 120.9c-88.98-49.38-191.43-67.41-291.98-51.35-27.31 4.36-49.08 26.26-54.04 54.36l-31.73 179.51c-15.39 87.05 95.28 196.27 158.31 207.35 63.03 11.09 204.47-53.79 219.86-140.84l31.73-179.51c4.97-28.11-7.98-56.11-32.15-69.52zm-273.24 96.8c3.84-21.7 24.58-36.19 46.34-32.36 21.76 3.83 36.28 24.52 32.45 46.22-.73 4.12-2.23 7.87-4.07 11.4-8.25-8.91-20.67-15.75-35.32-18.32-14.65-2.58-28.67-.4-39.48 5.17-.53-3.95-.65-7.99.08-12.11zm70.47 198.76c-55.68-9.79-93.52-59.27-89.04-112.9 20.6 25.54 56.21 46.17 99.49 53.78 43.28 7.61 83.82.37 111.93-16.6-14.18 51.94-66.71 85.51-122.38 75.72zm130.3-151.34c-8.25-8.91-20.68-15.75-35.33-18.32-14.65-2.58-28.67-.4-39.48 5.17-.52-3.94-.64-7.98.09-12.1 3.84-21.7 24.58-36.19 46.34-32.37 21.75 3.83 36.28 24.52 32.45 46.22-.73 4.13-2.23 7.88-4.07 11.4z" + } + }, + "free": [ + "solid" + ] + }, + "themeco": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5c6", + "label": "Themeco", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775922, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.85c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.81 503.74c-9.93 5.66-26 5.57-35.85-.21L17.86 395.12C8 389.34 0 375.38 0 364V146.71c0-11.44 8-25.36 17.91-31.08zm-77.4 199.83c-15.94 0-31.89.14-47.83.14v101.45H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74zm140.14 100.29l-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.59h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.65-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8zm0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86z" + } + }, + "free": [ + "brands" + ] + }, + "themeisle": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b2", + "label": "ThemeIsle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861025, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" + } + }, + "free": [ + "brands" + ] + }, + "thermometer": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f491", + "label": "Thermometer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635754, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z" + } + }, + "free": [ + "solid" + ] + }, + "thermometer-empty": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cb", + "label": "Thermometer Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635753, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + }, + "free": [ + "solid" + ] + }, + "thermometer-full": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fever", + "hot", + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c7", + "label": "Thermometer Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635753, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z" + } + }, + "free": [ + "solid" + ] + }, + "thermometer-half": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c9", + "label": "Thermometer 1/2 Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635753, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + }, + "free": [ + "solid" + ] + }, + "thermometer-quarter": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ca", + "label": "Thermometer 1/4 Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635753, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + }, + "free": [ + "solid" + ] + }, + "thermometer-three-quarters": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c8", + "label": "Thermometer 3/4 Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635753, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + }, + "free": [ + "solid" + ] + }, + "think-peaks": { + "changes": [ + "5.4.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f731", + "label": "Think Peaks", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775923, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M465.4 409.4l87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5.1-235.8-404.6z" + } + }, + "free": [ + "brands" + ] + }, + "thumbs-down": { + "changes": [ + "3.2", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "disagree", + "disapprove", + "dislike", + "hand", + "social", + "thumbs-o-down" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f165", + "label": "thumbs-down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635754, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z" + }, + "regular": { + "last_modified": 1628088635052, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "thumbs-up": { + "changes": [ + "3.2", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "agree", + "approve", + "favorite", + "hand", + "like", + "ok", + "okay", + "social", + "success", + "thumbs-o-up", + "yes", + "you got it dude" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f164", + "label": "thumbs-up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635755, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z" + }, + "regular": { + "last_modified": 1628088635052, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "thumbtack": { + "changes": [ + "1", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "coordinates", + "location", + "marker", + "pin", + "thumb-tack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f08d", + "label": "Thumbtack", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635755, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z" + } + }, + "free": [ + "solid" + ] + }, + "ticket-alt": { + "changes": [ + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "movie", + "pass", + "support", + "ticket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ff", + "label": "Alternate Ticket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635756, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z" + } + }, + "free": [ + "solid" + ] + }, + "tiktok": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07b", + "label": "TikTok", + "voted": true, + "svg": { + "brands": { + "last_modified": 1599860539200, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" + } + }, + "free": [ + "brands" + ] + }, + "times": { + "changes": [ + "1", + "5.0.0", + "5.0.13", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "error", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00d", + "label": "Times", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635757, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" + } + }, + "free": [ + "solid" + ] + }, + "times-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f057", + "label": "Times Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635756, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" + }, + "regular": { + "last_modified": 1628088635229, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "tint": { + "changes": [ + "1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "color", + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f043", + "label": "tint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635757, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "tint-slash": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "color", + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c7", + "label": "Tint Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635757, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z" + } + }, + "free": [ + "solid" + ] + }, + "tired": { + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "emoticon", + "face", + "grumpy", + "upset" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c8", + "label": "Tired Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635759, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z" + }, + "regular": { + "last_modified": 1628088635235, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "toggle-off": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f204", + "label": "Toggle Off", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635759, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z" + } + }, + "free": [ + "solid" + ] + }, + "toggle-on": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f205", + "label": "Toggle On", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635759, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z" + } + }, + "free": [ + "solid" + ] + }, + "toilet": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "flush", + "john", + "loo", + "pee", + "plumbing", + "poop", + "porcelain", + "potty", + "restroom", + "throne", + "washroom", + "waste", + "wc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d8", + "label": "Toilet", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635760, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 48c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v16c0 8.8 7.2 16 16 16h16v156.7C11.8 214.8 0 226.9 0 240c0 67.2 34.6 126.2 86.8 160.5l-21.4 70.2C59.1 491.2 74.5 512 96 512h192c21.5 0 36.9-20.8 30.6-41.3l-21.4-70.2C349.4 366.2 384 307.2 384 240c0-13.1-11.8-25.2-32-35.3V48h16zM80 72c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H88c-4.4 0-8-3.6-8-8V72zm112 200c-77.1 0-139.6-14.3-139.6-32s62.5-32 139.6-32 139.6 14.3 139.6 32-62.5 32-139.6 32z" + } + }, + "free": [ + "solid" + ] + }, + "toilet-paper": { + "changes": [ + "5.4.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "prank", + "restroom", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f71e", + "label": "Toilet Paper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635760, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M128 0C74.98 0 32 85.96 32 192v172.07c0 41.12-9.8 62.77-31.17 126.87C-2.62 501.3 5.09 512 16.01 512h280.92c13.77 0 26-8.81 30.36-21.88 12.83-38.48 24.71-72.4 24.71-126.05V192c0-83.6 23.67-153.52 60.44-192H128zM96 224c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zM480 0c-53.02 0-96 85.96-96 192s42.98 192 96 192 96-85.96 96-192S533.02 0 480 0zm0 256c-17.67 0-32-28.65-32-64s14.33-64 32-64 32 28.65 32 64-14.33 64-32 64z" + } + }, + "free": [ + "solid" + ] + }, + "toilet-paper-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "leaves", + "prank", + "restroom", + "roll", + "trouble", + "ut oh" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e072", + "label": "Toilet Paper Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635760, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M64,192V364.13c0,41.12-9.75,62.75-31.12,126.87A16,16,0,0,0,48,512H328.86a31.87,31.87,0,0,0,30.38-21.87c9.31-27.83,18-53.35,22.18-85.55l-316-244.25C64.53,170.66,64,181.19,64,192ZM633.82,458.09l-102-78.81C575.28,360.91,608,284.32,608,192,608,86,565,0,512,0s-96,86-96,192c0,42,7,80.4,18.43,112L384,265V192c0-83.62,23.63-153.5,60.5-192H160c-23.33,0-44.63,16.83-61.26,44.53L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09ZM512,256c-17.63,0-32-28.62-32-64s14.37-64,32-64,32,28.63,32,64S529.62,256,512,256Z" + } + }, + "free": [ + "solid" + ] + }, + "toolbox": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "container", + "fix", + "repair", + "settings", + "tools" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f552", + "label": "Toolbox", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635761, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z" + } + }, + "free": [ + "solid" + ] + }, + "tools": { + "changes": [ + "5.6.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "repair", + "screwdriver", + "settings", + "tools", + "wrench" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d9", + "label": "Tools", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635761, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M501.1 395.7L384 278.6c-23.1-23.1-57.6-27.6-85.4-13.9L192 158.1V96L64 0 0 64l96 128h62.1l106.6 106.6c-13.6 27.8-9.2 62.3 13.9 85.4l117.1 117.1c14.6 14.6 38.2 14.6 52.7 0l52.7-52.7c14.5-14.6 14.5-38.2 0-52.7zM331.7 225c28.3 0 54.9 11 74.9 31l19.4 19.4c15.8-6.9 30.8-16.5 43.8-29.5 37.1-37.1 49.7-89.3 37.9-136.7-2.2-9-13.5-12.1-20.1-5.5l-74.4 74.4-67.9-11.3L334 98.9l74.4-74.4c6.6-6.6 3.4-17.9-5.7-20.2-47.4-11.7-99.6.9-136.6 37.9-28.5 28.5-41.9 66.1-41.2 103.6l82.1 82.1c8.1-1.9 16.5-2.9 24.7-2.9zm-103.9 82l-56.7-56.7L18.7 402.8c-25 25-25 65.5 0 90.5s65.5 25 90.5 0l123.6-123.6c-7.6-19.9-9.9-41.6-5-62.7zM64 472c-13.2 0-24-10.8-24-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13.2-10.7 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "tooth": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicuspid", + "dental", + "dentist", + "molar", + "mouth", + "teeth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c9", + "label": "Tooth", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635761, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z" + } + }, + "free": [ + "solid" + ] + }, + "torah": { + "changes": [ + "5.3.0", + "5.7.0", + "5.9.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion", + "scroll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a0", + "label": "Torah", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635762, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320.05 366.48l17.72-29.64h-35.46zm99.21-166H382.4l18.46 30.82zM48 0C21.49 0 0 14.33 0 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32C96 14.33 74.51 0 48 0zm172.74 311.5h36.85l-18.46-30.82zm161.71 0h36.86l-18.45-30.8zM128 464h384V48H128zm66.77-278.13a21.22 21.22 0 0 1 18.48-10.71h59.45l29.13-48.71a21.13 21.13 0 0 1 18.22-10.37A20.76 20.76 0 0 1 338 126.29l29.25 48.86h59.52a21.12 21.12 0 0 1 18.1 32L415.63 256 445 305a20.69 20.69 0 0 1 .24 21.12 21.25 21.25 0 0 1-18.48 10.72h-59.47l-29.13 48.7a21.13 21.13 0 0 1-18.16 10.4 20.79 20.79 0 0 1-18-10.22l-29.25-48.88h-59.5a21.11 21.11 0 0 1-18.1-32L224.36 256 195 207a20.7 20.7 0 0 1-.23-21.13zM592 0c-26.51 0-48 14.33-48 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32c0-17.67-21.49-32-48-32zM320 145.53l-17.78 29.62h35.46zm-62.45 55h-36.81l18.44 30.8zm29.58 111h65.79L386.09 256l-33.23-55.52h-65.79L253.9 256z" + } + }, + "free": [ + "solid" + ] + }, + "torii-gate": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "shintoism" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a1", + "label": "Torii Gate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635762, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M376.45 32h-240.9A303.17 303.17 0 0 1 0 0v96c0 17.67 14.33 32 32 32h32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h256v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h48c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-48v-64h32c17.67 0 32-14.33 32-32V0a303.17 303.17 0 0 1-135.55 32zM128 128h96v64h-96v-64zm256 64h-96v-64h96v64z" + } + }, + "free": [ + "solid" + ] + }, + "tractor": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "farm", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f722", + "label": "Tractor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635763, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M528 336c-48.6 0-88 39.4-88 88s39.4 88 88 88 88-39.4 88-88-39.4-88-88-88zm0 112c-13.23 0-24-10.77-24-24s10.77-24 24-24 24 10.77 24 24-10.77 24-24 24zm80-288h-64v-40.2c0-14.12 4.7-27.76 13.15-38.84 4.42-5.8 3.55-14.06-1.32-19.49L534.2 37.3c-6.66-7.45-18.32-6.92-24.7.78C490.58 60.9 480 89.81 480 119.8V160H377.67L321.58 29.14A47.914 47.914 0 0 0 277.45 0H144c-26.47 0-48 21.53-48 48v146.52c-8.63-6.73-20.96-6.46-28.89 1.47L36 227.1c-8.59 8.59-8.59 22.52 0 31.11l5.06 5.06c-4.99 9.26-8.96 18.82-11.91 28.72H22c-12.15 0-22 9.85-22 22v44c0 12.15 9.85 22 22 22h7.14c2.96 9.91 6.92 19.46 11.91 28.73l-5.06 5.06c-8.59 8.59-8.59 22.52 0 31.11L67.1 476c8.59 8.59 22.52 8.59 31.11 0l5.06-5.06c9.26 4.99 18.82 8.96 28.72 11.91V490c0 12.15 9.85 22 22 22h44c12.15 0 22-9.85 22-22v-7.14c9.9-2.95 19.46-6.92 28.72-11.91l5.06 5.06c8.59 8.59 22.52 8.59 31.11 0l31.11-31.11c8.59-8.59 8.59-22.52 0-31.11l-5.06-5.06c4.99-9.26 8.96-18.82 11.91-28.72H330c12.15 0 22-9.85 22-22v-6h80.54c21.91-28.99 56.32-48 95.46-48 18.64 0 36.07 4.61 51.8 12.2l50.82-50.82c6-6 9.37-14.14 9.37-22.63V192c.01-17.67-14.32-32-31.99-32zM176 416c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm22-256h-38V64h106.89l41.15 96H198z" + } + }, + "free": [ + "solid" + ] + }, + "trade-federation": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f513", + "label": "Trade Federation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722340, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248zm0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6zm155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69l-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7l9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2l-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2l-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9zM342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2zm0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5.1 117.9-95.5 213.5-213.4 213.5zM178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z" + } + }, + "free": [ + "brands" + ] + }, + "trademark": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "register", + "symbol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f25c", + "label": "Trademark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635763, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M260.6 96H12c-6.6 0-12 5.4-12 12v43.1c0 6.6 5.4 12 12 12h85.1V404c0 6.6 5.4 12 12 12h54.3c6.6 0 12-5.4 12-12V163.1h85.1c6.6 0 12-5.4 12-12V108c.1-6.6-5.3-12-11.9-12zM640 403l-24-296c-.5-6.2-5.7-11-12-11h-65.4c-5.1 0-9.7 3.3-11.3 8.1l-43.8 127.1c-7.2 20.6-16.1 52.8-16.1 52.8h-.9s-8.9-32.2-16.1-52.8l-43.8-127.1c-1.7-4.8-6.2-8.1-11.3-8.1h-65.4c-6.2 0-11.4 4.8-12 11l-24.4 296c-.6 7 4.9 13 12 13H360c6.3 0 11.5-4.9 12-11.2l9.1-132.9c1.8-24.2 0-53.7 0-53.7h.9s10.7 33.6 17.9 53.7l30.7 84.7c1.7 4.7 6.2 7.9 11.3 7.9h50.3c5.1 0 9.6-3.2 11.3-7.9l30.7-84.7c7.2-20.1 17.9-53.7 17.9-53.7h.9s-1.8 29.5 0 53.7l9.1 132.9c.4 6.3 5.7 11.2 12 11.2H628c7 0 12.5-6 12-13z" + } + }, + "free": [ + "solid" + ] + }, + "traffic-light": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "direction", + "road", + "signal", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f637", + "label": "Traffic Light", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635764, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 192h-64v-37.88c37.2-13.22 64-48.38 64-90.12h-64V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v32H0c0 41.74 26.8 76.9 64 90.12V192H0c0 41.74 26.8 76.9 64 90.12V320H0c0 42.84 28.25 78.69 66.99 91.05C79.42 468.72 130.6 512 192 512s112.58-43.28 125.01-100.95C355.75 398.69 384 362.84 384 320h-64v-37.88c37.2-13.22 64-48.38 64-90.12zM192 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "trailer": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "haul", + "moving", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e041", + "label": "Trailer", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635765, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624,320H544V80a16,16,0,0,0-16-16H16A16,16,0,0,0,0,80V368a16,16,0,0,0,16,16H65.61c7.83-54.21,54-96,110.39-96s102.56,41.79,110.39,96H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM96,243.68a176.29,176.29,0,0,0-32,20.71V136a8,8,0,0,1,8-8H88a8,8,0,0,1,8,8Zm96-18.54c-5.31-.49-10.57-1.14-16-1.14s-10.69.65-16,1.14V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,39.25a176.29,176.29,0,0,0-32-20.71V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8ZM384,320H352V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,0H448V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm-304,0a80,80,0,1,0,80,80A80,80,0,0,0,176,320Zm0,112a32,32,0,1,1,32-32A32,32,0,0,1,176,432Z" + } + }, + "free": [ + "solid" + ] + }, + "train": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullet", + "commute", + "locomotive", + "railway", + "subway" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f238", + "label": "Train", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635765, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z" + } + }, + "free": [ + "solid" + ] + }, + "tram": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crossing", + "machine", + "mountains", + "seasonal", + "transportation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7da", + "label": "Tram", + "svg": { + "solid": { + "last_modified": 1628088635765, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 64c17.7 0 32-14.3 32-32S305.7 0 288 0s-32 14.3-32 32 14.3 32 32 32zm223.5-12.1c-2.3-8.6-11-13.6-19.6-11.3l-480 128c-8.5 2.3-13.6 11-11.3 19.6C2.5 195.3 8.9 200 16 200c1.4 0 2.8-.2 4.1-.5L240 140.8V224H64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H272v-91.7l228.1-60.8c8.6-2.3 13.6-11.1 11.4-19.6zM176 384H80v-96h96v96zm160-96h96v96h-96v-96zm-32 0v96h-96v-96h96zM192 96c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "transgender": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "intersex" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f224", + "label": "Transgender", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635765, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "transgender-alt": { + "changes": [ + "4.3", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "intersex" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f225", + "label": "Alternate Transgender", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635765, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "trash": { + "changes": [ + "4.2", + "5.0.0", + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1f8", + "label": "Trash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635768, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z" + } + }, + "free": [ + "solid" + ] + }, + "trash-alt": { + "changes": [ + "5.0.0", + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove", + "trash-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2ed", + "label": "Alternate Trash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635767, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + }, + "regular": { + "last_modified": 1628088635245, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M268 416h24a12 12 0 0 0 12-12V188a12 12 0 0 0-12-12h-24a12 12 0 0 0-12 12v216a12 12 0 0 0 12 12zM432 80h-82.41l-34-56.7A48 48 0 0 0 274.41 0H173.59a48 48 0 0 0-41.16 23.3L98.41 80H16A16 16 0 0 0 0 96v16a16 16 0 0 0 16 16h16v336a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128h16a16 16 0 0 0 16-16V96a16 16 0 0 0-16-16zM171.84 50.91A6 6 0 0 1 177 48h94a6 6 0 0 1 5.15 2.91L293.61 80H154.39zM368 464H80V128h288zm-212-48h24a12 12 0 0 0 12-12V188a12 12 0 0 0-12-12h-24a12 12 0 0 0-12 12v216a12 12 0 0 0 12 12z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "trash-restore": { + "changes": [ + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "oops", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f829", + "label": "Trash Restore", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635768, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32zm70.11-175.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "trash-restore-alt": { + "changes": [ + "5.7.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "oops", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f82a", + "label": "Alternative Trash Restore", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635767, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm91.31-172.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "tree": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bark", + "fall", + "flora", + "forest", + "nature", + "plant", + "seasonal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1bb", + "label": "Tree", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635770, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M378.31 378.49L298.42 288h30.63c9.01 0 16.98-5 20.78-13.06 3.8-8.04 2.55-17.26-3.28-24.05L268.42 160h28.89c9.1 0 17.3-5.35 20.86-13.61 3.52-8.13 1.86-17.59-4.24-24.08L203.66 4.83c-6.03-6.45-17.28-6.45-23.32 0L70.06 122.31c-6.1 6.49-7.75 15.95-4.24 24.08C69.38 154.65 77.59 160 86.69 160h28.89l-78.14 90.91c-5.81 6.78-7.06 15.99-3.27 24.04C37.97 283 45.93 288 54.95 288h30.63L5.69 378.49c-6 6.79-7.36 16.09-3.56 24.26 3.75 8.05 12 13.25 21.01 13.25H160v24.45l-30.29 48.4c-5.32 10.64 2.42 23.16 14.31 23.16h95.96c11.89 0 19.63-12.52 14.31-23.16L224 440.45V416h136.86c9.01 0 17.26-5.2 21.01-13.25 3.8-8.17 2.44-17.47-3.56-24.26z" + } + }, + "free": [ + "solid" + ] + }, + "trello": { + "changes": [ + "3.2", + "5.0.0", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f181", + "label": "Trello", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861025, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56zM197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8.1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9v142.1z" + } + }, + "free": [ + "brands" + ] + }, + "trophy": { + "changes": [ + "1", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "cup", + "game", + "winner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f091", + "label": "trophy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635771, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z" + } + }, + "free": [ + "solid" + ] + }, + "truck": { + "changes": [ + "2", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "delivery", + "shipping", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d1", + "label": "truck", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635774, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" + } + }, + "free": [ + "solid" + ] + }, + "truck-loading": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "cargo", + "delivery", + "inventory", + "moving", + "rental", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4de", + "label": "Truck Loading", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635772, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "truck-monster": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "offroad", + "vehicle", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f63b", + "label": "Truck Monster", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635772, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 224h-16v-64c0-17.67-14.33-32-32-32h-73.6L419.22 24.02A64.025 64.025 0 0 0 369.24 0H256c-17.67 0-32 14.33-32 32v96H48c-8.84 0-16 7.16-16 16v80H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16.72c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64h65.45c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-336-96V64h81.24l51.2 64H288zm304 224h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 512 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67A110.85 110.85 0 0 0 373.2 352H368c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32c-.02-8.84-7.18-16-16.02-16zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-208-80h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 192 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0L58.18 304.8c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67a110.85 110.85 0 0 0-8.65 20.89H48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32C288 359.16 280.84 352 272 352zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "truck-moving": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "inventory", + "rental", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4df", + "label": "Truck Moving", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635773, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "truck-pickup": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f63c", + "label": "Truck Side", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635773, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 288h-16v-64c0-17.67-14.33-32-32-32h-48L419.22 56.02A64.025 64.025 0 0 0 369.24 32H256c-17.67 0-32 14.33-32 32v128H64c-17.67 0-32 14.33-32 32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h49.61c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16h67.23c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM288 96h81.24l76.8 96H288V96zM176 416c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm288 0c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "tshirt": { + "changes": [ + "5.0.13", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "fashion", + "garment", + "shirt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f553", + "label": "T-Shirt", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635774, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z" + } + }, + "free": [ + "solid" + ] + }, + "tty": { + "changes": [ + "4.2", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "deaf", + "telephone", + "teletypewriter", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e4", + "label": "TTY", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635774, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" + } + }, + "free": [ + "solid" + ] + }, + "tumblr": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f173", + "label": "Tumblr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861025, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" + } + }, + "free": [ + "brands" + ] + }, + "tumblr-square": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f174", + "label": "Tumblr Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861025, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" + } + }, + "free": [ + "brands" + ] + }, + "tv": { + "changes": [ + "4.4", + "5.0.0", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "display", + "monitor", + "television" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f26c", + "label": "Television", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635776, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M592 0H48A48 48 0 0 0 0 48v320a48 48 0 0 0 48 48h240v32H112a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H352v-32h240a48 48 0 0 0 48-48V48a48 48 0 0 0-48-48zm-16 352H64V64h512z" + } + }, + "free": [ + "solid" + ] + }, + "twitch": { + "changes": [ + "4.2", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e8", + "label": "Twitch", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539202, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" + } + }, + "free": [ + "brands" + ] + }, + "twitter": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f099", + "label": "Twitter", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861026, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" + } + }, + "free": [ + "brands" + ] + }, + "twitter-square": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f081", + "label": "Twitter Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861025, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" + } + }, + "free": [ + "brands" + ] + }, + "typo3": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42b", + "label": "Typo3", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775923, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9zM301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5z" + } + }, + "free": [ + "brands" + ] + }, + "uber": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f402", + "label": "Uber", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861026, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" + } + }, + "free": [ + "brands" + ] + }, + "ubuntu": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7df", + "label": "Ubuntu", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861026, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1.7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z" + } + }, + "free": [ + "brands" + ] + }, + "uikit": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f403", + "label": "UIkit", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861026, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" + } + }, + "free": [ + "brands" + ] + }, + "umbraco": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8e8", + "label": "Umbraco", + "svg": { + "brands": { + "last_modified": 1568817883852, + "raw": "", + "viewBox": [ + "0", + "0", + "510", + "512" + ], + "width": 510, + "height": 512, + "path": "M255.35 8C118.36 7.83 7.14 118.72 7 255.68c-.07 137 111 248.2 248 248.27 136.85 0 247.82-110.7 248-247.67S392.34 8.17 255.35 8zm145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78.22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a224.81 224.81 0 0 1 0-30.71 418.37 418.37 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a380.62 380.62 0 0 0-2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.64 242.64 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0-2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05.81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a415.71 415.71 0 0 1 3.61 43.88 228.06 228.06 0 0 1-.04 30.73z" + } + }, + "free": [ + "brands" + ] + }, + "umbrella": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "rain", + "storm", + "wet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e9", + "label": "Umbrella", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635777, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M575.7 280.8C547.1 144.5 437.3 62.6 320 49.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v17.9C138.3 62.6 29.5 144.5.3 280.8c-2.2 10.1 8.5 21.3 18.7 11.4 52-55 107.7-52.4 158.6 37 5.3 9.5 14.9 8.6 19.7 0 20.2-35.4 44.9-73.2 90.7-73.2 58.5 0 88.2 68.8 90.7 73.2 4.8 8.6 14.4 9.5 19.7 0 51-89.5 107.1-91.4 158.6-37 10.3 10 20.9-1.3 18.7-11.4zM256 301.7V432c0 8.8-7.2 16-16 16-7.8 0-13.2-5.3-15.1-10.7-5.9-16.7-24.1-25.4-40.8-19.5-16.7 5.9-25.4 24.2-19.5 40.8 11.2 31.9 41.6 53.3 75.4 53.3 44.1 0 80-35.9 80-80V301.6c-9.1-7.9-19.8-13.6-32-13.6-12.3.1-22.4 4.8-32 13.7z" + } + }, + "free": [ + "solid" + ] + }, + "umbrella-beach": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "recreation", + "sand", + "shade", + "summer", + "sun" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ca", + "label": "Umbrella Beach", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635777, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "uncharted": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e084", + "label": "Uncharted Software", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785925, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M171.73,232.813A5.381,5.381,0,0,0,176.7,229.5,48.081,48.081,0,0,1,191.6,204.244c1.243-.828,1.657-2.484,1.657-4.141a4.22,4.22,0,0,0-2.071-3.312L74.429,128.473,148.958,85a9.941,9.941,0,0,0,4.968-8.281,9.108,9.108,0,0,0-4.968-8.281L126.6,55.6a9.748,9.748,0,0,0-9.523,0l-100.2,57.966a9.943,9.943,0,0,0-4.969,8.281V236.954a9.109,9.109,0,0,0,4.969,8.281L39.235,258.07a8.829,8.829,0,0,0,4.968,1.242,9.4,9.4,0,0,0,6.625-2.484,10.8,10.8,0,0,0,2.9-7.039V164.5L169.66,232.4A4.5,4.5,0,0,0,171.73,232.813ZM323.272,377.73a12.478,12.478,0,0,0-4.969,1.242l-74.528,43.062V287.882c0-2.9-2.9-5.8-6.211-4.555a53.036,53.036,0,0,1-28.984.414,4.86,4.86,0,0,0-6.21,4.555V421.619l-74.529-43.061a8.83,8.83,0,0,0-4.969-1.242,9.631,9.631,0,0,0-9.523,9.523v26.085a9.107,9.107,0,0,0,4.969,8.281l100.2,57.553A8.829,8.829,0,0,0,223.486,480a11.027,11.027,0,0,0,4.969-1.242l100.2-57.553a9.941,9.941,0,0,0,4.968-8.281V386.839C332.8,382.285,328.24,377.73,323.272,377.73ZM286.007,78a23,23,0,1,0-23-23A23,23,0,0,0,286.007,78Zm63.627-10.086a23,23,0,1,0,23,23A23,23,0,0,0,349.634,67.914ZM412.816,151.6a23,23,0,1,0-23-23A23,23,0,0,0,412.816,151.6Zm-63.182-9.2a23,23,0,1,0,23,23A23,23,0,0,0,349.634,142.4Zm-63.627,83.244a23,23,0,1,0-23-23A23,23,0,0,0,286.007,225.648Zm-62.074,36.358a23,23,0,1,0-23-23A23,23,0,0,0,223.933,262.006Zm188.883-82.358a23,23,0,1,0,23,23A23,23,0,0,0,412.816,179.648Zm0,72.272a23,23,0,1,0,23,23A23,23,0,0,0,412.816,251.92Z" + } + }, + "free": [ + "brands" + ] + }, + "underline": { + "changes": [ + "2", + "5.0.0", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "format", + "text", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cd", + "label": "Underline", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635778, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M32 64h32v160c0 88.22 71.78 160 160 160s160-71.78 160-160V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H272a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32v160a80 80 0 0 1-160 0V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm400 384H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "undo": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e2", + "label": "Undo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635778, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" + } + }, + "free": [ + "solid" + ] + }, + "undo-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ea", + "label": "Alternate Undo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635778, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z" + } + }, + "free": [ + "solid" + ] + }, + "uniregistry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f404", + "label": "Uniregistry", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548363722340, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480zm-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4zm20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8zm-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3zm-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3zm12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7zm203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2zm188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8zm53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z" + } + }, + "free": [ + "brands" + ] + }, + "unity": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e049", + "label": "Unity 3D", + "voted": true, + "svg": { + "brands": { + "last_modified": 1573074807769, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M498.11,206.4,445.31,14.72,248.2,66.08,219,116.14l-59.2-.43L15.54,256,159.82,396.32l59.17-.43,29.24,50,197.08,51.36,52.8-191.62-30-49.63ZM223.77,124.2,374.55,86.51,288,232.33H114.87Zm0,263.63L114.87,279.71H288l86.55,145.81Zm193,14L330.17,256l86.58-145.84L458.56,256Z" + } + }, + "free": [ + "brands" + ] + }, + "universal-access": { + "changes": [ + "4.6", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "hearing", + "person", + "seeing", + "visual impairment" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f29a", + "label": "Universal Access", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635779, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z" + } + }, + "free": [ + "solid" + ] + }, + "university": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "building", + "college", + "higher education - students", + "institution" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f19c", + "label": "University", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635779, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z" + } + }, + "free": [ + "solid" + ] + }, + "unlink": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attachment", + "chain", + "chain-broken", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f127", + "label": "unlink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635779, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z" + } + }, + "free": [ + "solid" + ] + }, + "unlock": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "private", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f09c", + "label": "unlock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635780, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "unlock-alt": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "private", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13e", + "label": "Alternate Unlock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635780, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z" + } + }, + "free": [ + "solid" + ] + }, + "unsplash": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07c", + "label": "Unsplash", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539202, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448,230.17V480H0V230.17H141.13V355.09H306.87V230.17ZM306.87,32H141.13V156.91H306.87Z" + } + }, + "free": [ + "brands" + ] + }, + "untappd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f405", + "label": "Untappd", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861026, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" + } + }, + "free": [ + "brands" + ] + }, + "upload": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "import", + "publish" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f093", + "label": "Upload", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635780, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" + } + }, + "free": [ + "solid" + ] + }, + "ups": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "United Parcel Service", + "package", + "shipping" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7e0", + "label": "UPS", + "svg": { + "brands": { + "last_modified": 1558987775924, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0zm358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6zm32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51zm79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4.6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2.6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9z" + } + }, + "free": [ + "brands" + ] + }, + "usb": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f287", + "label": "USB", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861026, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" + } + }, + "free": [ + "brands" + ] + }, + "user": { + "changes": [ + "1", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "human", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f007", + "label": "User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635789, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + }, + "regular": { + "last_modified": 1628088635268, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "user-alt": { + "changes": [ + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "human", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f406", + "label": "Alternate User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635781, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z" + } + }, + "free": [ + "solid" + ] + }, + "user-alt-slash": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "human", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fa", + "label": "Alternate User Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635781, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z" + } + }, + "free": [ + "solid" + ] + }, + "user-astronaut": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "clothing", + "cosmonaut", + "nasa", + "space", + "suit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fb", + "label": "User Astronaut", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635782, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "user-check": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "check", + "person", + "verified" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fc", + "label": "User Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635782, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z" + } + }, + "free": [ + "solid" + ] + }, + "user-circle": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3", + "5.0.11", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "human", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2bd", + "label": "User Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635782, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z" + }, + "regular": { + "last_modified": 1628088635260, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "user-clock": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "person", + "remind", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fd", + "label": "User Clock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635782, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" + } + }, + "free": [ + "solid" + ] + }, + "user-cog": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "cog", + "person", + "settings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fe", + "label": "User Cog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635783, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z" + } + }, + "free": [ + "solid" + ] + }, + "user-edit": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "person", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ff", + "label": "User Edit", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635783, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z" + } + }, + "free": [ + "solid" + ] + }, + "user-friends": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "people", + "person", + "team", + "users" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f500", + "label": "User Friends", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635784, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z" + } + }, + "free": [ + "solid" + ] + }, + "user-graduate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "cap", + "clothing", + "commencement", + "gown", + "graduation", + "person", + "student" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f501", + "label": "User Graduate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635784, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z" + } + }, + "free": [ + "solid" + ] + }, + "user-injured": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cast", + "injury", + "ouch", + "patient", + "person", + "sling" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f728", + "label": "User Injured", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635785, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M277.37 11.98C261.08 4.47 243.11 0 224 0c-53.69 0-99.5 33.13-118.51 80h81.19l90.69-68.02zM342.51 80c-7.9-19.47-20.67-36.2-36.49-49.52L239.99 80h102.52zM224 256c70.69 0 128-57.31 128-128 0-5.48-.95-10.7-1.61-16H97.61c-.67 5.3-1.61 10.52-1.61 16 0 70.69 57.31 128 128 128zM80 299.7V512h128.26l-98.45-221.52A132.835 132.835 0 0 0 80 299.7zM0 464c0 26.51 21.49 48 48 48V320.24C18.88 344.89 0 381.26 0 422.4V464zm256-48h-55.38l42.67 96H256c26.47 0 48-21.53 48-48s-21.53-48-48-48zm57.6-128h-16.71c-22.24 10.18-46.88 16-72.89 16s-50.65-5.82-72.89-16h-7.37l42.67 96H256c44.11 0 80 35.89 80 80 0 18.08-6.26 34.59-16.41 48H400c26.51 0 48-21.49 48-48v-41.6c0-74.23-60.17-134.4-134.4-134.4z" + } + }, + "free": [ + "solid" + ] + }, + "user-lock": { + "changes": [ + "5.0.11", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "person", + "private", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f502", + "label": "User Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635785, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 96 128a128 128 0 0 0 128 128zm96 64a63.08 63.08 0 0 1 8.1-30.5c-4.8-.5-9.5-1.5-14.5-1.5h-16.7a174.08 174.08 0 0 1-145.8 0h-16.7A134.43 134.43 0 0 0 0 422.4V464a48 48 0 0 0 48 48h280.9a63.54 63.54 0 0 1-8.9-32zm288-32h-32v-80a80 80 0 0 0-160 0v80h-32a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V320a32 32 0 0 0-32-32zM496 432a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm32-144h-64v-80a32 32 0 0 1 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "user-md": { + "changes": [ + "2", + "5.0.0", + "5.0.3", + "5.0.7", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "job", + "medical", + "nurse", + "occupation", + "physician", + "profile", + "surgeon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f0", + "label": "Doctor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635785, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z" + } + }, + "free": [ + "solid" + ] + }, + "user-minus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "negative", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f503", + "label": "User Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635786, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + } + }, + "free": [ + "solid" + ] + }, + "user-ninja": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "assassin", + "avatar", + "dangerous", + "deadly", + "sneaky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f504", + "label": "User Ninja", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635786, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "user-nurse": { + "changes": [ + "5.7.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "midwife", + "practitioner", + "surgeon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f82f", + "label": "Nurse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635786, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M319.41,320,224,415.39,128.59,320C57.1,323.1,0,381.6,0,453.79A58.21,58.21,0,0,0,58.21,512H389.79A58.21,58.21,0,0,0,448,453.79C448,381.6,390.9,323.1,319.41,320ZM224,304A128,128,0,0,0,352,176V65.82a32,32,0,0,0-20.76-30L246.47,4.07a64,64,0,0,0-44.94,0L116.76,35.86A32,32,0,0,0,96,65.82V176A128,128,0,0,0,224,304ZM184,71.67a5,5,0,0,1,5-5h21.67V45a5,5,0,0,1,5-5h16.66a5,5,0,0,1,5,5V66.67H259a5,5,0,0,1,5,5V88.33a5,5,0,0,1-5,5H237.33V115a5,5,0,0,1-5,5H215.67a5,5,0,0,1-5-5V93.33H189a5,5,0,0,1-5-5ZM144,160H304v16a80,80,0,0,1-160,0Z" + } + }, + "free": [ + "solid" + ] + }, + "user-plus": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "avatar", + "positive", + "sign up", + "signup", + "team" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f234", + "label": "User Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635787, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + } + }, + "free": [ + "solid" + ] + }, + "user-secret": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "coat", + "hat", + "incognito", + "person", + "privacy", + "spy", + "whisper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21b", + "label": "User Secret", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635787, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z" + } + }, + "free": [ + "solid" + ] + }, + "user-shield": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "person", + "private", + "protect", + "safe" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f505", + "label": "User Shield", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635787, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" + } + }, + "free": [ + "solid" + ] + }, + "user-slash": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "delete", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f506", + "label": "User Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635788, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z" + } + }, + "free": [ + "solid" + ] + }, + "user-tag": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "discount", + "label", + "person", + "role", + "special" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f507", + "label": "User Tag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635788, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z" + } + }, + "free": [ + "solid" + ] + }, + "user-tie": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "business", + "clothing", + "formal", + "professional", + "suit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f508", + "label": "User Tie", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635788, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z" + } + }, + "free": [ + "solid" + ] + }, + "user-times": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "remove", + "x" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f235", + "label": "Remove User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635788, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + } + }, + "free": [ + "solid" + ] + }, + "users": { + "changes": [ + "2", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "friends", + "group", + "people", + "persons", + "profiles", + "team" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c0", + "label": "Users", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635790, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" + } + }, + "free": [ + "solid" + ] + }, + "users-cog": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "cog", + "group", + "person", + "settings", + "team" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f509", + "label": "Users Cog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635790, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" + } + }, + "free": [ + "solid" + ] + }, + "users-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disband", + "friends", + "group", + "people", + "persons", + "profiles", + "separate", + "team", + "ungroup" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e073", + "label": "Users Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635790, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M132.65,212.32,36.21,137.78A63.4,63.4,0,0,0,32,160a63.84,63.84,0,0,0,100.65,52.32Zm40.44,62.28A63.79,63.79,0,0,0,128,256H64A64.06,64.06,0,0,0,0,320v32a32,32,0,0,0,32,32H97.91A146.62,146.62,0,0,1,173.09,274.6ZM544,224a64,64,0,1,0-64-64A64.06,64.06,0,0,0,544,224ZM500.56,355.11a114.24,114.24,0,0,0-84.47-65.28L361,247.23c41.46-16.3,71-55.92,71-103.23A111.93,111.93,0,0,0,320,32c-57.14,0-103.69,42.83-110.6,98.08L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM128,403.21V432a48,48,0,0,0,48,48H464a47.45,47.45,0,0,0,12.57-1.87L232,289.13C173.74,294.83,128,343.42,128,403.21ZM576,256H512a63.79,63.79,0,0,0-45.09,18.6A146.29,146.29,0,0,1,542,384h66a32,32,0,0,0,32-32V320A64.06,64.06,0,0,0,576,256Z" + } + }, + "free": [ + "solid" + ] + }, + "usps": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "package", + "shipping", + "usa" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7e1", + "label": "United States Postal Service", + "svg": { + "brands": { + "last_modified": 1558987775925, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8.1zm-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5zM94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z" + } + }, + "free": [ + "brands" + ] + }, + "ussunnah": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f407", + "label": "us-Sunnah Foundation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" + } + }, + "free": [ + "brands" + ] + }, + "utensil-spoon": { + "changes": [ + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dining", + "scoop", + "silverware", + "spoon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2e5", + "label": "Utensil Spoon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635791, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z" + } + }, + "free": [ + "solid" + ] + }, + "utensils": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dining", + "dinner", + "eat", + "food", + "fork", + "knife", + "restaurant" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2e7", + "label": "Utensils", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635792, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" + } + }, + "free": [ + "solid" + ] + }, + "vaadin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f408", + "label": "Vaadin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" + } + }, + "free": [ + "brands" + ] + }, + "vector-square": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5cb", + "label": "Vector Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635793, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z" + } + }, + "free": [ + "solid" + ] + }, + "venus": { + "changes": [ + "4.3", + "5.0.0", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "female" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f221", + "label": "Venus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635794, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" + } + }, + "free": [ + "solid" + ] + }, + "venus-double": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f226", + "label": "Venus Double", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635794, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z" + } + }, + "free": [ + "solid" + ] + }, + "venus-mars": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Gender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f228", + "label": "Venus Mars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635794, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "vest": { + "changes": [ + "5.15.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e085", + "label": "vest", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635795, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a24.021,24.021,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A24.021,24.021,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.564A151.518,151.518,0,0,0,224,86.234a151.55,151.55,0,0,0,73.812-19.672L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM131.312,371.312l-48,48a16,16,0,0,1-22.624-22.624l48-48a16,16,0,0,1,22.624,22.624Zm256,48a15.992,15.992,0,0,1-22.624,0l-48-48a16,16,0,0,1,22.624-22.624l48,48A15.993,15.993,0,0,1,387.312,419.312Z" + } + }, + "free": [ + "solid" + ] + }, + "vest-patches": { + "changes": [ + "5.15.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e086", + "label": "vest-patches", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635794, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a23.982,23.982,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A23.982,23.982,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.561A151.579,151.579,0,0,0,224,86.234a151.565,151.565,0,0,0,73.811-19.668L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM63.5,272.484a12.01,12.01,0,0,1,17-16.968l15.5,15.5,15.5-15.5a12.01,12.01,0,0,1,17,16.968L112.984,288,128.5,303.516a12.01,12.01,0,0,1-17,16.968L96,304.984l-15.5,15.5a12.01,12.01,0,0,1-17-16.968L79.016,288ZM96,456a40,40,0,1,1,40-40A40,40,0,0,1,96,456ZM359.227,335.785,310.7,336a6.671,6.671,0,0,1-6.7-6.7l.215-48.574A24.987,24.987,0,0,1,331.43,256.1c12.789,1.162,22.129,12.619,22.056,25.419l-.037,5.057,5.051-.037c12.826-.035,24.236,9.275,25.4,22.076A24.948,24.948,0,0,1,359.227,335.785Z" + } + }, + "free": [ + "solid" + ] + }, + "viacoin": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f237", + "label": "Viacoin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" + } + }, + "free": [ + "brands" + ] + }, + "viadeo": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a9", + "label": "Viadeo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" + } + }, + "free": [ + "brands" + ] + }, + "viadeo-square": { + "changes": [ + "4.6", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2aa", + "label": "Viadeo Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1548364699932, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" + } + }, + "free": [ + "brands" + ] + }, + "vial": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f492", + "label": "Vial", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635795, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z" + } + }, + "free": [ + "solid" + ] + }, + "vials": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f493", + "label": "Vials", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635795, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z" + } + }, + "free": [ + "solid" + ] + }, + "viber": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f409", + "label": "Viber", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" + } + }, + "free": [ + "brands" + ] + }, + "video": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "film", + "movie", + "record", + "video-camera" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03d", + "label": "Video", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635797, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z" + } + }, + "free": [ + "solid" + ] + }, + "video-slash": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "film", + "new", + "positive", + "record", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4e2", + "label": "Video Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635796, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z" + } + }, + "free": [ + "solid" + ] + }, + "vihara": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "buddhist", + "building", + "monastery" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a7", + "label": "Vihara", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635797, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M632.88 400.71L544 352v-64l55.16-17.69c11.79-5.9 11.79-22.72 0-28.62L480 192v-64l27.31-16.3c7.72-7.72 5.61-20.74-4.16-25.62L320 0 136.85 86.07c-9.77 4.88-11.88 17.9-4.16 25.62L160 128v64L40.84 241.69c-11.79 5.9-11.79 22.72 0 28.62L96 288v64L7.12 400.71c-5.42 3.62-7.7 9.63-7 15.29.62 5.01 3.57 9.75 8.72 12.33L64 448v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48l55.15-19.67c5.16-2.58 8.1-7.32 8.72-12.33.71-5.67-1.57-11.68-6.99-15.29zM224 128h192v64H224v-64zm-64 224v-64h320v64H160z" + } + }, + "free": [ + "solid" + ] + }, + "vimeo": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40a", + "label": "Vimeo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" + } + }, + "free": [ + "brands" + ] + }, + "vimeo-square": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f194", + "label": "Vimeo Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" + } + }, + "free": [ + "brands" + ] + }, + "vimeo-v": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "vimeo" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f27d", + "label": "Vimeo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861027, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" + } + }, + "free": [ + "brands" + ] + }, + "vine": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ca", + "label": "Vine", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" + } + }, + "free": [ + "brands" + ] + }, + "virus": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "sick", + "viral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e074", + "label": "Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635798, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M483.55,227.55H462c-50.68,0-76.07-61.27-40.23-97.11L437,115.19A28.44,28.44,0,0,0,396.8,75L381.56,90.22c-35.84,35.83-97.11,10.45-97.11-40.23V28.44a28.45,28.45,0,0,0-56.9,0V50c0,50.68-61.27,76.06-97.11,40.23L115.2,75A28.44,28.44,0,0,0,75,115.19l15.25,15.25c35.84,35.84,10.45,97.11-40.23,97.11H28.45a28.45,28.45,0,1,0,0,56.89H50c50.68,0,76.07,61.28,40.23,97.12L75,396.8A28.45,28.45,0,0,0,115.2,437l15.24-15.25c35.84-35.84,97.11-10.45,97.11,40.23v21.54a28.45,28.45,0,0,0,56.9,0V462c0-50.68,61.27-76.07,97.11-40.23L396.8,437A28.45,28.45,0,0,0,437,396.8l-15.25-15.24c-35.84-35.84-10.45-97.12,40.23-97.12h21.54a28.45,28.45,0,1,0,0-56.89ZM224,272a48,48,0,1,1,48-48A48,48,0,0,1,224,272Zm80,56a24,24,0,1,1,24-24A24,24,0,0,1,304,328Z" + } + }, + "free": [ + "solid" + ] + }, + "virus-slash": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "cure", + "eliminate", + "flu", + "health", + "sick", + "viral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e075", + "label": "Virus Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635798, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M114,227.6H92.4C76.7,227.6,64,240.3,64,256s12.7,28.4,28.4,28.4H114c50.7,0,76.1,61.3,40.2,97.1L139,396.8 c-11.5,10.7-12.2,28.7-1.6,40.2s28.7,12.2,40.2,1.6c0.5-0.5,1.1-1,1.6-1.6l15.2-15.2c35.8-35.8,97.1-10.5,97.1,40.2v21.5 c0,15.7,12.8,28.4,28.5,28.4c15.7,0,28.4-12.7,28.4-28.4V462c0-26.6,17-45.9,38.2-53.4l-244.5-189 C133.7,224.7,123.9,227.5,114,227.6z M617,505.8l19.6-25.3c5.4-7,4.2-17-2.8-22.5L470.6,332c4.2-25.4,24.9-47.5,55.4-47.5h21.5 c15.7,0,28.4-12.7,28.4-28.4s-12.7-28.4-28.4-28.4H526c-50.7,0-76.1-61.3-40.2-97.1l15.2-15.3c10.7-11.5,10-29.5-1.6-40.2 c-10.9-10.1-27.7-10.1-38.6,0l-15.2,15.2c-35.8,35.8-97.1,10.5-97.1-40.2V28.5C348.4,12.7,335.7,0,320,0 c-15.7,0-28.4,12.7-28.4,28.4V50c0,50.7-61.3,76.1-97.1,40.2L179.2,75c-11.1-11.1-29.4-10.6-40.5,0.5L45.5,3.4 c-7-5.4-17-4.2-22.5,2.8L3.4,31.5c-5.4,7-4.2,17,2.8,22.5l588.4,454.7C601.5,514.1,611.6,512.8,617,505.8z M335.4,227.5l-62.9-48.6 c4.9-1.8,10.2-2.8,15.4-2.9c26.5,0,48,21.5,48,48C336,225.2,335.5,226.3,335.4,227.5z" + } + }, + "free": [ + "solid" + ] + }, + "viruses": { + "changes": [ + "5.13.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs", + "covid-19", + "flu", + "health", + "multiply", + "sick", + "spread", + "viral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e076", + "label": "Viruses", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635798, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624,352H611.88c-28.51,0-42.79-34.47-22.63-54.63l8.58-8.57a16,16,0,1,0-22.63-22.63l-8.57,8.58C546.47,294.91,512,280.63,512,252.12V240a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.57c20.16,20.16,5.88,54.63-22.63,54.63H368a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.57a16,16,0,1,0,22.63,22.63l8.57-8.58c20.16-20.16,54.63-5.88,54.63,22.63V496a16,16,0,0,0,32,0V483.88c0-28.51,34.47-42.79,54.63-22.63l8.57,8.58a16,16,0,1,0,22.63-22.63l-8.58-8.57C569.09,418.47,583.37,384,611.88,384H624a16,16,0,0,0,0-32ZM480,384a32,32,0,1,1,32-32A32,32,0,0,1,480,384ZM346.51,213.33h16.16a21.33,21.33,0,0,0,0-42.66H346.51c-38,0-57.05-46-30.17-72.84l11.43-11.44A21.33,21.33,0,0,0,297.6,56.23L286.17,67.66c-26.88,26.88-72.84,7.85-72.84-30.17V21.33a21.33,21.33,0,0,0-42.66,0V37.49c0,38-46,57.05-72.84,30.17L86.4,56.23A21.33,21.33,0,0,0,56.23,86.39L67.66,97.83c26.88,26.88,7.85,72.84-30.17,72.84H21.33a21.33,21.33,0,0,0,0,42.66H37.49c38,0,57.05,46,30.17,72.84L56.23,297.6A21.33,21.33,0,1,0,86.4,327.77l11.43-11.43c26.88-26.88,72.84-7.85,72.84,30.17v16.16a21.33,21.33,0,0,0,42.66,0V346.51c0-38,46-57.05,72.84-30.17l11.43,11.43a21.33,21.33,0,0,0,30.17-30.17l-11.43-11.43C289.46,259.29,308.49,213.33,346.51,213.33ZM160,192a32,32,0,1,1,32-32A32,32,0,0,1,160,192Zm80,32a16,16,0,1,1,16-16A16,16,0,0,1,240,224Z" + } + }, + "free": [ + "solid" + ] + }, + "vk": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f189", + "label": "VK", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z" + } + }, + "free": [ + "brands" + ] + }, + "vnv": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40b", + "label": "VNV", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" + } + }, + "free": [ + "brands" + ] + }, + "voicemail": { + "changes": [ + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [ + "answer", + "inbox", + "message", + "phone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f897", + "label": "Voicemail", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635799, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496 128a144 144 0 0 0-119.74 224H263.74A144 144 0 1 0 144 416h352a144 144 0 0 0 0-288zM64 272a80 80 0 1 1 80 80 80 80 0 0 1-80-80zm432 80a80 80 0 1 1 80-80 80 80 0 0 1-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "volleyball-ball": { + "changes": [ + "5.0.5", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beach", + "olympics", + "sport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f45f", + "label": "Volleyball Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635799, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M231.39 243.48a285.56 285.56 0 0 0-22.7-105.7c-90.8 42.4-157.5 122.4-180.3 216.8a249 249 0 0 0 56.9 81.1 333.87 333.87 0 0 1 146.1-192.2zm-36.9-134.4a284.23 284.23 0 0 0-57.4-70.7c-91 49.8-144.8 152.9-125 262.2 33.4-83.1 98.4-152 182.4-191.5zm187.6 165.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5A333.87 333.87 0 0 1 279.19 241a285 285 0 0 0 102.9 33.18zm-124.7 9.5a286.33 286.33 0 0 0-80.2 72.6c82 57.3 184.5 75.1 277.5 47.8a247.15 247.15 0 0 0 42.2-89.9 336.1 336.1 0 0 1-80.9 10.4c-54.6-.1-108.9-14.1-158.6-40.9zm-98.3 99.7c-15.2 26-25.7 54.4-32.1 84.2a247.07 247.07 0 0 0 289-22.1c-112.9 16.1-203.3-24.8-256.9-62.1zm180.3-360.6c55.3 70.4 82.5 161.2 74.6 253.6a286.59 286.59 0 0 0 89.7-14.2c0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z" + } + }, + "free": [ + "solid" + ] + }, + "volume-down": { + "changes": [ + "1", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "lower", + "music", + "quieter", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f027", + "label": "Volume Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635800, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M215.03 72.04L126.06 161H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V89.02c0-21.47-25.96-31.98-40.97-16.98zm123.2 108.08c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 229.28 336 242.62 336 257c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.87z" + } + }, + "free": [ + "solid" + ] + }, + "volume-mute": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "quiet", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a9", + "label": "Volume Mute", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635800, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM461.64 256l45.64-45.64c6.3-6.3 6.3-16.52 0-22.82l-22.82-22.82c-6.3-6.3-16.52-6.3-22.82 0L416 210.36l-45.64-45.64c-6.3-6.3-16.52-6.3-22.82 0l-22.82 22.82c-6.3 6.3-6.3 16.52 0 22.82L370.36 256l-45.63 45.63c-6.3 6.3-6.3 16.52 0 22.82l22.82 22.82c6.3 6.3 16.52 6.3 22.82 0L416 301.64l45.64 45.64c6.3 6.3 16.52 6.3 22.82 0l22.82-22.82c6.3-6.3 6.3-16.52 0-22.82L461.64 256z" + } + }, + "free": [ + "solid" + ] + }, + "volume-off": { + "changes": [ + "1", + "5.0.0", + "5.3.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "ban", + "music", + "mute", + "quiet", + "silent", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f026", + "label": "Volume Off", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635800, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M215 71l-89 89H24a24 24 0 0 0-24 24v144a24 24 0 0 0 24 24h102.06L215 441c15 15 41 4.47 41-17V88c0-21.47-26-32-41-17z" + } + }, + "free": [ + "solid" + ] + }, + "volume-up": { + "changes": [ + "1", + "5.0.0", + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "higher", + "louder", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f028", + "label": "Volume Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635801, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zm233.32-51.08c-11.17-7.33-26.18-4.24-33.51 6.95-7.34 11.17-4.22 26.18 6.95 33.51 66.27 43.49 105.82 116.6 105.82 195.58 0 78.98-39.55 152.09-105.82 195.58-11.17 7.32-14.29 22.34-6.95 33.5 7.04 10.71 21.93 14.56 33.51 6.95C528.27 439.58 576 351.33 576 256S528.27 72.43 448.35 19.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.54 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z" + } + }, + "free": [ + "solid" + ] + }, + "vote-yea": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "cast", + "election", + "politics", + "positive", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f772", + "label": "Vote Yea", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635802, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 320h-64v64h22.4c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8H96v-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32zm-96 64V64.3c0-17.9-14.5-32.3-32.3-32.3H160.4C142.5 32 128 46.5 128 64.3V384h384zM211.2 202l25.5-25.3c4.2-4.2 11-4.2 15.2.1l41.3 41.6 95.2-94.4c4.2-4.2 11-4.2 15.2.1l25.3 25.5c4.2 4.2 4.2 11-.1 15.2L300.5 292c-4.2 4.2-11 4.2-15.2-.1l-74.1-74.7c-4.3-4.2-4.2-11 0-15.2z" + } + }, + "free": [ + "solid" + ] + }, + "vr-cardboard": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "augment", + "google", + "reality", + "virtual" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f729", + "label": "Cardboard VR", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635802, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h160.22c25.19 0 48.03-14.77 58.36-37.74l27.74-61.64C286.21 331.08 302.35 320 320 320s33.79 11.08 41.68 28.62l27.74 61.64C399.75 433.23 422.6 448 447.78 448H608c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM160 304c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64zm320 0c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "vuejs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41f", + "label": "Vue.js", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" + } + }, + "free": [ + "brands" + ] + }, + "walking": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "health", + "pedometer", + "person", + "steps" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f554", + "label": "Walking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635804, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z" + } + }, + "free": [ + "solid" + ] + }, + "wallet": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "billfold", + "cash", + "currency", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f555", + "label": "Wallet", + "voted": true, + "svg": { + "solid": { + "last_modified": 1628088635804, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "warehouse": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "capacity", + "garage", + "inventory", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f494", + "label": "Warehouse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635806, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z" + } + }, + "free": [ + "solid" + ] + }, + "watchman-monitoring": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e087", + "label": "Watchman Monitoring", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785925, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256,16C123.452,16,16,123.452,16,256S123.452,496,256,496,496,388.548,496,256,388.548,16,256,16ZM121.69,429.122C70.056,388.972,36.741,326.322,36.741,256a218.519,218.519,0,0,1,9.587-64.122l102.9-17.895-.121,10.967-13.943,2.013s-.144,12.5-.144,19.549a12.778,12.778,0,0,0,4.887,10.349l9.468,7.4Zm105.692-283.27,8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46,0,0,0-32.342,30.474-39.529,34.5-7.078,3.964-.144,9.344-.144,9.344l8.481,7.618-.048,4.369L75.982,131.045c39.644-56.938,105.532-94.3,180.018-94.3A218.754,218.754,0,0,1,420.934,111.77l-193.512,37.7Zm34.063,329.269-33.9-250.857,9.467-7.4a12.778,12.778,0,0,0,4.888-10.349c0-7.044-.144-19.549-.144-19.549l-13.943-2.013-.116-10.474,241.711,31.391A218.872,218.872,0,0,1,475.259,256C475.259,375.074,379.831,472.212,261.445,475.121Z" + } + }, + "free": [ + "brands" + ] + }, + "water": { + "changes": [ + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lake", + "liquid", + "ocean", + "sea", + "swim", + "wet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f773", + "label": "Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635808, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M562.1 383.9c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144C540.6 93.4 520 85.4 504.2 73 490.1 61.9 470 61.7 456 73c-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3z" + } + }, + "free": [ + "solid" + ] + }, + "wave-square": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "frequency", + "pulse", + "signal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f83e", + "label": "Square Wave", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635809, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M476 480H324a36 36 0 0 1-36-36V96h-96v156a36 36 0 0 1-36 36H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h112V68a36 36 0 0 1 36-36h152a36 36 0 0 1 36 36v348h96V260a36 36 0 0 1 36-36h140a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H512v156a36 36 0 0 1-36 36z" + } + }, + "free": [ + "solid" + ] + }, + "waze": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83f", + "label": "Waze", + "svg": { + "brands": { + "last_modified": 1558987775925, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.17 201.67C516.69 287.53 471.23 369.59 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1-51.57-49c-6.44.19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.92c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.26C94.8 95.2 193.12 32 288.09 32c102.48 0 197.15 70.67 214.08 169.67zM373.51 388.28c42-19.18 81.33-56.71 96.29-102.14 40.48-123.09-64.15-228-181.71-228-83.45 0-170.32 55.42-186.07 136-9.53 48.91 5 131.35-68.75 131.35C58.21 358.6 91.6 378.11 127 389.54c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9.82a51.69 51.69 0 0 1 78.78-16.42zM205.12 187.13c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0zm116.57 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0zm-122.61 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06.28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z" + } + }, + "free": [ + "brands" + ] + }, + "weebly": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5cc", + "label": "Weebly", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" + } + }, + "free": [ + "brands" + ] + }, + "weibo": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18a", + "label": "Weibo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" + } + }, + "free": [ + "brands" + ] + }, + "weight": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "measurement", + "scale", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f496", + "label": "Weight", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635811, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z" + } + }, + "free": [ + "solid" + ] + }, + "weight-hanging": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anvil", + "heavy", + "measurement" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5cd", + "label": "Hanging Weight", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635811, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "weixin": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d7", + "label": "Weixin (WeChat)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" + } + }, + "free": [ + "brands" + ] + }, + "whatsapp": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f232", + "label": "What's App", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" + } + }, + "free": [ + "brands" + ] + }, + "whatsapp-square": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40c", + "label": "What's App Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" + } + }, + "free": [ + "brands" + ] + }, + "wheelchair": { + "changes": [ + "4", + "5.0.0", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "accessible", + "handicap", + "person" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f193", + "label": "Wheelchair", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635812, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z" + } + }, + "free": [ + "solid" + ] + }, + "whmcs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40d", + "label": "WHMCS", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861028, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" + } + }, + "free": [ + "brands" + ] + }, + "wifi": { + "changes": [ + "4.2", + "5.0.0", + "5.3.0", + "5.10.1", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "connection", + "hotspot", + "internet", + "network", + "wireless" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1eb", + "label": "WiFi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635813, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M634.91 154.88C457.74-8.99 182.19-8.93 5.09 154.88c-6.66 6.16-6.79 16.59-.35 22.98l34.24 33.97c6.14 6.1 16.02 6.23 22.4.38 145.92-133.68 371.3-133.71 517.25 0 6.38 5.85 16.26 5.71 22.4-.38l34.24-33.97c6.43-6.39 6.3-16.82-.36-22.98zM320 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm202.67-83.59c-115.26-101.93-290.21-101.82-405.34 0-6.9 6.1-7.12 16.69-.57 23.15l34.44 33.99c6 5.92 15.66 6.32 22.05.8 83.95-72.57 209.74-72.41 293.49 0 6.39 5.52 16.05 5.13 22.05-.8l34.44-33.99c6.56-6.46 6.33-17.06-.56-23.15z" + } + }, + "free": [ + "solid" + ] + }, + "wikipedia-w": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f266", + "label": "Wikipedia W", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" + } + }, + "free": [ + "brands" + ] + }, + "wind": { + "changes": [ + "5.4.0", + "5.5.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "blow", + "breeze", + "fall", + "seasonal", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f72e", + "label": "Wind", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635814, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M156.7 256H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h142.2c15.9 0 30.8 10.9 33.4 26.6 3.3 20-12.1 37.4-31.6 37.4-14.1 0-26.1-9.2-30.4-21.9-2.1-6.3-8.6-10.1-15.2-10.1H81.6c-9.8 0-17.7 8.8-15.9 18.4 8.6 44.1 47.6 77.6 94.2 77.6 57.1 0 102.7-50.1 95.2-108.6C249 291 205.4 256 156.7 256zM16 224h336c59.7 0 106.8-54.8 93.8-116.7-7.6-36.2-36.9-65.5-73.1-73.1-55.4-11.6-105.1 24.9-114.9 75.5-1.9 9.6 6.1 18.3 15.8 18.3h32.8c6.7 0 13.1-3.8 15.2-10.1C325.9 105.2 337.9 96 352 96c19.4 0 34.9 17.4 31.6 37.4-2.6 15.7-17.4 26.6-33.4 26.6H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16zm384 32H243.7c19.3 16.6 33.2 38.8 39.8 64H400c26.5 0 48 21.5 48 48s-21.5 48-48 48c-17.9 0-33.3-9.9-41.6-24.4-2.9-5-8.7-7.6-14.5-7.6h-33.8c-10.9 0-19 10.8-15.3 21.1 17.8 50.6 70.5 84.8 129.4 72.3 41.2-8.7 75.1-41.6 84.7-82.7C526 321.5 470.5 256 400 256z" + } + }, + "free": [ + "solid" + ] + }, + "window-close": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "cancel", + "computer", + "development" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f410", + "label": "Window Close", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635815, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z" + }, + "regular": { + "last_modified": 1628088635295, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "window-maximize": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "computer", + "development", + "expand" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d0", + "label": "Window Maximize", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635816, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z" + }, + "regular": { + "last_modified": 1628088635296, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "window-minimize": { + "changes": [ + "4.7", + "5.0.0", + "5.10.1" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "collapse", + "computer", + "development" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d1", + "label": "Window Minimize", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635817, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z" + }, + "regular": { + "last_modified": 1628088635296, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "window-restore": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "computer", + "development" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d2", + "label": "Window Restore", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635817, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z" + }, + "regular": { + "last_modified": 1628088635296, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z" + } + }, + "free": [ + "solid", + "regular" + ] + }, + "windows": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "microsoft", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17a", + "label": "Windows", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" + } + }, + "free": [ + "brands" + ] + }, + "wine-bottle": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f72f", + "label": "Wine Bottle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635818, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M507.31 72.57L439.43 4.69c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l-76.67 76.67c-46.58-19.7-102.4-10.73-140.37 27.23L18.75 312.23c-24.99 24.99-24.99 65.52 0 90.51l90.51 90.51c24.99 24.99 65.52 24.99 90.51 0l158.39-158.39c37.96-37.96 46.93-93.79 27.23-140.37l76.67-76.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.24-6.24 6.24-16.37-.01-22.62zM179.22 423.29l-90.51-90.51 122.04-122.04 90.51 90.51-122.04 122.04z" + } + }, + "free": [ + "solid" + ] + }, + "wine-glass": { + "changes": [ + "5.0.9", + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "grapes", + "merlot", + "sauvignon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4e3", + "label": "Wine Glass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635819, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z" + } + }, + "free": [ + "solid" + ] + }, + "wine-glass-alt": { + "changes": [ + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "grapes", + "merlot", + "sauvignon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ce", + "label": "Alternate Wine Glas", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635819, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z" + } + }, + "free": [ + "solid" + ] + }, + "wix": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5cf", + "label": "Wix", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" + } + }, + "free": [ + "brands" + ] + }, + "wizards-of-the-coast": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f730", + "label": "Wizards of the Coast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M219.19 345.69c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92.26-23.04-5.47-7.76-14.28-12.88-21.73-7.08zm336.75 75.94c-.34 1.7-.55 1.67.79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.34-78.03-54.73-6.02-124.38 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79.26c63.89-58.4 131.19-77.25 184.35-73.85 58.4 3.67 100.03 34.04 100.03 68.08-.01 9.96-2.63 15.72-3.94 20.17zM392.28 240.42c.79 7.07 4.19 10.21 9.17 10.47 5.5.26 9.43-2.62 10.47-6.55.79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46zm-50.02-151.1C137.75 89.32 13.1 226.8.79 241.2c-1.05.52-1.31.79.79 1.31 60.49 16.5 155.81 81.18 196.13 202.16l1.05.26c55.25-69.92 140.88-128.05 236.99-128.05 80.92 0 130.15 42.16 130.15 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2.79.79.79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26.52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78.79 3.4 2.09 9.69 2.36 14.93 0 1.05.79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.74 176 489.43 89.32 342.26 89.32zm-99.24 289.62c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5.28.39 12.13 16.57-4.71 31.16zm2.09-136.43l9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45-1.83-8.11zm18.59 117.58l-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52.26c1.31 1.83 2.09 2.88 3.4 4.71l-.26.52c-1.05-.26-2.36-.79-5.24.26-2.09.79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83.52 1.83 1.83 5.5l-.26.26c-3.06.61-4.65.34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26.26c-2.34 1.59-6.27 4.21-9.68 6.57zm55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76.26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52.26 3.14 4.98-.26.52c-3.53-1.76-7.35.76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64v.25zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26.52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4.79-8.9 2.62-12.83 3.93l-.26.26c.79 2.62 3.14 9.95 4.19 13.88.79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88.26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26.26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26.26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45.54 2.62 1.85 3.41 2.63 3.93zm32.21-6.81l-.26.26c-4.71.52-14.14 2.36-22.52 4.19l-.26-.26.79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26.26c.52 2.36.79 3.14 1.57 5.5l-.26.26c-1.14-1.14-3.34-3.2-16.24-.79l-.26.26c.26 1.57 1.05 6.55 1.57 9.95l.26.26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26.26c.26 2.09 1.57 9.43 2.09 12.57l.26.26c1.15.38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04zm10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25.02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24.79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69.26 2.36.52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51zm37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26.26c-.52 1.83-1.83 6.02-1.83 6.28l-.52.52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26.52c0 1.06-.27 3.41-.27 5.25zm5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69.79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66zm10.99 114.44c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52zm42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24.59-7.27.26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09.79 5.5 2.09 7.59 2.88.48.48.18-1.87-1.05 25.14-.24 1.81.02 2.6.8 3.91zm-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9zm29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27.09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52l-2.36 3.4zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26.26-5.76-4.45.26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26.26-1.31 3.91zm27.23-44.26l-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59.75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38.79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5l-7.85 10.46zm35.62-10.21c-11-30.38-60.49-127.53-191.95-129.62-53.42-1.05-94.27 15.45-132.76 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05.26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.58 101.05 231.87 93.23 231.52c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4.52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.98-35.88 67.04 1.05 167.33 40.85 199.8 139.83.78 2.1-.01 2.63-.79.27zM203.48 152.43s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36l-2.36-8.64zm143.76 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02 11.53-37.71zM318.43 67.07c-58.4 0-106.05 12.05-114.96 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57.26c6.55-1.83 48.97-13.88 110.24-13.88 180.16 0 301.67 116.79 301.67 223.37v9.95c0 1.31.79 2.62 1.05.52.52-2.09.79-8.64.79-19.64.26-83.79-96.63-227.55-321.57-227.55zm211.06 169.68c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36zm-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81.52 13.35 6.02 14.66 3.67 1.05 8.9.52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39zM491 300.65c1.83.52 3.14 1.05 5.76 1.83 0-1.83.52-8.38.79-12.05-1.05 1.31-5.5 8.12-6.55 9.95v.27z" + } + }, + "free": [ + "brands" + ] + }, + "wodu": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e088", + "label": "Wodu", + "voted": false, + "svg": { + "brands": { + "last_modified": 1603226785925, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z" + } + }, + "free": [ + "brands" + ] + }, + "wolf-pack-battalion": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f514", + "label": "Wolf Pack Battalion", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775926, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M267.73 471.53l10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.21 456.43 239.73l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.18l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.79l-58 38.71-3.52 93.25L369.78 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.33 59.82-3.52-93.25-58.06-38.71C185 65.1 135.77 22.87 95.3 0c-17.54 61.12-4.4 118.76 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.35 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.06 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1-18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.68 376.52L181.52 366c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67zm-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15z" + } + }, + "free": [ + "brands" + ] + }, + "won-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "krw", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f159", + "label": "Won Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635819, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M564 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-48l18.6-80.6c1.7-7.5-4-14.7-11.7-14.7h-46.1c-5.7 0-10.6 4-11.7 9.5L450.7 128H340.8l-19.7-86c-1.3-5.5-6.1-9.3-11.7-9.3h-44c-5.6 0-10.4 3.8-11.7 9.3l-20 86H125l-17.5-85.7c-1.1-5.6-6.1-9.6-11.8-9.6H53.6c-7.7 0-13.4 7.1-11.7 14.6L60 128H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h62.3l7.2 32H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h83.9l40.9 182.6c1.2 5.5 6.1 9.4 11.7 9.4h56.8c5.6 0 10.4-3.9 11.7-9.3L259.3 288h55.1l42.4 182.7c1.3 5.4 6.1 9.3 11.7 9.3h56.8c5.6 0 10.4-3.9 11.7-9.3L479.1 288H564c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-70.1l7.4-32zM183.8 342c-6.2 25.8-6.8 47.2-7.3 47.2h-1.1s-1.7-22-6.8-47.2l-11-54h38.8zm27.5-118h-66.8l-6.5-32h80.8zm62.9 0l2-8.6c1.9-8 3.5-16 4.8-23.4h11.8c1.3 7.4 2.9 15.4 4.8 23.4l2 8.6zm130.9 118c-5.1 25.2-6.8 47.2-6.8 47.2h-1.1c-.6 0-1.1-21.4-7.3-47.2l-12.4-54h39.1zm25.2-118h-67.4l-7.3-32h81.6z" + } + }, + "free": [ + "solid" + ] + }, + "wordpress": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19a", + "label": "WordPress Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" + } + }, + "free": [ + "brands" + ] + }, + "wordpress-simple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f411", + "label": "Wordpress Simple", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" + } + }, + "free": [ + "brands" + ] + }, + "wpbeginner": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f297", + "label": "WPBeginner", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" + } + }, + "free": [ + "brands" + ] + }, + "wpexplorer": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2de", + "label": "WPExplorer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" + } + }, + "free": [ + "brands" + ] + }, + "wpforms": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f298", + "label": "WPForms", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861029, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" + } + }, + "free": [ + "brands" + ] + }, + "wpressr": { + "changes": [ + "5.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + "rendact" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3e4", + "label": "wpressr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm171.33 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03.06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.81 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24.1 28.48.02 42.72.05 6.24.01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6.23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21.08 30.43.02 45.64.04 5.56.01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33.04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43.05 52.86 0 79.29.05 12.44.02 13.93-13.65 3.9-13.64-25.26.03-50.52.02-75.78.02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09.06 25.98.02 130.78.03 6.08-.01 8.03 2.79 5.62 8.27z" + } + }, + "free": [ + "brands" + ] + }, + "wrench": { + "changes": [ + "2", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "fix", + "mechanic", + "plumbing", + "settings", + "spanner", + "tool", + "update" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ad", + "label": "Wrench", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635820, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "x-ray": { + "changes": [ + "5.0.7", + "5.10.2" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "medical", + "radiological images", + "radiology", + "skeleton" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f497", + "label": "X-Ray", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635820, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z" + } + }, + "free": [ + "solid" + ] + }, + "xbox": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f412", + "label": "Xbox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" + } + }, + "free": [ + "brands" + ] + }, + "xing": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f168", + "label": "Xing", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" + } + }, + "free": [ + "brands" + ] + }, + "xing-square": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f169", + "label": "Xing Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" + } + }, + "free": [ + "brands" + ] + }, + "y-combinator": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23b", + "label": "Y Combinator", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" + } + }, + "free": [ + "brands" + ] + }, + "yahoo": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19e", + "label": "Yahoo Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1599860539202, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M223.69,141.06,167,284.23,111,141.06H14.93L120.76,390.19,82.19,480h94.17L317.27,141.06Zm105.4,135.79a58.22,58.22,0,1,0,58.22,58.22A58.22,58.22,0,0,0,329.09,276.85ZM394.65,32l-93,223.47H406.44L499.07,32Z" + } + }, + "free": [ + "brands" + ] + }, + "yammer": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f840", + "label": "Yammer", + "svg": { + "brands": { + "last_modified": 1628088633726, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M421.78 152.17A23.06 23.06 0 0 0 400.9 112c-.83.43-1.71.9-2.63 1.4-15.25 8.4-118.33 80.62-106.69 88.77s82.04-23.61 130.2-50zm0 217.17c-48.16-26.38-118.64-58.1-130.2-50s91.42 80.35 106.69 88.74c.92.51 1.8 1 2.63 1.41a23.07 23.07 0 0 0 20.88-40.15zM464.21 237c-.95 0-1.95-.06-3-.06-17.4 0-142.52 13.76-136.24 26.51s83.3 18.74 138.21 18.76a23 23 0 0 0 1-45.21zM31 96.65a24.88 24.88 0 0 1 46.14-18.4l81 205.06h1.21l77-203.53a23.52 23.52 0 0 1 44.45 15.27L171.2 368.44C152.65 415.66 134.08 448 77.91 448a139.67 139.67 0 0 1-23.81-1.95 21.31 21.31 0 0 1 6.9-41.77c.66.06 10.91.66 13.86.66 30.47 0 43.74-18.94 58.07-59.41z" + } + }, + "free": [ + "brands" + ] + }, + "yandex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f413", + "label": "Yandex", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" + } + }, + "free": [ + "brands" + ] + }, + "yandex-international": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f414", + "label": "Yandex International", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" + } + }, + "free": [ + "brands" + ] + }, + "yarn": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7e3", + "label": "Yarn", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861030, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" + } + }, + "free": [ + "brands" + ] + }, + "yelp": { + "changes": [ + "4.2", + "5.0.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e9", + "label": "Yelp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1558987775927, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M42.9 240.32l99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.45a22.79 22.79 0 0 1-28.21-19.6 197.16 197.16 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21zm44 239.25a199.45 199.45 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.94 490l3.9-110.82c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.34-109.92l58.81 94a22.93 22.93 0 0 0 34 5.5 198.36 198.36 0 0 0 52.71-67.61A23 23 0 0 0 364.17 370l-105.42-34.26c-20.31-6.5-37.81 15.8-26.51 33.91zm148.33-132.23a197.44 197.44 0 0 0-50.41-69.31 22.85 22.85 0 0 0-34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.63a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0-9.9 32l104.12 180.44c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0-24.5-22.8 320.37 320.37 0 0 0-112.33 30.1z" + } + }, + "free": [ + "brands" + ] + }, + "yen-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "jpy", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f157", + "label": "Yen Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635821, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M351.2 32h-65.3c-4.6 0-8.8 2.6-10.8 6.7l-55.4 113.2c-14.5 34.7-27.1 71.9-27.1 71.9h-1.3s-12.6-37.2-27.1-71.9L108.8 38.7c-2-4.1-6.2-6.7-10.8-6.7H32.8c-9.1 0-14.8 9.7-10.6 17.6L102.3 200H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h88.2l19.8 37.2V320H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h108v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h108c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12H232v-26.8l19.8-37.2H340c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12h-58.3l80.1-150.4c4.3-7.9-1.5-17.6-10.6-17.6z" + } + }, + "free": [ + "solid" + ] + }, + "yin-yang": { + "changes": [ + "5.3.0", + "5.10.2", + "5.11.0", + "5.11.1" + ], + "ligatures": [], + "search": { + "terms": [ + "daoism", + "opposites", + "taoism" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ad", + "label": "Yin Yang", + "voted": false, + "svg": { + "solid": { + "last_modified": 1628088635821, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 376c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-128c-53.02 0-96 42.98-96 96s42.98 96 96 96c-106.04 0-192-85.96-192-192S141.96 64 248 64c53.02 0 96 42.98 96 96s-42.98 96-96 96zm0-128c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "yoast": { + "changes": [ + "4.6", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b1", + "label": "Yoast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861031, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" + } + }, + "free": [ + "brands" + ] + }, + "youtube": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "film", + "video", + "youtube-play", + "youtube-square" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f167", + "label": "YouTube", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861031, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" + } + }, + "free": [ + "brands" + ] + }, + "youtube-square": { + "changes": [ + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f431", + "label": "YouTube Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1546440861031, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" + } + }, + "free": [ + "brands" + ] + }, + "zhihu": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f63f", + "label": "Zhihu", + "voted": true, + "svg": { + "brands": { + "last_modified": 1546440861031, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M170.54 148.13v217.54l23.43.01 7.71 26.37 42.01-26.37h49.53V148.13H170.54zm97.75 193.93h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.75h72.82v170.31zm-118.46-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.12 0 396.34c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.95c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62v.01zm412.02-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2l19.23 14.43zm-150.09-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.35c-19.78 0-130.91.93-131.06.93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.22 16.49-232.36 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15.89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.41s2.82 22.31 25.51 22.85h107.94v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08.11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.36c9.68 0 8.7-23.78 8.7-23.78l.03-.01z" + } + }, + "free": [ + "brands" + ] + } +} \ No newline at end of file diff --git a/generate_fa_list.py b/generate_fa_list.py new file mode 100644 index 0000000..2ca1fe7 --- /dev/null +++ b/generate_fa_list.py @@ -0,0 +1,51 @@ +import json +import re + +# 1. Generate FA list from metadata +try: + with open('fa_meta.json', 'r') as f: + data = json.load(f) + + fa_icons = [] + for name, info in data.items(): + styles = info.get('styles', []) + for style in styles: + prefix = 'fa-solid' if style == 'solid' else \ + 'fa-regular' if style == 'regular' else \ + 'fa-brands' if style == 'brands' else \ + 'fa-light' + + if prefix == 'fa-light': continue + fa_icons.append(f"{prefix} fa-{name}") + + fa_js = ' const fontawesomeIcons = [\n ' + ', '.join([f'"{icon}"' for icon in fa_icons]) + '\n ]' + print(f"Generated {len(fa_icons)} FA icons.") + +except Exception as e: + print(f"Error processing FA json: {e}") + fa_js = '' + +# 2. Read existing Homelab list from file to preserve it +homelab_js = '' +try: + with open('app/templates/admin.html', 'r') as f: + content = f.read() + # Escape brackets in regex for literal match + match = re.search(r'const homelabIcons = \[.*?\].*?;', content, re.DOTALL) + if match: + homelab_js = match.group(0) + print(f"Found existing homelab icons block.") + else: + print("Did NOT find homelab icons block.") + # Fallback for debugging + print(content[:500]) +except Exception as e: + print(f"Error reading admin.html: {e}") + +# 3. Write replacement +if homelab_js and fa_js: + with open('replacement_fa.txt', 'w') as f: + f.write(homelab_js + '\n\n' + fa_js) + print("Wrote replacement_fa.txt") +else: + print("Skipping write because data missing.") \ No newline at end of file diff --git a/generate_lists.py b/generate_lists.py new file mode 100644 index 0000000..8801399 --- /dev/null +++ b/generate_lists.py @@ -0,0 +1,71 @@ + +import json + +# Read homelab icons +with open('homelab_icons_list.txt', 'r') as f: + homelab_icons = [line.strip().replace(',', '').replace('"', '') for line in f.readlines()] + +# Generate JS array string +homelab_js = ' const homelabIcons = [\n ' + ', '.join([f'"{icon}"' for icon in homelab_icons]) + '\n ];' + +# FontAwesome Icons (Expanded List) +fa_icons = [ + # Web Application Icons + "fa-solid fa-house", "fa-solid fa-magnifying-glass", "fa-solid fa-user", "fa-solid fa-check", "fa-solid fa-download", "fa-solid fa-image", + "fa-solid fa-phone", "fa-solid fa-bars", "fa-solid fa-envelope", "fa-solid fa-star", "fa-solid fa-location-dot", "fa-solid fa-music", + "fa-solid fa-wand-magic-sparkles", "fa-solid fa-heart", "fa-solid fa-arrow-right", "fa-solid fa-circle-xmark", "fa-solid fa-bomb", + "fa-solid fa-poo", "fa-solid fa-camera-retro", "fa-solid fa-cloud", "fa-solid fa-comment", "fa-solid fa-pen-nib", "fa-solid fa-arrow-up", + "fa-solid fa-hippo", "fa-solid fa-face-smile", "fa-solid fa-calendar-days", "fa-solid fa-paperclip", "fa-solid fa-shield-halved", + "fa-solid fa-file", "fa-solid fa-bell", "fa-solid fa-cart-shopping", "fa-solid fa-clipboard", "fa-solid fa-filter", "fa-solid fa-circle-info", + "fa-solid fa-arrow-trend-up", "fa-solid fa-bolt", "fa-solid fa-car", "fa-solid fa-ghost", "fa-solid fa-mug-hot", "fa-solid fa-circle-user", + "fa-solid fa-pen", "fa-solid fa-umbrella", "fa-solid fa-gift", "fa-solid fa-film", "fa-solid fa-list", "fa-solid fa-gear", + "fa-solid fa-trash", "fa-solid fa-circle-up", "fa-solid fa-video", "fa-solid fa-chain", "fa-solid fa-gamepad", "fa-solid fa-server", + "fa-solid fa-database", "fa-solid fa-network-wired", "fa-solid fa-wifi", "fa-solid fa-microchip", "fa-solid fa-hard-drive", + "fa-solid fa-laptop", "fa-solid fa-desktop", "fa-solid fa-mobile", "fa-solid fa-tablet", "fa-solid fa-tv", "fa-solid fa-print", + "fa-solid fa-terminal", "fa-solid fa-code", "fa-solid fa-bug", "fa-solid fa-layer-group", "fa-solid fa-users", "fa-solid fa-user-secret", + "fa-solid fa-lock", "fa-solid fa-unlock", "fa-solid fa-key", "fa-solid fa-passport", "fa-solid fa-id-card", "fa-solid fa-address-book", + "fa-solid fa-globe", "fa-solid fa-earth-americas", "fa-solid fa-earth-europe", "fa-solid fa-earth-africa", "fa-solid fa-earth-asia", + "fa-solid fa-sun", "fa-solid fa-moon", "fa-solid fa-cloud-sun", "fa-solid fa-cloud-rain", "fa-solid fa-snowflake", "fa-solid fa-fire", + "fa-solid fa-water", "fa-solid fa-wind", "fa-solid fa-tree", "fa-solid fa-seedling", "fa-solid fa-leaf", "fa-solid fa-cannabis", + "fa-solid fa-paw", "fa-solid fa-dog", "fa-solid fa-cat", "fa-solid fa-horse", "fa-solid fa-fish", "fa-solid fa-crow", + "fa-solid fa-hospital", "fa-solid fa-syringe", "fa-solid fa-capsules", "fa-solid fa-pills", "fa-solid fa-briefcase-medical", "fa-solid fa-stethoscope", + "fa-solid fa-book", "fa-solid fa-book-open", "fa-solid fa-book-bookmark", "fa-solid fa-bookmark", "fa-solid fa-graduation-cap", "fa-solid fa-school", + "fa-solid fa-money-bill", "fa-solid fa-money-bill-wave", "fa-solid fa-coins", "fa-solid fa-credit-card", "fa-solid fa-wallet", "fa-solid fa-piggy-bank", + "fa-solid fa-chart-simple", "fa-solid fa-chart-pie", "fa-solid fa-chart-area", "fa-solid fa-chart-column", "fa-solid fa-chart-line", "fa-solid fa-diagram-project", + "fa-solid fa-thumbs-up", "fa-solid fa-thumbs-down", "fa-solid fa-hand-point-up", "fa-solid fa-hand-point-down", "fa-solid fa-hand-point-left", "fa-solid fa-hand-point-right", + "fa-solid fa-envelope-open", "fa-solid fa-envelope-open-text", "fa-solid fa-inbox", "fa-solid fa-paper-plane", "fa-solid fa-share", "fa-solid fa-share-nodes", + "fa-solid fa-clock", "fa-solid fa-stopwatch", "fa-solid fa-hourglass", "fa-solid fa-hourglass-start", "fa-solid fa-hourglass-half", "fa-solid fa-hourglass-end", + "fa-solid fa-calendar", "fa-solid fa-calendar-check", "fa-solid fa-calendar-plus", "fa-solid fa-calendar-minus", "fa-solid fa-calendar-xmark", + "fa-solid fa-rss", "fa-solid fa-podcast", "fa-solid fa-radio", "fa-solid fa-microphone", "fa-solid fa-microphone-lines", "fa-solid fa-headphones", + "fa-solid fa-sliders", "fa-solid fa-table-columns", "fa-solid fa-table-list", "fa-solid fa-table-cells", "fa-solid fa-table-cells-large", + "fa-solid fa-toggle-on", "fa-solid fa-toggle-off", "fa-solid fa-circle-check", "fa-solid fa-circle-pause", "fa-solid fa-circle-stop", "fa-solid fa-circle-play", + "fa-solid fa-power-off", "fa-solid fa-plug", "fa-solid fa-plug-circle-plus", "fa-solid fa-plug-circle-minus", "fa-solid fa-plug-circle-check", "fa-solid fa-plug-circle-xmark", + "fa-solid fa-ethernet", "fa-solid fa-satellite-dish", "fa-solid fa-satellite", "fa-solid fa-tower-broadcast", "fa-solid fa-tower-cell", "fa-solid fa-signal", + + # Brands + "fa-brands fa-github", "fa-brands fa-docker", "fa-brands fa-linux", "fa-brands fa-windows", "fa-brands fa-apple", "fa-brands fa-android", + "fa-brands fa-google", "fa-brands fa-google-drive", "fa-brands fa-google-play", "fa-brands fa-aws", "fa-brands fa-cloudflare", "fa-brands fa-digital-ocean", + "fa-brands fa-python", "fa-brands fa-js", "fa-brands fa-html5", "fa-brands fa-css3", "fa-brands fa-react", "fa-brands fa-vuejs", "fa-brands fa-angular", + "fa-brands fa-node", "fa-brands fa-npm", "fa-brands fa-yarn", "fa-brands fa-php", "fa-brands fa-java", "fa-brands fa-rust", "fa-brands fa-golang", + "fa-brands fa-wordpress", "fa-brands fa-joomla", "fa-brands fa-drupal", "fa-brands fa-magento", "fa-brands fa-shopify", "fa-brands fa-squarespace", + "fa-brands fa-wix", "fa-brands fa-weebly", "fa-brands fa-medium", "fa-brands fa-tumblr", "fa-brands fa-blogger", "fa-brands fa-ghost", + "fa-brands fa-discord", "fa-brands fa-slack", "fa-brands fa-telegram", "fa-brands fa-whatsapp", "fa-brands fa-facebook-messenger", "fa-brands fa-skype", + "fa-brands fa-twitter", "fa-brands fa-facebook", "fa-brands fa-instagram", "fa-brands fa-linkedin", "fa-brands fa-youtube", "fa-brands fa-twitch", + "fa-brands fa-tiktok", "fa-brands fa-snapchat", "fa-brands fa-pinterest", "fa-brands fa-reddit", "fa-brands fa-quora", "fa-brands fa-stack-overflow", + "fa-brands fa-spotify", "fa-brands fa-itunes", "fa-brands fa-soundcloud", "fa-brands fa-bandcamp", "fa-brands fa-steam", "fa-brands fa-xbox", + "fa-brands fa-playstation", "fa-brands fa-battle-net", "fa-brands fa-itch-io", "fa-brands fa-unity", "fa-brands fa-unreal-engine", + "fa-brands fa-bitcoin", "fa-brands fa-ethereum", "fa-brands fa-paypal", "fa-brands fa-stripe", "fa-brands fa-cc-visa", "fa-brands fa-cc-mastercard", + "fa-brands fa-cc-amex", "fa-brands fa-cc-discover", "fa-brands fa-cc-jcb", "fa-brands fa-cc-diners-club", "fa-brands fa-amazon", "fa-brands fa-ebay", + "fa-brands fa-alipay", "fa-brands fa-kickstarter", "fa-brands fa-patreon", "fa-brands fa-trello", "fa-brands fa-atlassian", "fa-brands fa-jira", + "fa-brands fa-bitbucket", "fa-brands fa-confluence", "fa-brands fa-dropbox", "fa-brands fa-box", "fa-brands fa-evernote", "fa-brands fa-salesforce", + "fa-brands fa-hubspot", "fa-brands fa-mailchimp", "fa-brands fa-waze", "fa-brands fa-uber", "fa-brands fa-lyft", "fa-brands fa-airbnb", + "fa-brands fa-strava", "fa-brands fa-fitbit", "fa-brands fa-nutritionix", "fa-brands fa-imdb", "fa-brands fa-wikipedia-w", "fa-brands fa-researchgate", + "fa-brands fa-chrome", "fa-brands fa-firefox", "fa-brands fa-firefox-browser", "fa-brands fa-edge", "fa-brands fa-safari", "fa-brands fa-opera", + "fa-brands fa-internet-explorer", "fa-brands fa-ubuntu", "fa-brands fa-centos", "fa-brands fa-fedora", "fa-brands fa-redhat", "fa-brands fa-suse", + "fa-brands fa-raspberry-pi", "fa-brands fa-freebsd" +] + +fa_js = ' const fontawesomeIcons = [\n ' + ', '.join([f'"{icon}"' for icon in fa_icons]) + '\n ];' + +with open('replacement.txt', 'w') as f: + f.write(homelab_js + '\n\n' + fa_js) diff --git a/homelab_icons_list.txt b/homelab_icons_list.txt new file mode 100644 index 0000000..6704254 --- /dev/null +++ b/homelab_icons_list.txt @@ -0,0 +1,2740 @@ +"1337x", +"13ft", +"1panel", +"1password-dark", +"1password", +"20i-dark", +"20i", +"2fauth-light", +"2fauth", +"3cx-light", +"3cx", +"4chan", +"5etools-dark", +"5etools", +"7zip", +"a-mule", +"aboard", +"act", +"action1", +"activepieces", +"actual-budget", +"adblock", +"adguard-home-sync", +"adguard-home", +"adminer", +"adobe", +"ads-b-exchange", +"adsb", +"advanzia", +"adventure-log", +"affine-light", +"affine", +"agile-freaks", +"agregarr", +"air-trail", +"airsonic", +"airtable", +"airtel", +"airvpn", +"akamai", +"akaunting", +"akkoma-light", +"akkoma", +"alarmpi", +"albert-heijn", +"alertmanager", +"alexa", +"algo", +"ali-mail", +"aliexpress", +"alist", +"aliyun", +"alloy", +"alltube-light", +"alltube", +"alma-linux", +"alpine-linux", +"amazon-light", +"amazon-prime", +"amazon-web-services-light", +"amazon-web-services", +"amazon", +"amcrest-cloud", +"amcrest", +"amd-light", +"amd", +"ami-alt-light", +"ami-alt", +"ami", +"amp", +"ampache", +"android-auto-dark", +"android-auto", +"android-robot", +"android", +"anghami", +"angular", +"anime-kai", +"anonaddy", +"ansible-light", +"ansible", +"any-listen", +"anything-llm-light", +"anything-llm", +"apache-airflow", +"apache-answer", +"apache-cassandra", +"apache-cloudstack", +"apache-druid", +"apache-openoffice", +"apache-solr", +"apache-subversion", +"apache-tomcat-light", +"apache-tomcat", +"apache", +"apc", +"apiscp", +"app-store", +"appdaemon", +"appflowy", +"apple-alt", +"apple-light", +"apple-maps", +"apple-music", +"apple-podcasts", +"apple-tv-plus-light", +"apple-tv-plus", +"apple", +"apprise", +"appwrite", +"ara-records-ansible", +"arcane", +"arch-linux", +"archidekt", +"archisteamfarm", +"archivebox", +"archiveteam-warrior-light", +"archiveteam-warrior", +"arduino", +"argo-cd", +"ariang", +"arm", +"arris-light", +"arris", +"artifacthub", +"artifactory", +"aruba", +"asana", +"asciinema", +"asrock-rack-ipmi", +"asrock-rack", +"assetgrid", +"asterisk", +"astral", +"astuto-light", +"astuto", +"asus-full", +"asus-rog", +"asus-router", +"asus", +"asustor", +"at-t", +"atlassian-bamboo", +"atlassian-bitbucket", +"atlassian-confluence", +"atlassian-jira", +"atlassian-opsgenie", +"atlassian-trello", +"atlassian", +"atuin-light", +"atuin", +"audacity", +"audiobookshelf", +"aura", +"auracast", +"authelia", +"authentik", +"authman", +"auto-cad", +"auto-mcs", +"autobangumi-dark", +"autobangumi", +"autobrr", +"automad-light", +"automad", +"avg", +"avigilon", +"avm-fritzbox-light", +"avm-fritzbox", +"aws-ecs", +"aws-light", +"aws", +"awtrix", +"awwesome", +"awx", +"axis", +"aya", +"azuracast", +"azure-container-instances", +"azure-container-service", +"azure-devops", +"azure-dns", +"azure", +"bab-technologie-dark", +"bab-technologie", +"babybuddy", +"backblaze", +"backrest-light", +"backrest", +"bacula", +"badge", +"baikal", +"bale", +"balena-cloud", +"balena-etcher", +"ballerina", +"bandcamp", +"bar-assistant", +"barcodebuddy", +"baserow", +"basilisk", +"bastillion", +"batocera-linux", +"bazarr-dark", +"bazarr", +"bazecor", +"be-quiet", +"beaver-habit-tracker-light", +"beaver-habit-tracker", +"bechtle", +"beef-light", +"beef", +"beets", +"benotes", +"bentopdf", +"beszel-light", +"beszel", +"betanin", +"bewcloud", +"bible-gateway", +"bibliogram", +"biblioreads-light", +"biblioreads", +"biedronka", +"bigcapital", +"bilibili", +"bing", +"binner-dark", +"binner", +"birdnet", +"bitbucket", +"bitcoin", +"bithumen", +"bitmagnet", +"bitwarden", +"bitwig-studio-dark", +"bitwig-studio", +"blocky", +"blogger", +"blue-iris", +"blue-letter-bible", +"bluesky", +"bluetooth", +"bluewallet", +"bobcat-miner", +"boinc", +"book-lore", +"booklogr-light", +"booklogr", +"booksonic", +"bookstack", +"bootstrap", +"borg", +"borgmatic-light", +"borgmatic", +"bottom-dark", +"bottom", +"boundary", +"box", +"boxarr", +"brave-dev", +"brave", +"brewpi", +"brick-tracker", +"bright-move", +"brillcam", +"broad-link", +"broadcastchannel-light", +"broadcastchannel", +"brocade", +"brother", +"browserless-light", +"browserless", +"browsh", +"btcpay-server", +"buddy", +"budget-board", +"budget-zero", +"budgetbee-light", +"budgetbee", +"budibase", +"buffalo", +"build-better-dark", +"build-better", +"buildium", +"bunkerweb", +"bunny", +"buxfer", +"bytestash", +"c", +"cabernet", +"cabot", +"cachyos-linux", +"cacti", +"caddy", +"cadvisor", +"cal-com-light", +"cal-com", +"calckey", +"caldera", +"calibre-web-automated-book-downloader", +"calibre-web", +"calibre", +"camera-ui", +"canonical", +"canvas-lms", +"cap-cut-dark", +"cap-cut", +"capacities-dark", +"capacities", +"caprover", +"cardigann-light", +"cardigann", +"carrefour", +"casaos", +"castopod", +"cc-light", +"cc", +"centos", +"ceph", +"cert-manager", +"cert-warden-light", +"cert-warden", +"cessna", +"chainguard", +"changedetection", +"channels-dvr", +"chaptarr", +"chart-db", +"chatbetter", +"chatgpt", +"chatpad-ai", +"chatwoot", +"check-cle", +"checkmate", +"checkmk", +"cherry", +"chess", +"chevereto", +"chhoto-url", +"chibisafe", +"chiefonboarding", +"chirpy", +"chowdown", +"chroma", +"chrome-beta", +"chrome-canary", +"chrome-dev", +"chrome-devtools", +"chrome-remote-desktop", +"chrome", +"chromecast-light", +"chromecast", +"chromium", +"chronograf", +"cilium-light", +"cilium", +"cinny-light", +"cinny", +"ciphermail", +"cisco", +"clam-av", +"clash", +"claude-ai-light", +"claude-ai", +"cleanuperr", +"clickhouse", +"clickup", +"cloud66", +"cloud9-light", +"cloud9", +"cloudbeaver", +"cloudcmd", +"cloudflare-pages", +"cloudflare-zero-trust", +"cloudflare", +"cloudpanel", +"cloudreve", +"cloudstream", +"cobalt-dark", +"cobalt", +"cockpit-cms-light", +"cockpit-cms", +"cockpit-light", +"cockpit", +"code-cademy-dark", +"code-cademy", +"code-server", +"code", +"codeberg", +"codellm", +"coder-light", +"coder", +"codestats-light", +"codestats", +"codex-light", +"codex", +"codimd-light", +"codimd", +"collabora-online", +"comfy-ui", +"commafeed-light", +"commafeed", +"commento-light", +"commento", +"compreface", +"concourse", +"confix", +"confluence", +"consul", +"contabo", +"control-d-dark", +"control-d", +"converse-light", +"converse", +"convertx", +"convex", +"cooler-control", +"coolify", +"copyparty", +"copyq", +"core-control", +"coredns", +"coreos", +"cosign", +"cosmos-cloud", +"costco", +"couchdb", +"couchpotato", +"counter-analytics", +"counter-strike-2", +"counter-strike-global-offensive", +"coursera", +"cozy", +"cpanel", +"cpp", +"crafty-controller", +"crater-invoice", +"crazydomains", +"cribl-light", +"cribl", +"cron-master", +"cronicle", +"cross-seed-square", +"cross-seed", +"crowdin-dark", +"crowdin", +"crowdsec", +"crunchyroll", +"cryptomator", +"cryptpad", +"csharp", +"css-light", +"css", +"ctfreak", +"cup", +"cups-light", +"cups", +"cura", +"cyber-power-full", +"cyberchef", +"czkawka", +"d-link", +"dagster-dark", +"dagster-light", +"dahua", +"dalibo", +"daps", +"dart", +"dashboard-icons-dark", +"dashboard-icons", +"dashdot", +"dashwise", +"dashy", +"datadog", +"davical", +"davis", +"dawarich", +"dc-os", +"dd-wrt-light", +"dd-wrt", +"ddclient", +"ddns-updater", +"debian-linux", +"deemix", +"deepl-dark", +"deepl", +"deepseek", +"deezer", +"defguard", +"dell", +"deluge", +"deno-light", +"deno", +"denodo", +"denon-light", +"denon", +"deployarr", +"develancacheui", +"devtooly-light", +"devtooly", +"dia", +"diagrams-net", +"diamond-aircraft", +"dietpi", +"digi-kam", +"digikey", +"digital-ocean", +"dilg", +"dillinger-light", +"dillinger", +"dim-light", +"dim", +"diners-club", +"directadmin", +"directus", +"discord", +"discourse-light", +"discourse", +"diskover", +"disney-plus", +"dispatcharr", +"distribution", +"diun", +"dixa", +"diyhue", +"dlna", +"docassemble-light", +"docassemble", +"docker-amd", +"docker-amvd", +"docker-compose", +"docker-engine", +"docker-gc", +"docker-mailserver-light", +"docker-mailserver", +"docker-moby", +"docker-volume-backup", +"docker", +"dockge", +"docking-station", +"dockpeek-dark", +"dockpeek", +"dockstarter", +"dockwatch", +"docmost", +"docsify", +"docspell", +"documenso", +"docusaurus", +"docuseal", +"dogpile", +"dokemon", +"dokploy-dark", +"dokploy", +"dokuwiki", +"dolibarr", +"dolphin", +"domainmod", +"domoticz", +"donetick", +"doplarr", +"doppler", +"dopplertask", +"double-commander", +"double-take-dark", +"double-take", +"dovecot", +"dozzle", +"dragon-ruby", +"draw-io", +"draytek", +"dream-host-dark", +"dream-host", +"drone", +"drop", +"dropbox", +"dropout-light", +"dropout", +"droppy-dark", +"droppy", +"dub-light", +"dub", +"duckdns-light", +"duckdns", +"duckduckgo", +"dumbassets", +"dumbpad", +"duo", +"duplicacy", +"duplicati", +"dynmap", +"easy-gate-light", +"easy-gate", +"ebay", +"eblocker", +"edge-dev", +"edge", +"edgeos-light", +"edgeos", +"eitaa", +"elastic-beats", +"elastic-kibana", +"elastic-logstash", +"elastic", +"elasticsearch", +"electron", +"electronic-arts", +"electrum", +"element", +"eleventy-light", +"eleventy", +"elgato-wave-link", +"eliza-os", +"elysian", +"emacs", +"embraer", +"emby", +"embystat", +"emq-light", +"emq", +"emqx", +"emsesp", +"emulatorjs", +"enbizcard", +"enclosed-light", +"enclosed", +"endeavouros-linux", +"endless-light", +"endless", +"endurain", +"enhance", +"enshrouded", +"ente-photos", +"entergy", +"epic-games-light", +"epic-games", +"epson-iprint", +"ersatztv", +"erste-george", +"erste", +"esphome-alt-light", +"esphome-alt", +"esphome-light", +"esphome", +"espocrm", +"espressif", +"etcd", +"etesync", +"ethereum", +"etherpad", +"evcc", +"evebox", +"evernote", +"eweka", +"excalidraw", +"exercism-dark", +"exercism", +"expense-owl", +"ezbookkeeping", +"f-droid", +"f1-dash", +"f5-networks", +"facebook-messenger", +"facebook", +"falcon-christmas", +"falcon-player-dark", +"falcon-player", +"fast-com-light", +"fast-com", +"fasten-health", +"fastmail", +"fedora-alt", +"fedora", +"feedbase-light", +"feedbase", +"feedbin-light", +"feedbin", +"feedly", +"feedlynx-light", +"feedlynx", +"feishin", +"fenrus-light", +"fenrus", +"ferdi", +"ferdium", +"fermentrack", +"ferretdb", +"fibaro", +"fidelity", +"fider", +"figma", +"filebot", +"filebrowser-quantum", +"filebrowser", +"filecloud", +"fileflows", +"filegator", +"filepizza", +"filerun", +"files-community", +"files", +"filestash", +"filezilla", +"finamp", +"findroid", +"fios-light", +"fios", +"firebase", +"firefly-iii", +"firefly", +"firefox-beta", +"firefox-developer-edition", +"firefox-lite", +"firefox-nightly", +"firefox-reality", +"firefox-send", +"firefox", +"fireshare", +"firewalla", +"fittrackee", +"fl-studio", +"fladder", +"flame", +"flaresolverr", +"flarum", +"flat-notes", +"flathub-dark", +"flathub", +"flatnotes", +"flatpak", +"fleetdm", +"flexget", +"flightaware", +"flightradar24-light", +"flightradar24", +"floatplane", +"flogo", +"flood", +"floorp", +"flowise", +"flowtunes", +"fluent-reader", +"fluffychat-dark", +"fluffychat", +"fluidd", +"flux-cd", +"fly-io", +"fmd", +"fnos", +"focalboard", +"foldingathome", +"fontawesome", +"foreflight-dark", +"foreflight", +"forgejo", +"forte-light", +"forte", +"fortinet", +"foscam", +"fossil", +"foundry-vtt", +"franz", +"free-dns", +"free-sas", +"freebox-delta", +"freebox-pop", +"freebox-revolution", +"freedombox", +"freeipa", +"freenas", +"freenom", +"freepbx", +"freescout", +"freshping-dark", +"freshping", +"freshrss", +"friendica", +"frigate-light", +"frigate", +"fritzbox-light", +"fritzbox", +"fronius", +"frp", +"fulcio", +"funkwhale-light", +"funkwhale", +"fusionauth-light", +"fusionauth", +"fusionpbx", +"gamevault", +"gameyfin-light", +"gameyfin", +"gaps", +"garage", +"garmin-connect", +"garuda-linux", +"gaseous", +"gatsby", +"gatus", +"gboard", +"geckoview", +"genius", +"gentoo-linux", +"geo-guessr", +"gerbera", +"gerrit", +"get-iplayer", +"ghost-light", +"ghost", +"ghostfolio", +"ghostty", +"gigaset", +"gimp", +"git", +"gitbook", +"gitea", +"gitee", +"github-light", +"github", +"gitlab", +"gitsign", +"gladys-assistant", +"glance", +"glances-light", +"glances", +"glinet-dark", +"glinet", +"glitchtip", +"glpi", +"gluetun", +"gmail", +"go", +"go2rtc", +"goaccess-light", +"goaccess", +"godaddy-alt", +"godaddy", +"godot", +"gogs", +"golink-dark", +"golink", +"gollum", +"gomft", +"gone-man-switch", +"gonic", +"goodreads", +"google-admin", +"google-admob", +"google-alerts", +"google-analytics", +"google-assistant", +"google-calendar", +"google-chat", +"google-chrome", +"google-classroom", +"google-cloud-platform", +"google-cloud-print", +"google-colab", +"google-compute-engine", +"google-contacts", +"google-docs", +"google-domains", +"google-drive", +"google-earth", +"google-fi", +"google-finance", +"google-fit", +"google-fonts", +"google-forms", +"google-gemini", +"google-home", +"google-jules", +"google-keep", +"google-lens", +"google-maps", +"google-meet", +"google-messages", +"google-news", +"google-one", +"google-pay", +"google-photos", +"google-play-books", +"google-play-games", +"google-play", +"google-podcasts", +"google-scholar", +"google-search-console", +"google-sheets", +"google-shopping", +"google-sites", +"google-slides", +"google-street-view", +"google-tag-manager", +"google-translate", +"google-tv", +"google-voice", +"google-wallet", +"google-wifi", +"google", +"gopeed", +"gose", +"gotenberg", +"gotify", +"gotosocial", +"gpt4free", +"grafana", +"gramps-web", +"gramps", +"grandstream", +"grav-light", +"grav", +"gravity", +"graylog", +"greenbone-light", +"greenbone", +"greenlight", +"grimoire", +"grist", +"grocy", +"grok-dark", +"grok", +"grype", +"guacamole-light", +"guacamole", +"habit-trove", +"habitica-dark", +"habitica", +"hacker-news", +"hammond-light", +"hammond", +"handbrake", +"haproxy", +"haptic-light", +"haptic", +"harbor", +"hard-forum", +"harvester", +"hasheous", +"hashicorp-boundary", +"hashicorp-consul", +"hashicorp-nomad", +"hashicorp-packer", +"hashicorp-terraform", +"hashicorp-vagrant", +"hashicorp-vault", +"hashicorp-waypoint", +"hastypaste", +"hasura", +"hathway", +"hatsh-light", +"hatsh", +"hbo-light", +"hbo", +"hdhomerun-light", +"hdhomerun", +"headlamp-dark", +"headlamp", +"headphones", +"headscale", +"healthchecks", +"hedgedoc", +"heimdall-light", +"heimdall", +"helium-token", +"helm", +"helper-scripts", +"hemmelig-light", +"hemmelig", +"hetzner-h", +"hetzner", +"hexo", +"hexos", +"heyform", +"hi-anime", +"hifiberry", +"hikvision", +"hilook", +"hivedav", +"hl-audiomuse-ai", +"hoarder-light", +"hoarder", +"hollo-light", +"hollo", +"homarr", +"home-assistant-alt", +"home-assistant", +"homebox", +"homebridge", +"homelabids", +"homepage", +"homer", +"homeseer", +"homey", +"honda-jet", +"honeygain", +"hoobs", +"hoppscotch", +"hortusfox", +"hostinger", +"hotio", +"hp", +"html-light", +"html", +"huawei", +"hubitat", +"hubzilla", +"hugging-face", +"huginn", +"hugo", +"hulu", +"humhub", +"huntarr", +"hydra", +"hyperion", +"hyperpipe-light", +"hyperpipe", +"hyprland", +"i-librarian", +"i2p-light", +"i2p", +"i2pd", +"ical", +"icecast", +"icinga-full-light", +"icinga-full", +"icinga-light", +"icinga", +"icloud", +"idealo", +"ideco", +"idrac", +"idrive", +"ihatemoney", +"ikuai", +"ilo", +"image-maid", +"immich-frame-light", +"immich-frame", +"immich-kiosk-light", +"immich-kiosk", +"immich-power-tools", +"immich-public-proxy", +"immich", +"incus", +"infinite-craft", +"infisical", +"influxdb", +"infoblox", +"infomaniak-k", +"infomaniak-kdrive-dark", +"infomaniak-kdrive-light", +"infomaniak-kmeet-dark", +"infomaniak-kmeet-light", +"infomaniak-swisstransfer-dark", +"infomaniak-swisstransfer-light", +"inoreader", +"insanelymac", +"instagram", +"intellij", +"inventree", +"invidious", +"invisioncommunity", +"invoice-ninja-light", +"invoice-ninja", +"invoiceninja-light", +"invoiceninja", +"invoke-ai", +"iobroker", +"ionos", +"ipboard", +"ipcamtalk", +"ipfs-light", +"ipfs", +"irc", +"iredmail", +"ispconfig", +"ispy", +"issabel-pbx-dark", +"issabel-pbx-wordmark-dark", +"issabel-pbx-wordmark", +"issabel-pbx", +"it-tools-light", +"it-tools", +"italki", +"itau", +"jackett-light", +"jackett", +"jaeger", +"jamf", +"jamstack", +"java", +"javascript-light", +"javascript", +"jdownloader", +"jdownloader2", +"jeedom", +"jekyll", +"jellyfin-vue", +"jellyfin", +"jellyseerr", +"jellystat-dark", +"jellystat", +"jelu", +"jenkins", +"jetbrains-fleet", +"jetbrains-toolbox", +"jetbrains-youtrack", +"jetkvm-full", +"jetkvm", +"jfrog", +"jio", +"jiohotstar", +"jira", +"jitsi-meet", +"jitsi", +"joal", +"joomla", +"joplin", +"jotty", +"jujutsu-vcs", +"julia", +"jupyter", +"jwt-io-light", +"jwt-io", +"k-speeder", +"kagi", +"kaizoku", +"kali-linux", +"kamatera", +"kanboard-light", +"kanboard", +"kanidm", +"kapacitor", +"kapowarr", +"karakeep-dark", +"karakeep", +"karaoke-eternal", +"kasm-workspaces", +"kasm", +"kasten-k10", +"kaufland", +"kavita", +"kbin", +"keenetic-alt", +"keenetic-new", +"keenetic", +"keepassxc", +"keila", +"kerberos", +"kestra", +"keycloak", +"keyoxide-alt", +"keyoxide", +"kibana", +"kick-light", +"kick", +"kimai", +"kimi-ai", +"kinto", +"kitana", +"kitchenowl", +"kiwix-light", +"kiwix", +"kleinanzeigen", +"kleopatra", +"klipper", +"knx", +"ko-fi", +"ko-insight", +"koboldcpp", +"kodi", +"koel", +"koillection-light", +"koillection", +"koito", +"kokoro-web", +"kometa", +"komga", +"komodo", +"kontoj", +"kook", +"kopia", +"kotlin", +"kpn", +"krakend", +"krusader", +"ksuite", +"kubecraft", +"kubernetes-dashboard", +"kubernetes", +"kubuntu-linux", +"kutt", +"kyoo", +"lancache", +"lancommander-light", +"lancommander", +"lanraragi", +"laravel", +"lark", +"lastpass", +"lazylibrarian", +"ldap-account-manager", +"leanote", +"leantime", +"leargas-security", +"leetcode-dark", +"leetcode", +"lemmy-light", +"lemmy", +"lemonldap-ng", +"lets-encrypt", +"lexmark", +"libation", +"librechat", +"libreddit-light", +"libreddit", +"libremdb", +"librenms", +"libreoffice-light", +"libreoffice", +"librephotos-light", +"librephotos", +"librespeed-light", +"librespeed", +"librewolf", +"librex", +"librey", +"librum", +"lichess-dark", +"lichess", +"lidarr", +"lidl", +"lightning-terminal", +"lighttpd", +"limesurvey", +"linear-dark", +"linear", +"linguacafe", +"linkace", +"linkding", +"linkedin", +"linkstack", +"linksys", +"linkwarden", +"linode", +"linux-mint", +"linux", +"linuxdo", +"linuxgsm", +"linuxserver-io", +"liremdb", +"listenbrainz", +"listmonk", +"lite-speed", +"littlelink-custom", +"livebook", +"lldap-dark", +"lldap", +"lms-mixtape", +"lnbits", +"lobe-chat", +"local-content-share", +"local-xpose", +"locals-light", +"locals", +"lodestone", +"logitech-gaming", +"logitech-legacy", +"logitech-light", +"logitech", +"logseq", +"logstash", +"logto", +"loki", +"longhorn", +"lostack", +"loxone-full", +"loxone", +"lsio", +"lua", +"lubelogger", +"lubuntu-linux", +"ludus-dark", +"ludus", +"lunalytics", +"lunasea", +"luxriot", +"lychee", +"lynx-light", +"lynx", +"lyrion-dark", +"lyrion", +"macmon", +"mail-in-a-box", +"mailchimp-light", +"mailchimp", +"mailcow", +"mailcowsogo", +"mailfence", +"mailgun", +"mailhog", +"mailjet", +"mailpit", +"mailu", +"mainsail", +"maintainerr", +"mak", +"makemkv", +"maker-world-dark", +"maker-world", +"maloja", +"manga-dex", +"mango", +"manjaro-linux", +"mantisbt", +"many-notes", +"manyfold", +"maptiler", +"marginalia", +"mariadb", +"marimo", +"marktplaats", +"marzban", +"mastodon", +"matomo", +"matrix-light", +"matrix-synapse-light", +"matrix-synapse", +"matrix", +"matter-light", +"matter", +"matterbridge", +"mattermost", +"mautic", +"max", +"mayan-edms-light", +"mayan-edms", +"maybe", +"mazanoke", +"mbin", +"mcmyadmin", +"mealie", +"medama", +"media-manager", +"mediathekview", +"mediawiki", +"medium-dark", +"medium-light", +"mediux", +"medusa-light", +"medusa", +"mega-nz-dark", +"mega-nz", +"meilisearch", +"mem-ai", +"memories-light", +"memories", +"memos", +"mempool", +"meraki", +"mercusys", +"mergeable-dark", +"mergeable", +"meshcentral", +"meshping-light", +"meshping", +"meshtastic", +"meta", +"metabase", +"metabrainz", +"metallb", +"metube", +"microbin", +"microsoft-365-admin-center", +"microsoft-365", +"microsoft-access", +"microsoft-azure", +"microsoft-bing", +"microsoft-copilot", +"microsoft-defender", +"microsoft-edge", +"microsoft-excel", +"microsoft-exchange", +"microsoft-intune", +"microsoft-office", +"microsoft-onedrive", +"microsoft-onenote", +"microsoft-outlook", +"microsoft-power-automate", +"microsoft-powerpoint", +"microsoft-remote-desktop", +"microsoft-sharepoint", +"microsoft-sql-server-light", +"microsoft-sql-server", +"microsoft-teams", +"microsoft-to-do", +"microsoft-windows", +"microsoft-word", +"microsoft", +"midjourney-light", +"midjourney", +"mikrotik-light", +"mikrotik", +"minecraft", +"mineos", +"miniflux-light", +"miniflux", +"minimserver", +"minio-light", +"minio", +"miro", +"misp", +"misskey-light", +"misskey", +"mistral-ai", +"mitra", +"mixpost", +"mkdocs-light", +"mkdocs", +"mkvtoolnix", +"ml-flow-wordmark-dark", +"ml-flow-wordmark", +"mobaxterm", +"mobilizon", +"mobotix-light", +"mobotix", +"mochahost", +"modrinth", +"mojeek", +"molecule", +"monero", +"mongodb", +"monica-light", +"monica", +"monit", +"monkeytype", +"moode-audio", +"moodist-dark", +"moodist", +"moodle-light", +"moodle", +"morphos", +"morss", +"mosquitto", +"motioneye-dark", +"motioneye", +"mousehole-dark", +"mousehole", +"movie-pilot", +"mpm", +"mqtt", +"mstream", +"mtlynch-picoshare", +"mullvad-browser", +"mullvad-vpn", +"mullvad", +"multi-scrobbler", +"mumble-light", +"mumble", +"musescore", +"music-assistant-light", +"music-assistant", +"musicbrainz", +"my-guitar-tabs", +"myheats-light", +"myheats", +"mylar", +"mympd", +"myspeed", +"mysql", +"mysterium", +"n8n", +"nagios", +"name-silo", +"namecheap", +"nasa", +"nastool", +"natwest", +"nautical-backup", +"navidrome-light", +"navidrome", +"ncore", +"neko-light", +"neko", +"neo4j", +"neocities", +"neodb", +"neon-tech", +"neonlink", +"netalertx-light", +"netalertx", +"netapp-light", +"netapp", +"netatmo", +"netbird", +"netboot", +"netbootxyz", +"netbox-dark", +"netbox-full-dark", +"netbox-full", +"netbox", +"netcam-studio", +"netdata", +"netflix", +"netgear-light", +"netgear-orbi", +"netgear", +"netlify", +"netmaker", +"netsurf-light", +"netsurf", +"netvisor", +"network-ups-tools", +"network-weathermap", +"networking-toolbox-dark", +"networking-toolbox", +"newegg", +"newsblur", +"newshosting-dark", +"newshosting", +"nextcloud-blue", +"nextcloud-calendar", +"nextcloud-contacts", +"nextcloud-cookbook", +"nextcloud-cospend", +"nextcloud-deck", +"nextcloud-files", +"nextcloud-ncdownloader", +"nextcloud-news", +"nextcloud-notes", +"nextcloud-photos", +"nextcloud-social", +"nextcloud-tables", +"nextcloud-talk", +"nextcloud-tasks", +"nextcloud-timemanager", +"nextcloud-white", +"nextcloud", +"nextcloudpi", +"nextdns", +"nexterm", +"nextjs-light", +"nextjs", +"nextpvr", +"nexus-dark", +"nexus", +"nezha", +"nginx-proxy-manager", +"nginx", +"nicotine-plus", +"nightscout-light", +"nightscout", +"nintendo-switch", +"nitter", +"nixos", +"no-ip", +"nocobase-light", +"nocobase", +"nocodb", +"node-red", +"nodebb", +"nodejs-alt", +"nodejs", +"noisedash", +"nomad", +"nomie", +"nordvpn", +"note-mark", +"notebook-lm-dark", +"notebook-lm", +"notesnook-light", +"notesnook", +"notifiarr", +"notion-calendar", +"notion-light", +"notion-mail", +"notion", +"nowshowing", +"npm", +"ntfy", +"ntop", +"ntopng", +"nu-nl", +"nut-webgui", +"nut", +"nutanix", +"nvidia", +"nxfilter", +"nxlog", +"nzbgeek", +"nzbget", +"nzbhydra", +"nzbhydra2-light", +"nzbhydra2", +"oauth2-proxy", +"obico", +"obitalk", +"observium", +"observo-ai", +"obsidian", +"obtainium", +"octoeverywhere", +"octoprint", +"ocular", +"oculus-light", +"oculus", +"odoo", +"odysee-full-dark", +"odysee-full-light", +"odysee", +"office-365", +"oh-my-posh-dark", +"oh-my-posh", +"olivetin-light", +"olivetin", +"ollama-dark", +"ollama", +"omada", +"ombi", +"omni-tools-full", +"omni-tools", +"omnic-forge-dark", +"omnic-forge", +"omnidb", +"omnivore", +"onedev-light", +"onedev", +"oneuptime-light", +"oneuptime", +"onlyfans-dark", +"onlyfans", +"onlyoffice", +"onshape-dark", +"onshape", +"ookla-speedtest", +"open-classrooms", +"open-cloud-dark", +"open-cloud", +"open-observe", +"open-regex", +"open-resume", +"open-router-dark", +"open-router", +"open-source-initiative", +"open-wb", +"open-webui-light", +"open-webui", +"openai-light", +"openai", +"openaudible", +"openchangelog-light", +"openchangelog", +"opencode-dark", +"opencode", +"opencost", +"openeats-light", +"openeats", +"openemr-light", +"openemr", +"opengarage", +"opengist-light", +"opengist", +"openhab", +"openldap", +"openlist", +"openmaptiles", +"openmediavault", +"openoffice", +"openpanel-light", +"openpanel", +"openproject", +"openreads", +"opensearch", +"openshift-dark", +"openshift", +"openspeedtest", +"opensprinkler", +"openstack", +"openstreetmap", +"opensuse", +"opentalk", +"opentofu", +"openvas", +"openvpn", +"openwebrx-plus-dark", +"openwebrx-plus", +"openwrt", +"openziti", +"opera-beta", +"opera-developer", +"opera-mini-beta", +"opera-mini", +"opera-neon", +"opera-touch", +"opera", +"opnform", +"opnsense", +"oracle-cloud", +"oracle", +"orange", +"orb", +"orcaslicer", +"oreilly-dark", +"oreilly", +"organizr", +"origin", +"oscarr-light", +"oscarr", +"osticket", +"osu", +"otter-wiki-dark", +"otter-wiki", +"our-shopping-list", +"outline-light", +"outline", +"overclockers", +"overleaf", +"overseerr", +"ovh", +"ovirt-light", +"ovirt", +"owasp-zap", +"owncast", +"owncloud", +"ownphotos-light", +"ownphotos", +"owntone", +"owntracks", +"oxker-light", +"oxker", +"p-cal", +"p1ib", +"packetfence-dark", +"packetfence-full-dark", +"packetfence-full", +"packetfence", +"pagerduty", +"pairdrop", +"palemoon", +"palmr", +"palo-alto", +"pangolin", +"paperless-ng", +"paperless-ngx", +"paperless", +"papermark-light", +"papermark", +"papermerge-light", +"papermerge", +"papra", +"parseable", +"part-db-light", +"part-db", +"partkeepr", +"passbolt", +"passwordpusher-light", +"passwordpusher", +"passwork", +"pastatool-light", +"pastatool", +"pastebin-dark", +"pastebin", +"pastey", +"patchmon", +"patreon-light", +"patreon", +"payload-light", +"payload", +"paymenter", +"paypal", +"pdfding-light", +"pdfding", +"peacock-light", +"peacock", +"peanut-light", +"peanut", +"peertube", +"pelican-panel", +"penpot-light", +"penpot", +"peppermint", +"pepperminty-wiki", +"perlite", +"perplexity-book-dark", +"perplexity-book-light", +"perplexity-dark", +"perplexity-light", +"petio", +"pfsense-light", +"pfsense", +"pg-back-web", +"pgadmin", +"pgbackweb-dark", +"pgbackweb-light", +"phanpy", +"phantombot", +"phase-dark", +"phase", +"phoneinfoga-light", +"phoneinfoga", +"phorge-light", +"phorge", +"phoscon-light", +"phoscon", +"photonix-light", +"photonix", +"photopea", +"photoprism-light", +"photoprism", +"photostructure-dark", +"photostructure", +"photoview", +"php-light", +"php", +"phpipam", +"phpldapadmin", +"phpmyadmin", +"pi-alert", +"pi-hole-unbound", +"pi-hole", +"pia", +"piaware", +"picsur-light", +"picsur", +"pigallery2-dark", +"pigallery2", +"pikapods", +"pikvm-light", +"pikvm", +"pinchflat", +"pinepods", +"pingdom-light", +"pingdom", +"pingvin-dark", +"pingvin-share-dark", +"pingvin-share", +"pingvin", +"pinkary", +"pinry", +"pinterest", +"pioneer-light", +"pioneer", +"piped", +"pirate-proxy", +"pivpn", +"piwigo", +"pixelfed", +"plane", +"planka-dark", +"planka", +"plant-it", +"plantuml", +"platzi", +"plausible", +"playstation", +"pleroma", +"plesk", +"plex-alt-light", +"plex-alt", +"plex-light", +"plex-meta-manager-light", +"plex-meta-manager", +"plex-rewind", +"plex", +"plexdrive", +"plexrequests-light", +"plexrequests", +"plexripper", +"plume", +"pluralsight", +"pocket-casts-dark", +"pocket-casts", +"pocket-id-light", +"pocket-id", +"pocketbase-dark", +"pocketbase", +"podfetch-light", +"podfetch", +"podgrab", +"podify", +"podman", +"podnapisi", +"policycontroller", +"poly", +"polywork", +"porkbun", +"port-note", +"portainer-alt", +"portainer-be-dark", +"portainer-be", +"portainer-dark", +"portainer", +"portracker-dark", +"portracker", +"portus", +"postal", +"poste", +"posterizarr", +"postgres", +"postgresql", +"postgresus", +"posthog-light", +"posthog", +"postiz-dark", +"postiz", +"powerbi", +"powerdns", +"powerpanel", +"premium-mobile", +"premiumize", +"pretix", +"price-buddy", +"primal", +"prime-video-alt-dark", +"prime-video-alt", +"prime-video-light", +"prime-video", +"printables", +"printer", +"pritunl", +"privacyidea", +"private-internet-access", +"privatebin", +"profilarr", +"projection-lab", +"projectsend", +"prometheus", +"proton-calendar", +"proton-docs", +"proton-drive", +"proton-lumo", +"proton-mail", +"proton-pass", +"proton-vpn", +"proton-wallet", +"prowlarr", +"proxmox-light", +"proxmox", +"prtg", +"prusa-research", +"psitransfer", +"pterodactyl", +"public-pool", +"pufferpanel", +"pulsarr", +"pulse", +"purelymail", +"pushfish", +"pushover", +"putty", +"pve-scripts-local", +"pwndrop-light", +"pwndrop", +"pwpush-light", +"pwpush", +"pydio", +"pyload", +"python", +"qbittorrent", +"qd-today", +"qdirstat", +"qdrant", +"qinglong", +"qnap", +"quant-ux", +"quay", +"questdb", +"quetre", +"qui", +"quickshare", +"quickwit", +"quizlet", +"qutebrowser", +"qwen", +"qwik", +"r", +"rabbitmq", +"racknerd-dark", +"racknerd", +"radarr-4k", +"radarr", +"radicale", +"rainloop", +"rallly", +"ramp-dark", +"ramp", +"rancher", +"raneto", +"raritan-light", +"raritan", +"raspberry-pi-light", +"raspberry-pi", +"raspberrymatic", +"rathole", +"rclone", +"rdt-client", +"reactive-resume-light", +"reactive-resume", +"reactjs", +"readarr", +"readeck", +"readthedocs-light", +"readthedocs", +"readwise-reader-dark", +"readwise-reader", +"real-debrid", +"realhosting", +"recalbox", +"receipt-wrangler", +"recipesage", +"recipya", +"recomendarr", +"recyclarr", +"reddit", +"redhat-linux", +"redict", +"redis", +"redlib-light", +"redlib", +"redmine", +"rekor", +"release-argus", +"remmina", +"remnawave", +"remnote", +"remotely", +"renovate", +"reolink", +"reposilite-dark", +"reposilite", +"requestly", +"requestrr", +"resiliosync-full-dark", +"resiliosync-full", +"resiliosync", +"restic", +"restreamer", +"retrom", +"revanced-manager", +"revolt-light", +"revolt", +"rhasspy-dark", +"rhasspy", +"rhodecode", +"richy", +"rimgo-light", +"rimgo", +"riot", +"ripe", +"riverside-fm-light", +"riverside-fm", +"robinhood", +"rocket-chat", +"rocky-linux", +"romm", +"rompya", +"rook", +"root-me-dark", +"root-me", +"rotki", +"roundcube", +"router", +"rozetkaua", +"rpi-monitor", +"rport", +"rspamd", +"rss-bridge", +"rss-translator", +"rsshub", +"rstudio", +"rstudioserver", +"ruby", +"ruckus-unleashed", +"rumble", +"rundeck", +"runeaudio", +"runonflux", +"runson-light", +"runson", +"rust-dark", +"rust", +"rustdesk", +"rutorrent", +"ryot-light", +"ryot", +"sabnzbd-light", +"sabnzbd", +"safari-ios", +"safari", +"safeline", +"sagemcom", +"salad", +"salt-project", +"saltcorn", +"samba-server", +"samsung-internet", +"sandstorm", +"satisfactory", +"scanservjs", +"schedulearn-dark", +"schedulearn", +"schneider", +"scraperr", +"scrcpy", +"screenconnect", +"scrutiny-light", +"scrutiny", +"scrypted", +"seafile", +"searx", +"searxng", +"secureai-tools-light", +"secureai-tools", +"security-onion-dark", +"security-onion", +"seelf", +"selenium", +"self-hosted-gateway", +"selfh-st-light", +"selfh-st", +"selfhosted-light", +"selfhosted", +"semaphore-dark", +"semaphore", +"send", +"sendgrid", +"sendinblue", +"sensu", +"sentry-light", +"sentry", +"seq", +"series-troxide", +"serpbear", +"servarr-light", +"servarr", +"serviio-light", +"serviio", +"session", +"seznam", +"sftpgo", +"shaarli", +"shell-light", +"shell-tips-light", +"shell-tips", +"shell", +"shellhub", +"shellngn", +"shelly", +"shinkro", +"shinobi", +"shiori", +"shlink", +"shoko-server", +"shoko", +"shopify", +"shortcut", +"sickbeard", +"sickchill", +"sickgear", +"signal", +"signoz", +"sigstore", +"silae", +"silverbullet", +"simplelogin", +"simplex-chat", +"sinusbot", +"sipeed", +"siyuan", +"sketchup-make", +"skylink-fibernet", +"skype", +"slaanesh", +"slack", +"slash-light", +"slash", +"slice", +"slidev", +"slink-light", +"slink", +"slskd", +"slurpit-dark", +"slurpit", +"smartfox", +"smlight", +"smokeping", +"snapcast", +"snapchat-dark", +"snapchat", +"snapdrop", +"snappymail-light", +"snappymail", +"snibox", +"snikket", +"snipe-it", +"snippetbox", +"socialhome", +"sogo", +"solaar", +"solid-invoice", +"solidtime-light", +"solidtime", +"sonarqube", +"sonarr-4k", +"sonarr-dark", +"sonarr", +"sophos-dark", +"sophos", +"soulseek", +"sourcegraph", +"spamassassin", +"spark", +"sparkleshare", +"sparky-fitness", +"specifically-clementines", +"specter-desktop", +"speedtest-tracker", +"sphinx-doc", +"sphinx-relay", +"sphinx", +"spiceworks", +"spiderfoot", +"spliit", +"splunk", +"spoolman", +"spotify", +"spotnet", +"spree-dark", +"spree", +"springboot-initializer", +"sqlitebrowser", +"squeezebox-server", +"squidex", +"squirrel-servers-manager", +"sshwifty", +"sst-dev-dark", +"sst-dev", +"stalwart-mail-server", +"stalwart", +"standard-notes", +"startpage", +"stash", +"statping-ng", +"statping", +"stb-proxy", +"steam", +"step-ca", +"stirling-pdf", +"storj", +"storm", +"stormkit", +"strapi", +"strava", +"stream-harvestarr", +"streama", +"stremio", +"stump-alt", +"stump", +"sub-store", +"subatic", +"subdl", +"substreamer", +"suggest-arr", +"sun-panel", +"sunsama", +"sunshine", +"supabase", +"superlist", +"supermicro", +"surveymonkey", +"suwayomi-light", +"suwayomi", +"svelte", +"swagger", +"swarmpit", +"swift", +"swizzin", +"syft", +"symedia", +"symmetricom-light", +"symmetricom", +"sympa", +"synapse-light", +"synapse", +"syncany", +"synclounge-light", +"synclounge", +"syncplay", +"syncthing-dark", +"syncthing", +"synology-audio-station", +"synology-calendar", +"synology-chat", +"synology-cloud-sync", +"synology-contacts", +"synology-document-viewer", +"synology-download-station", +"synology-drive-server", +"synology-drive", +"synology-dsm", +"synology-file-station", +"synology-light", +"synology-mail-plus", +"synology-mail-station", +"synology-note-station", +"synology-office", +"synology-pdfviewer", +"synology-photo-station", +"synology-photos", +"synology-surveillance-station", +"synology-text-editor", +"synology-video-station", +"synology-vmm", +"synology-webstation", +"synology", +"sysreptor", +"t3-chat", +"tabula", +"tacticalrmm", +"taiga", +"tailscale-light", +"tailscale", +"tailwind", +"talos", +"tandoor-recipes", +"tangerine-ui", +"tanoshi", +"tar1090", +"taskcafe", +"tasmoadmin", +"tasmocompiler", +"tasmota-light", +"tasmota", +"tautulli", +"tdarr", +"team-viewer", +"teamcity-light", +"teamcity", +"teamspeak", +"teamtailor", +"technitium", +"teddy-cloud", +"teedy", +"telegraf", +"telegram", +"telekom", +"teleport", +"tenable-dark", +"tenable", +"tenda", +"terminal", +"termix", +"terraform", +"terraria", +"teslamate-light", +"teslamate", +"thanos", +"the-onion", +"the-pirate-bay", +"the-proxy-bay", +"theia-light", +"theia", +"thelounge", +"themepark", +"theodinproject", +"thin-linc", +"thingsboard", +"threadfin", +"threads-light", +"threads", +"thunderbird", +"thunderhub-light", +"thunderhub", +"tianji-light", +"tianji", +"ticky", +"tidal-dark", +"tidal", +"tiddlywiki-light", +"tiddlywiki", +"tiktok-light", +"tiktok", +"timemachines-light", +"timemachines", +"timetagger-light", +"timetagger", +"ting-isp", +"tiny-media-manager", +"tinyauth", +"tinypilot", +"tinytinyrss", +"tipi", +"tmdb", +"todoist-dark", +"todoist", +"toggl-dark", +"toggl", +"tolgee", +"tooljet-dark", +"tooljet", +"topdesk", +"tor", +"torrserver", +"touitomamout", +"tp-link", +"tpdb", +"traccar-dark", +"traccar", +"trading-view-dark", +"trading-view", +"traefik-proxy", +"traefik", +"traggo", +"trailarr", +"trakt", +"transmission", +"trash-guides", +"trellix-dark", +"trellix", +"trilium", +"triliumnext", +"trivy", +"trmnl-android", +"trmnl", +"troddit", +"trudesk", +"truecommand", +"truenas-core", +"truenas-enterprise", +"truenas-scale", +"truenas", +"tryhackme", +"tsd-proxy", +"tube-archivist-light", +"tube-archivist", +"tubesync-light", +"tubesync", +"tugtainer", +"tumblr", +"tunarr", +"tunnelix", +"turbopack-light", +"turbopack", +"tuta", +"tux", +"tvdb", +"tvheadend", +"tvp-vod", +"tweakers", +"twingate-light", +"twingate", +"twitch", +"twitter", +"txlog", +"typemill-light", +"typemill", +"typescript", +"typesense", +"typo3", +"ubiquiti-networks", +"ubiquiti-unifi", +"ubiquiti", +"ubooquity", +"ubuntu-linux-alt", +"ubuntu-linux", +"uc-browser", +"udemy-light", +"udemy", +"ugreen-nas", +"ugreen", +"ultimate-guitar-light", +"ultimate-guitar", +"umami-light", +"umami", +"umbrel", +"unbound", +"uncomplicated-alert-receiver", +"undb", +"unifi-controller", +"unifi-dark", +"unifi-drive", +"unifi-protect", +"unifi-voucher-site", +"unifi", +"unimus", +"unity-dark", +"unity", +"universal-media-server", +"university-applied-sciences-brandenburg", +"unmanic", +"unraid", +"untangle", +"updog", +"ups", +"upsnap", +"uptime-kuma", +"uptimerobot", +"upvote-rss", +"upwork", +"urbackup-server", +"urbackup", +"usermin", +"valetudo", +"valkey", +"vault-light", +"vault", +"vaultwarden-light", +"vaultwarden", +"vector", +"veeam", +"vera-crypt", +"vercel-light", +"vercel", +"verizon", +"verriflo-dark", +"verriflo", +"vertiv-dark", +"vertiv", +"vi", +"viber", +"victorialogs", +"victoriametrics-light", +"victoriametrics", +"victron-energy", +"vidzy", +"viewtube", +"vikunja", +"vinchin-backup", +"virgin-media", +"virtualmin", +"virtualradarserver", +"viseron-light", +"viseron", +"visual-studio-code", +"vitalpbx", +"vite", +"vitest", +"vito-deploy", +"vivaldi", +"vmware-esxi", +"vmware-horizon", +"vmware-vcenter", +"vmware-workstation", +"vmware", +"vn-stat", +"vodafone", +"voilib", +"voip-info", +"voip-ms", +"voltaserve-light", +"voltaserve", +"volumio-light", +"volumio", +"voron", +"vouchervault", +"vscode", +"vtvgo", +"vuetorrent", +"vultr", +"vuplus", +"wakapi", +"wakatime-light", +"wakatime", +"wallabag-light", +"wallabag", +"wallos", +"wanderer-light", +"wanderer", +"wanikani", +"ward", +"warpgate", +"warracker", +"watcharr-light", +"watcharr", +"watcher", +"watchlistarr", +"watchtower", +"watchyourlan", +"watchyourports", +"wavelog", +"waze", +"wazuh", +"wbo", +"wd-mycloud", +"web-check-dark", +"web-check", +"web-whisper", +"webdav", +"webdb", +"webex", +"webhook", +"webhookd", +"webkit", +"webmin", +"webtools", +"webtop", +"webtorrent", +"webtrees", +"wekan", +"wero-dark", +"wero", +"western-digital", +"wetty", +"wevr-labs", +"wg-gen-web-light", +"wg-gen-web", +"wger", +"whatnot", +"whats-up-docker", +"whatsapp", +"whisparr", +"whodb", +"whoogle", +"wifiman", +"wiki-go", +"wikidocs", +"wikijs-alt", +"wikijs", +"wikipedia-light", +"wikipedia", +"willow", +"windmill", +"windows-10", +"windows-11", +"windows-7", +"windows-95-light", +"windows-95", +"windows-98", +"windows-retro-light", +"windows-retro", +"windows-vista", +"windows-xp", +"wireguard", +"wirenboard", +"wireshark", +"wizarr", +"wled", +"wolfi-light", +"wolfi", +"woocommerce", +"woodpecker-ci", +"wooting-dark", +"wooting", +"wordpress", +"workadventure", +"worklenz", +"wotdle-light", +"wotdle", +"wownero", +"writefreely-light", +"writefreely", +"wsz", +"x-light", +"x", +"xbackbone", +"xbox-game-pass", +"xbox", +"xbrowsersync", +"xcp-ng", +"xen-orchestra", +"xiaomi-global", +"xigmanas", +"xmr", +"xmrig", +"xpipe", +"xteve", +"xubuntu-linux", +"xwiki", +"yaade", +"yac-reader", +"yacd-blue", +"yacd", +"yacht", +"yahoo-mail", +"yahoo", +"yamtrack-light", +"yamtrack", +"yandex", +"yarn-social", +"yarr-light", +"yarr", +"yazi", +"ycombinator-dark", +"ycombinator", +"ymarks", +"ynab", +"your-spotify", +"yourls", +"youtarr", +"youtube-dl", +"youtube-kids", +"youtube-music", +"youtube-tv", +"youtube", +"yt-dlp", +"yts", +"yuno-host-light", +"yunohost", +"z-ai", +"z-wave-js-ui", +"zabbix", +"zabka", +"zalo", +"zammad", +"zapier-dark", +"zapier", +"zashboard-dark", +"zashboard", +"zen-browser-dark", +"zen-browser", +"zenarmor", +"zendesk", +"zerotier-light", +"zerotier", +"zigbee2mqtt-light", +"zigbee2mqtt", +"zima-os", +"zimbra", +"zipcaptions", +"zipline-diced", +"zipline-light", +"zipline", +"zitadel-light", +"zitadel", +"znc", +"zohomail", +"zomro", +"zoneminder", +"zoom-alt", +"zoom", +"zoraxy", +"zorin-linux", +"zot-registry", +"zulip", +"zwavejs2mqtt", +"zyxel-communications-light", +"zyxel-communications", +"zyxel-networks-light", +"zyxel-networks", diff --git a/icon_tree.json b/icon_tree.json new file mode 100644 index 0000000..5aac924 --- /dev/null +++ b/icon_tree.json @@ -0,0 +1,81967 @@ +{ + "sha": "f29af6c5d79a03faab6818a8bc53c2b2064d5956", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/f29af6c5d79a03faab6818a8bc53c2b2064d5956", + "tree": [ + { + "path": ".github", + "mode": "040000", + "type": "tree", + "sha": "36702b6884985444228cd2cbbcf2b7456383967e", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/36702b6884985444228cd2cbbcf2b7456383967e" + }, + { + "path": ".github/FUNDING.yml", + "mode": "100644", + "type": "blob", + "sha": "4e24229b4d35fccb06c901b4b2aa1054c12b258c", + "size": 92, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e24229b4d35fccb06c901b4b2aa1054c12b258c" + }, + { + "path": ".github/ISSUE_TEMPLATE", + "mode": "040000", + "type": "tree", + "sha": "ec9b5d37ddc7fdf8964b969e1695748aa1d1f597", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/ec9b5d37ddc7fdf8964b969e1695748aa1d1f597" + }, + { + "path": ".github/ISSUE_TEMPLATE/add_monochrome_icon.yml", + "mode": "100644", + "type": "blob", + "sha": "7e647467a509cc5a0fb4bd4cb0b8aa63e408fa31", + "size": 2403, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e647467a509cc5a0fb4bd4cb0b8aa63e408fa31" + }, + { + "path": ".github/ISSUE_TEMPLATE/add_normal_icon.yml", + "mode": "100644", + "type": "blob", + "sha": "27b014138e0024f86f619f512a38c6b51caba794", + "size": 2111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27b014138e0024f86f619f512a38c6b51caba794" + }, + { + "path": ".github/ISSUE_TEMPLATE/update_monochrome_icon.yml", + "mode": "100644", + "type": "blob", + "sha": "4886e864991d0f59eaacde3bf2dd209c55199670", + "size": 1470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4886e864991d0f59eaacde3bf2dd209c55199670" + }, + { + "path": ".github/ISSUE_TEMPLATE/update_normal_icon.yml", + "mode": "100644", + "type": "blob", + "sha": "38b489826a51ba6b488b4cbcbb20b27b2d6e04cf", + "size": 1133, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38b489826a51ba6b488b4cbcbb20b27b2d6e04cf" + }, + { + "path": ".github/workflows", + "mode": "040000", + "type": "tree", + "sha": "10d052c49acba52ddd0b56eee3f7d8604acf8f5c", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/10d052c49acba52ddd0b56eee3f7d8604acf8f5c" + }, + { + "path": ".github/workflows/compress_icons.yml", + "mode": "100644", + "type": "blob", + "sha": "de01514ab460da09c9e5539082dac69618289d25", + "size": 1316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de01514ab460da09c9e5539082dac69618289d25" + }, + { + "path": ".github/workflows/daily_release.yml", + "mode": "100644", + "type": "blob", + "sha": "b157d294907ce26a2e780399a56f5376bbf17688", + "size": 305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b157d294907ce26a2e780399a56f5376bbf17688" + }, + { + "path": ".github/workflows/on_icon_addition_approved.yml", + "mode": "100644", + "type": "blob", + "sha": "2712bbb79b388b62f9ccd9ec2f4d7ebb8798d499", + "size": 3733, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2712bbb79b388b62f9ccd9ec2f4d7ebb8798d499" + }, + { + "path": ".github/workflows/on_icon_update_approved.yml", + "mode": "100644", + "type": "blob", + "sha": "1c43a0d786c94fe58533bcbe97968b8624cc37df", + "size": 3757, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c43a0d786c94fe58533bcbe97968b8624cc37df" + }, + { + "path": ".github/workflows/update_icons_and_resources.yml", + "mode": "100644", + "type": "blob", + "sha": "89297a163dde4251742c8b84fef3fd6f8fa4e5a2", + "size": 2438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89297a163dde4251742c8b84fef3fd6f8fa4e5a2" + }, + { + "path": ".github/workflows/validate_and_preview_icons.yml", + "mode": "100644", + "type": "blob", + "sha": "e9056cbb9d1463ebdbf694454318dc1aeea4ef0e", + "size": 2589, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9056cbb9d1463ebdbf694454318dc1aeea4ef0e" + }, + { + "path": ".gitignore", + "mode": "100644", + "type": "blob", + "sha": "c3dba2a7eabdf9a4060fdc71597b15718aa93aae", + "size": 492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3dba2a7eabdf9a4060fdc71597b15718aa93aae" + }, + { + "path": "CODE_OF_CONDUCT.md", + "mode": "100644", + "type": "blob", + "sha": "b43ad10c3f0e09ae99816c2bb300cfcdfbf0c721", + "size": 1286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b43ad10c3f0e09ae99816c2bb300cfcdfbf0c721" + }, + { + "path": "CONTRIBUTING.md", + "mode": "100644", + "type": "blob", + "sha": "9c2ec4fcc6b15e5a2d0bf6e4eb05b9d4f2f901d5", + "size": 3456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c2ec4fcc6b15e5a2d0bf6e4eb05b9d4f2f901d5" + }, + { + "path": "LICENSE", + "mode": "100644", + "type": "blob", + "sha": "636b77f3e237a9b9ecdc1b7d907703b920cd5db8", + "size": 11392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/636b77f3e237a9b9ecdc1b7d907703b920cd5db8" + }, + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "146c0dbe5358df5684533b646bf6453e482ec6fc", + "size": 4496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/146c0dbe5358df5684533b646bf6453e482ec6fc" + }, + { + "path": "assets", + "mode": "040000", + "type": "tree", + "sha": "26a1488864b098399a1e014045c3998b42c6a5c9", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/26a1488864b098399a1e014045c3998b42c6a5c9" + }, + { + "path": "assets/preview.mp4", + "mode": "100644", + "type": "blob", + "sha": "b020048ddd6ba2e19b98047e593bd687fb1439d1", + "size": 3757001, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b020048ddd6ba2e19b98047e593bd687fb1439d1" + }, + { + "path": "dashboard-icons.code-workspace", + "mode": "100644", + "type": "blob", + "sha": "5c54a23ef3c33763804dd2996b012d8a5b03abee", + "size": 111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c54a23ef3c33763804dd2996b012d8a5b03abee" + }, + { + "path": "meta", + "mode": "040000", + "type": "tree", + "sha": "3197d13d46bf5c50ea16c11473eb24a9461aa668", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/3197d13d46bf5c50ea16c11473eb24a9461aa668" + }, + { + "path": "meta/1337x.json", + "mode": "100644", + "type": "blob", + "sha": "265efbfd082505b553cbd5396dcf47aa5b8defae", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/265efbfd082505b553cbd5396dcf47aa5b8defae" + }, + { + "path": "meta/13ft.json", + "mode": "100644", + "type": "blob", + "sha": "765e37f3fb3ffbbd36a4a97a926c097ee212b545", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/765e37f3fb3ffbbd36a4a97a926c097ee212b545" + }, + { + "path": "meta/1panel.json", + "mode": "100644", + "type": "blob", + "sha": "e6e03428e1fadddc064cc7f359a4b5fc117701bd", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6e03428e1fadddc064cc7f359a4b5fc117701bd" + }, + { + "path": "meta/1password.json", + "mode": "100644", + "type": "blob", + "sha": "4f18a75f938211e3130985b17b97d1ac7f8ef420", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f18a75f938211e3130985b17b97d1ac7f8ef420" + }, + { + "path": "meta/20i.json", + "mode": "100644", + "type": "blob", + "sha": "11a1ca70977026b5621357db3bc644a2107cedd3", + "size": 308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11a1ca70977026b5621357db3bc644a2107cedd3" + }, + { + "path": "meta/2fauth.json", + "mode": "100644", + "type": "blob", + "sha": "01a967218a0a31b217aec2d3115ba3e0d24d0293", + "size": 319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01a967218a0a31b217aec2d3115ba3e0d24d0293" + }, + { + "path": "meta/3cx.json", + "mode": "100644", + "type": "blob", + "sha": "8d1fb75e903066ddf3b65f58c11d1418bbd2483e", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d1fb75e903066ddf3b65f58c11d1418bbd2483e" + }, + { + "path": "meta/4chan.json", + "mode": "100644", + "type": "blob", + "sha": "330a2067f9001be1e91b5973c97e733193e63893", + "size": 244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/330a2067f9001be1e91b5973c97e733193e63893" + }, + { + "path": "meta/5etools.json", + "mode": "100644", + "type": "blob", + "sha": "978efb29e196d1d08142858da7c7dfe486c11b61", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/978efb29e196d1d08142858da7c7dfe486c11b61" + }, + { + "path": "meta/7zip.json", + "mode": "100644", + "type": "blob", + "sha": "969d2182b5628f13563da0b48ac2cfbfaf07d99d", + "size": 226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/969d2182b5628f13563da0b48ac2cfbfaf07d99d" + }, + { + "path": "meta/a-mule.json", + "mode": "100644", + "type": "blob", + "sha": "d11ae9521190acda330f2b3c3c048b604fed84f2", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d11ae9521190acda330f2b3c3c048b604fed84f2" + }, + { + "path": "meta/aboard.json", + "mode": "100644", + "type": "blob", + "sha": "f7a7c1fcbb2c15edde4627a095f9e9c12dd253e3", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7a7c1fcbb2c15edde4627a095f9e9c12dd253e3" + }, + { + "path": "meta/act.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/action1.json", + "mode": "100644", + "type": "blob", + "sha": "8a3a88c3c41458da385650d38e886c4a230f8e23", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a3a88c3c41458da385650d38e886c4a230f8e23" + }, + { + "path": "meta/activepieces.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/actual-budget.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/adblock.json", + "mode": "100644", + "type": "blob", + "sha": "3e32d25e96c4b2806d4b9d869594d6f57cb01ad5", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e32d25e96c4b2806d4b9d869594d6f57cb01ad5" + }, + { + "path": "meta/adguard-home-sync.json", + "mode": "100644", + "type": "blob", + "sha": "fb40b7b69e9ad798a76524bf3c33a3fd9aa02324", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb40b7b69e9ad798a76524bf3c33a3fd9aa02324" + }, + { + "path": "meta/adguard-home.json", + "mode": "100644", + "type": "blob", + "sha": "6905ec64ee9a96b506e3c21286bacefd0d9cd9a7", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6905ec64ee9a96b506e3c21286bacefd0d9cd9a7" + }, + { + "path": "meta/adminer.json", + "mode": "100644", + "type": "blob", + "sha": "0683d6d18d4b5519874fbe0156104a55755eb218", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0683d6d18d4b5519874fbe0156104a55755eb218" + }, + { + "path": "meta/adobe.json", + "mode": "100644", + "type": "blob", + "sha": "143a54f455ab550deccd1244dfeca0ca8c7cd09d", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/143a54f455ab550deccd1244dfeca0ca8c7cd09d" + }, + { + "path": "meta/ads-b-exchange.json", + "mode": "100644", + "type": "blob", + "sha": "0d2d33847ce3fdcb772d19ac47df42268938988b", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d2d33847ce3fdcb772d19ac47df42268938988b" + }, + { + "path": "meta/adsb.json", + "mode": "100644", + "type": "blob", + "sha": "a39b5fb258b9fe7667cdaae1d76433ef3f51ffae", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a39b5fb258b9fe7667cdaae1d76433ef3f51ffae" + }, + { + "path": "meta/advanzia.json", + "mode": "100644", + "type": "blob", + "sha": "3ae561990244cacc28ba8844f7ba2c27740037e0", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ae561990244cacc28ba8844f7ba2c27740037e0" + }, + { + "path": "meta/adventure-log.json", + "mode": "100644", + "type": "blob", + "sha": "f33b535984eebd8de2400eb06cb8a147bbe98ed4", + "size": 196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f33b535984eebd8de2400eb06cb8a147bbe98ed4" + }, + { + "path": "meta/affine.json", + "mode": "100644", + "type": "blob", + "sha": "a5aae435f7cc8ac53df1194ff6fe380919c92161", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5aae435f7cc8ac53df1194ff6fe380919c92161" + }, + { + "path": "meta/agile-freaks.json", + "mode": "100644", + "type": "blob", + "sha": "323220009b302fcb2192298d1c94a535a38af373", + "size": 222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/323220009b302fcb2192298d1c94a535a38af373" + }, + { + "path": "meta/agregarr.json", + "mode": "100644", + "type": "blob", + "sha": "9392f5030ce8538ebd2618e99497edf3094c6f14", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9392f5030ce8538ebd2618e99497edf3094c6f14" + }, + { + "path": "meta/air-trail.json", + "mode": "100644", + "type": "blob", + "sha": "aabffbf9b52196edaa6353da354b5af8d9a7c4ac", + "size": 221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aabffbf9b52196edaa6353da354b5af8d9a7c4ac" + }, + { + "path": "meta/airsonic.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/airtable.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/airtel.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/airvpn.json", + "mode": "100644", + "type": "blob", + "sha": "4b473819cf413e0c5e05cf7ddec9e8f1c92e5a85", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b473819cf413e0c5e05cf7ddec9e8f1c92e5a85" + }, + { + "path": "meta/akamai.json", + "mode": "100644", + "type": "blob", + "sha": "8403ba88919ae7826e43368cddba2912b0245b03", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8403ba88919ae7826e43368cddba2912b0245b03" + }, + { + "path": "meta/akaunting.json", + "mode": "100644", + "type": "blob", + "sha": "e8ce0f569aa46e61a30ddb7f43e77cb4ac52ac10", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8ce0f569aa46e61a30ddb7f43e77cb4ac52ac10" + }, + { + "path": "meta/akkoma.json", + "mode": "100644", + "type": "blob", + "sha": "85cc225aedefbd8aa2724645f5a5b686ad8dbb56", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85cc225aedefbd8aa2724645f5a5b686ad8dbb56" + }, + { + "path": "meta/alarmpi.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/albert-heijn.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/alertmanager.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/alexa.json", + "mode": "100644", + "type": "blob", + "sha": "44b6fdd1e146361b0180de0568b84f8415e053cd", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44b6fdd1e146361b0180de0568b84f8415e053cd" + }, + { + "path": "meta/algo.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/ali-mail.json", + "mode": "100644", + "type": "blob", + "sha": "3e12444d2cde6677e04cb38c9254bd070af12179", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e12444d2cde6677e04cb38c9254bd070af12179" + }, + { + "path": "meta/aliexpress.json", + "mode": "100644", + "type": "blob", + "sha": "d82ee00df2ef68cafee0743e12f85f8b69b0bae4", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d82ee00df2ef68cafee0743e12f85f8b69b0bae4" + }, + { + "path": "meta/alist.json", + "mode": "100644", + "type": "blob", + "sha": "190de0c12a223e4af6707b76542c012846d4517a", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/190de0c12a223e4af6707b76542c012846d4517a" + }, + { + "path": "meta/aliyun.json", + "mode": "100644", + "type": "blob", + "sha": "3938dd00e2cbf2a7da456ac437947d0b993a6226", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3938dd00e2cbf2a7da456ac437947d0b993a6226" + }, + { + "path": "meta/alloy.json", + "mode": "100644", + "type": "blob", + "sha": "97630a75186132d4d184b10593fbe1754195cbb1", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97630a75186132d4d184b10593fbe1754195cbb1" + }, + { + "path": "meta/alltube.json", + "mode": "100644", + "type": "blob", + "sha": "766370cc912d36417f923d71b02ceabaa12d3acf", + "size": 310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/766370cc912d36417f923d71b02ceabaa12d3acf" + }, + { + "path": "meta/alma-linux.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/alpine-linux.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/amazon-prime.json", + "mode": "100644", + "type": "blob", + "sha": "b00117ed1174c9f6deeb9a1d64dd2e3c94d9d18a", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b00117ed1174c9f6deeb9a1d64dd2e3c94d9d18a" + }, + { + "path": "meta/amazon-web-services.json", + "mode": "100644", + "type": "blob", + "sha": "20693aa4214d63906acd8f3f8851b2542a8f0347", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20693aa4214d63906acd8f3f8851b2542a8f0347" + }, + { + "path": "meta/amazon.json", + "mode": "100644", + "type": "blob", + "sha": "602108196381dd2d1aa69a84608648b80ec3c21d", + "size": 337, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/602108196381dd2d1aa69a84608648b80ec3c21d" + }, + { + "path": "meta/amcrest-cloud.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/amcrest.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/amd.json", + "mode": "100644", + "type": "blob", + "sha": "a108b7b91b8323eed677607bb46e387afc362515", + "size": 336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a108b7b91b8323eed677607bb46e387afc362515" + }, + { + "path": "meta/ami-alt.json", + "mode": "100644", + "type": "blob", + "sha": "266cecd03daeca90381806db027acef2586774c7", + "size": 330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/266cecd03daeca90381806db027acef2586774c7" + }, + { + "path": "meta/ami.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/amp.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/ampache.json", + "mode": "100644", + "type": "blob", + "sha": "22dde362a3fedb1275f1dd91578983e6abc65a36", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22dde362a3fedb1275f1dd91578983e6abc65a36" + }, + { + "path": "meta/android-auto.json", + "mode": "100644", + "type": "blob", + "sha": "4e1b558a85909eb47369ccdb2e1596dd93604454", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e1b558a85909eb47369ccdb2e1596dd93604454" + }, + { + "path": "meta/android-robot.json", + "mode": "100644", + "type": "blob", + "sha": "9991665826ba22e39e4dd79c95861172fc189c06", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9991665826ba22e39e4dd79c95861172fc189c06" + }, + { + "path": "meta/android.json", + "mode": "100644", + "type": "blob", + "sha": "ce55cb942e424b13a74bb8eae1f46dbbbd0c451b", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce55cb942e424b13a74bb8eae1f46dbbbd0c451b" + }, + { + "path": "meta/anghami.json", + "mode": "100644", + "type": "blob", + "sha": "4f03f562a462754590c15ee778e632790f49af12", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f03f562a462754590c15ee778e632790f49af12" + }, + { + "path": "meta/angular.json", + "mode": "100644", + "type": "blob", + "sha": "4a525c69cc9c73003ced278695214443e88fc46b", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a525c69cc9c73003ced278695214443e88fc46b" + }, + { + "path": "meta/anime-kai.json", + "mode": "100644", + "type": "blob", + "sha": "cbb7a975a9972c0fbe8bb5ea6ef2b882c3168a6f", + "size": 222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbb7a975a9972c0fbe8bb5ea6ef2b882c3168a6f" + }, + { + "path": "meta/anonaddy.json", + "mode": "100644", + "type": "blob", + "sha": "ac78e8b145724e4ef5320b76eca8dff1a671c888", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac78e8b145724e4ef5320b76eca8dff1a671c888" + }, + { + "path": "meta/ansible.json", + "mode": "100644", + "type": "blob", + "sha": "d179c5bfc26189c82f26ca9562d7aa167751b61c", + "size": 321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d179c5bfc26189c82f26ca9562d7aa167751b61c" + }, + { + "path": "meta/any-listen.json", + "mode": "100644", + "type": "blob", + "sha": "1b650edae8c204c179c115c298a0240a80221e00", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b650edae8c204c179c115c298a0240a80221e00" + }, + { + "path": "meta/anything-llm.json", + "mode": "100644", + "type": "blob", + "sha": "bf2f80a0b3c2c81b6742d63b9b4046e04cb8de1f", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf2f80a0b3c2c81b6742d63b9b4046e04cb8de1f" + }, + { + "path": "meta/apache-airflow.json", + "mode": "100644", + "type": "blob", + "sha": "4097caa6a3bf82989c59d9e43e8a3088cc153430", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4097caa6a3bf82989c59d9e43e8a3088cc153430" + }, + { + "path": "meta/apache-answer.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/apache-cassandra.json", + "mode": "100644", + "type": "blob", + "sha": "02f1bd11841e68e9cde41ab0bc690be36957d3b6", + "size": 229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02f1bd11841e68e9cde41ab0bc690be36957d3b6" + }, + { + "path": "meta/apache-cloudstack.json", + "mode": "100644", + "type": "blob", + "sha": "d472e023015d7c01e37c688e3ff70a39e71b69bd", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d472e023015d7c01e37c688e3ff70a39e71b69bd" + }, + { + "path": "meta/apache-druid.json", + "mode": "100644", + "type": "blob", + "sha": "faf325a47ea5840203a907ae2004be2d9b972d67", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/faf325a47ea5840203a907ae2004be2d9b972d67" + }, + { + "path": "meta/apache-openoffice.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/apache-solr.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/apache-subversion.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/apache-tomcat.json", + "mode": "100644", + "type": "blob", + "sha": "763c47aceaa0f00d4b118ee642721cbd281d3677", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/763c47aceaa0f00d4b118ee642721cbd281d3677" + }, + { + "path": "meta/apache.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/apc.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/apiscp.json", + "mode": "100644", + "type": "blob", + "sha": "5e2d0f3852fa4c7027933e8fbc75f1111aa0c366", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e2d0f3852fa4c7027933e8fbc75f1111aa0c366" + }, + { + "path": "meta/app-store.json", + "mode": "100644", + "type": "blob", + "sha": "75b79e65a0431544324247d99121dafe42262640", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75b79e65a0431544324247d99121dafe42262640" + }, + { + "path": "meta/appdaemon.json", + "mode": "100644", + "type": "blob", + "sha": "e4a7c9bb83839ce12cf25e6d64d5ef6ac47a6d37", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4a7c9bb83839ce12cf25e6d64d5ef6ac47a6d37" + }, + { + "path": "meta/appflowy.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/apple-alt.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/apple-maps.json", + "mode": "100644", + "type": "blob", + "sha": "6841f04f732315749b16f3142bdc6b0449c34806", + "size": 306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6841f04f732315749b16f3142bdc6b0449c34806" + }, + { + "path": "meta/apple-music.json", + "mode": "100644", + "type": "blob", + "sha": "3c98c38219017c266e52749d040502bd4a6a7ba1", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c98c38219017c266e52749d040502bd4a6a7ba1" + }, + { + "path": "meta/apple-podcasts.json", + "mode": "100644", + "type": "blob", + "sha": "d289d4c5046e0144d7ead48e06b70563a374badc", + "size": 230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d289d4c5046e0144d7ead48e06b70563a374badc" + }, + { + "path": "meta/apple-tv-plus.json", + "mode": "100644", + "type": "blob", + "sha": "1c995f0204e95fbf29137edb14080bd33ede5b14", + "size": 337, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c995f0204e95fbf29137edb14080bd33ede5b14" + }, + { + "path": "meta/apple.json", + "mode": "100644", + "type": "blob", + "sha": "b9a240825a19ae7f2c7d0c3b15a08e36440843a9", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9a240825a19ae7f2c7d0c3b15a08e36440843a9" + }, + { + "path": "meta/apprise.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/appwrite.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/ara-records-ansible.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/arcane.json", + "mode": "100644", + "type": "blob", + "sha": "cbcb117674ed0b28339101db983e3096d8e67296", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbcb117674ed0b28339101db983e3096d8e67296" + }, + { + "path": "meta/arch-linux.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/archidekt.json", + "mode": "100644", + "type": "blob", + "sha": "3571c5a88e3e4c036cec3455ab07ac07fe4961a4", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3571c5a88e3e4c036cec3455ab07ac07fe4961a4" + }, + { + "path": "meta/archisteamfarm.json", + "mode": "100644", + "type": "blob", + "sha": "a77c76860f9e67b929844181f3cf7bfe82e1022b", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a77c76860f9e67b929844181f3cf7bfe82e1022b" + }, + { + "path": "meta/archivebox.json", + "mode": "100644", + "type": "blob", + "sha": "eeed91825fce7b3bcecc9913cb21060b55b46343", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeed91825fce7b3bcecc9913cb21060b55b46343" + }, + { + "path": "meta/archiveteam-warrior.json", + "mode": "100644", + "type": "blob", + "sha": "7d8ee5b4e2e3075147f77702db566adfeb10e587", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d8ee5b4e2e3075147f77702db566adfeb10e587" + }, + { + "path": "meta/arduino.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/argo-cd.json", + "mode": "100644", + "type": "blob", + "sha": "db1e7eb7f2e6866616c70ddd57b3d4d671db4477", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db1e7eb7f2e6866616c70ddd57b3d4d671db4477" + }, + { + "path": "meta/ariang.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/arm.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/arris.json", + "mode": "100644", + "type": "blob", + "sha": "f7d23f7a5e08a4bf050cb545c836a3dfec8bab4d", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7d23f7a5e08a4bf050cb545c836a3dfec8bab4d" + }, + { + "path": "meta/artifacthub.json", + "mode": "100644", + "type": "blob", + "sha": "9bcafaf93830b2a66e81dceb8a0609fe233880eb", + "size": 182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bcafaf93830b2a66e81dceb8a0609fe233880eb" + }, + { + "path": "meta/artifactory.json", + "mode": "100644", + "type": "blob", + "sha": "d472e023015d7c01e37c688e3ff70a39e71b69bd", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d472e023015d7c01e37c688e3ff70a39e71b69bd" + }, + { + "path": "meta/aruba.json", + "mode": "100644", + "type": "blob", + "sha": "297ad122dd4cf1330810c090c1de3ea9a8948ad8", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/297ad122dd4cf1330810c090c1de3ea9a8948ad8" + }, + { + "path": "meta/asana.json", + "mode": "100644", + "type": "blob", + "sha": "e9cb12cea546763837fb5c8382251e51dbfd989c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9cb12cea546763837fb5c8382251e51dbfd989c" + }, + { + "path": "meta/asciinema.json", + "mode": "100644", + "type": "blob", + "sha": "8d148376992d90b502b75eb98308e9ac470caac4", + "size": 183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d148376992d90b502b75eb98308e9ac470caac4" + }, + { + "path": "meta/asrock-rack-ipmi.json", + "mode": "100644", + "type": "blob", + "sha": "8f875feeddbed6bffeb14eb3db1a9b2e7ef18135", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f875feeddbed6bffeb14eb3db1a9b2e7ef18135" + }, + { + "path": "meta/asrock-rack.json", + "mode": "100644", + "type": "blob", + "sha": "d472e023015d7c01e37c688e3ff70a39e71b69bd", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d472e023015d7c01e37c688e3ff70a39e71b69bd" + }, + { + "path": "meta/assetgrid.json", + "mode": "100644", + "type": "blob", + "sha": "3eee5e17aef5fc489f34a8092ab1399d8a3878e8", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3eee5e17aef5fc489f34a8092ab1399d8a3878e8" + }, + { + "path": "meta/asterisk.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/astral.json", + "mode": "100644", + "type": "blob", + "sha": "0583143273d909f1d988d89d774bf4b5f0ba4425", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0583143273d909f1d988d89d774bf4b5f0ba4425" + }, + { + "path": "meta/astuto.json", + "mode": "100644", + "type": "blob", + "sha": "4c3b10c9066d8db0d7cd96c3b4dcca3e3ab2c56b", + "size": 320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c3b10c9066d8db0d7cd96c3b4dcca3e3ab2c56b" + }, + { + "path": "meta/asus-full.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/asus-rog.json", + "mode": "100644", + "type": "blob", + "sha": "233987df7901803813fe386af9b1940b3eec61a6", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/233987df7901803813fe386af9b1940b3eec61a6" + }, + { + "path": "meta/asus-router.json", + "mode": "100644", + "type": "blob", + "sha": "31dec6a58733d120a7a51e8d04cf95ab54f87ed9", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31dec6a58733d120a7a51e8d04cf95ab54f87ed9" + }, + { + "path": "meta/asus.json", + "mode": "100644", + "type": "blob", + "sha": "20fb08fe9663570496d254595e356185d835da08", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20fb08fe9663570496d254595e356185d835da08" + }, + { + "path": "meta/asustor.json", + "mode": "100644", + "type": "blob", + "sha": "ab3e5aa69f1c30ef0fa1c1b7c6e42d6680a98964", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab3e5aa69f1c30ef0fa1c1b7c6e42d6680a98964" + }, + { + "path": "meta/at-t.json", + "mode": "100644", + "type": "blob", + "sha": "d7470b415220034588a05dd0a85f0d2f52a6d550", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7470b415220034588a05dd0a85f0d2f52a6d550" + }, + { + "path": "meta/atlassian-bamboo.json", + "mode": "100644", + "type": "blob", + "sha": "340a50e06bcd91e188eb9a61036dc4e982e0f7d2", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/340a50e06bcd91e188eb9a61036dc4e982e0f7d2" + }, + { + "path": "meta/atlassian-bitbucket.json", + "mode": "100644", + "type": "blob", + "sha": "0fd057978994a99ce7e134904816a02fc2d414ef", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fd057978994a99ce7e134904816a02fc2d414ef" + }, + { + "path": "meta/atlassian-confluence.json", + "mode": "100644", + "type": "blob", + "sha": "d472e023015d7c01e37c688e3ff70a39e71b69bd", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d472e023015d7c01e37c688e3ff70a39e71b69bd" + }, + { + "path": "meta/atlassian-jira.json", + "mode": "100644", + "type": "blob", + "sha": "c95b407c0cc6e0070e9df6fa97e7ec90426a7159", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c95b407c0cc6e0070e9df6fa97e7ec90426a7159" + }, + { + "path": "meta/atlassian-opsgenie.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/atlassian-trello.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/atlassian.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/atuin.json", + "mode": "100644", + "type": "blob", + "sha": "384e5f1b0cd9f3acb4dc6831af581812d67692a5", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/384e5f1b0cd9f3acb4dc6831af581812d67692a5" + }, + { + "path": "meta/audacity.json", + "mode": "100644", + "type": "blob", + "sha": "6efb5c7eaa838fa5b23529f3009910bf77520291", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6efb5c7eaa838fa5b23529f3009910bf77520291" + }, + { + "path": "meta/audiobookshelf.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/aura.json", + "mode": "100644", + "type": "blob", + "sha": "65fca098d678474ce892163382d382340a56119e", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65fca098d678474ce892163382d382340a56119e" + }, + { + "path": "meta/auracast.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/authelia.json", + "mode": "100644", + "type": "blob", + "sha": "b51ecc3153a53ca5e7b569e9b976299b9f34331a", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b51ecc3153a53ca5e7b569e9b976299b9f34331a" + }, + { + "path": "meta/authentik.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/authman.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/auto-cad.json", + "mode": "100644", + "type": "blob", + "sha": "10579eb2b9c0ae31104191df18bc45ed8340ef42", + "size": 248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10579eb2b9c0ae31104191df18bc45ed8340ef42" + }, + { + "path": "meta/auto-mcs.json", + "mode": "100644", + "type": "blob", + "sha": "e6f4395b99ee09900d011db6d2c7a5d13a23bd72", + "size": 304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6f4395b99ee09900d011db6d2c7a5d13a23bd72" + }, + { + "path": "meta/autobangumi.json", + "mode": "100644", + "type": "blob", + "sha": "791f5c5b6972a90868d1aaf09564fc0326a63100", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/791f5c5b6972a90868d1aaf09564fc0326a63100" + }, + { + "path": "meta/autobrr.json", + "mode": "100644", + "type": "blob", + "sha": "71ab6d8918d35605aea9e887a006a5cb1eb05b70", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71ab6d8918d35605aea9e887a006a5cb1eb05b70" + }, + { + "path": "meta/automad.json", + "mode": "100644", + "type": "blob", + "sha": "cccc653b6f0716cfcff6dd173315d92fd6a1554a", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cccc653b6f0716cfcff6dd173315d92fd6a1554a" + }, + { + "path": "meta/avg.json", + "mode": "100644", + "type": "blob", + "sha": "d472e023015d7c01e37c688e3ff70a39e71b69bd", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d472e023015d7c01e37c688e3ff70a39e71b69bd" + }, + { + "path": "meta/avigilon.json", + "mode": "100644", + "type": "blob", + "sha": "e68551d49f2279e58077760dcb873bf22d9ee426", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e68551d49f2279e58077760dcb873bf22d9ee426" + }, + { + "path": "meta/avm-fritzbox.json", + "mode": "100644", + "type": "blob", + "sha": "124f4b84ba82befa42abaf38064c2786e38a9045", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/124f4b84ba82befa42abaf38064c2786e38a9045" + }, + { + "path": "meta/aws-ecs.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/aws.json", + "mode": "100644", + "type": "blob", + "sha": "3940010b47712dc0aaa24489ceae17758f4ffeb1", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3940010b47712dc0aaa24489ceae17758f4ffeb1" + }, + { + "path": "meta/awtrix.json", + "mode": "100644", + "type": "blob", + "sha": "d2f77db524a0b391d2b38118fb38d654f8e3a6ae", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2f77db524a0b391d2b38118fb38d654f8e3a6ae" + }, + { + "path": "meta/awwesome.json", + "mode": "100644", + "type": "blob", + "sha": "0583143273d909f1d988d89d774bf4b5f0ba4425", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0583143273d909f1d988d89d774bf4b5f0ba4425" + }, + { + "path": "meta/awx.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/axis.json", + "mode": "100644", + "type": "blob", + "sha": "9661d9d9a9931b0cd9bb389d044c985c37162a0c", + "size": 292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9661d9d9a9931b0cd9bb389d044c985c37162a0c" + }, + { + "path": "meta/aya.json", + "mode": "100644", + "type": "blob", + "sha": "94d8f4ec095f5441c8be986875274c7ed2e8bc88", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94d8f4ec095f5441c8be986875274c7ed2e8bc88" + }, + { + "path": "meta/azuracast.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/azure-container-instances.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/azure-container-service.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/azure-devops.json", + "mode": "100644", + "type": "blob", + "sha": "d6dd878df71a043b8922325a3cd95f36181c3133", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6dd878df71a043b8922325a3cd95f36181c3133" + }, + { + "path": "meta/azure-dns.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/azure.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/bab-technologie.json", + "mode": "100644", + "type": "blob", + "sha": "95e94e74fba406b1df86790ea3bfccc300a9c211", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95e94e74fba406b1df86790ea3bfccc300a9c211" + }, + { + "path": "meta/babybuddy.json", + "mode": "100644", + "type": "blob", + "sha": "53faf94bcbab6a24d31a699bf7eba6b1399eb905", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53faf94bcbab6a24d31a699bf7eba6b1399eb905" + }, + { + "path": "meta/backblaze.json", + "mode": "100644", + "type": "blob", + "sha": "d9361cfe4eebc1aef67ebe31a86a27e88d6d6249", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9361cfe4eebc1aef67ebe31a86a27e88d6d6249" + }, + { + "path": "meta/backrest.json", + "mode": "100644", + "type": "blob", + "sha": "fe7d576191bd3b08e30cb45877d4dc3733b698d5", + "size": 322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe7d576191bd3b08e30cb45877d4dc3733b698d5" + }, + { + "path": "meta/bacula.json", + "mode": "100644", + "type": "blob", + "sha": "d8a1f0acc494c44cd04f4c45c8d16ed1a8b701c2", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8a1f0acc494c44cd04f4c45c8d16ed1a8b701c2" + }, + { + "path": "meta/badge.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/baikal.json", + "mode": "100644", + "type": "blob", + "sha": "bbc388ac2c3b36a58b8662179629337e74b2c21b", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbc388ac2c3b36a58b8662179629337e74b2c21b" + }, + { + "path": "meta/bale.json", + "mode": "100644", + "type": "blob", + "sha": "b6ce3398d6525e503a714e010409ff6fc8e568b7", + "size": 219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6ce3398d6525e503a714e010409ff6fc8e568b7" + }, + { + "path": "meta/balena-cloud.json", + "mode": "100644", + "type": "blob", + "sha": "0cfb644632570588698143037c0f194fbc021d56", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cfb644632570588698143037c0f194fbc021d56" + }, + { + "path": "meta/balena-etcher.json", + "mode": "100644", + "type": "blob", + "sha": "a774a3d8e8c8da051f454ac67c09dfa7c5a467b2", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a774a3d8e8c8da051f454ac67c09dfa7c5a467b2" + }, + { + "path": "meta/ballerina.json", + "mode": "100644", + "type": "blob", + "sha": "7bd7381ef77285530e8ca3b3911c600b3978afeb", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bd7381ef77285530e8ca3b3911c600b3978afeb" + }, + { + "path": "meta/bandcamp.json", + "mode": "100644", + "type": "blob", + "sha": "2b2ca2f30a41b1929e9086203d40c34c8d7e4931", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b2ca2f30a41b1929e9086203d40c34c8d7e4931" + }, + { + "path": "meta/bar-assistant.json", + "mode": "100644", + "type": "blob", + "sha": "a3da434e22407f10065da067e9059822bf0d0da8", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3da434e22407f10065da067e9059822bf0d0da8" + }, + { + "path": "meta/barcodebuddy.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/baserow.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/basilisk.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bastillion.json", + "mode": "100644", + "type": "blob", + "sha": "6776db1a46e6c066502165047cedc30936bb7905", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6776db1a46e6c066502165047cedc30936bb7905" + }, + { + "path": "meta/batocera-linux.json", + "mode": "100644", + "type": "blob", + "sha": "5b6f52093e6d0b4c9ce0aa22495e8540387db68e", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b6f52093e6d0b4c9ce0aa22495e8540387db68e" + }, + { + "path": "meta/bazarr.json", + "mode": "100644", + "type": "blob", + "sha": "2abbeaab65780642282f52c3811c1ffa0533999c", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2abbeaab65780642282f52c3811c1ffa0533999c" + }, + { + "path": "meta/bazecor.json", + "mode": "100644", + "type": "blob", + "sha": "4a062050f3e235281fc910d2a9090c935f6f2700", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a062050f3e235281fc910d2a9090c935f6f2700" + }, + { + "path": "meta/be-quiet.json", + "mode": "100644", + "type": "blob", + "sha": "98e3132373244052b3c16658eaa68b716b6ab949", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98e3132373244052b3c16658eaa68b716b6ab949" + }, + { + "path": "meta/beaver-habit-tracker.json", + "mode": "100644", + "type": "blob", + "sha": "689381fde9a2dcb3522b3ee016ec8671fdc19aa9", + "size": 353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/689381fde9a2dcb3522b3ee016ec8671fdc19aa9" + }, + { + "path": "meta/bechtle.json", + "mode": "100644", + "type": "blob", + "sha": "46ecc225b13209b618035621625eacf8c4b95eb1", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46ecc225b13209b618035621625eacf8c4b95eb1" + }, + { + "path": "meta/beef.json", + "mode": "100644", + "type": "blob", + "sha": "fde7ba2a3e1e05dc8ac75fc870258acce25bf5ed", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fde7ba2a3e1e05dc8ac75fc870258acce25bf5ed" + }, + { + "path": "meta/beets.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/benotes.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bentopdf.json", + "mode": "100644", + "type": "blob", + "sha": "cccdb9229a2e223a7987e36dac92140be40cf322", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cccdb9229a2e223a7987e36dac92140be40cf322" + }, + { + "path": "meta/beszel.json", + "mode": "100644", + "type": "blob", + "sha": "b822e927cdac8172888e1474d8b1c63719d9851d", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b822e927cdac8172888e1474d8b1c63719d9851d" + }, + { + "path": "meta/betanin.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bewcloud.json", + "mode": "100644", + "type": "blob", + "sha": "2cc48d826b425b7c6d6d2bffc3a553e72f47d664", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cc48d826b425b7c6d6d2bffc3a553e72f47d664" + }, + { + "path": "meta/bible-gateway.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bibliogram.json", + "mode": "100644", + "type": "blob", + "sha": "14d08ef88c1c7e34dedde8c4664777db66ae9ba0", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14d08ef88c1c7e34dedde8c4664777db66ae9ba0" + }, + { + "path": "meta/biblioreads.json", + "mode": "100644", + "type": "blob", + "sha": "0e700078fea471aae9524f383f12ec2a4105ef0a", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e700078fea471aae9524f383f12ec2a4105ef0a" + }, + { + "path": "meta/biedronka.json", + "mode": "100644", + "type": "blob", + "sha": "a97f9ad327798a9d894c2ecbeab7eb51641392c9", + "size": 237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a97f9ad327798a9d894c2ecbeab7eb51641392c9" + }, + { + "path": "meta/bigcapital.json", + "mode": "100644", + "type": "blob", + "sha": "b12da60371ffa7edfc3853a71775e3b0a5fa15d5", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b12da60371ffa7edfc3853a71775e3b0a5fa15d5" + }, + { + "path": "meta/bilibili.json", + "mode": "100644", + "type": "blob", + "sha": "79b00f5f75e3d5847183c6dd6e2dcc6a05da7ce6", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79b00f5f75e3d5847183c6dd6e2dcc6a05da7ce6" + }, + { + "path": "meta/bing.json", + "mode": "100644", + "type": "blob", + "sha": "c59e4012f4bc1c03f2e529fa5814b46e8d62ec37", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c59e4012f4bc1c03f2e529fa5814b46e8d62ec37" + }, + { + "path": "meta/binner.json", + "mode": "100644", + "type": "blob", + "sha": "1c0a7d29d421ab1a751d70cc316762c84d8f41c0", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c0a7d29d421ab1a751d70cc316762c84d8f41c0" + }, + { + "path": "meta/birdnet.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bitbucket.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/bitcoin.json", + "mode": "100644", + "type": "blob", + "sha": "15524a54b7862ecedd5e5c8fc6e148529afe1109", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15524a54b7862ecedd5e5c8fc6e148529afe1109" + }, + { + "path": "meta/bithumen.json", + "mode": "100644", + "type": "blob", + "sha": "138761c56ab6a3708477fdc1a26959d2068f583b", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/138761c56ab6a3708477fdc1a26959d2068f583b" + }, + { + "path": "meta/bitmagnet.json", + "mode": "100644", + "type": "blob", + "sha": "f881089e0cee282a350995cea8218e7c8308cbcb", + "size": 219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f881089e0cee282a350995cea8218e7c8308cbcb" + }, + { + "path": "meta/bitwarden.json", + "mode": "100644", + "type": "blob", + "sha": "4c2b6413cf2ea69da1c9b69233a3b413a28664f6", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c2b6413cf2ea69da1c9b69233a3b413a28664f6" + }, + { + "path": "meta/bitwig-studio.json", + "mode": "100644", + "type": "blob", + "sha": "8b3cec50174473e8e5d3f34a4ef6ff23bf56578c", + "size": 345, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b3cec50174473e8e5d3f34a4ef6ff23bf56578c" + }, + { + "path": "meta/blocky.json", + "mode": "100644", + "type": "blob", + "sha": "53644c63ff094620964cb98f9239db3a2a16628e", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53644c63ff094620964cb98f9239db3a2a16628e" + }, + { + "path": "meta/blogger.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/blue-iris.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/blue-letter-bible.json", + "mode": "100644", + "type": "blob", + "sha": "4071c672ee4506846fdd1c70ce8378d1c2a13e3c", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4071c672ee4506846fdd1c70ce8378d1c2a13e3c" + }, + { + "path": "meta/bluesky.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/bluetooth.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/bluewallet.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bobcat-miner.json", + "mode": "100644", + "type": "blob", + "sha": "cbb1706ba31426a3177b4e5c82c7c1e1ecb02bc0", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbb1706ba31426a3177b4e5c82c7c1e1ecb02bc0" + }, + { + "path": "meta/boinc.json", + "mode": "100644", + "type": "blob", + "sha": "7a7ee0c5774704da61134f269ea3d84ea1a726da", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a7ee0c5774704da61134f269ea3d84ea1a726da" + }, + { + "path": "meta/book-lore.json", + "mode": "100644", + "type": "blob", + "sha": "bce83e592395df892fc07a0909d36eb011f5179b", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bce83e592395df892fc07a0909d36eb011f5179b" + }, + { + "path": "meta/booklogr.json", + "mode": "100644", + "type": "blob", + "sha": "4aeafb52753484296e675f9357023b38fcac2f3c", + "size": 326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4aeafb52753484296e675f9357023b38fcac2f3c" + }, + { + "path": "meta/booksonic.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bookstack.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/bootstrap.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/borg.json", + "mode": "100644", + "type": "blob", + "sha": "3c7371044f78a5b84a69648bf666b50bfd78b1b8", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c7371044f78a5b84a69648bf666b50bfd78b1b8" + }, + { + "path": "meta/borgmatic.json", + "mode": "100644", + "type": "blob", + "sha": "cad5c05c3da0b1608219feb49d0f74e76c7ee033", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cad5c05c3da0b1608219feb49d0f74e76c7ee033" + }, + { + "path": "meta/bottom.json", + "mode": "100644", + "type": "blob", + "sha": "f1b12587063c7471949e62d2814074ea635fda04", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1b12587063c7471949e62d2814074ea635fda04" + }, + { + "path": "meta/boundary.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/box.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/boxarr.json", + "mode": "100644", + "type": "blob", + "sha": "daf71779829fa3d92cf37dd82948113d0928a57f", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/daf71779829fa3d92cf37dd82948113d0928a57f" + }, + { + "path": "meta/brave-dev.json", + "mode": "100644", + "type": "blob", + "sha": "a8730086df76da6e5b412bc44795e306a9a6dbde", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8730086df76da6e5b412bc44795e306a9a6dbde" + }, + { + "path": "meta/brave.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/brewpi.json", + "mode": "100644", + "type": "blob", + "sha": "ecfb8984ab4955ac454f72f5de7543d6ea9f0fb4", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecfb8984ab4955ac454f72f5de7543d6ea9f0fb4" + }, + { + "path": "meta/brick-tracker.json", + "mode": "100644", + "type": "blob", + "sha": "535af7a7b67c0e9555ebdfb24c62c2067a867bd4", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/535af7a7b67c0e9555ebdfb24c62c2067a867bd4" + }, + { + "path": "meta/bright-move.json", + "mode": "100644", + "type": "blob", + "sha": "f7bdc09c3a904fd81696d3925115166fa78ce642", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7bdc09c3a904fd81696d3925115166fa78ce642" + }, + { + "path": "meta/brillcam.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/broad-link.json", + "mode": "100644", + "type": "blob", + "sha": "719acae4567a3e4b014869899d5c2adc8bb9ac05", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/719acae4567a3e4b014869899d5c2adc8bb9ac05" + }, + { + "path": "meta/broadcastchannel.json", + "mode": "100644", + "type": "blob", + "sha": "009547f0bb0c4c46b929af786dc8b80e73e247a1", + "size": 275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/009547f0bb0c4c46b929af786dc8b80e73e247a1" + }, + { + "path": "meta/brocade.json", + "mode": "100644", + "type": "blob", + "sha": "fbe7122dd44e5ac10166a8de945c49a2d5d3189f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbe7122dd44e5ac10166a8de945c49a2d5d3189f" + }, + { + "path": "meta/brother.json", + "mode": "100644", + "type": "blob", + "sha": "b1a31f8e69f736a80d6946d32a87af1540a71995", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1a31f8e69f736a80d6946d32a87af1540a71995" + }, + { + "path": "meta/browserless.json", + "mode": "100644", + "type": "blob", + "sha": "354f414484da8688d2a858459a9a077d560a2f36", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/354f414484da8688d2a858459a9a077d560a2f36" + }, + { + "path": "meta/browsh.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/btcpay-server.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/buddy.json", + "mode": "100644", + "type": "blob", + "sha": "6cc86e807bdbc428e2981e20928c7243342d60fc", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cc86e807bdbc428e2981e20928c7243342d60fc" + }, + { + "path": "meta/budget-board.json", + "mode": "100644", + "type": "blob", + "sha": "ff1bebfde609d9c1c952a3cc48271818d5ca7196", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff1bebfde609d9c1c952a3cc48271818d5ca7196" + }, + { + "path": "meta/budget-zero.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/budgetbee.json", + "mode": "100644", + "type": "blob", + "sha": "6d86dcedf4d9029c518ebbdee7192cb7615a3746", + "size": 360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d86dcedf4d9029c518ebbdee7192cb7615a3746" + }, + { + "path": "meta/budibase.json", + "mode": "100644", + "type": "blob", + "sha": "1d9bcf9f3345f1ffddd53eed5ba46eb762f16b34", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d9bcf9f3345f1ffddd53eed5ba46eb762f16b34" + }, + { + "path": "meta/buffalo.json", + "mode": "100644", + "type": "blob", + "sha": "b2fb9fc3aa746fe214a8cd04c654ac35efc74b5d", + "size": 237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2fb9fc3aa746fe214a8cd04c654ac35efc74b5d" + }, + { + "path": "meta/build-better.json", + "mode": "100644", + "type": "blob", + "sha": "6a3ea6d6630f184fa2e5a0d748c685b88a9d9c57", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a3ea6d6630f184fa2e5a0d748c685b88a9d9c57" + }, + { + "path": "meta/buildium.json", + "mode": "100644", + "type": "blob", + "sha": "367b759aea9f08f08d3988d9b91b8771ea82c892", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/367b759aea9f08f08d3988d9b91b8771ea82c892" + }, + { + "path": "meta/bunkerweb.json", + "mode": "100644", + "type": "blob", + "sha": "524068e7e26745f1490f97be38ff1cd2cdb13d4f", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/524068e7e26745f1490f97be38ff1cd2cdb13d4f" + }, + { + "path": "meta/bunny.json", + "mode": "100644", + "type": "blob", + "sha": "aef65c02b9d83de537027a1b2d4b65b6e374c9e4", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aef65c02b9d83de537027a1b2d4b65b6e374c9e4" + }, + { + "path": "meta/buxfer.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/bytestash.json", + "mode": "100644", + "type": "blob", + "sha": "0158fcf7683eba644f6a8bfcd1321e283d10f931", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0158fcf7683eba644f6a8bfcd1321e283d10f931" + }, + { + "path": "meta/c.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/cabernet.json", + "mode": "100644", + "type": "blob", + "sha": "bf78415d2e77967b87e8f234f6559217f07dfdde", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf78415d2e77967b87e8f234f6559217f07dfdde" + }, + { + "path": "meta/cabot.json", + "mode": "100644", + "type": "blob", + "sha": "01feb624c51cb77ba2355617115f584c6c352660", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01feb624c51cb77ba2355617115f584c6c352660" + }, + { + "path": "meta/cachyos-linux.json", + "mode": "100644", + "type": "blob", + "sha": "6693dc3da49b3cf734e5379bb406472fdfaff589", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6693dc3da49b3cf734e5379bb406472fdfaff589" + }, + { + "path": "meta/cacti.json", + "mode": "100644", + "type": "blob", + "sha": "35c8349c00031f3674b3d91b0e19d69710d9e9a6", + "size": 292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35c8349c00031f3674b3d91b0e19d69710d9e9a6" + }, + { + "path": "meta/caddy.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/cadvisor.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/cal-com.json", + "mode": "100644", + "type": "blob", + "sha": "e3f4f0ee5789669562014b3e4aa5cf32746a7330", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3f4f0ee5789669562014b3e4aa5cf32746a7330" + }, + { + "path": "meta/calckey.json", + "mode": "100644", + "type": "blob", + "sha": "736955722922d62466f46543344624f959487738", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/736955722922d62466f46543344624f959487738" + }, + { + "path": "meta/caldera.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/calibre-web-automated-book-downloader.json", + "mode": "100644", + "type": "blob", + "sha": "547d1a602a0cf16ecd83f43158886b80b3b9dc80", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/547d1a602a0cf16ecd83f43158886b80b3b9dc80" + }, + { + "path": "meta/calibre-web.json", + "mode": "100644", + "type": "blob", + "sha": "8a775cdb63d770f7b64403769f45866eb845d0a7", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a775cdb63d770f7b64403769f45866eb845d0a7" + }, + { + "path": "meta/calibre.json", + "mode": "100644", + "type": "blob", + "sha": "e58a21dd81973f85b4befd531e191fd7c910de3d", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e58a21dd81973f85b4befd531e191fd7c910de3d" + }, + { + "path": "meta/camera-ui.json", + "mode": "100644", + "type": "blob", + "sha": "9b214b45f4cf38678829cf3fa5484c2727baeb1e", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b214b45f4cf38678829cf3fa5484c2727baeb1e" + }, + { + "path": "meta/canonical.json", + "mode": "100644", + "type": "blob", + "sha": "e6e6acf9224753371d6aa15a219d3b4b5c26049b", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6e6acf9224753371d6aa15a219d3b4b5c26049b" + }, + { + "path": "meta/canvas-lms.json", + "mode": "100644", + "type": "blob", + "sha": "f31fa08fab7171bcbde7f33a3eefa456cc4afc6a", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f31fa08fab7171bcbde7f33a3eefa456cc4afc6a" + }, + { + "path": "meta/cap-cut.json", + "mode": "100644", + "type": "blob", + "sha": "b7725e05b3cc255e9e0f6164db5cf3c2ee62af60", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7725e05b3cc255e9e0f6164db5cf3c2ee62af60" + }, + { + "path": "meta/capacities.json", + "mode": "100644", + "type": "blob", + "sha": "1d438b6998faacecad810f48f1c6e688371a5411", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d438b6998faacecad810f48f1c6e688371a5411" + }, + { + "path": "meta/caprover.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/cardigann.json", + "mode": "100644", + "type": "blob", + "sha": "4feff125c26faae5fe0e493ccf85cc0ceb52b897", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4feff125c26faae5fe0e493ccf85cc0ceb52b897" + }, + { + "path": "meta/carrefour.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/casaos.json", + "mode": "100644", + "type": "blob", + "sha": "bb3afa1ff95ec06904a8e1631d04bc3977d2924e", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb3afa1ff95ec06904a8e1631d04bc3977d2924e" + }, + { + "path": "meta/castopod.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/cc.json", + "mode": "100644", + "type": "blob", + "sha": "bd73e3577ea00f65348f5f7a62f67631215745db", + "size": 247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd73e3577ea00f65348f5f7a62f67631215745db" + }, + { + "path": "meta/centos.json", + "mode": "100644", + "type": "blob", + "sha": "8279a1a978b15329821a4afb49aaf952ad356921", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8279a1a978b15329821a4afb49aaf952ad356921" + }, + { + "path": "meta/ceph.json", + "mode": "100644", + "type": "blob", + "sha": "36ac80be162ea15bfe0f699b85743500f3aa6edb", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36ac80be162ea15bfe0f699b85743500f3aa6edb" + }, + { + "path": "meta/cert-manager.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/cert-warden.json", + "mode": "100644", + "type": "blob", + "sha": "7a6ecd54785d8d287b2eb0666bf9a23dfe654b6d", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a6ecd54785d8d287b2eb0666bf9a23dfe654b6d" + }, + { + "path": "meta/cessna.json", + "mode": "100644", + "type": "blob", + "sha": "9cf9a265a69db358e9b66d7230bf71ca4e1c3f17", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cf9a265a69db358e9b66d7230bf71ca4e1c3f17" + }, + { + "path": "meta/chainguard.json", + "mode": "100644", + "type": "blob", + "sha": "3020eba1ad3d3fe967e2a46e42badb7576ed4268", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3020eba1ad3d3fe967e2a46e42badb7576ed4268" + }, + { + "path": "meta/changedetection.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/channels-dvr.json", + "mode": "100644", + "type": "blob", + "sha": "f2c70704d63fc00fdc74725bdb68a0578b696757", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2c70704d63fc00fdc74725bdb68a0578b696757" + }, + { + "path": "meta/chaptarr.json", + "mode": "100644", + "type": "blob", + "sha": "4f0f29e902b9420c1c11154923a07c63681a6d1a", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f0f29e902b9420c1c11154923a07c63681a6d1a" + }, + { + "path": "meta/chart-db.json", + "mode": "100644", + "type": "blob", + "sha": "502d213fe2ce8f915ef23749f03b13f991126eb0", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/502d213fe2ce8f915ef23749f03b13f991126eb0" + }, + { + "path": "meta/chatbetter.json", + "mode": "100644", + "type": "blob", + "sha": "a0ee7a97b58308304223d60cdcb57e4ba09f7db5", + "size": 236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0ee7a97b58308304223d60cdcb57e4ba09f7db5" + }, + { + "path": "meta/chatgpt.json", + "mode": "100644", + "type": "blob", + "sha": "64cc47e1c6c10537657d458fa338b7f44130b0ec", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64cc47e1c6c10537657d458fa338b7f44130b0ec" + }, + { + "path": "meta/chatpad-ai.json", + "mode": "100644", + "type": "blob", + "sha": "96ba8d216537c1859bb31552727fbf85fe76c110", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96ba8d216537c1859bb31552727fbf85fe76c110" + }, + { + "path": "meta/chatwoot.json", + "mode": "100644", + "type": "blob", + "sha": "d8cf3dfdff3c02441e6eb1543104167afacfdb37", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8cf3dfdff3c02441e6eb1543104167afacfdb37" + }, + { + "path": "meta/check-cle.json", + "mode": "100644", + "type": "blob", + "sha": "fcec6b51ad5b4251f00d0667404b50eed0a44593", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcec6b51ad5b4251f00d0667404b50eed0a44593" + }, + { + "path": "meta/checkmate.json", + "mode": "100644", + "type": "blob", + "sha": "dbbf1dcd8b0705617386022254092c46655b181f", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbbf1dcd8b0705617386022254092c46655b181f" + }, + { + "path": "meta/checkmk.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/cherry.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/chess.json", + "mode": "100644", + "type": "blob", + "sha": "1ca7628417218571528d11cec5b06987ee8f1c05", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ca7628417218571528d11cec5b06987ee8f1c05" + }, + { + "path": "meta/chevereto.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/chhoto-url.json", + "mode": "100644", + "type": "blob", + "sha": "d2c443651763651044abc73372ebb120cc768b7e", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2c443651763651044abc73372ebb120cc768b7e" + }, + { + "path": "meta/chibisafe.json", + "mode": "100644", + "type": "blob", + "sha": "05e69e5a10fdb1d3cb6014bc9a391b3f8a651686", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05e69e5a10fdb1d3cb6014bc9a391b3f8a651686" + }, + { + "path": "meta/chiefonboarding.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/chirpy.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/chowdown.json", + "mode": "100644", + "type": "blob", + "sha": "7b5820fd7d47590967105e6275c96d5cd4db2c61", + "size": 231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b5820fd7d47590967105e6275c96d5cd4db2c61" + }, + { + "path": "meta/chroma.json", + "mode": "100644", + "type": "blob", + "sha": "20baef3ac625fcd40e6b3860c7b1be0700786d91", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20baef3ac625fcd40e6b3860c7b1be0700786d91" + }, + { + "path": "meta/chrome-beta.json", + "mode": "100644", + "type": "blob", + "sha": "cd193ff19c5a5b86fb67015a9f130999a4884eef", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd193ff19c5a5b86fb67015a9f130999a4884eef" + }, + { + "path": "meta/chrome-canary.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/chrome-dev.json", + "mode": "100644", + "type": "blob", + "sha": "3df03074f0f7646eb2aac2584088b1c67cfe46d9", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3df03074f0f7646eb2aac2584088b1c67cfe46d9" + }, + { + "path": "meta/chrome-devtools.json", + "mode": "100644", + "type": "blob", + "sha": "aea079ef29add1bdf4faab728d9f28b6a20a58ce", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aea079ef29add1bdf4faab728d9f28b6a20a58ce" + }, + { + "path": "meta/chrome-remote-desktop.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/chrome.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/chromecast.json", + "mode": "100644", + "type": "blob", + "sha": "ae555222183707c5a04bd53496b9f41ff04425db", + "size": 304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae555222183707c5a04bd53496b9f41ff04425db" + }, + { + "path": "meta/chromium.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/chronograf.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/cilium.json", + "mode": "100644", + "type": "blob", + "sha": "2dd68574deb4f6623626a49324aa212f21846fe8", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dd68574deb4f6623626a49324aa212f21846fe8" + }, + { + "path": "meta/cinny.json", + "mode": "100644", + "type": "blob", + "sha": "fa27d99108becfd324961d30dcf39cde70671a66", + "size": 319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa27d99108becfd324961d30dcf39cde70671a66" + }, + { + "path": "meta/ciphermail.json", + "mode": "100644", + "type": "blob", + "sha": "efa6d2374d2edf96b2e5367f07c147bc6345878e", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efa6d2374d2edf96b2e5367f07c147bc6345878e" + }, + { + "path": "meta/cisco.json", + "mode": "100644", + "type": "blob", + "sha": "8578c547bfd47895223b886f770d1ac42a689add", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8578c547bfd47895223b886f770d1ac42a689add" + }, + { + "path": "meta/clam-av.json", + "mode": "100644", + "type": "blob", + "sha": "5f6d9ff8152775e1a10ec10f9c52bee959bdec19", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f6d9ff8152775e1a10ec10f9c52bee959bdec19" + }, + { + "path": "meta/clash.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/claude-ai.json", + "mode": "100644", + "type": "blob", + "sha": "59c4c393cb02e53a095a09cf22fc543eb9aa500d", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59c4c393cb02e53a095a09cf22fc543eb9aa500d" + }, + { + "path": "meta/cleanuperr.json", + "mode": "100644", + "type": "blob", + "sha": "34e21f2cc924cdc1cad5f9ccf531de4999d661eb", + "size": 199, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34e21f2cc924cdc1cad5f9ccf531de4999d661eb" + }, + { + "path": "meta/clickhouse.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/clickup.json", + "mode": "100644", + "type": "blob", + "sha": "c82574b8e33ee4d9983dd83656a6a70d4619e9c6", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c82574b8e33ee4d9983dd83656a6a70d4619e9c6" + }, + { + "path": "meta/cloud66.json", + "mode": "100644", + "type": "blob", + "sha": "eb4f51e6d682742eb3140af365d308eb7970201b", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb4f51e6d682742eb3140af365d308eb7970201b" + }, + { + "path": "meta/cloud9.json", + "mode": "100644", + "type": "blob", + "sha": "1f22cbcaa5281b79e06b7218a14854b4c5feaff6", + "size": 341, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f22cbcaa5281b79e06b7218a14854b4c5feaff6" + }, + { + "path": "meta/cloudbeaver.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/cloudcmd.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/cloudflare-pages.json", + "mode": "100644", + "type": "blob", + "sha": "59bf92bd2e856d9935f25db188490b312bc604a0", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59bf92bd2e856d9935f25db188490b312bc604a0" + }, + { + "path": "meta/cloudflare-zero-trust.json", + "mode": "100644", + "type": "blob", + "sha": "0b08d809a4d81b6d53c9d286292fb794c250ebcf", + "size": 308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b08d809a4d81b6d53c9d286292fb794c250ebcf" + }, + { + "path": "meta/cloudflare.json", + "mode": "100644", + "type": "blob", + "sha": "52f3507a6838d21869bab9d2baedf1eadd40f930", + "size": 309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52f3507a6838d21869bab9d2baedf1eadd40f930" + }, + { + "path": "meta/cloudpanel.json", + "mode": "100644", + "type": "blob", + "sha": "5afe42ef55a7dc120bb5fdfd16148de8c4872ee6", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5afe42ef55a7dc120bb5fdfd16148de8c4872ee6" + }, + { + "path": "meta/cloudreve.json", + "mode": "100644", + "type": "blob", + "sha": "fd4e9c14c906db37babd60794a05339c80fcffa8", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd4e9c14c906db37babd60794a05339c80fcffa8" + }, + { + "path": "meta/cloudstream.json", + "mode": "100644", + "type": "blob", + "sha": "e68e460412008ab6951a9c15f7fd86e162855311", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e68e460412008ab6951a9c15f7fd86e162855311" + }, + { + "path": "meta/cobalt.json", + "mode": "100644", + "type": "blob", + "sha": "021aeb3dc670d6464991657c25d0d136d9aa75da", + "size": 399, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/021aeb3dc670d6464991657c25d0d136d9aa75da" + }, + { + "path": "meta/cockpit-cms.json", + "mode": "100644", + "type": "blob", + "sha": "fd5a60a532c66dc7e02e5f7f3fa2a64c9c54b33e", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd5a60a532c66dc7e02e5f7f3fa2a64c9c54b33e" + }, + { + "path": "meta/cockpit.json", + "mode": "100644", + "type": "blob", + "sha": "91c7ee4775b7da5918962cd365a8d6fcde94b79d", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91c7ee4775b7da5918962cd365a8d6fcde94b79d" + }, + { + "path": "meta/code-cademy.json", + "mode": "100644", + "type": "blob", + "sha": "c5c3de43c448e68779b61a5d517a4874ce0261d7", + "size": 289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5c3de43c448e68779b61a5d517a4874ce0261d7" + }, + { + "path": "meta/code-server.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/code.json", + "mode": "100644", + "type": "blob", + "sha": "ed24ff9938b0d90533502fc6671731ca927df2c2", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed24ff9938b0d90533502fc6671731ca927df2c2" + }, + { + "path": "meta/codeberg.json", + "mode": "100644", + "type": "blob", + "sha": "f69140f6a60150182d5f5b32a66f8a1fbde47967", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f69140f6a60150182d5f5b32a66f8a1fbde47967" + }, + { + "path": "meta/codellm.json", + "mode": "100644", + "type": "blob", + "sha": "d59c753cd980500ce02cdbac4a3ca0ca957b3e7c", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d59c753cd980500ce02cdbac4a3ca0ca957b3e7c" + }, + { + "path": "meta/coder.json", + "mode": "100644", + "type": "blob", + "sha": "a0a4fa86fd2b9fe413133fbe8ab5a39a088b125f", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0a4fa86fd2b9fe413133fbe8ab5a39a088b125f" + }, + { + "path": "meta/codestats.json", + "mode": "100644", + "type": "blob", + "sha": "dc41e4294947fb8dc9b0757578660864412db98c", + "size": 334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc41e4294947fb8dc9b0757578660864412db98c" + }, + { + "path": "meta/codex.json", + "mode": "100644", + "type": "blob", + "sha": "cfbf2d488bfd9b2b937b362828fdce4d1c02d3f7", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfbf2d488bfd9b2b937b362828fdce4d1c02d3f7" + }, + { + "path": "meta/codimd.json", + "mode": "100644", + "type": "blob", + "sha": "cc3bc05b04f213fe07fccd88770af61a5fab80d3", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc3bc05b04f213fe07fccd88770af61a5fab80d3" + }, + { + "path": "meta/collabora-online.json", + "mode": "100644", + "type": "blob", + "sha": "76fda0595071cc3defac303c90e5bc5a57b55f32", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76fda0595071cc3defac303c90e5bc5a57b55f32" + }, + { + "path": "meta/comfy-ui.json", + "mode": "100644", + "type": "blob", + "sha": "4b2feb111a106a4d8bd6a5ff033daaafb08199c3", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b2feb111a106a4d8bd6a5ff033daaafb08199c3" + }, + { + "path": "meta/commafeed.json", + "mode": "100644", + "type": "blob", + "sha": "f0078cadc0ad1ee87594dd47126d94c7f830f619", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0078cadc0ad1ee87594dd47126d94c7f830f619" + }, + { + "path": "meta/commento.json", + "mode": "100644", + "type": "blob", + "sha": "3c7044d201e2b210aa9be912e79e107afdd674f5", + "size": 357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c7044d201e2b210aa9be912e79e107afdd674f5" + }, + { + "path": "meta/compreface.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/concourse.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/confix.json", + "mode": "100644", + "type": "blob", + "sha": "bddc9e682d49c792211b17647adee2a5ef51e4d2", + "size": 247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bddc9e682d49c792211b17647adee2a5ef51e4d2" + }, + { + "path": "meta/confluence.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/consul.json", + "mode": "100644", + "type": "blob", + "sha": "8790254e70248767d0f25a29c06f2f62545e81fb", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8790254e70248767d0f25a29c06f2f62545e81fb" + }, + { + "path": "meta/contabo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/control-d.json", + "mode": "100644", + "type": "blob", + "sha": "b3140ded4a2689d928d68998939c411abe8cbf22", + "size": 300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3140ded4a2689d928d68998939c411abe8cbf22" + }, + { + "path": "meta/converse.json", + "mode": "100644", + "type": "blob", + "sha": "d0d1acf63c1b7cc60891b6fa7f9374aee34e20c1", + "size": 361, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0d1acf63c1b7cc60891b6fa7f9374aee34e20c1" + }, + { + "path": "meta/convertx.json", + "mode": "100644", + "type": "blob", + "sha": "148e341a2419677fc525786e2c4cfcd739348ddd", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/148e341a2419677fc525786e2c4cfcd739348ddd" + }, + { + "path": "meta/convex.json", + "mode": "100644", + "type": "blob", + "sha": "4e433a110f3b69c491eff426c0603ba6b0fd10ca", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e433a110f3b69c491eff426c0603ba6b0fd10ca" + }, + { + "path": "meta/cooler-control.json", + "mode": "100644", + "type": "blob", + "sha": "42b3be2ef230aad428f17e79c1d1275948b7f586", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42b3be2ef230aad428f17e79c1d1275948b7f586" + }, + { + "path": "meta/coolify.json", + "mode": "100644", + "type": "blob", + "sha": "16cc056e6fac70eca2205ca8c792b980bea58d38", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16cc056e6fac70eca2205ca8c792b980bea58d38" + }, + { + "path": "meta/copyparty.json", + "mode": "100644", + "type": "blob", + "sha": "ea426428dfe21735682b36ffe473afaa024e2d5b", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea426428dfe21735682b36ffe473afaa024e2d5b" + }, + { + "path": "meta/copyq.json", + "mode": "100644", + "type": "blob", + "sha": "2eeea622f3b3ddf5cc2771085656532deacef591", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eeea622f3b3ddf5cc2771085656532deacef591" + }, + { + "path": "meta/core-control.json", + "mode": "100644", + "type": "blob", + "sha": "84982dc6abc9810ab82ee9904bcb591329dbabdc", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84982dc6abc9810ab82ee9904bcb591329dbabdc" + }, + { + "path": "meta/coredns.json", + "mode": "100644", + "type": "blob", + "sha": "ea2eaf28b24e5b66150ebd3846a24efe49754000", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea2eaf28b24e5b66150ebd3846a24efe49754000" + }, + { + "path": "meta/coreos.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/cosign.json", + "mode": "100644", + "type": "blob", + "sha": "0531d9933ef9828fce451a9d4902f9d9aa0ca098", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0531d9933ef9828fce451a9d4902f9d9aa0ca098" + }, + { + "path": "meta/cosmos-cloud.json", + "mode": "100644", + "type": "blob", + "sha": "a8cc61c253372b4dac12efe8b4025d02ce94c3a9", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8cc61c253372b4dac12efe8b4025d02ce94c3a9" + }, + { + "path": "meta/costco.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/couchdb.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/couchpotato.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/counter-analytics.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/counter-strike-2.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/counter-strike-global-offensive.json", + "mode": "100644", + "type": "blob", + "sha": "20e184d04fa4e71a2df325a2855fd4a25d511ff2", + "size": 242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20e184d04fa4e71a2df325a2855fd4a25d511ff2" + }, + { + "path": "meta/coursera.json", + "mode": "100644", + "type": "blob", + "sha": "eacec1afdc13be9d39cec99b818542c13ce4f7e3", + "size": 221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eacec1afdc13be9d39cec99b818542c13ce4f7e3" + }, + { + "path": "meta/cozy.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/cpanel.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/cpp.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/crafty-controller.json", + "mode": "100644", + "type": "blob", + "sha": "dc7a46310e65036ff116a4ccc0b42146d060dafb", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc7a46310e65036ff116a4ccc0b42146d060dafb" + }, + { + "path": "meta/crater-invoice.json", + "mode": "100644", + "type": "blob", + "sha": "e8938e5185478e5d5486f5164a45a11071b2ce1d", + "size": 248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8938e5185478e5d5486f5164a45a11071b2ce1d" + }, + { + "path": "meta/crazydomains.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/cribl.json", + "mode": "100644", + "type": "blob", + "sha": "35e76107ce97af66b2975a627df3d1f94a1567a0", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35e76107ce97af66b2975a627df3d1f94a1567a0" + }, + { + "path": "meta/cron-master.json", + "mode": "100644", + "type": "blob", + "sha": "ee803cdac9f86ba5faac0baf013265eeb7e06748", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee803cdac9f86ba5faac0baf013265eeb7e06748" + }, + { + "path": "meta/cronicle.json", + "mode": "100644", + "type": "blob", + "sha": "f088d8f4d9ccc525a82794d889031448c9e5276b", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f088d8f4d9ccc525a82794d889031448c9e5276b" + }, + { + "path": "meta/cross-seed-square.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/cross-seed.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/crowdin.json", + "mode": "100644", + "type": "blob", + "sha": "90467a0f9ed9b42de05fd8efa5afe4d1e812aa53", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90467a0f9ed9b42de05fd8efa5afe4d1e812aa53" + }, + { + "path": "meta/crowdsec.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/crunchyroll.json", + "mode": "100644", + "type": "blob", + "sha": "9da57a3f989ed40f36acbdc95f9172ce93aee473", + "size": 196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9da57a3f989ed40f36acbdc95f9172ce93aee473" + }, + { + "path": "meta/cryptomator.json", + "mode": "100644", + "type": "blob", + "sha": "582e45dcaaf1bfef2dbe857845be09fa47915d05", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/582e45dcaaf1bfef2dbe857845be09fa47915d05" + }, + { + "path": "meta/cryptpad.json", + "mode": "100644", + "type": "blob", + "sha": "7b2467015ed7b2e48513f5dad31a0fc06a561ff2", + "size": 299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b2467015ed7b2e48513f5dad31a0fc06a561ff2" + }, + { + "path": "meta/csharp.json", + "mode": "100644", + "type": "blob", + "sha": "0e45fce81383c0ecb9f098b195fc5c5accbe1d2a", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e45fce81383c0ecb9f098b195fc5c5accbe1d2a" + }, + { + "path": "meta/css.json", + "mode": "100644", + "type": "blob", + "sha": "548f27d0cc7ae602b1308ac449c81d91fca89df4", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/548f27d0cc7ae602b1308ac449c81d91fca89df4" + }, + { + "path": "meta/ctfreak.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/cup.json", + "mode": "100644", + "type": "blob", + "sha": "f3658df0bfa3d9e887f7f3f450eb4b72f2fb2a8c", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3658df0bfa3d9e887f7f3f450eb4b72f2fb2a8c" + }, + { + "path": "meta/cups.json", + "mode": "100644", + "type": "blob", + "sha": "93118f5683fd30be4d8012644960859f71e3c678", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93118f5683fd30be4d8012644960859f71e3c678" + }, + { + "path": "meta/cura.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/cyber-power-full.json", + "mode": "100644", + "type": "blob", + "sha": "04f173528f50413ef5d808ec4f28e0e27ce5cd01", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04f173528f50413ef5d808ec4f28e0e27ce5cd01" + }, + { + "path": "meta/cyberchef.json", + "mode": "100644", + "type": "blob", + "sha": "ded5d13cd64a01d88835673421b19c5634bdf13f", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ded5d13cd64a01d88835673421b19c5634bdf13f" + }, + { + "path": "meta/czkawka.json", + "mode": "100644", + "type": "blob", + "sha": "db00b34b7439eccfff156c33b9fb26d7348ebd69", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db00b34b7439eccfff156c33b9fb26d7348ebd69" + }, + { + "path": "meta/d-link.json", + "mode": "100644", + "type": "blob", + "sha": "85d0c1688bc87b82b106d91fe5068146c9da09c6", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85d0c1688bc87b82b106d91fe5068146c9da09c6" + }, + { + "path": "meta/dagster.json", + "mode": "100644", + "type": "blob", + "sha": "c937f6ec6ab2df7a6fd57f230d91a4dadf5557d7", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c937f6ec6ab2df7a6fd57f230d91a4dadf5557d7" + }, + { + "path": "meta/dahua.json", + "mode": "100644", + "type": "blob", + "sha": "f0b69eefa79f1d109b00d5f198fd65fc4723a514", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0b69eefa79f1d109b00d5f198fd65fc4723a514" + }, + { + "path": "meta/dalibo.json", + "mode": "100644", + "type": "blob", + "sha": "4ddf8d1260a5e38fba9c39d35000a85f909cd193", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ddf8d1260a5e38fba9c39d35000a85f909cd193" + }, + { + "path": "meta/daps.json", + "mode": "100644", + "type": "blob", + "sha": "4bd72b512ff55e2000f2da4abe4d6bfd8296b821", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bd72b512ff55e2000f2da4abe4d6bfd8296b821" + }, + { + "path": "meta/dart.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/dashboard-icons.json", + "mode": "100644", + "type": "blob", + "sha": "d581edaa3e8fdef7aea14172a6f32159f68013ce", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d581edaa3e8fdef7aea14172a6f32159f68013ce" + }, + { + "path": "meta/dashdot.json", + "mode": "100644", + "type": "blob", + "sha": "8e6f93ca9ce5d66e8ccb781393a697828c61395f", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e6f93ca9ce5d66e8ccb781393a697828c61395f" + }, + { + "path": "meta/dashwise.json", + "mode": "100644", + "type": "blob", + "sha": "a8aee865c633a9c0c75b46761864096a05954263", + "size": 301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8aee865c633a9c0c75b46761864096a05954263" + }, + { + "path": "meta/dashy.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/datadog.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/davical.json", + "mode": "100644", + "type": "blob", + "sha": "d0063bcb47056aa996040199e44d049dd08aa270", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0063bcb47056aa996040199e44d049dd08aa270" + }, + { + "path": "meta/davis.json", + "mode": "100644", + "type": "blob", + "sha": "771880727e4d3a98cfb887cbc437b666db3ef235", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/771880727e4d3a98cfb887cbc437b666db3ef235" + }, + { + "path": "meta/dawarich.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/dc-os.json", + "mode": "100644", + "type": "blob", + "sha": "84ca1ac772a5804fe652e3aaebd95ea8b67e95e1", + "size": 302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84ca1ac772a5804fe652e3aaebd95ea8b67e95e1" + }, + { + "path": "meta/dd-wrt.json", + "mode": "100644", + "type": "blob", + "sha": "39c0098d694f6dd73f8dec837791630153bb824c", + "size": 358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39c0098d694f6dd73f8dec837791630153bb824c" + }, + { + "path": "meta/ddclient.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/ddns-updater.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/debian-linux.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/deemix.json", + "mode": "100644", + "type": "blob", + "sha": "91c9dd5cf7569c63d44df171fb07d749a8a87430", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91c9dd5cf7569c63d44df171fb07d749a8a87430" + }, + { + "path": "meta/deepl.json", + "mode": "100644", + "type": "blob", + "sha": "26d8a03c93499c142921b090a2c294080fbef31f", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26d8a03c93499c142921b090a2c294080fbef31f" + }, + { + "path": "meta/deepseek.json", + "mode": "100644", + "type": "blob", + "sha": "eb9f19958a351a0bcdc082ac77fd7d2ba169db81", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb9f19958a351a0bcdc082ac77fd7d2ba169db81" + }, + { + "path": "meta/deezer.json", + "mode": "100644", + "type": "blob", + "sha": "f260f776366c929cd578759982d7ab1fbadd7632", + "size": 236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f260f776366c929cd578759982d7ab1fbadd7632" + }, + { + "path": "meta/defguard.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/dell.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/deluge.json", + "mode": "100644", + "type": "blob", + "sha": "922ffcc121e97249ca06a2729081f95b279bac9d", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/922ffcc121e97249ca06a2729081f95b279bac9d" + }, + { + "path": "meta/deno.json", + "mode": "100644", + "type": "blob", + "sha": "a14debf891e08075394d8ea96c85583b10558b6a", + "size": 364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a14debf891e08075394d8ea96c85583b10558b6a" + }, + { + "path": "meta/denodo.json", + "mode": "100644", + "type": "blob", + "sha": "c1dc14614406fbd3fd4cd49244e1ccd7c9d1753e", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1dc14614406fbd3fd4cd49244e1ccd7c9d1753e" + }, + { + "path": "meta/denon.json", + "mode": "100644", + "type": "blob", + "sha": "75e73b28819b086dc7fa366f1da438d3b092653e", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75e73b28819b086dc7fa366f1da438d3b092653e" + }, + { + "path": "meta/deployarr.json", + "mode": "100644", + "type": "blob", + "sha": "e8f7bbeee66437976a604e2164d60c0c07c1e020", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8f7bbeee66437976a604e2164d60c0c07c1e020" + }, + { + "path": "meta/develancacheui.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/devtooly.json", + "mode": "100644", + "type": "blob", + "sha": "6034783472fc465cea6a80640e2c9599cf974f36", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6034783472fc465cea6a80640e2c9599cf974f36" + }, + { + "path": "meta/dia.json", + "mode": "100644", + "type": "blob", + "sha": "fc6f3fad0e113f59bc41b02321c50ccc7bd1189e", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc6f3fad0e113f59bc41b02321c50ccc7bd1189e" + }, + { + "path": "meta/diagrams-net.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/diamond-aircraft.json", + "mode": "100644", + "type": "blob", + "sha": "4bd37b0a6d46f1295c7534e01ecfdfecdb0c1019", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bd37b0a6d46f1295c7534e01ecfdfecdb0c1019" + }, + { + "path": "meta/dietpi.json", + "mode": "100644", + "type": "blob", + "sha": "d309790dc815961921f4fbbc0524273d35b330e9", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d309790dc815961921f4fbbc0524273d35b330e9" + }, + { + "path": "meta/digi-kam.json", + "mode": "100644", + "type": "blob", + "sha": "6c1e4b7f80bad33a042bf57b55f35571420e2d83", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c1e4b7f80bad33a042bf57b55f35571420e2d83" + }, + { + "path": "meta/digikey.json", + "mode": "100644", + "type": "blob", + "sha": "f095c6aab8d0125c453d55362eac4b827f3d0da8", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f095c6aab8d0125c453d55362eac4b827f3d0da8" + }, + { + "path": "meta/digital-ocean.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/dilg.json", + "mode": "100644", + "type": "blob", + "sha": "8b98a8a030d6167c9ed654ddb684bed02610f0c5", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b98a8a030d6167c9ed654ddb684bed02610f0c5" + }, + { + "path": "meta/dillinger.json", + "mode": "100644", + "type": "blob", + "sha": "e54605da201593930759c9b5a88592bc2f0c7900", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e54605da201593930759c9b5a88592bc2f0c7900" + }, + { + "path": "meta/dim.json", + "mode": "100644", + "type": "blob", + "sha": "4b1ce94af5a159b4c3b5aacc54ecc22c1ac538b3", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b1ce94af5a159b4c3b5aacc54ecc22c1ac538b3" + }, + { + "path": "meta/diners-club.json", + "mode": "100644", + "type": "blob", + "sha": "307a572e5532f5699aa0a87e3ef931bc72dabbe6", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/307a572e5532f5699aa0a87e3ef931bc72dabbe6" + }, + { + "path": "meta/directadmin.json", + "mode": "100644", + "type": "blob", + "sha": "330261b42e81db8a6ea2fe7377b159316f576ae0", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/330261b42e81db8a6ea2fe7377b159316f576ae0" + }, + { + "path": "meta/directus.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/discord.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/discourse.json", + "mode": "100644", + "type": "blob", + "sha": "1f274aecb9ac841c7a513e53359614503686bcfa", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f274aecb9ac841c7a513e53359614503686bcfa" + }, + { + "path": "meta/diskover.json", + "mode": "100644", + "type": "blob", + "sha": "7c16a3f4c4efb4663bf0802f59fef4f0a65c111b", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c16a3f4c4efb4663bf0802f59fef4f0a65c111b" + }, + { + "path": "meta/disney-plus.json", + "mode": "100644", + "type": "blob", + "sha": "18cd8b27dd03fbb029053740473d728d436498b2", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18cd8b27dd03fbb029053740473d728d436498b2" + }, + { + "path": "meta/dispatcharr.json", + "mode": "100644", + "type": "blob", + "sha": "792fa166e46de6839af0c46899a396f63f685f96", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/792fa166e46de6839af0c46899a396f63f685f96" + }, + { + "path": "meta/distribution.json", + "mode": "100644", + "type": "blob", + "sha": "8469a7eb672bf8376625d9fecbd698f27335b669", + "size": 231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8469a7eb672bf8376625d9fecbd698f27335b669" + }, + { + "path": "meta/diun.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/dixa.json", + "mode": "100644", + "type": "blob", + "sha": "86eaf2dd772af461d26faed323ae6cde63e04fdd", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86eaf2dd772af461d26faed323ae6cde63e04fdd" + }, + { + "path": "meta/diyhue.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/dlna.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/docassemble.json", + "mode": "100644", + "type": "blob", + "sha": "25bb5a73fb76ca7d4ee270f92b4107135e0042e4", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25bb5a73fb76ca7d4ee270f92b4107135e0042e4" + }, + { + "path": "meta/docker-amd.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/docker-amvd.json", + "mode": "100644", + "type": "blob", + "sha": "880fca091bc98827131335f9290c4d0e0c5b2c2c", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/880fca091bc98827131335f9290c4d0e0c5b2c2c" + }, + { + "path": "meta/docker-compose.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/docker-engine.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/docker-gc.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/docker-mailserver.json", + "mode": "100644", + "type": "blob", + "sha": "9e55ba637413e3704d1c4a7ae7a7e9bc50811db7", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e55ba637413e3704d1c4a7ae7a7e9bc50811db7" + }, + { + "path": "meta/docker-moby.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/docker-volume-backup.json", + "mode": "100644", + "type": "blob", + "sha": "12d0f34e214e09029d136acf396d372083c14f7b", + "size": 274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12d0f34e214e09029d136acf396d372083c14f7b" + }, + { + "path": "meta/docker.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/dockge.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/docking-station.json", + "mode": "100644", + "type": "blob", + "sha": "c23e38cf4a9143f64041bdde08ab42107f84dd25", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c23e38cf4a9143f64041bdde08ab42107f84dd25" + }, + { + "path": "meta/dockpeek.json", + "mode": "100644", + "type": "blob", + "sha": "41754fe3362d8223dbbde4bc65abdeead9e8cd3d", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41754fe3362d8223dbbde4bc65abdeead9e8cd3d" + }, + { + "path": "meta/dockstarter.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/dockwatch.json", + "mode": "100644", + "type": "blob", + "sha": "d92f28689d67ccfdfcd9f12387dda8e06263cc48", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d92f28689d67ccfdfcd9f12387dda8e06263cc48" + }, + { + "path": "meta/docmost.json", + "mode": "100644", + "type": "blob", + "sha": "5bcfc034bde6a1a733973a9b154395ab674de592", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bcfc034bde6a1a733973a9b154395ab674de592" + }, + { + "path": "meta/docsify.json", + "mode": "100644", + "type": "blob", + "sha": "92badcb51a88d938edb71d4afa491e1e3bf66acf", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92badcb51a88d938edb71d4afa491e1e3bf66acf" + }, + { + "path": "meta/docspell.json", + "mode": "100644", + "type": "blob", + "sha": "e35e2bb0eea0b1ae5a1c448888750d8bd069c2e8", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e35e2bb0eea0b1ae5a1c448888750d8bd069c2e8" + }, + { + "path": "meta/documenso.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/docusaurus.json", + "mode": "100644", + "type": "blob", + "sha": "1c82b3e9d4bd214ac87e4c7bcca27138906ff3d1", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c82b3e9d4bd214ac87e4c7bcca27138906ff3d1" + }, + { + "path": "meta/docuseal.json", + "mode": "100644", + "type": "blob", + "sha": "e6af312c732939820fe5240f3fe0032e238462de", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6af312c732939820fe5240f3fe0032e238462de" + }, + { + "path": "meta/dogpile.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/dokemon.json", + "mode": "100644", + "type": "blob", + "sha": "8a3fb1e2515efbf9e0ef8760ab2d3f030bf4c6cd", + "size": 299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a3fb1e2515efbf9e0ef8760ab2d3f030bf4c6cd" + }, + { + "path": "meta/dokploy.json", + "mode": "100644", + "type": "blob", + "sha": "78dd31aa7dc214761b8b21aae050605e1bf3aef8", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78dd31aa7dc214761b8b21aae050605e1bf3aef8" + }, + { + "path": "meta/dokuwiki.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/dolibarr.json", + "mode": "100644", + "type": "blob", + "sha": "03c940d0db77c88495b0837adc2bd5262394a269", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03c940d0db77c88495b0837adc2bd5262394a269" + }, + { + "path": "meta/dolphin.json", + "mode": "100644", + "type": "blob", + "sha": "fe388e83b3f92f823ea183a9ddefe156e4543d24", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe388e83b3f92f823ea183a9ddefe156e4543d24" + }, + { + "path": "meta/domainmod.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/domoticz.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/donetick.json", + "mode": "100644", + "type": "blob", + "sha": "4bd1a02e7dd15ce3690032211a621e955608b910", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bd1a02e7dd15ce3690032211a621e955608b910" + }, + { + "path": "meta/doplarr.json", + "mode": "100644", + "type": "blob", + "sha": "fbb4504985f7585631f237a0ec5f3eb9148884c6", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbb4504985f7585631f237a0ec5f3eb9148884c6" + }, + { + "path": "meta/doppler.json", + "mode": "100644", + "type": "blob", + "sha": "f228b8e1cfcb00cffdb05c9b3eb4fe3f86eeb0fd", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f228b8e1cfcb00cffdb05c9b3eb4fe3f86eeb0fd" + }, + { + "path": "meta/dopplertask.json", + "mode": "100644", + "type": "blob", + "sha": "e6ca9de1b3ad95ec2772c56936d949b1cc9aaf3b", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6ca9de1b3ad95ec2772c56936d949b1cc9aaf3b" + }, + { + "path": "meta/double-commander.json", + "mode": "100644", + "type": "blob", + "sha": "13c0f22bad5bba507fcba3c374df1989e2544fc0", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13c0f22bad5bba507fcba3c374df1989e2544fc0" + }, + { + "path": "meta/double-take.json", + "mode": "100644", + "type": "blob", + "sha": "e7c9b1be67940a6c3411595d50d0ceddad8dc2e5", + "size": 360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7c9b1be67940a6c3411595d50d0ceddad8dc2e5" + }, + { + "path": "meta/dovecot.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/dozzle.json", + "mode": "100644", + "type": "blob", + "sha": "6831ea7a73b126c1b3119e1f0567e97c6c28fb66", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6831ea7a73b126c1b3119e1f0567e97c6c28fb66" + }, + { + "path": "meta/dragon-ruby.json", + "mode": "100644", + "type": "blob", + "sha": "736d8869b07f8bfc1c6845f258d98076bf3456d8", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/736d8869b07f8bfc1c6845f258d98076bf3456d8" + }, + { + "path": "meta/draw-io.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/draytek.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/dream-host.json", + "mode": "100644", + "type": "blob", + "sha": "8e28752d78c9829b1cc65b2615eb91f7d048b4fb", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e28752d78c9829b1cc65b2615eb91f7d048b4fb" + }, + { + "path": "meta/drone.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/drop.json", + "mode": "100644", + "type": "blob", + "sha": "2e57f4cb6281d6a0a5747a4a70dfe909154dc51c", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e57f4cb6281d6a0a5747a4a70dfe909154dc51c" + }, + { + "path": "meta/dropbox.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/dropout.json", + "mode": "100644", + "type": "blob", + "sha": "3fccc2a0e1a478518cc9d03429f784f9f5ff8988", + "size": 333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fccc2a0e1a478518cc9d03429f784f9f5ff8988" + }, + { + "path": "meta/droppy.json", + "mode": "100644", + "type": "blob", + "sha": "4e790cdfea23af066c1293581f883984595b9e42", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e790cdfea23af066c1293581f883984595b9e42" + }, + { + "path": "meta/dub.json", + "mode": "100644", + "type": "blob", + "sha": "18f334a23050104b1f0cc4aa43211a18c0e89661", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18f334a23050104b1f0cc4aa43211a18c0e89661" + }, + { + "path": "meta/duckdns.json", + "mode": "100644", + "type": "blob", + "sha": "d75c33a50a2b0b106aa2bf64efb6b0369bb6e8cb", + "size": 355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d75c33a50a2b0b106aa2bf64efb6b0369bb6e8cb" + }, + { + "path": "meta/duckduckgo.json", + "mode": "100644", + "type": "blob", + "sha": "f7c6f067a1b5aaa3ae09f904083d183df52d23ad", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7c6f067a1b5aaa3ae09f904083d183df52d23ad" + }, + { + "path": "meta/dumbassets.json", + "mode": "100644", + "type": "blob", + "sha": "4bf309dfcc3bcbd2bab258028bb5ce4e67fc861b", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bf309dfcc3bcbd2bab258028bb5ce4e67fc861b" + }, + { + "path": "meta/dumbpad.json", + "mode": "100644", + "type": "blob", + "sha": "dc3036c964478773e1644a9307903027dc552948", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc3036c964478773e1644a9307903027dc552948" + }, + { + "path": "meta/duo.json", + "mode": "100644", + "type": "blob", + "sha": "34ef64b749a8ac8bdef29f4d04c0a075a8a5d367", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34ef64b749a8ac8bdef29f4d04c0a075a8a5d367" + }, + { + "path": "meta/duplicacy.json", + "mode": "100644", + "type": "blob", + "sha": "6fe5faed421e6a60f7d60d384a6d8626c73ddb94", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fe5faed421e6a60f7d60d384a6d8626c73ddb94" + }, + { + "path": "meta/duplicati.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/dynmap.json", + "mode": "100644", + "type": "blob", + "sha": "5ece35f867ebe9743da762d93ec114c9f99decc1", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ece35f867ebe9743da762d93ec114c9f99decc1" + }, + { + "path": "meta/easy-gate.json", + "mode": "100644", + "type": "blob", + "sha": "6e853773dc7b004b396205afb7a935fca09fbc47", + "size": 362, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e853773dc7b004b396205afb7a935fca09fbc47" + }, + { + "path": "meta/ebay.json", + "mode": "100644", + "type": "blob", + "sha": "7b8f1f59a9f62228cb3710b3aa24d2e86cadf95f", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b8f1f59a9f62228cb3710b3aa24d2e86cadf95f" + }, + { + "path": "meta/eblocker.json", + "mode": "100644", + "type": "blob", + "sha": "3bb3b710daae231814cec659f201dfbf34bfddc8", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bb3b710daae231814cec659f201dfbf34bfddc8" + }, + { + "path": "meta/edge-dev.json", + "mode": "100644", + "type": "blob", + "sha": "c7d866f558ae2d15ab6f8149032cc08d6b039f77", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7d866f558ae2d15ab6f8149032cc08d6b039f77" + }, + { + "path": "meta/edge.json", + "mode": "100644", + "type": "blob", + "sha": "7858b31a998469ec99b3efa61483142af39353ad", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7858b31a998469ec99b3efa61483142af39353ad" + }, + { + "path": "meta/edgeos.json", + "mode": "100644", + "type": "blob", + "sha": "a9232fc02876273e087bc3126932ec9eb499882b", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9232fc02876273e087bc3126932ec9eb499882b" + }, + { + "path": "meta/eitaa.json", + "mode": "100644", + "type": "blob", + "sha": "1bce9a2928cb9e81dffdc327616b2f79d7523ef5", + "size": 219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bce9a2928cb9e81dffdc327616b2f79d7523ef5" + }, + { + "path": "meta/elastic-beats.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/elastic-kibana.json", + "mode": "100644", + "type": "blob", + "sha": "1c7d261ac61f8b7e52247ea3f6cad9010ae4542e", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c7d261ac61f8b7e52247ea3f6cad9010ae4542e" + }, + { + "path": "meta/elastic-logstash.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/elastic.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/elasticsearch.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/electron.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/electronic-arts.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/electrum.json", + "mode": "100644", + "type": "blob", + "sha": "307ec9fdda755137a0bc455e58dba2bb3d7233da", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/307ec9fdda755137a0bc455e58dba2bb3d7233da" + }, + { + "path": "meta/element.json", + "mode": "100644", + "type": "blob", + "sha": "7c5e813438b8f16f81b2ca89d6310a68d814c1af", + "size": 201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c5e813438b8f16f81b2ca89d6310a68d814c1af" + }, + { + "path": "meta/eleventy.json", + "mode": "100644", + "type": "blob", + "sha": "87f326c036ca408a63c0f6d8c1930995d9c7b730", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87f326c036ca408a63c0f6d8c1930995d9c7b730" + }, + { + "path": "meta/elgato-wave-link.json", + "mode": "100644", + "type": "blob", + "sha": "7e846c793addb790ac3c2e70f27a9ceadf0801d5", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e846c793addb790ac3c2e70f27a9ceadf0801d5" + }, + { + "path": "meta/eliza-os.json", + "mode": "100644", + "type": "blob", + "sha": "1be67cb8c3b153ad20982acc4cbe593a1cef71f3", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1be67cb8c3b153ad20982acc4cbe593a1cef71f3" + }, + { + "path": "meta/elysian.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/emacs.json", + "mode": "100644", + "type": "blob", + "sha": "f884ea7de70aa97d5d7d0fc98672e187f0c858d0", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f884ea7de70aa97d5d7d0fc98672e187f0c858d0" + }, + { + "path": "meta/embraer.json", + "mode": "100644", + "type": "blob", + "sha": "99d2f653688cdb1fbc8de887e9a0e29b56dc83f0", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99d2f653688cdb1fbc8de887e9a0e29b56dc83f0" + }, + { + "path": "meta/emby.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/embystat.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/emq.json", + "mode": "100644", + "type": "blob", + "sha": "af25ed8a088f32fa94ded9907df9789d07222320", + "size": 337, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af25ed8a088f32fa94ded9907df9789d07222320" + }, + { + "path": "meta/emqx.json", + "mode": "100644", + "type": "blob", + "sha": "df4924f64e2326350a61458e58448314d7377186", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df4924f64e2326350a61458e58448314d7377186" + }, + { + "path": "meta/emsesp.json", + "mode": "100644", + "type": "blob", + "sha": "c5f5affaef4bda6c470dbce08ea267d5c4dc0db1", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5f5affaef4bda6c470dbce08ea267d5c4dc0db1" + }, + { + "path": "meta/emulatorjs.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/enbizcard.json", + "mode": "100644", + "type": "blob", + "sha": "416e5ffbc7a32b368a46306a2e60f4fefbdedb47", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/416e5ffbc7a32b368a46306a2e60f4fefbdedb47" + }, + { + "path": "meta/enclosed.json", + "mode": "100644", + "type": "blob", + "sha": "ac139571ceea0e32326787d30cb5fd5df0cde08c", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac139571ceea0e32326787d30cb5fd5df0cde08c" + }, + { + "path": "meta/endeavouros-linux.json", + "mode": "100644", + "type": "blob", + "sha": "44c64fa12ef64ec0e099a88e14f3a4ed087601ba", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44c64fa12ef64ec0e099a88e14f3a4ed087601ba" + }, + { + "path": "meta/endless.json", + "mode": "100644", + "type": "blob", + "sha": "d0e990acae33dba58d8f7ecf5d7d838e57e5a47c", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0e990acae33dba58d8f7ecf5d7d838e57e5a47c" + }, + { + "path": "meta/endurain.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/enhance.json", + "mode": "100644", + "type": "blob", + "sha": "5f0d1be8d7ee63d8aea118c0fbc652389bd0e838", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f0d1be8d7ee63d8aea118c0fbc652389bd0e838" + }, + { + "path": "meta/enshrouded.json", + "mode": "100644", + "type": "blob", + "sha": "c49a063e03c9d46b3a4c158d3d0d89d9216d891b", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c49a063e03c9d46b3a4c158d3d0d89d9216d891b" + }, + { + "path": "meta/ente-photos.json", + "mode": "100644", + "type": "blob", + "sha": "94e6c2f7fb6a1bbf30006395041ef69e50c53efc", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94e6c2f7fb6a1bbf30006395041ef69e50c53efc" + }, + { + "path": "meta/entergy.json", + "mode": "100644", + "type": "blob", + "sha": "f6216cdd23806bd3f5ecb24aae0551c316638781", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6216cdd23806bd3f5ecb24aae0551c316638781" + }, + { + "path": "meta/epic-games.json", + "mode": "100644", + "type": "blob", + "sha": "c3adcd5d4ed99a8999e94fa4e597775352577f0d", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3adcd5d4ed99a8999e94fa4e597775352577f0d" + }, + { + "path": "meta/epson-iprint.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ersatztv.json", + "mode": "100644", + "type": "blob", + "sha": "d1f1dde619b59fefb2159ee5a1c3a08e9e36c9e6", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1f1dde619b59fefb2159ee5a1c3a08e9e36c9e6" + }, + { + "path": "meta/erste-george.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/erste.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/esphome-alt.json", + "mode": "100644", + "type": "blob", + "sha": "73e02bd5c7ec7b46e2d3ea33736b048b7136f05c", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73e02bd5c7ec7b46e2d3ea33736b048b7136f05c" + }, + { + "path": "meta/esphome.json", + "mode": "100644", + "type": "blob", + "sha": "e5ec41be1cac61ef6c5370c4a15539c1d8697959", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5ec41be1cac61ef6c5370c4a15539c1d8697959" + }, + { + "path": "meta/espocrm.json", + "mode": "100644", + "type": "blob", + "sha": "70b417cbd92b843534224d7091c8c36fb8c75430", + "size": 223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70b417cbd92b843534224d7091c8c36fb8c75430" + }, + { + "path": "meta/espressif.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/etcd.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/etesync.json", + "mode": "100644", + "type": "blob", + "sha": "50e4b71eca5aa8edcb2fdf497217ff1db447e46e", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50e4b71eca5aa8edcb2fdf497217ff1db447e46e" + }, + { + "path": "meta/ethereum.json", + "mode": "100644", + "type": "blob", + "sha": "781c3324be36394314b81a8a6814a96bedae8a2f", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/781c3324be36394314b81a8a6814a96bedae8a2f" + }, + { + "path": "meta/etherpad.json", + "mode": "100644", + "type": "blob", + "sha": "250e49b727df8a2eb61d295730767524136c52cd", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/250e49b727df8a2eb61d295730767524136c52cd" + }, + { + "path": "meta/evcc.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/evebox.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/evernote.json", + "mode": "100644", + "type": "blob", + "sha": "6338f19eb8aa019a8b2c5d5c86763e1a700c7e0f", + "size": 221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6338f19eb8aa019a8b2c5d5c86763e1a700c7e0f" + }, + { + "path": "meta/eweka.json", + "mode": "100644", + "type": "blob", + "sha": "b7cb61dc2f0326fa9c3026206ed6e19b671975ca", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7cb61dc2f0326fa9c3026206ed6e19b671975ca" + }, + { + "path": "meta/excalidraw.json", + "mode": "100644", + "type": "blob", + "sha": "329af5b9bfd24c482e943788c54477202b86050d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/329af5b9bfd24c482e943788c54477202b86050d" + }, + { + "path": "meta/exercism.json", + "mode": "100644", + "type": "blob", + "sha": "9a344229beb445d53f5b427a8834018c8b813242", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a344229beb445d53f5b427a8834018c8b813242" + }, + { + "path": "meta/expense-owl.json", + "mode": "100644", + "type": "blob", + "sha": "6b80b8a84a30e32ba79ecffcbef6161c68d0ece6", + "size": 227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b80b8a84a30e32ba79ecffcbef6161c68d0ece6" + }, + { + "path": "meta/ezbookkeeping.json", + "mode": "100644", + "type": "blob", + "sha": "4427fe633e129d2256db0495c7cd38b25cb0a4fe", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4427fe633e129d2256db0495c7cd38b25cb0a4fe" + }, + { + "path": "meta/f-droid.json", + "mode": "100644", + "type": "blob", + "sha": "75b79e65a0431544324247d99121dafe42262640", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75b79e65a0431544324247d99121dafe42262640" + }, + { + "path": "meta/f1-dash.json", + "mode": "100644", + "type": "blob", + "sha": "780ff15c2a44df8f7dde9ed2d81129cb75479384", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/780ff15c2a44df8f7dde9ed2d81129cb75479384" + }, + { + "path": "meta/f5-networks.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/facebook-messenger.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/facebook.json", + "mode": "100644", + "type": "blob", + "sha": "35b5d690b29393de2148fd29797bf133eff4bbba", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35b5d690b29393de2148fd29797bf133eff4bbba" + }, + { + "path": "meta/falcon-christmas.json", + "mode": "100644", + "type": "blob", + "sha": "11b547baa9c7519e31df6ca3a4530b01b529d2b6", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11b547baa9c7519e31df6ca3a4530b01b529d2b6" + }, + { + "path": "meta/falcon-player.json", + "mode": "100644", + "type": "blob", + "sha": "ca493c6ee2a8b431c2a22a5fe420907c16d288b0", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca493c6ee2a8b431c2a22a5fe420907c16d288b0" + }, + { + "path": "meta/fast-com.json", + "mode": "100644", + "type": "blob", + "sha": "cca987eb9efaa25a507da0826d70f501bbdd5473", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cca987eb9efaa25a507da0826d70f501bbdd5473" + }, + { + "path": "meta/fasten-health.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/fastmail.json", + "mode": "100644", + "type": "blob", + "sha": "6bbe3c7667942469cd18b2c20cf6a03146baaa06", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bbe3c7667942469cd18b2c20cf6a03146baaa06" + }, + { + "path": "meta/fedora-alt.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/fedora.json", + "mode": "100644", + "type": "blob", + "sha": "7aa6a54cbe4bb337f555ba41276611f62962819a", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aa6a54cbe4bb337f555ba41276611f62962819a" + }, + { + "path": "meta/feedbase.json", + "mode": "100644", + "type": "blob", + "sha": "c648864699dfffd6d5db59d8e84da7bedb8cd5f1", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c648864699dfffd6d5db59d8e84da7bedb8cd5f1" + }, + { + "path": "meta/feedbin.json", + "mode": "100644", + "type": "blob", + "sha": "9ffe2728290ab445c4f88b21ae999b81ee584ef4", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ffe2728290ab445c4f88b21ae999b81ee584ef4" + }, + { + "path": "meta/feedly.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/feedlynx.json", + "mode": "100644", + "type": "blob", + "sha": "fa78e9ffb6cebed6a39a79033449e733c99ea638", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa78e9ffb6cebed6a39a79033449e733c99ea638" + }, + { + "path": "meta/feishin.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/fenrus.json", + "mode": "100644", + "type": "blob", + "sha": "761f8405866e9cb644bc499b61a5e693d758475a", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/761f8405866e9cb644bc499b61a5e693d758475a" + }, + { + "path": "meta/ferdi.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ferdium.json", + "mode": "100644", + "type": "blob", + "sha": "749310512b4a3fb18ad799fef369311eb871ae3a", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/749310512b4a3fb18ad799fef369311eb871ae3a" + }, + { + "path": "meta/fermentrack.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ferretdb.json", + "mode": "100644", + "type": "blob", + "sha": "1d2b087ce2d10cf738a979dd9ec4a9379beec886", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d2b087ce2d10cf738a979dd9ec4a9379beec886" + }, + { + "path": "meta/fibaro.json", + "mode": "100644", + "type": "blob", + "sha": "d41966fa5cf983c47ace763af32f0a59d048d710", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d41966fa5cf983c47ace763af32f0a59d048d710" + }, + { + "path": "meta/fidelity.json", + "mode": "100644", + "type": "blob", + "sha": "3a446b90c2e1a2068f1650e310302811c48f9971", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a446b90c2e1a2068f1650e310302811c48f9971" + }, + { + "path": "meta/fider.json", + "mode": "100644", + "type": "blob", + "sha": "33590a84e67d44dfd0b8cc0529a5dadf93b30f88", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33590a84e67d44dfd0b8cc0529a5dadf93b30f88" + }, + { + "path": "meta/figma.json", + "mode": "100644", + "type": "blob", + "sha": "8b6985e994a0e22f3981fd565ca9f7c3d866cf97", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b6985e994a0e22f3981fd565ca9f7c3d866cf97" + }, + { + "path": "meta/filebot.json", + "mode": "100644", + "type": "blob", + "sha": "0195e24c31ddb9899429cdd5314bde1d961e579f", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0195e24c31ddb9899429cdd5314bde1d961e579f" + }, + { + "path": "meta/filebrowser-quantum.json", + "mode": "100644", + "type": "blob", + "sha": "bfcf8f8d36abfba322554c36dd563f2b45047e6a", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfcf8f8d36abfba322554c36dd563f2b45047e6a" + }, + { + "path": "meta/filebrowser.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/filecloud.json", + "mode": "100644", + "type": "blob", + "sha": "566c95307ac3834722f7a7dae336527050f6dae4", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/566c95307ac3834722f7a7dae336527050f6dae4" + }, + { + "path": "meta/fileflows.json", + "mode": "100644", + "type": "blob", + "sha": "98bbae1672d93e19fdc858abfbc0fc1ce9aa3c6c", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98bbae1672d93e19fdc858abfbc0fc1ce9aa3c6c" + }, + { + "path": "meta/filegator.json", + "mode": "100644", + "type": "blob", + "sha": "4948ed24e14a94bfd25b374375e45d065759822f", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4948ed24e14a94bfd25b374375e45d065759822f" + }, + { + "path": "meta/filepizza.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/filerun.json", + "mode": "100644", + "type": "blob", + "sha": "c12f9e166e0f584f026327b3f6337718d2135e8e", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c12f9e166e0f584f026327b3f6337718d2135e8e" + }, + { + "path": "meta/files-community.json", + "mode": "100644", + "type": "blob", + "sha": "46bfdbbe6b11e7e94aa05742f6a12caed09b68c1", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46bfdbbe6b11e7e94aa05742f6a12caed09b68c1" + }, + { + "path": "meta/files.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/filestash.json", + "mode": "100644", + "type": "blob", + "sha": "b83564cf27caa68ca9ceb963f2055b4dfaf03934", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b83564cf27caa68ca9ceb963f2055b4dfaf03934" + }, + { + "path": "meta/filezilla.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/finamp.json", + "mode": "100644", + "type": "blob", + "sha": "fb7b6e03cb4dab44d93e5dc46f803645d63eb939", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb7b6e03cb4dab44d93e5dc46f803645d63eb939" + }, + { + "path": "meta/findroid.json", + "mode": "100644", + "type": "blob", + "sha": "ee1316d2f1cde99dcedc20d3579cfa618f8ec5a3", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee1316d2f1cde99dcedc20d3579cfa618f8ec5a3" + }, + { + "path": "meta/fios.json", + "mode": "100644", + "type": "blob", + "sha": "5a6437d79e8c254cb6406e2bca84339a7e205dd2", + "size": 311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a6437d79e8c254cb6406e2bca84339a7e205dd2" + }, + { + "path": "meta/firebase.json", + "mode": "100644", + "type": "blob", + "sha": "a22c2b2acb9a8746076586ec604ee6e81f78c451", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a22c2b2acb9a8746076586ec604ee6e81f78c451" + }, + { + "path": "meta/firefly-iii.json", + "mode": "100644", + "type": "blob", + "sha": "0037b815a652fbc0ae44800bee9fbdc7b3eb1f60", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0037b815a652fbc0ae44800bee9fbdc7b3eb1f60" + }, + { + "path": "meta/firefly.json", + "mode": "100644", + "type": "blob", + "sha": "40b2b1da13500040ed94e99c8c73c5a2937533b7", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40b2b1da13500040ed94e99c8c73c5a2937533b7" + }, + { + "path": "meta/firefox-beta.json", + "mode": "100644", + "type": "blob", + "sha": "120e9fb76e41a923a8dfb9dcae7a06b5fa2a5039", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/120e9fb76e41a923a8dfb9dcae7a06b5fa2a5039" + }, + { + "path": "meta/firefox-developer-edition.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/firefox-lite.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/firefox-nightly.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/firefox-reality.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/firefox-send.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/firefox.json", + "mode": "100644", + "type": "blob", + "sha": "e9775b0f0f0c6983f616bd69256207bb99cd51cd", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9775b0f0f0c6983f616bd69256207bb99cd51cd" + }, + { + "path": "meta/fireshare.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/firewalla.json", + "mode": "100644", + "type": "blob", + "sha": "fb59c70dbb5b698cdee0ca090ef6f6b3a5e850dc", + "size": 182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb59c70dbb5b698cdee0ca090ef6f6b3a5e850dc" + }, + { + "path": "meta/fittrackee.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/fl-studio.json", + "mode": "100644", + "type": "blob", + "sha": "57ac986a873e5c2b0d50ba962ed44654e1b4850c", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57ac986a873e5c2b0d50ba962ed44654e1b4850c" + }, + { + "path": "meta/fladder.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/flame.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/flaresolverr.json", + "mode": "100644", + "type": "blob", + "sha": "2516bd05233c6e83827e4f3fc949c019a3d8f8f2", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2516bd05233c6e83827e4f3fc949c019a3d8f8f2" + }, + { + "path": "meta/flarum.json", + "mode": "100644", + "type": "blob", + "sha": "45ffdb66eefc0244f86cd77631b186deb0cf93ce", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45ffdb66eefc0244f86cd77631b186deb0cf93ce" + }, + { + "path": "meta/flat-notes.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/flathub.json", + "mode": "100644", + "type": "blob", + "sha": "2e471df264aaec3072450ce33ae49fc298dca28d", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e471df264aaec3072450ce33ae49fc298dca28d" + }, + { + "path": "meta/flatnotes.json", + "mode": "100644", + "type": "blob", + "sha": "a2321c4b326b4ba62343f7543c77eeb807de1a6a", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2321c4b326b4ba62343f7543c77eeb807de1a6a" + }, + { + "path": "meta/flatpak.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/fleetdm.json", + "mode": "100644", + "type": "blob", + "sha": "d14b6c1cee3e76ac1a0f83d93f18cbc16f8ff570", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d14b6c1cee3e76ac1a0f83d93f18cbc16f8ff570" + }, + { + "path": "meta/flexget.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/flightaware.json", + "mode": "100644", + "type": "blob", + "sha": "92cd1fe5b567a889036b2d8fa7456b75ecaadfc4", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92cd1fe5b567a889036b2d8fa7456b75ecaadfc4" + }, + { + "path": "meta/flightradar24.json", + "mode": "100644", + "type": "blob", + "sha": "5df4f962bb69298dc511ac36eae384093da400b2", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5df4f962bb69298dc511ac36eae384093da400b2" + }, + { + "path": "meta/floatplane.json", + "mode": "100644", + "type": "blob", + "sha": "f5477d4d126e7f57dc3e1a31a3b2efc4b4818400", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5477d4d126e7f57dc3e1a31a3b2efc4b4818400" + }, + { + "path": "meta/flogo.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/flood.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/floorp.json", + "mode": "100644", + "type": "blob", + "sha": "bc65f91806224db8ee83d512ad695df1068c4fa8", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc65f91806224db8ee83d512ad695df1068c4fa8" + }, + { + "path": "meta/flowise.json", + "mode": "100644", + "type": "blob", + "sha": "b4f23cfe1ec5529ea460251d618a558a20c0ff89", + "size": 220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4f23cfe1ec5529ea460251d618a558a20c0ff89" + }, + { + "path": "meta/flowtunes.json", + "mode": "100644", + "type": "blob", + "sha": "578cc80e010456fd9239817802a8aab069a8e8b4", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/578cc80e010456fd9239817802a8aab069a8e8b4" + }, + { + "path": "meta/fluent-reader.json", + "mode": "100644", + "type": "blob", + "sha": "b750485730b31efa5d7e76d173093079cccd9979", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b750485730b31efa5d7e76d173093079cccd9979" + }, + { + "path": "meta/fluffychat.json", + "mode": "100644", + "type": "blob", + "sha": "3c8bda0423f37b4066ed26f0cce74e022ddc417c", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c8bda0423f37b4066ed26f0cce74e022ddc417c" + }, + { + "path": "meta/fluidd.json", + "mode": "100644", + "type": "blob", + "sha": "023f4082e6a788f54667a9fbb9ff153045700cde", + "size": 182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/023f4082e6a788f54667a9fbb9ff153045700cde" + }, + { + "path": "meta/flux-cd.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/fly-io.json", + "mode": "100644", + "type": "blob", + "sha": "dbff53e081039448ae8bc1286e031cdb254c50cc", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbff53e081039448ae8bc1286e031cdb254c50cc" + }, + { + "path": "meta/fmd.json", + "mode": "100644", + "type": "blob", + "sha": "49540c378cd745f692cfefb5d49a344077947059", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49540c378cd745f692cfefb5d49a344077947059" + }, + { + "path": "meta/fnos.json", + "mode": "100644", + "type": "blob", + "sha": "3cdfe427767173e9729ccb1a38c2a9d1b08ecf1d", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cdfe427767173e9729ccb1a38c2a9d1b08ecf1d" + }, + { + "path": "meta/focalboard.json", + "mode": "100644", + "type": "blob", + "sha": "6e3577ddc6699e7ce64371dcfa8cc9fd5dbeacf4", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e3577ddc6699e7ce64371dcfa8cc9fd5dbeacf4" + }, + { + "path": "meta/foldingathome.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/fontawesome.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/foreflight.json", + "mode": "100644", + "type": "blob", + "sha": "fa16c4226b278711a74ce72319eaab563678df91", + "size": 308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa16c4226b278711a74ce72319eaab563678df91" + }, + { + "path": "meta/forgejo.json", + "mode": "100644", + "type": "blob", + "sha": "cf3e19f0674e39a96763b9bd9f5765bde51794a8", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf3e19f0674e39a96763b9bd9f5765bde51794a8" + }, + { + "path": "meta/forte.json", + "mode": "100644", + "type": "blob", + "sha": "5868c4a127ffe0b89b1055567ee69932c5c2db1d", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5868c4a127ffe0b89b1055567ee69932c5c2db1d" + }, + { + "path": "meta/fortinet.json", + "mode": "100644", + "type": "blob", + "sha": "bb3afa1ff95ec06904a8e1631d04bc3977d2924e", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb3afa1ff95ec06904a8e1631d04bc3977d2924e" + }, + { + "path": "meta/foscam.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/fossil.json", + "mode": "100644", + "type": "blob", + "sha": "fce6b45ab3aedb02230b6e08bdf501b94889d054", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fce6b45ab3aedb02230b6e08bdf501b94889d054" + }, + { + "path": "meta/foundry-vtt.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/franz.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/free-dns.json", + "mode": "100644", + "type": "blob", + "sha": "11d84e6620c870b4b9a8f32bebe04d7ef17ea010", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11d84e6620c870b4b9a8f32bebe04d7ef17ea010" + }, + { + "path": "meta/free-sas.json", + "mode": "100644", + "type": "blob", + "sha": "21e358d7e8a8fdcc280f39c11743c1d9f6e7e556", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21e358d7e8a8fdcc280f39c11743c1d9f6e7e556" + }, + { + "path": "meta/freebox-delta.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/freebox-pop.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/freebox-revolution.json", + "mode": "100644", + "type": "blob", + "sha": "a08279230a90177f1294cb33073a611ac54f9a64", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a08279230a90177f1294cb33073a611ac54f9a64" + }, + { + "path": "meta/freedombox.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/freeipa.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/freenas.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/freenom.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/freepbx.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/freescout.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/freshping.json", + "mode": "100644", + "type": "blob", + "sha": "57729f11a48108b5938070fa27c13b38ef0d65e9", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57729f11a48108b5938070fa27c13b38ef0d65e9" + }, + { + "path": "meta/freshrss.json", + "mode": "100644", + "type": "blob", + "sha": "d93a82445268774bd64c5722be02ab8282e91e14", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d93a82445268774bd64c5722be02ab8282e91e14" + }, + { + "path": "meta/friendica.json", + "mode": "100644", + "type": "blob", + "sha": "d8be0d138dda37ea1d51fabaf8ae6e554f0b1837", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8be0d138dda37ea1d51fabaf8ae6e554f0b1837" + }, + { + "path": "meta/frigate.json", + "mode": "100644", + "type": "blob", + "sha": "fc417287adb3e276f37b15f4af841238cac8140e", + "size": 319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc417287adb3e276f37b15f4af841238cac8140e" + }, + { + "path": "meta/fritzbox.json", + "mode": "100644", + "type": "blob", + "sha": "8d5c0784def895e0ac9b7a58dbec2587e2bfec22", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d5c0784def895e0ac9b7a58dbec2587e2bfec22" + }, + { + "path": "meta/fronius.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/frp.json", + "mode": "100644", + "type": "blob", + "sha": "3244cd2222282c2c67d432ac76ac8ac130b2ef0f", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3244cd2222282c2c67d432ac76ac8ac130b2ef0f" + }, + { + "path": "meta/fulcio.json", + "mode": "100644", + "type": "blob", + "sha": "0531d9933ef9828fce451a9d4902f9d9aa0ca098", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0531d9933ef9828fce451a9d4902f9d9aa0ca098" + }, + { + "path": "meta/funkwhale.json", + "mode": "100644", + "type": "blob", + "sha": "b6918cede4858b1857d486ee6d3373a0212bfe8c", + "size": 356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6918cede4858b1857d486ee6d3373a0212bfe8c" + }, + { + "path": "meta/fusionauth.json", + "mode": "100644", + "type": "blob", + "sha": "a5d0177fcf9968293660c5076c83378211542df1", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5d0177fcf9968293660c5076c83378211542df1" + }, + { + "path": "meta/fusionpbx.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/gamevault.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/gameyfin.json", + "mode": "100644", + "type": "blob", + "sha": "8b91f41215746945c4bfcb75e1fb185361842a93", + "size": 333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b91f41215746945c4bfcb75e1fb185361842a93" + }, + { + "path": "meta/gaps.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/garage.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/garmin-connect.json", + "mode": "100644", + "type": "blob", + "sha": "5ff0d0d372a375e428ed52e466a8d9253ff8b5c8", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ff0d0d372a375e428ed52e466a8d9253ff8b5c8" + }, + { + "path": "meta/garuda-linux.json", + "mode": "100644", + "type": "blob", + "sha": "41be8ba9e78a01dac55b95b06b75e6b651446cd7", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41be8ba9e78a01dac55b95b06b75e6b651446cd7" + }, + { + "path": "meta/gaseous.json", + "mode": "100644", + "type": "blob", + "sha": "171aa82a128839c118eea81a2c4f6c2a36f0776d", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/171aa82a128839c118eea81a2c4f6c2a36f0776d" + }, + { + "path": "meta/gatsby.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/gatus.json", + "mode": "100644", + "type": "blob", + "sha": "fb7a652615230009a88178db1fea600e7aa85098", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb7a652615230009a88178db1fea600e7aa85098" + }, + { + "path": "meta/gboard.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/geckoview.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/genius.json", + "mode": "100644", + "type": "blob", + "sha": "7faf5cac90f2c1fe8075fff331b7f13dfcf62ee3", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7faf5cac90f2c1fe8075fff331b7f13dfcf62ee3" + }, + { + "path": "meta/gentoo-linux.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/geo-guessr.json", + "mode": "100644", + "type": "blob", + "sha": "5fd444327ffc5259947d7c8755ba4bb99f7f2c0c", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fd444327ffc5259947d7c8755ba4bb99f7f2c0c" + }, + { + "path": "meta/gerbera.json", + "mode": "100644", + "type": "blob", + "sha": "df25ec95f47861e51cb96825ff3654defac96d3b", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df25ec95f47861e51cb96825ff3654defac96d3b" + }, + { + "path": "meta/gerrit.json", + "mode": "100644", + "type": "blob", + "sha": "dcbe50cd0ae6ab4f6df0bb9fd2e7d42a41c62206", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcbe50cd0ae6ab4f6df0bb9fd2e7d42a41c62206" + }, + { + "path": "meta/get-iplayer.json", + "mode": "100644", + "type": "blob", + "sha": "566c95307ac3834722f7a7dae336527050f6dae4", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/566c95307ac3834722f7a7dae336527050f6dae4" + }, + { + "path": "meta/ghost.json", + "mode": "100644", + "type": "blob", + "sha": "24b00bc970e0325ed88a6e43513adcd37942a498", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24b00bc970e0325ed88a6e43513adcd37942a498" + }, + { + "path": "meta/ghostfolio.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/ghostty.json", + "mode": "100644", + "type": "blob", + "sha": "a20b3e479622258f5acda3e55ee0757c6eee82bf", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a20b3e479622258f5acda3e55ee0757c6eee82bf" + }, + { + "path": "meta/gigaset.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/gimp.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/git.json", + "mode": "100644", + "type": "blob", + "sha": "bf97379cd175eddc0598c2e623479b39cd01cf99", + "size": 242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf97379cd175eddc0598c2e623479b39cd01cf99" + }, + { + "path": "meta/gitbook.json", + "mode": "100644", + "type": "blob", + "sha": "62972d3a88e457d3c0d998377000546db29ece8f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62972d3a88e457d3c0d998377000546db29ece8f" + }, + { + "path": "meta/gitea.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/gitee.json", + "mode": "100644", + "type": "blob", + "sha": "ecbf70bcd571dbdfd0d812f4e47404db323cd7f9", + "size": 288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecbf70bcd571dbdfd0d812f4e47404db323cd7f9" + }, + { + "path": "meta/github.json", + "mode": "100644", + "type": "blob", + "sha": "1756c6f8ff8b0bd89a98bc287996c957c2901a77", + "size": 356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1756c6f8ff8b0bd89a98bc287996c957c2901a77" + }, + { + "path": "meta/gitlab.json", + "mode": "100644", + "type": "blob", + "sha": "cd27b1c804652967fa6d6fb21c27e4deff2a9f48", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd27b1c804652967fa6d6fb21c27e4deff2a9f48" + }, + { + "path": "meta/gitsign.json", + "mode": "100644", + "type": "blob", + "sha": "75621ecf87763d00419f8f5e4e88e0df5ed3d9ec", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75621ecf87763d00419f8f5e4e88e0df5ed3d9ec" + }, + { + "path": "meta/gladys-assistant.json", + "mode": "100644", + "type": "blob", + "sha": "0f26888546d0e76cca3b2e797e079cd47750dbe3", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f26888546d0e76cca3b2e797e079cd47750dbe3" + }, + { + "path": "meta/glance.json", + "mode": "100644", + "type": "blob", + "sha": "434b00a52a5eb4d02c56d2884d2f3ac3b1d22604", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/434b00a52a5eb4d02c56d2884d2f3ac3b1d22604" + }, + { + "path": "meta/glances.json", + "mode": "100644", + "type": "blob", + "sha": "bfc7825441987b78cea693887cd2951452aa16c5", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfc7825441987b78cea693887cd2951452aa16c5" + }, + { + "path": "meta/glinet.json", + "mode": "100644", + "type": "blob", + "sha": "469be1793bec20c31fc60efc718539162e75fbb9", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/469be1793bec20c31fc60efc718539162e75fbb9" + }, + { + "path": "meta/glitchtip.json", + "mode": "100644", + "type": "blob", + "sha": "2f43fd648e737ed38cb513b2f214a0f1d4309c05", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f43fd648e737ed38cb513b2f214a0f1d4309c05" + }, + { + "path": "meta/glpi.json", + "mode": "100644", + "type": "blob", + "sha": "feb5945ab2ae19745477d41c6ef0fc355c8b84b6", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/feb5945ab2ae19745477d41c6ef0fc355c8b84b6" + }, + { + "path": "meta/gluetun.json", + "mode": "100644", + "type": "blob", + "sha": "8fe0bbb3ecf8fb5fa471bc3fc6e3f33fc5a84a5d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fe0bbb3ecf8fb5fa471bc3fc6e3f33fc5a84a5d" + }, + { + "path": "meta/gmail.json", + "mode": "100644", + "type": "blob", + "sha": "95366a6ae77546e595dd4c558af63b9f8f668780", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95366a6ae77546e595dd4c558af63b9f8f668780" + }, + { + "path": "meta/go.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/go2rtc.json", + "mode": "100644", + "type": "blob", + "sha": "d7870eeaa5c45bad187f8c99fcb7a8ae5e1aae63", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7870eeaa5c45bad187f8c99fcb7a8ae5e1aae63" + }, + { + "path": "meta/goaccess.json", + "mode": "100644", + "type": "blob", + "sha": "299646e10c2e354e52d28a73baf82a6cb34a8829", + "size": 354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/299646e10c2e354e52d28a73baf82a6cb34a8829" + }, + { + "path": "meta/godaddy-alt.json", + "mode": "100644", + "type": "blob", + "sha": "acfea279b58c8f0edad4a6cb51e73404d92cf2db", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acfea279b58c8f0edad4a6cb51e73404d92cf2db" + }, + { + "path": "meta/godaddy.json", + "mode": "100644", + "type": "blob", + "sha": "acfea279b58c8f0edad4a6cb51e73404d92cf2db", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acfea279b58c8f0edad4a6cb51e73404d92cf2db" + }, + { + "path": "meta/godot.json", + "mode": "100644", + "type": "blob", + "sha": "9db2d32634e54e498aa8679cdb4f90b806232dfb", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9db2d32634e54e498aa8679cdb4f90b806232dfb" + }, + { + "path": "meta/gogs.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/golink.json", + "mode": "100644", + "type": "blob", + "sha": "a8d6b9da2ffcdf66dcb0ef5c27582a861ca1870e", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8d6b9da2ffcdf66dcb0ef5c27582a861ca1870e" + }, + { + "path": "meta/gollum.json", + "mode": "100644", + "type": "blob", + "sha": "c680da3098fe73fd95283aa76c8c986628f46108", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c680da3098fe73fd95283aa76c8c986628f46108" + }, + { + "path": "meta/gomft.json", + "mode": "100644", + "type": "blob", + "sha": "3b3878e2367cf04eb1e0cb9f810ea00c9c18daa6", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b3878e2367cf04eb1e0cb9f810ea00c9c18daa6" + }, + { + "path": "meta/gone-man-switch.json", + "mode": "100644", + "type": "blob", + "sha": "9b81fe9eead1861a450c4772c8d2494add31b71c", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b81fe9eead1861a450c4772c8d2494add31b71c" + }, + { + "path": "meta/gonic.json", + "mode": "100644", + "type": "blob", + "sha": "9964ce927ef9e82440e9fb1bfa10d8f4cdffb4d1", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9964ce927ef9e82440e9fb1bfa10d8f4cdffb4d1" + }, + { + "path": "meta/goodreads.json", + "mode": "100644", + "type": "blob", + "sha": "9b8b839260ef7190cd884af7b069f1d03aae8a46", + "size": 237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b8b839260ef7190cd884af7b069f1d03aae8a46" + }, + { + "path": "meta/google-admin.json", + "mode": "100644", + "type": "blob", + "sha": "76d0911b333e05b34cad09d76c85f1a15d51d37e", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76d0911b333e05b34cad09d76c85f1a15d51d37e" + }, + { + "path": "meta/google-admob.json", + "mode": "100644", + "type": "blob", + "sha": "eac295fcfcb2fdd69eff232fc8f5bd8d3e562d79", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eac295fcfcb2fdd69eff232fc8f5bd8d3e562d79" + }, + { + "path": "meta/google-alerts.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-analytics.json", + "mode": "100644", + "type": "blob", + "sha": "ca4cac3d1c4acbd2fc7e678db290b0acfdf57379", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca4cac3d1c4acbd2fc7e678db290b0acfdf57379" + }, + { + "path": "meta/google-assistant.json", + "mode": "100644", + "type": "blob", + "sha": "44484e728bbb861f1d2ef6c1471365c79c93ea22", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44484e728bbb861f1d2ef6c1471365c79c93ea22" + }, + { + "path": "meta/google-calendar.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-chat.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-chrome.json", + "mode": "100644", + "type": "blob", + "sha": "93c05bcb7683cff6e9954cd5c1a40b4b3ffe5d26", + "size": 229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93c05bcb7683cff6e9954cd5c1a40b4b3ffe5d26" + }, + { + "path": "meta/google-classroom.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-cloud-platform.json", + "mode": "100644", + "type": "blob", + "sha": "78d3fb6105fd954b17a7e85b97c3ebfa4ca600dd", + "size": 181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78d3fb6105fd954b17a7e85b97c3ebfa4ca600dd" + }, + { + "path": "meta/google-cloud-print.json", + "mode": "100644", + "type": "blob", + "sha": "e852cb71c2953fbc10c7ef3fab0fa874fd0c4c27", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e852cb71c2953fbc10c7ef3fab0fa874fd0c4c27" + }, + { + "path": "meta/google-colab.json", + "mode": "100644", + "type": "blob", + "sha": "494d10dbddce2bc581e806ce145af30ee5ff125d", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/494d10dbddce2bc581e806ce145af30ee5ff125d" + }, + { + "path": "meta/google-compute-engine.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-contacts.json", + "mode": "100644", + "type": "blob", + "sha": "ebf6fa6ace39ca476092a54736e747af99f14871", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebf6fa6ace39ca476092a54736e747af99f14871" + }, + { + "path": "meta/google-docs.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-domains.json", + "mode": "100644", + "type": "blob", + "sha": "93f79c4812e2dcf4f4b6be4a1ee1ed0dcc29486b", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93f79c4812e2dcf4f4b6be4a1ee1ed0dcc29486b" + }, + { + "path": "meta/google-drive.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-earth.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-fi.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-finance.json", + "mode": "100644", + "type": "blob", + "sha": "7b074130ba0809d01a509d2d6379795de49e24de", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b074130ba0809d01a509d2d6379795de49e24de" + }, + { + "path": "meta/google-fit.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-fonts.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-forms.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-gemini.json", + "mode": "100644", + "type": "blob", + "sha": "a5f7015ee1d2c5337b7665f7a2353fd8ceeb3511", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5f7015ee1d2c5337b7665f7a2353fd8ceeb3511" + }, + { + "path": "meta/google-home.json", + "mode": "100644", + "type": "blob", + "sha": "ddad23e46b4618f96888aa59c14b2a0d3665704d", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddad23e46b4618f96888aa59c14b2a0d3665704d" + }, + { + "path": "meta/google-jules.json", + "mode": "100644", + "type": "blob", + "sha": "6e86a903622f13ed81413372497b034378bf2a4d", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e86a903622f13ed81413372497b034378bf2a4d" + }, + { + "path": "meta/google-keep.json", + "mode": "100644", + "type": "blob", + "sha": "1c5520b83e44bc80651ffad987414fdc489f2dc3", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c5520b83e44bc80651ffad987414fdc489f2dc3" + }, + { + "path": "meta/google-lens.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-maps.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-meet.json", + "mode": "100644", + "type": "blob", + "sha": "f051cf9ecb1a3f0b9b63e410b9140a503f7ddf3f", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f051cf9ecb1a3f0b9b63e410b9140a503f7ddf3f" + }, + { + "path": "meta/google-messages.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-news.json", + "mode": "100644", + "type": "blob", + "sha": "64955b44bbfe8bb8d08cbc5fe51629bb82a48e61", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64955b44bbfe8bb8d08cbc5fe51629bb82a48e61" + }, + { + "path": "meta/google-one.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-pay.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-photos.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-play-books.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-play-games.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-play.json", + "mode": "100644", + "type": "blob", + "sha": "f4ed8338bf411e29ca26a408f0baec957d357577", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4ed8338bf411e29ca26a408f0baec957d357577" + }, + { + "path": "meta/google-podcasts.json", + "mode": "100644", + "type": "blob", + "sha": "82e9934ca199caed383a93692cfcab4f79607b35", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82e9934ca199caed383a93692cfcab4f79607b35" + }, + { + "path": "meta/google-scholar.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-search-console.json", + "mode": "100644", + "type": "blob", + "sha": "08e5c53fc6beb9075198be9ee1800ec7ab8b0888", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08e5c53fc6beb9075198be9ee1800ec7ab8b0888" + }, + { + "path": "meta/google-sheets.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-shopping.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-sites.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-slides.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-street-view.json", + "mode": "100644", + "type": "blob", + "sha": "1d971ace476e5b96e0f33c99c2549728021b94c1", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d971ace476e5b96e0f33c99c2549728021b94c1" + }, + { + "path": "meta/google-tag-manager.json", + "mode": "100644", + "type": "blob", + "sha": "d5b99490ea1bbb4aea02570a56a2e6df7dbfa9a1", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5b99490ea1bbb4aea02570a56a2e6df7dbfa9a1" + }, + { + "path": "meta/google-translate.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-tv.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-voice.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google-wallet.json", + "mode": "100644", + "type": "blob", + "sha": "59f4504ccaf26bc683a41ce73abff6b042c699d3", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59f4504ccaf26bc683a41ce73abff6b042c699d3" + }, + { + "path": "meta/google-wifi.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/google.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/gopeed.json", + "mode": "100644", + "type": "blob", + "sha": "c2fe47805378dd03a82d01b71a8779644758219c", + "size": 203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2fe47805378dd03a82d01b71a8779644758219c" + }, + { + "path": "meta/gose.json", + "mode": "100644", + "type": "blob", + "sha": "f5cfbd8c0dd716dd597ca49151dd8626058d71ce", + "size": 180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5cfbd8c0dd716dd597ca49151dd8626058d71ce" + }, + { + "path": "meta/gotenberg.json", + "mode": "100644", + "type": "blob", + "sha": "26424eaff2566dab7693d8a029ade01c20af12b5", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26424eaff2566dab7693d8a029ade01c20af12b5" + }, + { + "path": "meta/gotify.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/gotosocial.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/gpt4free.json", + "mode": "100644", + "type": "blob", + "sha": "88e0aa09df996f3ee847ba1b192671c93e59f772", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88e0aa09df996f3ee847ba1b192671c93e59f772" + }, + { + "path": "meta/grafana.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/gramps-web.json", + "mode": "100644", + "type": "blob", + "sha": "cda277583f32293400241fabb007653644fb86ec", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cda277583f32293400241fabb007653644fb86ec" + }, + { + "path": "meta/gramps.json", + "mode": "100644", + "type": "blob", + "sha": "a09c255ad2cd69c54e71e0cb31bac90ad9d25b22", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a09c255ad2cd69c54e71e0cb31bac90ad9d25b22" + }, + { + "path": "meta/grandstream.json", + "mode": "100644", + "type": "blob", + "sha": "81a17f1bf2423ccae61b3df6eccf2a8ae7778327", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81a17f1bf2423ccae61b3df6eccf2a8ae7778327" + }, + { + "path": "meta/grav.json", + "mode": "100644", + "type": "blob", + "sha": "d93c8fa28a2bf63a5e74f2f1c03ac0bb816a7f57", + "size": 332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d93c8fa28a2bf63a5e74f2f1c03ac0bb816a7f57" + }, + { + "path": "meta/gravity.json", + "mode": "100644", + "type": "blob", + "sha": "63aeb92dbdfe988771b36607290a1a39e3a7dbf1", + "size": 225, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63aeb92dbdfe988771b36607290a1a39e3a7dbf1" + }, + { + "path": "meta/graylog.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/greenbone.json", + "mode": "100644", + "type": "blob", + "sha": "8f94723225540d9e9a0682a5a7839eaab1b93743", + "size": 334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f94723225540d9e9a0682a5a7839eaab1b93743" + }, + { + "path": "meta/greenlight.json", + "mode": "100644", + "type": "blob", + "sha": "a9cc0425a3c570b2acc415fdf95137b49b1c66b8", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9cc0425a3c570b2acc415fdf95137b49b1c66b8" + }, + { + "path": "meta/grimoire.json", + "mode": "100644", + "type": "blob", + "sha": "e4fdfbe78f397f25774f4ab67b506222012fb561", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4fdfbe78f397f25774f4ab67b506222012fb561" + }, + { + "path": "meta/grist.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/grocy.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/grok.json", + "mode": "100644", + "type": "blob", + "sha": "4f802fcfac10e03b1f3c86fcab32a8503e175f53", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f802fcfac10e03b1f3c86fcab32a8503e175f53" + }, + { + "path": "meta/grype.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/guacamole.json", + "mode": "100644", + "type": "blob", + "sha": "2f0bd5c0be5b7ba531c6b9874aafb8c0f9eadc9d", + "size": 350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f0bd5c0be5b7ba531c6b9874aafb8c0f9eadc9d" + }, + { + "path": "meta/habit-trove.json", + "mode": "100644", + "type": "blob", + "sha": "ac19c7178f84de6e01a0c312a9d383aa12f9daef", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac19c7178f84de6e01a0c312a9d383aa12f9daef" + }, + { + "path": "meta/habitica.json", + "mode": "100644", + "type": "blob", + "sha": "754c6189c53ee2d0f4c19554a9354a16511aca62", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/754c6189c53ee2d0f4c19554a9354a16511aca62" + }, + { + "path": "meta/hacker-news.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hammond.json", + "mode": "100644", + "type": "blob", + "sha": "8f585ce8f871352aa2532c484fd2cc9d845f5105", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f585ce8f871352aa2532c484fd2cc9d845f5105" + }, + { + "path": "meta/handbrake.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/haproxy.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/haptic.json", + "mode": "100644", + "type": "blob", + "sha": "be0dc86dbeb084fae59d13df5f1cb5e1bc26abcc", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be0dc86dbeb084fae59d13df5f1cb5e1bc26abcc" + }, + { + "path": "meta/harbor.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/hard-forum.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/harvester.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/hasheous.json", + "mode": "100644", + "type": "blob", + "sha": "afc020ec7855126d79eb66b72624ab45bac72b0f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afc020ec7855126d79eb66b72624ab45bac72b0f" + }, + { + "path": "meta/hashicorp-boundary.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hashicorp-consul.json", + "mode": "100644", + "type": "blob", + "sha": "6898ae444d8daf31921eb1a8ec6ff261fb1d7994", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6898ae444d8daf31921eb1a8ec6ff261fb1d7994" + }, + { + "path": "meta/hashicorp-nomad.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hashicorp-packer.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hashicorp-terraform.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hashicorp-vagrant.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hashicorp-vault.json", + "mode": "100644", + "type": "blob", + "sha": "838ae34219f90f927884fee0a2cc20650ea1bdae", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/838ae34219f90f927884fee0a2cc20650ea1bdae" + }, + { + "path": "meta/hashicorp-waypoint.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hastypaste.json", + "mode": "100644", + "type": "blob", + "sha": "78b811747671d2dd8e3aa3e19dce0f42f904adf8", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78b811747671d2dd8e3aa3e19dce0f42f904adf8" + }, + { + "path": "meta/hasura.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hathway.json", + "mode": "100644", + "type": "blob", + "sha": "701f4937c3477cdfc4a296714e72afe770b2ad35", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/701f4937c3477cdfc4a296714e72afe770b2ad35" + }, + { + "path": "meta/hatsh.json", + "mode": "100644", + "type": "blob", + "sha": "f709e2200977de46d61fc3fdd8d2488cf03dd166", + "size": 331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f709e2200977de46d61fc3fdd8d2488cf03dd166" + }, + { + "path": "meta/hbo.json", + "mode": "100644", + "type": "blob", + "sha": "1e1c976f4a29602ad1c0a99b574142a64d3aa9b9", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e1c976f4a29602ad1c0a99b574142a64d3aa9b9" + }, + { + "path": "meta/hdhomerun.json", + "mode": "100644", + "type": "blob", + "sha": "bceca28a79d85a4a530816ecfd21c2ef7f2790ff", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bceca28a79d85a4a530816ecfd21c2ef7f2790ff" + }, + { + "path": "meta/headlamp.json", + "mode": "100644", + "type": "blob", + "sha": "3942e3d36c51baef5f4c7ef64bbe59cf339e49c8", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3942e3d36c51baef5f4c7ef64bbe59cf339e49c8" + }, + { + "path": "meta/headphones.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/headscale.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/healthchecks.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hedgedoc.json", + "mode": "100644", + "type": "blob", + "sha": "d2e8196fe82804c9d5cf626bb12ff7bf13bf36c6", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2e8196fe82804c9d5cf626bb12ff7bf13bf36c6" + }, + { + "path": "meta/heimdall.json", + "mode": "100644", + "type": "blob", + "sha": "09ba1ea523372b046f1004ad28fcf56fa63102bb", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09ba1ea523372b046f1004ad28fcf56fa63102bb" + }, + { + "path": "meta/helium-token.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/helm.json", + "mode": "100644", + "type": "blob", + "sha": "dab04ee8111ce90b8bb7836e55ab8c886d586295", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dab04ee8111ce90b8bb7836e55ab8c886d586295" + }, + { + "path": "meta/helper-scripts.json", + "mode": "100644", + "type": "blob", + "sha": "e0b52799bf31f953faab450c661a33699a487838", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0b52799bf31f953faab450c661a33699a487838" + }, + { + "path": "meta/hemmelig.json", + "mode": "100644", + "type": "blob", + "sha": "7eea4b56c530785f8387db105a5d4bbd788522b2", + "size": 352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7eea4b56c530785f8387db105a5d4bbd788522b2" + }, + { + "path": "meta/hetzner-h.json", + "mode": "100644", + "type": "blob", + "sha": "bb77180bc2e0c7fda744b3d5c0bf1bdcce3ec1bc", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb77180bc2e0c7fda744b3d5c0bf1bdcce3ec1bc" + }, + { + "path": "meta/hetzner.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hexo.json", + "mode": "100644", + "type": "blob", + "sha": "3143cac498392de99b739e979e30ee59a9bced80", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3143cac498392de99b739e979e30ee59a9bced80" + }, + { + "path": "meta/hexos.json", + "mode": "100644", + "type": "blob", + "sha": "fba28bc09cafba8cb327d4326dfdd21e52e27d6f", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fba28bc09cafba8cb327d4326dfdd21e52e27d6f" + }, + { + "path": "meta/heyform.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hi-anime.json", + "mode": "100644", + "type": "blob", + "sha": "db72f772084b159cfa33be7d26c5fcb37bc9fe20", + "size": 242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db72f772084b159cfa33be7d26c5fcb37bc9fe20" + }, + { + "path": "meta/hifiberry.json", + "mode": "100644", + "type": "blob", + "sha": "2c3e9331f3a4ab80982a379af3ec17d052fc67f6", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c3e9331f3a4ab80982a379af3ec17d052fc67f6" + }, + { + "path": "meta/hikvision.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hilook.json", + "mode": "100644", + "type": "blob", + "sha": "e68551d49f2279e58077760dcb873bf22d9ee426", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e68551d49f2279e58077760dcb873bf22d9ee426" + }, + { + "path": "meta/hivedav.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/hl-audiomuse-ai.json", + "mode": "100644", + "type": "blob", + "sha": "fe08be70cdb371b190d0f4a8f831dd1f8029bef6", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe08be70cdb371b190d0f4a8f831dd1f8029bef6" + }, + { + "path": "meta/hoarder.json", + "mode": "100644", + "type": "blob", + "sha": "ffc3cc5930fa37ca192d4a87a1c1446b323ef9e6", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffc3cc5930fa37ca192d4a87a1c1446b323ef9e6" + }, + { + "path": "meta/hollo.json", + "mode": "100644", + "type": "blob", + "sha": "ed8d5019099c516370191058907cd984d1667b8f", + "size": 275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed8d5019099c516370191058907cd984d1667b8f" + }, + { + "path": "meta/homarr.json", + "mode": "100644", + "type": "blob", + "sha": "252eafbe7f32475587e8debab83d97aa99e247fd", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/252eafbe7f32475587e8debab83d97aa99e247fd" + }, + { + "path": "meta/home-assistant-alt.json", + "mode": "100644", + "type": "blob", + "sha": "95a995ba075e7b2610acc8a880b70b4f4b5f2761", + "size": 241, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95a995ba075e7b2610acc8a880b70b4f4b5f2761" + }, + { + "path": "meta/home-assistant.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/homebox.json", + "mode": "100644", + "type": "blob", + "sha": "3e9593aba5d540612a094bb69a92759ec1441bbe", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e9593aba5d540612a094bb69a92759ec1441bbe" + }, + { + "path": "meta/homebridge.json", + "mode": "100644", + "type": "blob", + "sha": "73fe41a513ff3a9a9af07c84392aff1c83f20d8a", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73fe41a513ff3a9a9af07c84392aff1c83f20d8a" + }, + { + "path": "meta/homelabids.json", + "mode": "100644", + "type": "blob", + "sha": "8f6d53c95520b9a577e11d1ca5a0ddcc55024a59", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f6d53c95520b9a577e11d1ca5a0ddcc55024a59" + }, + { + "path": "meta/homepage.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/homer.json", + "mode": "100644", + "type": "blob", + "sha": "90aa4c9437a82e07825471bdf966d97d3499a718", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90aa4c9437a82e07825471bdf966d97d3499a718" + }, + { + "path": "meta/homeseer.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/homey.json", + "mode": "100644", + "type": "blob", + "sha": "335ab035a00d874938f9f66c95f1a80e764c9b9e", + "size": 182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/335ab035a00d874938f9f66c95f1a80e764c9b9e" + }, + { + "path": "meta/honda-jet.json", + "mode": "100644", + "type": "blob", + "sha": "85e86040f5bd35d7c3ce664679e3d999ae355811", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85e86040f5bd35d7c3ce664679e3d999ae355811" + }, + { + "path": "meta/honeygain.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/hoobs.json", + "mode": "100644", + "type": "blob", + "sha": "3f0390077535f8d7622a07c22f8dbe66879ff972", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f0390077535f8d7622a07c22f8dbe66879ff972" + }, + { + "path": "meta/hoppscotch.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hortusfox.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/hostinger.json", + "mode": "100644", + "type": "blob", + "sha": "a4dcb931161d0ebffa15a0168d0704969d00fa63", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4dcb931161d0ebffa15a0168d0704969d00fa63" + }, + { + "path": "meta/hotio.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hp.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/html.json", + "mode": "100644", + "type": "blob", + "sha": "a8d662fdbaa74ba3663dca667c29996bd9632db1", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8d662fdbaa74ba3663dca667c29996bd9632db1" + }, + { + "path": "meta/huawei.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hubitat.json", + "mode": "100644", + "type": "blob", + "sha": "004810d6177bee75a5c3f308c4b9c926be9674a9", + "size": 289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/004810d6177bee75a5c3f308c4b9c926be9674a9" + }, + { + "path": "meta/hubzilla.json", + "mode": "100644", + "type": "blob", + "sha": "e8d8134eb08a997c36c162a314da42706d8deaa0", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8d8134eb08a997c36c162a314da42706d8deaa0" + }, + { + "path": "meta/hugging-face.json", + "mode": "100644", + "type": "blob", + "sha": "68e755c16f67ed899505ec5eec0fee6699a9b5bd", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68e755c16f67ed899505ec5eec0fee6699a9b5bd" + }, + { + "path": "meta/huginn.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hugo.json", + "mode": "100644", + "type": "blob", + "sha": "41284d29a7516f5513eb24b7a83b54d5026f236c", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41284d29a7516f5513eb24b7a83b54d5026f236c" + }, + { + "path": "meta/hulu.json", + "mode": "100644", + "type": "blob", + "sha": "90333abc1fb43a1eee233be03eb979c7a0bb59f8", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90333abc1fb43a1eee233be03eb979c7a0bb59f8" + }, + { + "path": "meta/humhub.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/huntarr.json", + "mode": "100644", + "type": "blob", + "sha": "909ab28d22c517584e0f4cfdb9cd91a3e1c2818c", + "size": 199, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/909ab28d22c517584e0f4cfdb9cd91a3e1c2818c" + }, + { + "path": "meta/hydra.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/hyperion.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/hyperpipe.json", + "mode": "100644", + "type": "blob", + "sha": "1bc71cbbbc7d9c7c483795faa67da34483ab1dd6", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bc71cbbbc7d9c7c483795faa67da34483ab1dd6" + }, + { + "path": "meta/hyprland.json", + "mode": "100644", + "type": "blob", + "sha": "6239b1727e654afd18f78b1830a37ea11f6a4347", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6239b1727e654afd18f78b1830a37ea11f6a4347" + }, + { + "path": "meta/i-librarian.json", + "mode": "100644", + "type": "blob", + "sha": "b799d94fb958449be60a6d763e82e6b2b909837d", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b799d94fb958449be60a6d763e82e6b2b909837d" + }, + { + "path": "meta/i2p.json", + "mode": "100644", + "type": "blob", + "sha": "c896063a7e793d3f2ca43427a7616b02f60d8cd7", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c896063a7e793d3f2ca43427a7616b02f60d8cd7" + }, + { + "path": "meta/i2pd.json", + "mode": "100644", + "type": "blob", + "sha": "3d73622250519314018c1bf91455da365e4f26c8", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d73622250519314018c1bf91455da365e4f26c8" + }, + { + "path": "meta/ical.json", + "mode": "100644", + "type": "blob", + "sha": "1927cebec56d0c13146f2f4b4b1b35bc5d4827df", + "size": 220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1927cebec56d0c13146f2f4b4b1b35bc5d4827df" + }, + { + "path": "meta/icecast.json", + "mode": "100644", + "type": "blob", + "sha": "88cc82be61c407dc7e2378c58d3a6feebc0c5cd1", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88cc82be61c407dc7e2378c58d3a6feebc0c5cd1" + }, + { + "path": "meta/icinga-full.json", + "mode": "100644", + "type": "blob", + "sha": "1c7e53ed0f2e7f4d4f39464422cc44f2fe65d933", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c7e53ed0f2e7f4d4f39464422cc44f2fe65d933" + }, + { + "path": "meta/icinga.json", + "mode": "100644", + "type": "blob", + "sha": "c2333fce9a14ef38152997c0018abf9c7091ee47", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2333fce9a14ef38152997c0018abf9c7091ee47" + }, + { + "path": "meta/icloud.json", + "mode": "100644", + "type": "blob", + "sha": "3cb0f2b606459991e68def2d3efa66b6c74afdbf", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cb0f2b606459991e68def2d3efa66b6c74afdbf" + }, + { + "path": "meta/idealo.json", + "mode": "100644", + "type": "blob", + "sha": "5c3ee532a8aeb0e25d1686f56a6afa8e6976ee21", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c3ee532a8aeb0e25d1686f56a6afa8e6976ee21" + }, + { + "path": "meta/ideco.json", + "mode": "100644", + "type": "blob", + "sha": "91530b29f7b995d2d2104051fc720ee14562411e", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91530b29f7b995d2d2104051fc720ee14562411e" + }, + { + "path": "meta/idrac.json", + "mode": "100644", + "type": "blob", + "sha": "726b7db4683f7950d7d144e4e0a2b6002fc17aef", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/726b7db4683f7950d7d144e4e0a2b6002fc17aef" + }, + { + "path": "meta/idrive.json", + "mode": "100644", + "type": "blob", + "sha": "baa69f25b401645675c30b2dedcf6f169602f7f9", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/baa69f25b401645675c30b2dedcf6f169602f7f9" + }, + { + "path": "meta/ihatemoney.json", + "mode": "100644", + "type": "blob", + "sha": "4152ed03e3d8c10a4887027e6043f2470806fedf", + "size": 236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4152ed03e3d8c10a4887027e6043f2470806fedf" + }, + { + "path": "meta/ikuai.json", + "mode": "100644", + "type": "blob", + "sha": "26ae9ccb4989c06dcc9a12d8c262cbcf60b201e7", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26ae9ccb4989c06dcc9a12d8c262cbcf60b201e7" + }, + { + "path": "meta/ilo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/image-maid.json", + "mode": "100644", + "type": "blob", + "sha": "d80370daacdf0235298dad558f803f511d76ebc5", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d80370daacdf0235298dad558f803f511d76ebc5" + }, + { + "path": "meta/immich-frame.json", + "mode": "100644", + "type": "blob", + "sha": "89a45080f9cc881710247c4013b9e2e5b20c5011", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89a45080f9cc881710247c4013b9e2e5b20c5011" + }, + { + "path": "meta/immich-kiosk.json", + "mode": "100644", + "type": "blob", + "sha": "5f02202e83ccd94576df7c92800f52e1bad11caa", + "size": 363, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f02202e83ccd94576df7c92800f52e1bad11caa" + }, + { + "path": "meta/immich-power-tools.json", + "mode": "100644", + "type": "blob", + "sha": "20f7fa629ed5c024850a3d183f2920e1c5722bc4", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20f7fa629ed5c024850a3d183f2920e1c5722bc4" + }, + { + "path": "meta/immich-public-proxy.json", + "mode": "100644", + "type": "blob", + "sha": "d5f6f24d4bc3bf73804e1737dc180c4290f54fe3", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5f6f24d4bc3bf73804e1737dc180c4290f54fe3" + }, + { + "path": "meta/immich.json", + "mode": "100644", + "type": "blob", + "sha": "1d14757dca6057a60b3450ab48c7a9e7521a984d", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d14757dca6057a60b3450ab48c7a9e7521a984d" + }, + { + "path": "meta/incus.json", + "mode": "100644", + "type": "blob", + "sha": "45cc90b18ed2276db03bf6301562f6f7d08c5bf5", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45cc90b18ed2276db03bf6301562f6f7d08c5bf5" + }, + { + "path": "meta/infinite-craft.json", + "mode": "100644", + "type": "blob", + "sha": "6cd65cd3e5e947611b12320af98877aee1304b86", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cd65cd3e5e947611b12320af98877aee1304b86" + }, + { + "path": "meta/infisical.json", + "mode": "100644", + "type": "blob", + "sha": "f2298a446510f23e7c8a21fb4ed775735a0e46c3", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2298a446510f23e7c8a21fb4ed775735a0e46c3" + }, + { + "path": "meta/influxdb.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/infoblox.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/infomaniak-k.json", + "mode": "100644", + "type": "blob", + "sha": "0b384ee040ed376e6e789af2b8fdbb940be74d8a", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b384ee040ed376e6e789af2b8fdbb940be74d8a" + }, + { + "path": "meta/infomaniak-kdrive.json", + "mode": "100644", + "type": "blob", + "sha": "15d19dc0beffca3cc547c3102ba7efc31bc66ae6", + "size": 376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15d19dc0beffca3cc547c3102ba7efc31bc66ae6" + }, + { + "path": "meta/infomaniak-kmeet.json", + "mode": "100644", + "type": "blob", + "sha": "39a4acd00e78b227de5578b96511707a7396d9b9", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39a4acd00e78b227de5578b96511707a7396d9b9" + }, + { + "path": "meta/infomaniak-swisstransfer.json", + "mode": "100644", + "type": "blob", + "sha": "08c9cff1698fb772050cdbde06a72f12921f97b1", + "size": 378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08c9cff1698fb772050cdbde06a72f12921f97b1" + }, + { + "path": "meta/inoreader.json", + "mode": "100644", + "type": "blob", + "sha": "96e826c8163a820e81c4eceb2ed2ad52cd47f3eb", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96e826c8163a820e81c4eceb2ed2ad52cd47f3eb" + }, + { + "path": "meta/insanelymac.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/instagram.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/intellij.json", + "mode": "100644", + "type": "blob", + "sha": "301bd80c677deef0fe3f1abbbf9917ee2a644fe6", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/301bd80c677deef0fe3f1abbbf9917ee2a644fe6" + }, + { + "path": "meta/inventree.json", + "mode": "100644", + "type": "blob", + "sha": "fd40a0862821c8514190079154e7daeab3534534", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd40a0862821c8514190079154e7daeab3534534" + }, + { + "path": "meta/invidious.json", + "mode": "100644", + "type": "blob", + "sha": "baf325f06534b7a5833d295b3845bf718e2935c5", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/baf325f06534b7a5833d295b3845bf718e2935c5" + }, + { + "path": "meta/invisioncommunity.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/invoice-ninja.json", + "mode": "100644", + "type": "blob", + "sha": "e82a101395b3ab3cdfff1dad5fd70b7ebb742b70", + "size": 324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e82a101395b3ab3cdfff1dad5fd70b7ebb742b70" + }, + { + "path": "meta/invoiceninja.json", + "mode": "100644", + "type": "blob", + "sha": "1408bb2d1029406099f7a885d3553a2f2c54c94a", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1408bb2d1029406099f7a885d3553a2f2c54c94a" + }, + { + "path": "meta/invoke-ai.json", + "mode": "100644", + "type": "blob", + "sha": "13559e03b490da54461bb77803c8d28c19a23ddb", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13559e03b490da54461bb77803c8d28c19a23ddb" + }, + { + "path": "meta/iobroker.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ionos.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ipboard.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ipcamtalk.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ipfs.json", + "mode": "100644", + "type": "blob", + "sha": "9eee5b164341d3241fe4a47986fca7cd491148f1", + "size": 358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eee5b164341d3241fe4a47986fca7cd491148f1" + }, + { + "path": "meta/irc.json", + "mode": "100644", + "type": "blob", + "sha": "fabf6ec9fe24d8480f65e6483e9df7884e7cdb97", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fabf6ec9fe24d8480f65e6483e9df7884e7cdb97" + }, + { + "path": "meta/iredmail.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ispconfig.json", + "mode": "100644", + "type": "blob", + "sha": "2001b506940310c152a6fd41ec30954d23289150", + "size": 201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2001b506940310c152a6fd41ec30954d23289150" + }, + { + "path": "meta/ispy.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/issabel-pbx.json", + "mode": "100644", + "type": "blob", + "sha": "d2f76fd90dd9772906ef928f9bf1ba1159b5cc56", + "size": 370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2f76fd90dd9772906ef928f9bf1ba1159b5cc56" + }, + { + "path": "meta/it-tools.json", + "mode": "100644", + "type": "blob", + "sha": "07fda8f1605ac693ee0aa16e57cb7db3982987a6", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07fda8f1605ac693ee0aa16e57cb7db3982987a6" + }, + { + "path": "meta/italki.json", + "mode": "100644", + "type": "blob", + "sha": "23abf399f84babb6945a44fee89c065aa444f604", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23abf399f84babb6945a44fee89c065aa444f604" + }, + { + "path": "meta/itau.json", + "mode": "100644", + "type": "blob", + "sha": "e4e7ed2612395ea359ebd545112e0e8b8bbc3746", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4e7ed2612395ea359ebd545112e0e8b8bbc3746" + }, + { + "path": "meta/jackett.json", + "mode": "100644", + "type": "blob", + "sha": "d1af43120312ef34156c83241121401c1f7bdd01", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1af43120312ef34156c83241121401c1f7bdd01" + }, + { + "path": "meta/jaeger.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/jamf.json", + "mode": "100644", + "type": "blob", + "sha": "1f1c6f3a4e0f1cd5dbf9c02cff32da919f61675d", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f1c6f3a4e0f1cd5dbf9c02cff32da919f61675d" + }, + { + "path": "meta/jamstack.json", + "mode": "100644", + "type": "blob", + "sha": "8b1907a7443225eb42b6fc2491abe3bb0733bdc9", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b1907a7443225eb42b6fc2491abe3bb0733bdc9" + }, + { + "path": "meta/java.json", + "mode": "100644", + "type": "blob", + "sha": "1503fc987a032c57b07e599c0cb00de2de99a1af", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1503fc987a032c57b07e599c0cb00de2de99a1af" + }, + { + "path": "meta/javascript.json", + "mode": "100644", + "type": "blob", + "sha": "cb4202406221ae0115566fdd8f9fd5ab3e9f6137", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb4202406221ae0115566fdd8f9fd5ab3e9f6137" + }, + { + "path": "meta/jdownloader.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/jdownloader2.json", + "mode": "100644", + "type": "blob", + "sha": "adaaa9a2b64c6fcc50e2c2f43fbfacff0b027018", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adaaa9a2b64c6fcc50e2c2f43fbfacff0b027018" + }, + { + "path": "meta/jeedom.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/jekyll.json", + "mode": "100644", + "type": "blob", + "sha": "bc6bbc5d5d3c8726256d2766a7425656e81becc2", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc6bbc5d5d3c8726256d2766a7425656e81becc2" + }, + { + "path": "meta/jellyfin-vue.json", + "mode": "100644", + "type": "blob", + "sha": "81f2ea92b5a8bb104b6f05a9e268a3b1001bf5fe", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81f2ea92b5a8bb104b6f05a9e268a3b1001bf5fe" + }, + { + "path": "meta/jellyfin.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/jellyseerr.json", + "mode": "100644", + "type": "blob", + "sha": "eda3469057b55eb401baf0b4d0beba8ec485dc69", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eda3469057b55eb401baf0b4d0beba8ec485dc69" + }, + { + "path": "meta/jellystat.json", + "mode": "100644", + "type": "blob", + "sha": "56703eced58779a82b9e7519ff8f087346426d4f", + "size": 270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56703eced58779a82b9e7519ff8f087346426d4f" + }, + { + "path": "meta/jelu.json", + "mode": "100644", + "type": "blob", + "sha": "80cdaf81a18ffde89870198457a3298d6f0e6ec3", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80cdaf81a18ffde89870198457a3298d6f0e6ec3" + }, + { + "path": "meta/jenkins.json", + "mode": "100644", + "type": "blob", + "sha": "fe60666f6c7f2927f36492af500adcbaa193b8b6", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe60666f6c7f2927f36492af500adcbaa193b8b6" + }, + { + "path": "meta/jetbrains-fleet.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/jetbrains-toolbox.json", + "mode": "100644", + "type": "blob", + "sha": "8657351fc19e41e3bba90c58e88e6b8005d7c266", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8657351fc19e41e3bba90c58e88e6b8005d7c266" + }, + { + "path": "meta/jetbrains-youtrack.json", + "mode": "100644", + "type": "blob", + "sha": "cfa04f605bf5f460f6bd3de90a2832d0c0081673", + "size": 201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfa04f605bf5f460f6bd3de90a2832d0c0081673" + }, + { + "path": "meta/jetkvm-full.json", + "mode": "100644", + "type": "blob", + "sha": "b228ca8db2fd95d7935af81b077d7e17570015eb", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b228ca8db2fd95d7935af81b077d7e17570015eb" + }, + { + "path": "meta/jetkvm.json", + "mode": "100644", + "type": "blob", + "sha": "cc4fbf775a07dae62a54401911b2d9afd7801237", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc4fbf775a07dae62a54401911b2d9afd7801237" + }, + { + "path": "meta/jfrog.json", + "mode": "100644", + "type": "blob", + "sha": "d472e023015d7c01e37c688e3ff70a39e71b69bd", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d472e023015d7c01e37c688e3ff70a39e71b69bd" + }, + { + "path": "meta/jio.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/jiohotstar.json", + "mode": "100644", + "type": "blob", + "sha": "77fff18af595e61458e5ba5e18508c9e7b3e43ee", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77fff18af595e61458e5ba5e18508c9e7b3e43ee" + }, + { + "path": "meta/jira.json", + "mode": "100644", + "type": "blob", + "sha": "a7a50d5fd8634203a5f63a924af3e2aa5b8803d0", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7a50d5fd8634203a5f63a924af3e2aa5b8803d0" + }, + { + "path": "meta/jitsi-meet.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/jitsi.json", + "mode": "100644", + "type": "blob", + "sha": "dafec8835ed944519852aee4dbcd1ee713025aef", + "size": 295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dafec8835ed944519852aee4dbcd1ee713025aef" + }, + { + "path": "meta/joal.json", + "mode": "100644", + "type": "blob", + "sha": "1bdb4128fceb541be77f1c2f9dfa09e57fb2749d", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bdb4128fceb541be77f1c2f9dfa09e57fb2749d" + }, + { + "path": "meta/joomla.json", + "mode": "100644", + "type": "blob", + "sha": "98d006a0afcc86588dfad3fd2649ffe2271b0bbd", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98d006a0afcc86588dfad3fd2649ffe2271b0bbd" + }, + { + "path": "meta/joplin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/jotty.json", + "mode": "100644", + "type": "blob", + "sha": "25e4901c781ee2f35c72f5b3271141e16756b3dc", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25e4901c781ee2f35c72f5b3271141e16756b3dc" + }, + { + "path": "meta/jujutsu-vcs.json", + "mode": "100644", + "type": "blob", + "sha": "93c959de639229aba19384dbfb9a10e18e445956", + "size": 219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93c959de639229aba19384dbfb9a10e18e445956" + }, + { + "path": "meta/julia.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/jupyter.json", + "mode": "100644", + "type": "blob", + "sha": "cb50192a1e930bfd2fcfcb318057cef5e411ae55", + "size": 181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb50192a1e930bfd2fcfcb318057cef5e411ae55" + }, + { + "path": "meta/jwt-io.json", + "mode": "100644", + "type": "blob", + "sha": "8208b38169b4fb6bd9420d2c72f90c82500b4381", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8208b38169b4fb6bd9420d2c72f90c82500b4381" + }, + { + "path": "meta/k-speeder.json", + "mode": "100644", + "type": "blob", + "sha": "1bcb9ba562f22e0fc34661dc137a014965072e18", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bcb9ba562f22e0fc34661dc137a014965072e18" + }, + { + "path": "meta/kagi.json", + "mode": "100644", + "type": "blob", + "sha": "aad1b89bebf08cc0b35eeac642e2fac2ba0e3f9a", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aad1b89bebf08cc0b35eeac642e2fac2ba0e3f9a" + }, + { + "path": "meta/kaizoku.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/kali-linux.json", + "mode": "100644", + "type": "blob", + "sha": "5ca0513a8fd9e3f5a00d1b67452879577db15354", + "size": 230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ca0513a8fd9e3f5a00d1b67452879577db15354" + }, + { + "path": "meta/kamatera.json", + "mode": "100644", + "type": "blob", + "sha": "9f6156f4258a8eac23816db1121a7fda2f2830d0", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f6156f4258a8eac23816db1121a7fda2f2830d0" + }, + { + "path": "meta/kanboard.json", + "mode": "100644", + "type": "blob", + "sha": "74dac264f821c4c8f6c03fbd579e9fd93e46f459", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74dac264f821c4c8f6c03fbd579e9fd93e46f459" + }, + { + "path": "meta/kanidm.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/kapacitor.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/kapowarr.json", + "mode": "100644", + "type": "blob", + "sha": "8d28e594d50d03e99cd3efc778b62a7d77f3ca0c", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d28e594d50d03e99cd3efc778b62a7d77f3ca0c" + }, + { + "path": "meta/karakeep.json", + "mode": "100644", + "type": "blob", + "sha": "959e76ec73ac10797551e34dc6b842110ed967b2", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/959e76ec73ac10797551e34dc6b842110ed967b2" + }, + { + "path": "meta/karaoke-eternal.json", + "mode": "100644", + "type": "blob", + "sha": "ac0b5552451fad26d782aba18c710231d0b53bbc", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac0b5552451fad26d782aba18c710231d0b53bbc" + }, + { + "path": "meta/kasm-workspaces.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kasm.json", + "mode": "100644", + "type": "blob", + "sha": "5322c8d0fb392b271853c5592dd60471f88490dd", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5322c8d0fb392b271853c5592dd60471f88490dd" + }, + { + "path": "meta/kasten-k10.json", + "mode": "100644", + "type": "blob", + "sha": "7014d0eb6c73ee221116128bc4ccac94add08973", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7014d0eb6c73ee221116128bc4ccac94add08973" + }, + { + "path": "meta/kaufland.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kavita.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/kbin.json", + "mode": "100644", + "type": "blob", + "sha": "07ab20793a4f319237a9ed1867e99927274945be", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07ab20793a4f319237a9ed1867e99927274945be" + }, + { + "path": "meta/keenetic-alt.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/keenetic-new.json", + "mode": "100644", + "type": "blob", + "sha": "87dde2cece071ef5361d008dddc986695ba83e40", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87dde2cece071ef5361d008dddc986695ba83e40" + }, + { + "path": "meta/keenetic.json", + "mode": "100644", + "type": "blob", + "sha": "80d293abaf438906b292c3a479f1494d42ada185", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80d293abaf438906b292c3a479f1494d42ada185" + }, + { + "path": "meta/keepassxc.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/keila.json", + "mode": "100644", + "type": "blob", + "sha": "527c457cb9e8cdbe6324bc1a072a5fd7f8926b07", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/527c457cb9e8cdbe6324bc1a072a5fd7f8926b07" + }, + { + "path": "meta/kerberos.json", + "mode": "100644", + "type": "blob", + "sha": "735254898ac3611a4ed916835a40c1b3000bdc32", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/735254898ac3611a4ed916835a40c1b3000bdc32" + }, + { + "path": "meta/kestra.json", + "mode": "100644", + "type": "blob", + "sha": "60ceb7d2c83ae1ecfd654138356130cb947004b7", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60ceb7d2c83ae1ecfd654138356130cb947004b7" + }, + { + "path": "meta/keycloak.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/keyoxide-alt.json", + "mode": "100644", + "type": "blob", + "sha": "8446f4a9382bd8238df7a6282cf29336b0d539c6", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8446f4a9382bd8238df7a6282cf29336b0d539c6" + }, + { + "path": "meta/keyoxide.json", + "mode": "100644", + "type": "blob", + "sha": "8446f4a9382bd8238df7a6282cf29336b0d539c6", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8446f4a9382bd8238df7a6282cf29336b0d539c6" + }, + { + "path": "meta/kibana.json", + "mode": "100644", + "type": "blob", + "sha": "605f9c9cc62e83fae19153ca03dbfae5a816a091", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/605f9c9cc62e83fae19153ca03dbfae5a816a091" + }, + { + "path": "meta/kick.json", + "mode": "100644", + "type": "blob", + "sha": "d88b5d9e539a0e90bf3e5af78cdfa9b8d2d76cf6", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d88b5d9e539a0e90bf3e5af78cdfa9b8d2d76cf6" + }, + { + "path": "meta/kimai.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kimi-ai.json", + "mode": "100644", + "type": "blob", + "sha": "c8fe150863fb406d848764dc8680fb02d5778a86", + "size": 196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8fe150863fb406d848764dc8680fb02d5778a86" + }, + { + "path": "meta/kinto.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kitana.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kitchenowl.json", + "mode": "100644", + "type": "blob", + "sha": "94c4e7233c213b6c4acbaf47a5c6b5408c3fc52b", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94c4e7233c213b6c4acbaf47a5c6b5408c3fc52b" + }, + { + "path": "meta/kiwix.json", + "mode": "100644", + "type": "blob", + "sha": "1798574538546ceae8c100447240b03b8979bb28", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1798574538546ceae8c100447240b03b8979bb28" + }, + { + "path": "meta/kleinanzeigen.json", + "mode": "100644", + "type": "blob", + "sha": "614c7be71aca22c1eebd459472416a4778e75364", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/614c7be71aca22c1eebd459472416a4778e75364" + }, + { + "path": "meta/kleopatra.json", + "mode": "100644", + "type": "blob", + "sha": "90c05113e191a4237d35109ebeeaef83f0e8bb86", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90c05113e191a4237d35109ebeeaef83f0e8bb86" + }, + { + "path": "meta/klipper.json", + "mode": "100644", + "type": "blob", + "sha": "5300c188d25932817f78f6210d8d867e8e325304", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5300c188d25932817f78f6210d8d867e8e325304" + }, + { + "path": "meta/knx.json", + "mode": "100644", + "type": "blob", + "sha": "568cf23d8fe90935039d71946622772fbfe7293f", + "size": 220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568cf23d8fe90935039d71946622772fbfe7293f" + }, + { + "path": "meta/ko-fi.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ko-insight.json", + "mode": "100644", + "type": "blob", + "sha": "98798ff288483bf9e8f977709e5865cb5b12059a", + "size": 202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98798ff288483bf9e8f977709e5865cb5b12059a" + }, + { + "path": "meta/koboldcpp.json", + "mode": "100644", + "type": "blob", + "sha": "5c934e651a2660b21ad55cb338198631afa28795", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c934e651a2660b21ad55cb338198631afa28795" + }, + { + "path": "meta/kodi.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/koel.json", + "mode": "100644", + "type": "blob", + "sha": "e84b57e00e0a80739400366cf5b337d8e76f6704", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e84b57e00e0a80739400366cf5b337d8e76f6704" + }, + { + "path": "meta/koillection.json", + "mode": "100644", + "type": "blob", + "sha": "44021e7748396b93b45c485142dcba08e9c6e30c", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44021e7748396b93b45c485142dcba08e9c6e30c" + }, + { + "path": "meta/koito.json", + "mode": "100644", + "type": "blob", + "sha": "273dafb3f5d0aa4fc94e047fa7677b6943c21906", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/273dafb3f5d0aa4fc94e047fa7677b6943c21906" + }, + { + "path": "meta/kokoro-web.json", + "mode": "100644", + "type": "blob", + "sha": "62469cc23b83d5bedecd824e631c4b3e6b1f425f", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62469cc23b83d5bedecd824e631c4b3e6b1f425f" + }, + { + "path": "meta/kometa.json", + "mode": "100644", + "type": "blob", + "sha": "2d3cd13a434beeeca8fa202a02bbd8449bdb7a88", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d3cd13a434beeeca8fa202a02bbd8449bdb7a88" + }, + { + "path": "meta/komga.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/komodo.json", + "mode": "100644", + "type": "blob", + "sha": "990e2f6337238dafc4d36c96f4584e6fa63e71d1", + "size": 248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/990e2f6337238dafc4d36c96f4584e6fa63e71d1" + }, + { + "path": "meta/kontoj.json", + "mode": "100644", + "type": "blob", + "sha": "b12da60371ffa7edfc3853a71775e3b0a5fa15d5", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b12da60371ffa7edfc3853a71775e3b0a5fa15d5" + }, + { + "path": "meta/kook.json", + "mode": "100644", + "type": "blob", + "sha": "ea5229f61d999dfd833944d8b6db2e1640dbbd8d", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea5229f61d999dfd833944d8b6db2e1640dbbd8d" + }, + { + "path": "meta/kopia.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kotlin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/kpn.json", + "mode": "100644", + "type": "blob", + "sha": "b459eaed3fe3830cc5c8498490bc02f932d950ef", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b459eaed3fe3830cc5c8498490bc02f932d950ef" + }, + { + "path": "meta/krakend.json", + "mode": "100644", + "type": "blob", + "sha": "f1fd0329ac401eb1c451f4e228a1729f8a240812", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1fd0329ac401eb1c451f4e228a1729f8a240812" + }, + { + "path": "meta/krusader.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ksuite.json", + "mode": "100644", + "type": "blob", + "sha": "4fe73ed342fe6f648c2821694fd478e797f2502f", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fe73ed342fe6f648c2821694fd478e797f2502f" + }, + { + "path": "meta/kubecraft.json", + "mode": "100644", + "type": "blob", + "sha": "b6f5918655ada944c8588a7844fe1a2b74c9096c", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6f5918655ada944c8588a7844fe1a2b74c9096c" + }, + { + "path": "meta/kubernetes-dashboard.json", + "mode": "100644", + "type": "blob", + "sha": "7ecabaee50f6076434ef47680f5ea586c3463890", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ecabaee50f6076434ef47680f5ea586c3463890" + }, + { + "path": "meta/kubernetes.json", + "mode": "100644", + "type": "blob", + "sha": "f52af7fc309995a293b378914515218da257d9dd", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f52af7fc309995a293b378914515218da257d9dd" + }, + { + "path": "meta/kubuntu-linux.json", + "mode": "100644", + "type": "blob", + "sha": "a7953442ba74800fbab1235de733ea56e34ef0c6", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7953442ba74800fbab1235de733ea56e34ef0c6" + }, + { + "path": "meta/kutt.json", + "mode": "100644", + "type": "blob", + "sha": "404d9e240c4845a842240940fae85c94e1b49172", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/404d9e240c4845a842240940fae85c94e1b49172" + }, + { + "path": "meta/kyoo.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/lancache.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/lancommander.json", + "mode": "100644", + "type": "blob", + "sha": "2cd060df6262523588a687d9e2c1b47bc17554b0", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cd060df6262523588a687d9e2c1b47bc17554b0" + }, + { + "path": "meta/lanraragi.json", + "mode": "100644", + "type": "blob", + "sha": "ab6e26996929f23754823f331ba8e356d299b4b9", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab6e26996929f23754823f331ba8e356d299b4b9" + }, + { + "path": "meta/laravel.json", + "mode": "100644", + "type": "blob", + "sha": "6a9f6c120dc31f062b2632559af736efb77d871f", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a9f6c120dc31f062b2632559af736efb77d871f" + }, + { + "path": "meta/lark.json", + "mode": "100644", + "type": "blob", + "sha": "bfffe5d4079cb9d1ebf553c585ae090c9edf8d63", + "size": 181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfffe5d4079cb9d1ebf553c585ae090c9edf8d63" + }, + { + "path": "meta/lastpass.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/lazylibrarian.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ldap-account-manager.json", + "mode": "100644", + "type": "blob", + "sha": "ff44d93ea8aa0d9b9b4cf57041121e098986fb0e", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff44d93ea8aa0d9b9b4cf57041121e098986fb0e" + }, + { + "path": "meta/leanote.json", + "mode": "100644", + "type": "blob", + "sha": "9cbe21f223b8a764132761f195fc4a4c86232cc3", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cbe21f223b8a764132761f195fc4a4c86232cc3" + }, + { + "path": "meta/leantime.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/leargas-security.json", + "mode": "100644", + "type": "blob", + "sha": "fe0da3c92400ea129170dbcfa0e8762dd881fd22", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe0da3c92400ea129170dbcfa0e8762dd881fd22" + }, + { + "path": "meta/leetcode.json", + "mode": "100644", + "type": "blob", + "sha": "4c5d7acfccd35fe8977f211e45752fdf05968eeb", + "size": 292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c5d7acfccd35fe8977f211e45752fdf05968eeb" + }, + { + "path": "meta/lemmy.json", + "mode": "100644", + "type": "blob", + "sha": "7ed0c330079c9fda33497ec8140c261b58f6c844", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ed0c330079c9fda33497ec8140c261b58f6c844" + }, + { + "path": "meta/lemonldap-ng.json", + "mode": "100644", + "type": "blob", + "sha": "eb81357917d2bef537223fa27efe38048fecba34", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb81357917d2bef537223fa27efe38048fecba34" + }, + { + "path": "meta/lets-encrypt.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/lexmark.json", + "mode": "100644", + "type": "blob", + "sha": "0f7f69cd33ea3521fbd4e9a3d288933f70aa17af", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f7f69cd33ea3521fbd4e9a3d288933f70aa17af" + }, + { + "path": "meta/libation.json", + "mode": "100644", + "type": "blob", + "sha": "600a42754f41b7b33970ca0ecf5a094b1447e707", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/600a42754f41b7b33970ca0ecf5a094b1447e707" + }, + { + "path": "meta/librechat.json", + "mode": "100644", + "type": "blob", + "sha": "4b68ea880784b1831477ec1f3bc78f8cfd19392a", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b68ea880784b1831477ec1f3bc78f8cfd19392a" + }, + { + "path": "meta/libreddit.json", + "mode": "100644", + "type": "blob", + "sha": "31a7e02af34c075427ee50049a581694835734c5", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31a7e02af34c075427ee50049a581694835734c5" + }, + { + "path": "meta/libremdb.json", + "mode": "100644", + "type": "blob", + "sha": "33bf32632373dc74afcb2fc94ddc41f89e36a7ba", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33bf32632373dc74afcb2fc94ddc41f89e36a7ba" + }, + { + "path": "meta/librenms.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/libreoffice.json", + "mode": "100644", + "type": "blob", + "sha": "08d80ee849de27e64ec9f9c00141fef742af0d86", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08d80ee849de27e64ec9f9c00141fef742af0d86" + }, + { + "path": "meta/librephotos.json", + "mode": "100644", + "type": "blob", + "sha": "c1bf92aaee14f328105aa0dc5dd52f735d3ebdb9", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1bf92aaee14f328105aa0dc5dd52f735d3ebdb9" + }, + { + "path": "meta/librespeed.json", + "mode": "100644", + "type": "blob", + "sha": "27ba536cb0f876bd2e3a4fd6337975747cf07ed0", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27ba536cb0f876bd2e3a4fd6337975747cf07ed0" + }, + { + "path": "meta/librewolf.json", + "mode": "100644", + "type": "blob", + "sha": "93c05bcb7683cff6e9954cd5c1a40b4b3ffe5d26", + "size": 229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93c05bcb7683cff6e9954cd5c1a40b4b3ffe5d26" + }, + { + "path": "meta/librex.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/librey.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/librum.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/lichess.json", + "mode": "100644", + "type": "blob", + "sha": "fce229bf28dca11e36396c5361d7eeb551f02566", + "size": 279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fce229bf28dca11e36396c5361d7eeb551f02566" + }, + { + "path": "meta/lidarr.json", + "mode": "100644", + "type": "blob", + "sha": "34e59523515d54a5f270f55c0b53390ac50b6e64", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34e59523515d54a5f270f55c0b53390ac50b6e64" + }, + { + "path": "meta/lidl.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/lightning-terminal.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/lighttpd.json", + "mode": "100644", + "type": "blob", + "sha": "fd2895a96fbd9efb0dcd8ef5419fe301bfba1e32", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd2895a96fbd9efb0dcd8ef5419fe301bfba1e32" + }, + { + "path": "meta/limesurvey.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/linear.json", + "mode": "100644", + "type": "blob", + "sha": "a12d3740cc407767d3ac8f5316a94daad228a63c", + "size": 305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a12d3740cc407767d3ac8f5316a94daad228a63c" + }, + { + "path": "meta/linguacafe.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/linkace.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/linkding.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/linkedin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/linkstack.json", + "mode": "100644", + "type": "blob", + "sha": "8ad0d860f8c425d6431508f5c0a7a6654824adfb", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ad0d860f8c425d6431508f5c0a7a6654824adfb" + }, + { + "path": "meta/linksys.json", + "mode": "100644", + "type": "blob", + "sha": "87dde2cece071ef5361d008dddc986695ba83e40", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87dde2cece071ef5361d008dddc986695ba83e40" + }, + { + "path": "meta/linkwarden.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/linode.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/linux-mint.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/linux.json", + "mode": "100644", + "type": "blob", + "sha": "7de47e8c794ea82087de8816cfda9f47c272d705", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7de47e8c794ea82087de8816cfda9f47c272d705" + }, + { + "path": "meta/linuxdo.json", + "mode": "100644", + "type": "blob", + "sha": "83919b8aab5f6125e8e1b78adb8744a75dd56c19", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83919b8aab5f6125e8e1b78adb8744a75dd56c19" + }, + { + "path": "meta/linuxgsm.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/linuxserver-io.json", + "mode": "100644", + "type": "blob", + "sha": "220a86d656be6e4479cd986eceecfb1837f6f294", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/220a86d656be6e4479cd986eceecfb1837f6f294" + }, + { + "path": "meta/liremdb.json", + "mode": "100644", + "type": "blob", + "sha": "8bb322b64bea5ffb27c21b7096a0bf80fcc9bcd1", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bb322b64bea5ffb27c21b7096a0bf80fcc9bcd1" + }, + { + "path": "meta/listenbrainz.json", + "mode": "100644", + "type": "blob", + "sha": "43f7737ff37e180c37a0a16ecd355fb251cd3d8c", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43f7737ff37e180c37a0a16ecd355fb251cd3d8c" + }, + { + "path": "meta/listmonk.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/lite-speed.json", + "mode": "100644", + "type": "blob", + "sha": "02c345a6c31b30b3d18198269e83b8eff1f2873a", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02c345a6c31b30b3d18198269e83b8eff1f2873a" + }, + { + "path": "meta/littlelink-custom.json", + "mode": "100644", + "type": "blob", + "sha": "e663db096f607f1941f7634784f8e6ddebfb342a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e663db096f607f1941f7634784f8e6ddebfb342a" + }, + { + "path": "meta/livebook.json", + "mode": "100644", + "type": "blob", + "sha": "1d76b1907df411c203109f537f39764a52dc976d", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d76b1907df411c203109f537f39764a52dc976d" + }, + { + "path": "meta/lldap.json", + "mode": "100644", + "type": "blob", + "sha": "dbe6cc5f057e6fa265fc65927d5cee6d182e9c7e", + "size": 297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbe6cc5f057e6fa265fc65927d5cee6d182e9c7e" + }, + { + "path": "meta/lms-mixtape.json", + "mode": "100644", + "type": "blob", + "sha": "e89656ef26da35ec215458173cad8dedaeb16341", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e89656ef26da35ec215458173cad8dedaeb16341" + }, + { + "path": "meta/lnbits.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/lobe-chat.json", + "mode": "100644", + "type": "blob", + "sha": "1876a0486aa46b799e18eb8d6799f463ca9d2637", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1876a0486aa46b799e18eb8d6799f463ca9d2637" + }, + { + "path": "meta/local-content-share.json", + "mode": "100644", + "type": "blob", + "sha": "d0e2db08d5d4b55594a72e9efb4fb3166e19074d", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0e2db08d5d4b55594a72e9efb4fb3166e19074d" + }, + { + "path": "meta/local-xpose.json", + "mode": "100644", + "type": "blob", + "sha": "871b484efde7123371b814ceb425a0d6890ba701", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/871b484efde7123371b814ceb425a0d6890ba701" + }, + { + "path": "meta/locals.json", + "mode": "100644", + "type": "blob", + "sha": "0ce848e61623bd95a11d554d7d0e1c18566b2ffd", + "size": 358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ce848e61623bd95a11d554d7d0e1c18566b2ffd" + }, + { + "path": "meta/lodestone.json", + "mode": "100644", + "type": "blob", + "sha": "d7b0687bb5fb0c64025537b285ae41bed7dc8041", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7b0687bb5fb0c64025537b285ae41bed7dc8041" + }, + { + "path": "meta/logitech-gaming.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/logitech-legacy.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/logitech.json", + "mode": "100644", + "type": "blob", + "sha": "eaafaa1a98fc6ff9f3361c91e1c87127eff2140c", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaafaa1a98fc6ff9f3361c91e1c87127eff2140c" + }, + { + "path": "meta/logseq.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/logstash.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/logto.json", + "mode": "100644", + "type": "blob", + "sha": "1d5389b40153d4ed90fe9408c5745a3e288fed16", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d5389b40153d4ed90fe9408c5745a3e288fed16" + }, + { + "path": "meta/loki.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/longhorn.json", + "mode": "100644", + "type": "blob", + "sha": "d20b4931f8aa7ee449f1ff71ef6639552ba3a338", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d20b4931f8aa7ee449f1ff71ef6639552ba3a338" + }, + { + "path": "meta/lostack.json", + "mode": "100644", + "type": "blob", + "sha": "32179965ebadb005a21d928866d75d247e95b5b4", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32179965ebadb005a21d928866d75d247e95b5b4" + }, + { + "path": "meta/loxone-full.json", + "mode": "100644", + "type": "blob", + "sha": "ceeb3a2da5dc1b130d3051bc70a1b12e69fff1d8", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ceeb3a2da5dc1b130d3051bc70a1b12e69fff1d8" + }, + { + "path": "meta/loxone.json", + "mode": "100644", + "type": "blob", + "sha": "0b6e2b09d1f2bc99954a52e71fcc3dfb7dd26c9d", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b6e2b09d1f2bc99954a52e71fcc3dfb7dd26c9d" + }, + { + "path": "meta/lsio.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/lua.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/lubelogger.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/lubuntu-linux.json", + "mode": "100644", + "type": "blob", + "sha": "b6aec29070a4af4d81a4156d9676142c3152c7a1", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6aec29070a4af4d81a4156d9676142c3152c7a1" + }, + { + "path": "meta/ludus.json", + "mode": "100644", + "type": "blob", + "sha": "15cf6b8576c7bc295d9e313650a34749e7f9d1a8", + "size": 319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15cf6b8576c7bc295d9e313650a34749e7f9d1a8" + }, + { + "path": "meta/lunalytics.json", + "mode": "100644", + "type": "blob", + "sha": "309c747c6023d847227f7495c254084f40d8ed6f", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/309c747c6023d847227f7495c254084f40d8ed6f" + }, + { + "path": "meta/lunasea.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/luxriot.json", + "mode": "100644", + "type": "blob", + "sha": "98bface08f5c38a8129ce5d84e328771d883b713", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98bface08f5c38a8129ce5d84e328771d883b713" + }, + { + "path": "meta/lychee.json", + "mode": "100644", + "type": "blob", + "sha": "32e64db37a75476dc47ccab146fda5f379452432", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32e64db37a75476dc47ccab146fda5f379452432" + }, + { + "path": "meta/lynx.json", + "mode": "100644", + "type": "blob", + "sha": "641d07c66093a75b8e9d84262cb9b0f29d322177", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/641d07c66093a75b8e9d84262cb9b0f29d322177" + }, + { + "path": "meta/lyrion.json", + "mode": "100644", + "type": "blob", + "sha": "8d770c62ad3cc3aaa2a39e507214d643fba43641", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d770c62ad3cc3aaa2a39e507214d643fba43641" + }, + { + "path": "meta/macmon.json", + "mode": "100644", + "type": "blob", + "sha": "890bbbde3348a18911607d8d8a9883a6adc46ffc", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/890bbbde3348a18911607d8d8a9883a6adc46ffc" + }, + { + "path": "meta/mail-in-a-box.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mailchimp.json", + "mode": "100644", + "type": "blob", + "sha": "b3cda00b1c85e4007cbcc0086cd0ae6591415c7b", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3cda00b1c85e4007cbcc0086cd0ae6591415c7b" + }, + { + "path": "meta/mailcow.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mailcowsogo.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/mailfence.json", + "mode": "100644", + "type": "blob", + "sha": "b9689a7d83e867708bdcf9705557903b192b8b75", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9689a7d83e867708bdcf9705557903b192b8b75" + }, + { + "path": "meta/mailgun.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mailhog.json", + "mode": "100644", + "type": "blob", + "sha": "0e7080cb149ad796927dbff36aad3b4ffccf92d4", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e7080cb149ad796927dbff36aad3b4ffccf92d4" + }, + { + "path": "meta/mailjet.json", + "mode": "100644", + "type": "blob", + "sha": "c5799a0afe20796c55bcda86c871ff0d99246293", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5799a0afe20796c55bcda86c871ff0d99246293" + }, + { + "path": "meta/mailpit.json", + "mode": "100644", + "type": "blob", + "sha": "50b281232088dcbdc7043b61e74d8105308c95b3", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50b281232088dcbdc7043b61e74d8105308c95b3" + }, + { + "path": "meta/mailu.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/mainsail.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/maintainerr.json", + "mode": "100644", + "type": "blob", + "sha": "ac908d0c23d254660c21e39e14fe411245415269", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac908d0c23d254660c21e39e14fe411245415269" + }, + { + "path": "meta/mak.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/makemkv.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/maker-world.json", + "mode": "100644", + "type": "blob", + "sha": "08c0ca6c543b4d087a5f37fc92f7588e8aaf537e", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08c0ca6c543b4d087a5f37fc92f7588e8aaf537e" + }, + { + "path": "meta/maloja.json", + "mode": "100644", + "type": "blob", + "sha": "ad25906898a6b679429f165006d1dff7a4bf1330", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad25906898a6b679429f165006d1dff7a4bf1330" + }, + { + "path": "meta/manga-dex.json", + "mode": "100644", + "type": "blob", + "sha": "8c548c937c4e53bb001a495da6b4b4f220d14621", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c548c937c4e53bb001a495da6b4b4f220d14621" + }, + { + "path": "meta/mango.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/manjaro-linux.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mantisbt.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/many-notes.json", + "mode": "100644", + "type": "blob", + "sha": "bcc13ac576b05cc9885730ea3a216dd5f238e57b", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcc13ac576b05cc9885730ea3a216dd5f238e57b" + }, + { + "path": "meta/manyfold.json", + "mode": "100644", + "type": "blob", + "sha": "66f4260042424bf4b0b4e045949a9e6de6c1fe10", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66f4260042424bf4b0b4e045949a9e6de6c1fe10" + }, + { + "path": "meta/maptiler.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/marginalia.json", + "mode": "100644", + "type": "blob", + "sha": "017fdcbffe86bd67af0bbd669b4e47d3e49d4bc2", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/017fdcbffe86bd67af0bbd669b4e47d3e49d4bc2" + }, + { + "path": "meta/mariadb.json", + "mode": "100644", + "type": "blob", + "sha": "c2defa1710b134c94984cf4614ef50bde4722104", + "size": 222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2defa1710b134c94984cf4614ef50bde4722104" + }, + { + "path": "meta/marimo.json", + "mode": "100644", + "type": "blob", + "sha": "c97613ea77a3df79ec7d11dbec1ab017717606ed", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c97613ea77a3df79ec7d11dbec1ab017717606ed" + }, + { + "path": "meta/marktplaats.json", + "mode": "100644", + "type": "blob", + "sha": "e5e36c11c252ad5802208e45216329fc1394cb6a", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5e36c11c252ad5802208e45216329fc1394cb6a" + }, + { + "path": "meta/marzban.json", + "mode": "100644", + "type": "blob", + "sha": "7d79285df47a4dbc92415e783bdfc0ac09148d59", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d79285df47a4dbc92415e783bdfc0ac09148d59" + }, + { + "path": "meta/mastodon.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/matomo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/matrix-synapse.json", + "mode": "100644", + "type": "blob", + "sha": "631a087a5a10c24a8c9fea522bfbebc3e7ff6a6c", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/631a087a5a10c24a8c9fea522bfbebc3e7ff6a6c" + }, + { + "path": "meta/matrix.json", + "mode": "100644", + "type": "blob", + "sha": "5af5df7a7977b8179b8014b854a462eea198b4df", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5af5df7a7977b8179b8014b854a462eea198b4df" + }, + { + "path": "meta/matter.json", + "mode": "100644", + "type": "blob", + "sha": "47b121db033be0dc971adb11d6eaf30153bb4221", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47b121db033be0dc971adb11d6eaf30153bb4221" + }, + { + "path": "meta/matterbridge.json", + "mode": "100644", + "type": "blob", + "sha": "4fd523a4b8667606997fb83c6a015bf1ccf659c9", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fd523a4b8667606997fb83c6a015bf1ccf659c9" + }, + { + "path": "meta/mattermost.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mautic.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/max.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mayan-edms.json", + "mode": "100644", + "type": "blob", + "sha": "770bbaf9ca81a4d842ef77bd9d999a614d465ee5", + "size": 327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/770bbaf9ca81a4d842ef77bd9d999a614d465ee5" + }, + { + "path": "meta/maybe.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mazanoke.json", + "mode": "100644", + "type": "blob", + "sha": "04812932dab9ec826950941a3de2c51609b09525", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04812932dab9ec826950941a3de2c51609b09525" + }, + { + "path": "meta/mbin.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mcmyadmin.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/mealie.json", + "mode": "100644", + "type": "blob", + "sha": "3ad286fa747fa34f8736c19d5560ce4e26f6dc21", + "size": 234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ad286fa747fa34f8736c19d5560ce4e26f6dc21" + }, + { + "path": "meta/medama.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/media-manager.json", + "mode": "100644", + "type": "blob", + "sha": "212d93eeb95a04487de8468d34b690ca976eeac8", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/212d93eeb95a04487de8468d34b690ca976eeac8" + }, + { + "path": "meta/mediathekview.json", + "mode": "100644", + "type": "blob", + "sha": "e6d548d16c62b77f5d5a921f27cffea7379a6ad4", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6d548d16c62b77f5d5a921f27cffea7379a6ad4" + }, + { + "path": "meta/mediawiki.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/medium.json", + "mode": "100644", + "type": "blob", + "sha": "dcb07906a5329133de390dcdc0a42e337ecb6628", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcb07906a5329133de390dcdc0a42e337ecb6628" + }, + { + "path": "meta/mediux.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/medusa.json", + "mode": "100644", + "type": "blob", + "sha": "83dac2aee315f3c2e1200c8364c90c38616fe6c3", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83dac2aee315f3c2e1200c8364c90c38616fe6c3" + }, + { + "path": "meta/mega-nz.json", + "mode": "100644", + "type": "blob", + "sha": "b21c7b4291531d0c54f8e155ca2dba6478bb1be5", + "size": 331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b21c7b4291531d0c54f8e155ca2dba6478bb1be5" + }, + { + "path": "meta/meilisearch.json", + "mode": "100644", + "type": "blob", + "sha": "40e0632248725124d0d4fa76769625ba5165ce09", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40e0632248725124d0d4fa76769625ba5165ce09" + }, + { + "path": "meta/mem-ai.json", + "mode": "100644", + "type": "blob", + "sha": "d00fd527c45434af9b988d9a453c2fbdea2fb89d", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d00fd527c45434af9b988d9a453c2fbdea2fb89d" + }, + { + "path": "meta/memories.json", + "mode": "100644", + "type": "blob", + "sha": "60056e9d636c155e0b91710ce848b9ef6649d19e", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60056e9d636c155e0b91710ce848b9ef6649d19e" + }, + { + "path": "meta/memos.json", + "mode": "100644", + "type": "blob", + "sha": "fe9290ca8e813ede76a6e0bca4fa3fa969da6dc9", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe9290ca8e813ede76a6e0bca4fa3fa969da6dc9" + }, + { + "path": "meta/mempool.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/meraki.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mercusys.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mergeable.json", + "mode": "100644", + "type": "blob", + "sha": "2d4f183e998e403ed13643d5620ef02b2ad19d1a", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d4f183e998e403ed13643d5620ef02b2ad19d1a" + }, + { + "path": "meta/meshcentral.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/meshping.json", + "mode": "100644", + "type": "blob", + "sha": "59635106f83896c8dcceead1045820274a4f7774", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59635106f83896c8dcceead1045820274a4f7774" + }, + { + "path": "meta/meshtastic.json", + "mode": "100644", + "type": "blob", + "sha": "399e8076c098a9b5a9fbdddef0f92159a834d221", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/399e8076c098a9b5a9fbdddef0f92159a834d221" + }, + { + "path": "meta/meta.json", + "mode": "100644", + "type": "blob", + "sha": "4f04c71b522b10a41b2dbcebde0fccc1c6bc227a", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f04c71b522b10a41b2dbcebde0fccc1c6bc227a" + }, + { + "path": "meta/metabase.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/metabrainz.json", + "mode": "100644", + "type": "blob", + "sha": "29e1a9b0cdb95a3dd5467416d38cbecff3c80515", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29e1a9b0cdb95a3dd5467416d38cbecff3c80515" + }, + { + "path": "meta/metallb.json", + "mode": "100644", + "type": "blob", + "sha": "c10e5e171d7d311b4ba6f9f00262feebb9d398c5", + "size": 359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c10e5e171d7d311b4ba6f9f00262feebb9d398c5" + }, + { + "path": "meta/metube.json", + "mode": "100644", + "type": "blob", + "sha": "a651719f549478982e5ce44e10191647fe8261cd", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a651719f549478982e5ce44e10191647fe8261cd" + }, + { + "path": "meta/microbin.json", + "mode": "100644", + "type": "blob", + "sha": "db0e47cd574cbbea53da7e88ec99ce3d7af62539", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db0e47cd574cbbea53da7e88ec99ce3d7af62539" + }, + { + "path": "meta/microsoft-365-admin-center.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-365.json", + "mode": "100644", + "type": "blob", + "sha": "047aca6e9861416c8751c6ae66a7a716f752606f", + "size": 181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/047aca6e9861416c8751c6ae66a7a716f752606f" + }, + { + "path": "meta/microsoft-access.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-azure.json", + "mode": "100644", + "type": "blob", + "sha": "b60dd5e4a466ff116e8b51052d33a018146a24a8", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b60dd5e4a466ff116e8b51052d33a018146a24a8" + }, + { + "path": "meta/microsoft-bing.json", + "mode": "100644", + "type": "blob", + "sha": "9413b8065b14d40960983cddcc280e734f2fbede", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9413b8065b14d40960983cddcc280e734f2fbede" + }, + { + "path": "meta/microsoft-copilot.json", + "mode": "100644", + "type": "blob", + "sha": "f82abbeb9830f794353979ef8ce4a8142378323b", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f82abbeb9830f794353979ef8ce4a8142378323b" + }, + { + "path": "meta/microsoft-defender.json", + "mode": "100644", + "type": "blob", + "sha": "da508680427e124f5cc357d1b20e78e190932597", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da508680427e124f5cc357d1b20e78e190932597" + }, + { + "path": "meta/microsoft-edge.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-excel.json", + "mode": "100644", + "type": "blob", + "sha": "c3a0bb0168988eeeedb202374c2b526192c873ee", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3a0bb0168988eeeedb202374c2b526192c873ee" + }, + { + "path": "meta/microsoft-exchange.json", + "mode": "100644", + "type": "blob", + "sha": "fad64ce06d2a16b9c542a1046435fa927c0a2439", + "size": 275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fad64ce06d2a16b9c542a1046435fa927c0a2439" + }, + { + "path": "meta/microsoft-intune.json", + "mode": "100644", + "type": "blob", + "sha": "ca546c3965f56694f3ab2367eb2bcf2875ed5df9", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca546c3965f56694f3ab2367eb2bcf2875ed5df9" + }, + { + "path": "meta/microsoft-office.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/microsoft-onedrive.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-onenote.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-outlook.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-power-automate.json", + "mode": "100644", + "type": "blob", + "sha": "c6e92d9de599126eb9f8e7177e0abf594e6137de", + "size": 220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6e92d9de599126eb9f8e7177e0abf594e6137de" + }, + { + "path": "meta/microsoft-powerpoint.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-remote-desktop.json", + "mode": "100644", + "type": "blob", + "sha": "a9ba8ff44d347786c2f972a5e68eab2853d2a091", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9ba8ff44d347786c2f972a5e68eab2853d2a091" + }, + { + "path": "meta/microsoft-sharepoint.json", + "mode": "100644", + "type": "blob", + "sha": "aea182d2ad842c0f31795cb23b9c800225db6f6a", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aea182d2ad842c0f31795cb23b9c800225db6f6a" + }, + { + "path": "meta/microsoft-sql-server.json", + "mode": "100644", + "type": "blob", + "sha": "d85c0867ce65fc5bdf0af66d3863669804928bee", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d85c0867ce65fc5bdf0af66d3863669804928bee" + }, + { + "path": "meta/microsoft-teams.json", + "mode": "100644", + "type": "blob", + "sha": "b60dd5e4a466ff116e8b51052d33a018146a24a8", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b60dd5e4a466ff116e8b51052d33a018146a24a8" + }, + { + "path": "meta/microsoft-to-do.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-windows.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft-word.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/microsoft.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/midjourney.json", + "mode": "100644", + "type": "blob", + "sha": "9a703964a955d25a44c838ab2e8b1fc04f2b0c24", + "size": 354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a703964a955d25a44c838ab2e8b1fc04f2b0c24" + }, + { + "path": "meta/mikrotik.json", + "mode": "100644", + "type": "blob", + "sha": "188168183775cf9e4539a822dc2340d42faf14a3", + "size": 353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/188168183775cf9e4539a822dc2340d42faf14a3" + }, + { + "path": "meta/minecraft.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mineos.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/miniflux.json", + "mode": "100644", + "type": "blob", + "sha": "0bb739ea2199ef7dddc3f87ad112ccc9991bfa59", + "size": 327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bb739ea2199ef7dddc3f87ad112ccc9991bfa59" + }, + { + "path": "meta/minimserver.json", + "mode": "100644", + "type": "blob", + "sha": "e99d336bc79ed7f652a80b1255ef3fae36e3ffc2", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e99d336bc79ed7f652a80b1255ef3fae36e3ffc2" + }, + { + "path": "meta/minio.json", + "mode": "100644", + "type": "blob", + "sha": "6c1dbb0934b3754aea8aeaf600899b3c3b7bf4e0", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c1dbb0934b3754aea8aeaf600899b3c3b7bf4e0" + }, + { + "path": "meta/miro.json", + "mode": "100644", + "type": "blob", + "sha": "cce1ec833f3051b3a79a844a39e05c4c82cab56f", + "size": 226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cce1ec833f3051b3a79a844a39e05c4c82cab56f" + }, + { + "path": "meta/misp.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/misskey.json", + "mode": "100644", + "type": "blob", + "sha": "3bd16f4bfdf04bf698e596ecc370434660ce2061", + "size": 340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bd16f4bfdf04bf698e596ecc370434660ce2061" + }, + { + "path": "meta/mistral-ai.json", + "mode": "100644", + "type": "blob", + "sha": "303d017591b92bc572f7739168b73dac5e055662", + "size": 237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/303d017591b92bc572f7739168b73dac5e055662" + }, + { + "path": "meta/mitra.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mixpost.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mkdocs.json", + "mode": "100644", + "type": "blob", + "sha": "9dd275545c93ebec280357ce62a07089767823fc", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dd275545c93ebec280357ce62a07089767823fc" + }, + { + "path": "meta/mkvtoolnix.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ml-flow-wordmark.json", + "mode": "100644", + "type": "blob", + "sha": "b57e0f482f33c028b3fd972607c88ac2230d4243", + "size": 302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b57e0f482f33c028b3fd972607c88ac2230d4243" + }, + { + "path": "meta/mobaxterm.json", + "mode": "100644", + "type": "blob", + "sha": "8b92e05e4cda5bf7d739514f64c8efd1b4fa4e9f", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b92e05e4cda5bf7d739514f64c8efd1b4fa4e9f" + }, + { + "path": "meta/mobilizon.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mobotix.json", + "mode": "100644", + "type": "blob", + "sha": "124a1d528d2adc7a0987b6b8d74b1ab8036ecf1c", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/124a1d528d2adc7a0987b6b8d74b1ab8036ecf1c" + }, + { + "path": "meta/mochahost.json", + "mode": "100644", + "type": "blob", + "sha": "d2204427cc808996610dab70d4aeefe886d3c509", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2204427cc808996610dab70d4aeefe886d3c509" + }, + { + "path": "meta/modrinth.json", + "mode": "100644", + "type": "blob", + "sha": "5cd413a2314bfd3302af6b6c19d34f07a203ea43", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cd413a2314bfd3302af6b6c19d34f07a203ea43" + }, + { + "path": "meta/mojeek.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/molecule.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/monero.json", + "mode": "100644", + "type": "blob", + "sha": "7f0d03aad67c2fab9f1504efff997325f2af7dac", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f0d03aad67c2fab9f1504efff997325f2af7dac" + }, + { + "path": "meta/mongodb.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/monica.json", + "mode": "100644", + "type": "blob", + "sha": "bc59a4f57a10d1f42ad95c00b0fb95457688f025", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc59a4f57a10d1f42ad95c00b0fb95457688f025" + }, + { + "path": "meta/monit.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/monkeytype.json", + "mode": "100644", + "type": "blob", + "sha": "b6dd0a2205081a3f758d12d636856fbd037c8304", + "size": 230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6dd0a2205081a3f758d12d636856fbd037c8304" + }, + { + "path": "meta/moode-audio.json", + "mode": "100644", + "type": "blob", + "sha": "d8c052a7b6b997d63e3a07a6cd5599ee08e49062", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8c052a7b6b997d63e3a07a6cd5599ee08e49062" + }, + { + "path": "meta/moodist.json", + "mode": "100644", + "type": "blob", + "sha": "22ac2ecb80b768e314209b8c315581e53c5f6049", + "size": 328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22ac2ecb80b768e314209b8c315581e53c5f6049" + }, + { + "path": "meta/moodle.json", + "mode": "100644", + "type": "blob", + "sha": "d5ed8d1558750f824e067cbbc8b912740e6880b5", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5ed8d1558750f824e067cbbc8b912740e6880b5" + }, + { + "path": "meta/morphos.json", + "mode": "100644", + "type": "blob", + "sha": "d99501f5850e0b3c205c3bbdba08f79a2eef3044", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d99501f5850e0b3c205c3bbdba08f79a2eef3044" + }, + { + "path": "meta/morss.json", + "mode": "100644", + "type": "blob", + "sha": "3dbe751b2e6f9bc1a8e138ebd54d46379fc232b8", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3dbe751b2e6f9bc1a8e138ebd54d46379fc232b8" + }, + { + "path": "meta/mosquitto.json", + "mode": "100644", + "type": "blob", + "sha": "b869af27e8dd39fb93e772b9f8cf7974e0bcf73f", + "size": 274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b869af27e8dd39fb93e772b9f8cf7974e0bcf73f" + }, + { + "path": "meta/motioneye.json", + "mode": "100644", + "type": "blob", + "sha": "c94e91fd42169e0e73af963fef707ea8d914b8bd", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c94e91fd42169e0e73af963fef707ea8d914b8bd" + }, + { + "path": "meta/mousehole.json", + "mode": "100644", + "type": "blob", + "sha": "b9a8a5e008b2f2b76e1f1ce1e63de889f2b3c23c", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9a8a5e008b2f2b76e1f1ce1e63de889f2b3c23c" + }, + { + "path": "meta/movie-pilot.json", + "mode": "100644", + "type": "blob", + "sha": "209404cf072221822ba75363c0cbd7e8b56174ab", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/209404cf072221822ba75363c0cbd7e8b56174ab" + }, + { + "path": "meta/mpm.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/mqtt.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mstream.json", + "mode": "100644", + "type": "blob", + "sha": "963829e39b490895907a31e7f6efdae219ce61c2", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/963829e39b490895907a31e7f6efdae219ce61c2" + }, + { + "path": "meta/mtlynch-picoshare.json", + "mode": "100644", + "type": "blob", + "sha": "25f28c663d27ac49aff53c326fef1299a60e4b2d", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25f28c663d27ac49aff53c326fef1299a60e4b2d" + }, + { + "path": "meta/mullvad-browser.json", + "mode": "100644", + "type": "blob", + "sha": "8e36f7807d167f0c12cb756c368fa716c8ca8fa7", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e36f7807d167f0c12cb756c368fa716c8ca8fa7" + }, + { + "path": "meta/mullvad-vpn.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/mullvad.json", + "mode": "100644", + "type": "blob", + "sha": "936e9804cc47a0881898ddea7c976d30ecd9b66f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936e9804cc47a0881898ddea7c976d30ecd9b66f" + }, + { + "path": "meta/multi-scrobbler.json", + "mode": "100644", + "type": "blob", + "sha": "194c27a5929fc08ec6252a2213800d9272ad5d96", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/194c27a5929fc08ec6252a2213800d9272ad5d96" + }, + { + "path": "meta/mumble.json", + "mode": "100644", + "type": "blob", + "sha": "41842c821d1d314b1e3a8fb07a6eb9a19d96f696", + "size": 322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41842c821d1d314b1e3a8fb07a6eb9a19d96f696" + }, + { + "path": "meta/musescore.json", + "mode": "100644", + "type": "blob", + "sha": "3bfea1f07fa383b7fb8001d4586406642510d599", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bfea1f07fa383b7fb8001d4586406642510d599" + }, + { + "path": "meta/music-assistant.json", + "mode": "100644", + "type": "blob", + "sha": "0f286a59efab1c78398e2f085f83877077ab3274", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f286a59efab1c78398e2f085f83877077ab3274" + }, + { + "path": "meta/musicbrainz.json", + "mode": "100644", + "type": "blob", + "sha": "cd14cd96020b9aca18ebb1c739d9fd16b27846fc", + "size": 274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd14cd96020b9aca18ebb1c739d9fd16b27846fc" + }, + { + "path": "meta/my-guitar-tabs.json", + "mode": "100644", + "type": "blob", + "sha": "92167ed3830abafe25b371723e9b462e88e1cba7", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92167ed3830abafe25b371723e9b462e88e1cba7" + }, + { + "path": "meta/myheats.json", + "mode": "100644", + "type": "blob", + "sha": "9f37df65e09897e834e19fe7f90161d670cdf8ae", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f37df65e09897e834e19fe7f90161d670cdf8ae" + }, + { + "path": "meta/mylar.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/mympd.json", + "mode": "100644", + "type": "blob", + "sha": "c5f9d179f70d90a5b5889441407af552c71078d2", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5f9d179f70d90a5b5889441407af552c71078d2" + }, + { + "path": "meta/myspeed.json", + "mode": "100644", + "type": "blob", + "sha": "937bbe913912fb488e713c478ca168a79dda36e7", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/937bbe913912fb488e713c478ca168a79dda36e7" + }, + { + "path": "meta/mysql.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/mysterium.json", + "mode": "100644", + "type": "blob", + "sha": "780ec8b579f8a5c63606ebfa385509ff940fac2c", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/780ec8b579f8a5c63606ebfa385509ff940fac2c" + }, + { + "path": "meta/n8n.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/nagios.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/name-silo.json", + "mode": "100644", + "type": "blob", + "sha": "938872d2611f1be2304fb10afcc2b88a0aadc0b9", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/938872d2611f1be2304fb10afcc2b88a0aadc0b9" + }, + { + "path": "meta/namecheap.json", + "mode": "100644", + "type": "blob", + "sha": "17a019ad8e8e22b434814fa13b74283906709aaf", + "size": 182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17a019ad8e8e22b434814fa13b74283906709aaf" + }, + { + "path": "meta/nasa.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/nastool.json", + "mode": "100644", + "type": "blob", + "sha": "95aecd1cfe084563f84e41f79d752a27ee54b343", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95aecd1cfe084563f84e41f79d752a27ee54b343" + }, + { + "path": "meta/natwest.json", + "mode": "100644", + "type": "blob", + "sha": "21f303fc42e64968e36f0d00e214ff08eb0ac4a7", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21f303fc42e64968e36f0d00e214ff08eb0ac4a7" + }, + { + "path": "meta/nautical-backup.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/navidrome.json", + "mode": "100644", + "type": "blob", + "sha": "53d806317e6f51b2d902c3d925c7fd4420095f61", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53d806317e6f51b2d902c3d925c7fd4420095f61" + }, + { + "path": "meta/ncore.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/neko.json", + "mode": "100644", + "type": "blob", + "sha": "b76e22454fe6708ae2027dee770eec29116c74a2", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b76e22454fe6708ae2027dee770eec29116c74a2" + }, + { + "path": "meta/neo4j.json", + "mode": "100644", + "type": "blob", + "sha": "643759f33c85f6844d82526e7f3e5f241ce48175", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/643759f33c85f6844d82526e7f3e5f241ce48175" + }, + { + "path": "meta/neocities.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/neodb.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/neon-tech.json", + "mode": "100644", + "type": "blob", + "sha": "74b08cdb338bb3594333fca00d75231a610f5e88", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74b08cdb338bb3594333fca00d75231a610f5e88" + }, + { + "path": "meta/neonlink.json", + "mode": "100644", + "type": "blob", + "sha": "9bcf325e68c949528f9e8c22c7182c8575546b54", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bcf325e68c949528f9e8c22c7182c8575546b54" + }, + { + "path": "meta/netalertx.json", + "mode": "100644", + "type": "blob", + "sha": "1f94403e2ec37942f16dcb296b9d2b167bd41ad4", + "size": 359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f94403e2ec37942f16dcb296b9d2b167bd41ad4" + }, + { + "path": "meta/netapp.json", + "mode": "100644", + "type": "blob", + "sha": "fbff4b9adc235a9639affaacbea82e4241cd7029", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbff4b9adc235a9639affaacbea82e4241cd7029" + }, + { + "path": "meta/netatmo.json", + "mode": "100644", + "type": "blob", + "sha": "64eb85c53730a602283242bb8b6ccbcc40cc8064", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64eb85c53730a602283242bb8b6ccbcc40cc8064" + }, + { + "path": "meta/netbird.json", + "mode": "100644", + "type": "blob", + "sha": "6d3e10ff734be9d5226258c7ca5ed183cef5e648", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d3e10ff734be9d5226258c7ca5ed183cef5e648" + }, + { + "path": "meta/netboot.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/netbootxyz.json", + "mode": "100644", + "type": "blob", + "sha": "e5074b5c3aea807f2e1f515f78431fb0e09ac3ba", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5074b5c3aea807f2e1f515f78431fb0e09ac3ba" + }, + { + "path": "meta/netbox-full.json", + "mode": "100644", + "type": "blob", + "sha": "c7ee7e3653ab0f31163cff27bc53f96b097c97f6", + "size": 367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7ee7e3653ab0f31163cff27bc53f96b097c97f6" + }, + { + "path": "meta/netbox.json", + "mode": "100644", + "type": "blob", + "sha": "0ded2d8b642209ed6954104b641be5471ae12503", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ded2d8b642209ed6954104b641be5471ae12503" + }, + { + "path": "meta/netcam-studio.json", + "mode": "100644", + "type": "blob", + "sha": "3afe23ed973c8d1748f7999c2fc18ce9b307c8f2", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3afe23ed973c8d1748f7999c2fc18ce9b307c8f2" + }, + { + "path": "meta/netdata.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/netflix.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/netgear-orbi.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/netgear.json", + "mode": "100644", + "type": "blob", + "sha": "9f4a012bfaefd2518e4fa21f9252df3bb6ff6f6c", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f4a012bfaefd2518e4fa21f9252df3bb6ff6f6c" + }, + { + "path": "meta/netlify.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/netmaker.json", + "mode": "100644", + "type": "blob", + "sha": "37e7ca60f5943596791d57ed8bcd7899b8cfe2e4", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37e7ca60f5943596791d57ed8bcd7899b8cfe2e4" + }, + { + "path": "meta/netsurf.json", + "mode": "100644", + "type": "blob", + "sha": "bd12508071b2867c65a87641778e5b6c54d6f6a1", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd12508071b2867c65a87641778e5b6c54d6f6a1" + }, + { + "path": "meta/netvisor.json", + "mode": "100644", + "type": "blob", + "sha": "aa1f9ae2b3b61471926369e6380a839abb564a66", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa1f9ae2b3b61471926369e6380a839abb564a66" + }, + { + "path": "meta/network-ups-tools.json", + "mode": "100644", + "type": "blob", + "sha": "223aae7e293e116656f7f12d6976570dd4420252", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/223aae7e293e116656f7f12d6976570dd4420252" + }, + { + "path": "meta/network-weathermap.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/networking-toolbox.json", + "mode": "100644", + "type": "blob", + "sha": "4b908144b4ee12b53a8441a22cbe071a1793661e", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b908144b4ee12b53a8441a22cbe071a1793661e" + }, + { + "path": "meta/newegg.json", + "mode": "100644", + "type": "blob", + "sha": "eca6acc38c732b1443a0dde4973f687ec084a21e", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eca6acc38c732b1443a0dde4973f687ec084a21e" + }, + { + "path": "meta/newsblur.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/newshosting.json", + "mode": "100644", + "type": "blob", + "sha": "90e4ec2ecfc6dee67cdd36db724166a1af268b1b", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90e4ec2ecfc6dee67cdd36db724166a1af268b1b" + }, + { + "path": "meta/nextcloud-blue.json", + "mode": "100644", + "type": "blob", + "sha": "44160b57099ed32e7a765764c84ca2a39fde2b6c", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44160b57099ed32e7a765764c84ca2a39fde2b6c" + }, + { + "path": "meta/nextcloud-calendar.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-contacts.json", + "mode": "100644", + "type": "blob", + "sha": "90adf75029301959449ce40cbd80e61c62418eae", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90adf75029301959449ce40cbd80e61c62418eae" + }, + { + "path": "meta/nextcloud-cookbook.json", + "mode": "100644", + "type": "blob", + "sha": "6db94b67def48ec12523bf96bbd5c29d06b07b98", + "size": 201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6db94b67def48ec12523bf96bbd5c29d06b07b98" + }, + { + "path": "meta/nextcloud-cospend.json", + "mode": "100644", + "type": "blob", + "sha": "09f9c4a960238c70c464e2c74c9e8e21e23434a5", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09f9c4a960238c70c464e2c74c9e8e21e23434a5" + }, + { + "path": "meta/nextcloud-deck.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-files.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-ncdownloader.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-news.json", + "mode": "100644", + "type": "blob", + "sha": "002db1e9798d599fa68ceef3d53b943a82f1899f", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/002db1e9798d599fa68ceef3d53b943a82f1899f" + }, + { + "path": "meta/nextcloud-notes.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-photos.json", + "mode": "100644", + "type": "blob", + "sha": "fcd04b05db8c4dd6379edb83e2e653e08b5f37ab", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcd04b05db8c4dd6379edb83e2e653e08b5f37ab" + }, + { + "path": "meta/nextcloud-social.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/nextcloud-tables.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/nextcloud-talk.json", + "mode": "100644", + "type": "blob", + "sha": "2eb6375902087d0b444a9727cbc5d61aedc57e6e", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eb6375902087d0b444a9727cbc5d61aedc57e6e" + }, + { + "path": "meta/nextcloud-tasks.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-timemanager.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud-white.json", + "mode": "100644", + "type": "blob", + "sha": "fe3da52b0e8cd3ba9f6c3d12522695b8bda42308", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3da52b0e8cd3ba9f6c3d12522695b8bda42308" + }, + { + "path": "meta/nextcloud.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/nextcloudpi.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/nextdns.json", + "mode": "100644", + "type": "blob", + "sha": "48172af038c7e0bfe637e8ea69ed7bba11e56647", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48172af038c7e0bfe637e8ea69ed7bba11e56647" + }, + { + "path": "meta/nexterm.json", + "mode": "100644", + "type": "blob", + "sha": "d6d5999ef268dd99d62b58eefdc51e442a7d2ff1", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6d5999ef268dd99d62b58eefdc51e442a7d2ff1" + }, + { + "path": "meta/nextjs.json", + "mode": "100644", + "type": "blob", + "sha": "0f29ebb458b593ecc7ee17c075129525a9878e53", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f29ebb458b593ecc7ee17c075129525a9878e53" + }, + { + "path": "meta/nextpvr.json", + "mode": "100644", + "type": "blob", + "sha": "b10337cdaa3f894752ba6f4a398e8419577e03ac", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b10337cdaa3f894752ba6f4a398e8419577e03ac" + }, + { + "path": "meta/nexus.json", + "mode": "100644", + "type": "blob", + "sha": "63513d3581ebacd2e0f6b1629bd5d743f0b51321", + "size": 295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63513d3581ebacd2e0f6b1629bd5d743f0b51321" + }, + { + "path": "meta/nezha.json", + "mode": "100644", + "type": "blob", + "sha": "18a8b07d394a0a8282c278f3bbf0924eabbfdd72", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18a8b07d394a0a8282c278f3bbf0924eabbfdd72" + }, + { + "path": "meta/nginx-proxy-manager.json", + "mode": "100644", + "type": "blob", + "sha": "1c427cbf552534f30499f9b60a588c9c8b66a84c", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c427cbf552534f30499f9b60a588c9c8b66a84c" + }, + { + "path": "meta/nginx.json", + "mode": "100644", + "type": "blob", + "sha": "fd2895a96fbd9efb0dcd8ef5419fe301bfba1e32", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd2895a96fbd9efb0dcd8ef5419fe301bfba1e32" + }, + { + "path": "meta/nicotine-plus.json", + "mode": "100644", + "type": "blob", + "sha": "903e97cfb6599dbaec18fbe0042ea57fc72cd191", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/903e97cfb6599dbaec18fbe0042ea57fc72cd191" + }, + { + "path": "meta/nightscout.json", + "mode": "100644", + "type": "blob", + "sha": "f84983a21d09b6b70347fa9f6a0f1e5226ffd5c1", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f84983a21d09b6b70347fa9f6a0f1e5226ffd5c1" + }, + { + "path": "meta/nintendo-switch.json", + "mode": "100644", + "type": "blob", + "sha": "2b3279b27a07980f347f8c8f3c06041569c19465", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b3279b27a07980f347f8c8f3c06041569c19465" + }, + { + "path": "meta/nitter.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/nixos.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/no-ip.json", + "mode": "100644", + "type": "blob", + "sha": "088353d2601414bf1cf9ed12ccad3d07b24e7a1e", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/088353d2601414bf1cf9ed12ccad3d07b24e7a1e" + }, + { + "path": "meta/nocobase.json", + "mode": "100644", + "type": "blob", + "sha": "fda28bf01f7135facaa0b6c159eb41542d8d2a77", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fda28bf01f7135facaa0b6c159eb41542d8d2a77" + }, + { + "path": "meta/nocodb.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/node-red.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/nodebb.json", + "mode": "100644", + "type": "blob", + "sha": "0b466ff56fe80559df05daecd2b269e4160d5649", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b466ff56fe80559df05daecd2b269e4160d5649" + }, + { + "path": "meta/nodejs-alt.json", + "mode": "100644", + "type": "blob", + "sha": "65119efb24c9949622b1ebb4b6483a886b2a6941", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65119efb24c9949622b1ebb4b6483a886b2a6941" + }, + { + "path": "meta/nodejs.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/noisedash.json", + "mode": "100644", + "type": "blob", + "sha": "0027d3f38574c3173a4c6f9166caa0e3aa96153e", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0027d3f38574c3173a4c6f9166caa0e3aa96153e" + }, + { + "path": "meta/nomad.json", + "mode": "100644", + "type": "blob", + "sha": "b03f75aa37a0f9bcc548749bf1452997c56d67ce", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b03f75aa37a0f9bcc548749bf1452997c56d67ce" + }, + { + "path": "meta/nomie.json", + "mode": "100644", + "type": "blob", + "sha": "6bd08b4085d6f62ec366156a3d2f169dc84d34ec", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bd08b4085d6f62ec366156a3d2f169dc84d34ec" + }, + { + "path": "meta/nordvpn.json", + "mode": "100644", + "type": "blob", + "sha": "8a3869b4ce307c0103b5de2e82f948562ee02886", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a3869b4ce307c0103b5de2e82f948562ee02886" + }, + { + "path": "meta/note-mark.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/notebook-lm.json", + "mode": "100644", + "type": "blob", + "sha": "40887d24a881d7e5e4cb2631ff6fb1c5d95cc326", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40887d24a881d7e5e4cb2631ff6fb1c5d95cc326" + }, + { + "path": "meta/notesnook.json", + "mode": "100644", + "type": "blob", + "sha": "d1ad4575143d4a011d09a02c156ecc1bb892eec8", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1ad4575143d4a011d09a02c156ecc1bb892eec8" + }, + { + "path": "meta/notifiarr.json", + "mode": "100644", + "type": "blob", + "sha": "1e2546ffa94f8a0becad3e0217d0fe4eb242fd7f", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e2546ffa94f8a0becad3e0217d0fe4eb242fd7f" + }, + { + "path": "meta/notion-calendar.json", + "mode": "100644", + "type": "blob", + "sha": "68e8e6c1f47eb84b529f40648451d5c6e3333466", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68e8e6c1f47eb84b529f40648451d5c6e3333466" + }, + { + "path": "meta/notion-mail.json", + "mode": "100644", + "type": "blob", + "sha": "fd394bbc3619707daf6e02ebf574303d97e0741a", + "size": 223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd394bbc3619707daf6e02ebf574303d97e0741a" + }, + { + "path": "meta/notion.json", + "mode": "100644", + "type": "blob", + "sha": "18a277ed94e0b1240950682335b30dcf3ef73734", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18a277ed94e0b1240950682335b30dcf3ef73734" + }, + { + "path": "meta/nowshowing.json", + "mode": "100644", + "type": "blob", + "sha": "a39930154fe7dcb4dce0d7b5d59e16166f15d1ac", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a39930154fe7dcb4dce0d7b5d59e16166f15d1ac" + }, + { + "path": "meta/npm.json", + "mode": "100644", + "type": "blob", + "sha": "40e208151d9f6137af26a035b237ad44337f1448", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40e208151d9f6137af26a035b237ad44337f1448" + }, + { + "path": "meta/ntfy.json", + "mode": "100644", + "type": "blob", + "sha": "e5e1f23f2297c2a2b2d71d6dd8ad1a8d842b8c4a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5e1f23f2297c2a2b2d71d6dd8ad1a8d842b8c4a" + }, + { + "path": "meta/ntop.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ntopng.json", + "mode": "100644", + "type": "blob", + "sha": "9dab238c59167eba0b82cdb640af48d39797e199", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dab238c59167eba0b82cdb640af48d39797e199" + }, + { + "path": "meta/nu-nl.json", + "mode": "100644", + "type": "blob", + "sha": "5a0b27dbfcc104d66d623284721e1d5aa04b4d60", + "size": 247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a0b27dbfcc104d66d623284721e1d5aa04b4d60" + }, + { + "path": "meta/nut-webgui.json", + "mode": "100644", + "type": "blob", + "sha": "cd49cae93bb4c62557b18c3f983b49a582b8db6e", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd49cae93bb4c62557b18c3f983b49a582b8db6e" + }, + { + "path": "meta/nut.json", + "mode": "100644", + "type": "blob", + "sha": "4fccfefd70ec4bb7e07b5f480b189459477eddbe", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fccfefd70ec4bb7e07b5f480b189459477eddbe" + }, + { + "path": "meta/nutanix.json", + "mode": "100644", + "type": "blob", + "sha": "efbd455510ad1c435ccdc650cdd25c09976dcd12", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efbd455510ad1c435ccdc650cdd25c09976dcd12" + }, + { + "path": "meta/nvidia.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/nxfilter.json", + "mode": "100644", + "type": "blob", + "sha": "f5615c999867df0168339f1b4a9875edc44a6fbb", + "size": 248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5615c999867df0168339f1b4a9875edc44a6fbb" + }, + { + "path": "meta/nxlog.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/nzbgeek.json", + "mode": "100644", + "type": "blob", + "sha": "b8689175b5461df2f97a580f8cdcbc4ef829f376", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8689175b5461df2f97a580f8cdcbc4ef829f376" + }, + { + "path": "meta/nzbget.json", + "mode": "100644", + "type": "blob", + "sha": "88c6b3bb59eeab7f88ad7388ebd917a2972f243e", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88c6b3bb59eeab7f88ad7388ebd917a2972f243e" + }, + { + "path": "meta/nzbhydra.json", + "mode": "100644", + "type": "blob", + "sha": "56b95314130ee27239fe22a6cceab72e878cb6ed", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56b95314130ee27239fe22a6cceab72e878cb6ed" + }, + { + "path": "meta/nzbhydra2.json", + "mode": "100644", + "type": "blob", + "sha": "48cc9cf4af496e85dbfa182be41a1739fa677711", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48cc9cf4af496e85dbfa182be41a1739fa677711" + }, + { + "path": "meta/oauth2-proxy.json", + "mode": "100644", + "type": "blob", + "sha": "3bcdbe73d6678bd0f277c7b4b0d452f5a215fd8b", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bcdbe73d6678bd0f277c7b4b0d452f5a215fd8b" + }, + { + "path": "meta/obico.json", + "mode": "100644", + "type": "blob", + "sha": "57d6cdd76502e0e96ae03d00a20e1b8bd37ac63d", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57d6cdd76502e0e96ae03d00a20e1b8bd37ac63d" + }, + { + "path": "meta/obitalk.json", + "mode": "100644", + "type": "blob", + "sha": "7a765cea3b1441e425cad1762f515bb78a5d9a60", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a765cea3b1441e425cad1762f515bb78a5d9a60" + }, + { + "path": "meta/observium.json", + "mode": "100644", + "type": "blob", + "sha": "ed7f9eb8ad1e924eeda898235dce1ffbc4500e79", + "size": 302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed7f9eb8ad1e924eeda898235dce1ffbc4500e79" + }, + { + "path": "meta/observo-ai.json", + "mode": "100644", + "type": "blob", + "sha": "a9b97fda750f537f18248a14184053cdd142b9a2", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9b97fda750f537f18248a14184053cdd142b9a2" + }, + { + "path": "meta/obsidian.json", + "mode": "100644", + "type": "blob", + "sha": "ebced78928b8b4c1975e8d75d7d2f404bbbb31db", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebced78928b8b4c1975e8d75d7d2f404bbbb31db" + }, + { + "path": "meta/obtainium.json", + "mode": "100644", + "type": "blob", + "sha": "b8d3af1faf6067771022bfcacff0192f472132b1", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8d3af1faf6067771022bfcacff0192f472132b1" + }, + { + "path": "meta/octoeverywhere.json", + "mode": "100644", + "type": "blob", + "sha": "17c67978a6bbf7fb7009f17a2fb024c5e800d485", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17c67978a6bbf7fb7009f17a2fb024c5e800d485" + }, + { + "path": "meta/octoprint.json", + "mode": "100644", + "type": "blob", + "sha": "802eb358ea63b0fc6a94b91f52db6eec1b2861c7", + "size": 279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/802eb358ea63b0fc6a94b91f52db6eec1b2861c7" + }, + { + "path": "meta/ocular.json", + "mode": "100644", + "type": "blob", + "sha": "8b3e4d6067ad361ec0dfedd8b82ec7f905f59065", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b3e4d6067ad361ec0dfedd8b82ec7f905f59065" + }, + { + "path": "meta/oculus.json", + "mode": "100644", + "type": "blob", + "sha": "9a0bf2a6dcf53869761c9165799e1769d80070ed", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a0bf2a6dcf53869761c9165799e1769d80070ed" + }, + { + "path": "meta/odoo.json", + "mode": "100644", + "type": "blob", + "sha": "bb3afa1ff95ec06904a8e1631d04bc3977d2924e", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb3afa1ff95ec06904a8e1631d04bc3977d2924e" + }, + { + "path": "meta/odysee-full.json", + "mode": "100644", + "type": "blob", + "sha": "fc25f1e7d8d4380c8173f6d0d19c1c26db62e608", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc25f1e7d8d4380c8173f6d0d19c1c26db62e608" + }, + { + "path": "meta/odysee.json", + "mode": "100644", + "type": "blob", + "sha": "3722fbe961ebd2d1e3b1e053aa8b71202b3a4197", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3722fbe961ebd2d1e3b1e053aa8b71202b3a4197" + }, + { + "path": "meta/office-365.json", + "mode": "100644", + "type": "blob", + "sha": "9f49be90f07b6385e1b5f5cac68c492087f8fffa", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f49be90f07b6385e1b5f5cac68c492087f8fffa" + }, + { + "path": "meta/oh-my-posh.json", + "mode": "100644", + "type": "blob", + "sha": "0895861a937f8451ee79d68be4dc53b530ce975d", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0895861a937f8451ee79d68be4dc53b530ce975d" + }, + { + "path": "meta/olivetin.json", + "mode": "100644", + "type": "blob", + "sha": "6ca0746005160514afd83673a1b7c2fcc7f0e1a9", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ca0746005160514afd83673a1b7c2fcc7f0e1a9" + }, + { + "path": "meta/ollama.json", + "mode": "100644", + "type": "blob", + "sha": "481bee9e48154305e01c7d980bd6610b92e66e1b", + "size": 332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/481bee9e48154305e01c7d980bd6610b92e66e1b" + }, + { + "path": "meta/omada.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/ombi.json", + "mode": "100644", + "type": "blob", + "sha": "3f9f3ee0ae282d6f98545620af1159dab8a1eae2", + "size": 183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f9f3ee0ae282d6f98545620af1159dab8a1eae2" + }, + { + "path": "meta/omni-tools-full.json", + "mode": "100644", + "type": "blob", + "sha": "e54112e0cf732d939b21f632d5cc00cdb536b077", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e54112e0cf732d939b21f632d5cc00cdb536b077" + }, + { + "path": "meta/omni-tools.json", + "mode": "100644", + "type": "blob", + "sha": "eb4173b05a33638b02024476c7cf71cea59ec795", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb4173b05a33638b02024476c7cf71cea59ec795" + }, + { + "path": "meta/omnic-forge.json", + "mode": "100644", + "type": "blob", + "sha": "3127865017a3ca27d1deb6f4e353db218d5ca1fe", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3127865017a3ca27d1deb6f4e353db218d5ca1fe" + }, + { + "path": "meta/omnidb.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/omnivore.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/onedev.json", + "mode": "100644", + "type": "blob", + "sha": "7cc4b3c8eb428afda7fc8ab9050c3f199a5f79d5", + "size": 350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cc4b3c8eb428afda7fc8ab9050c3f199a5f79d5" + }, + { + "path": "meta/oneuptime.json", + "mode": "100644", + "type": "blob", + "sha": "e6b2bd6ea9b78d7a7484c348a1e35b12a7574617", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6b2bd6ea9b78d7a7484c348a1e35b12a7574617" + }, + { + "path": "meta/onlyfans.json", + "mode": "100644", + "type": "blob", + "sha": "fff69e1405b35733af183dabfe8e4b2eecbfdaab", + "size": 313, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fff69e1405b35733af183dabfe8e4b2eecbfdaab" + }, + { + "path": "meta/onlyoffice.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/onshape.json", + "mode": "100644", + "type": "blob", + "sha": "e7d3b2e80a994c6fbfd976b3b79951f16631fe30", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7d3b2e80a994c6fbfd976b3b79951f16631fe30" + }, + { + "path": "meta/ookla-speedtest.json", + "mode": "100644", + "type": "blob", + "sha": "171cd38ce6e7f15771df0f1fb4279aa124dffe8b", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/171cd38ce6e7f15771df0f1fb4279aa124dffe8b" + }, + { + "path": "meta/open-classrooms.json", + "mode": "100644", + "type": "blob", + "sha": "ab67d1ffb33048abca6463272ab84c2061bda65f", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab67d1ffb33048abca6463272ab84c2061bda65f" + }, + { + "path": "meta/open-cloud.json", + "mode": "100644", + "type": "blob", + "sha": "e21376d3ae31ce6cb1888f1c51b47adc611a051a", + "size": 289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e21376d3ae31ce6cb1888f1c51b47adc611a051a" + }, + { + "path": "meta/open-observe.json", + "mode": "100644", + "type": "blob", + "sha": "83a8563f137e6b0be5d95ac287fc7b1a37436336", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83a8563f137e6b0be5d95ac287fc7b1a37436336" + }, + { + "path": "meta/open-regex.json", + "mode": "100644", + "type": "blob", + "sha": "54df79eb2c68710966aa651b09a375d6b1b0e446", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54df79eb2c68710966aa651b09a375d6b1b0e446" + }, + { + "path": "meta/open-resume.json", + "mode": "100644", + "type": "blob", + "sha": "33bb83e269c4b9704984610e3c6a3ab0cee07a72", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33bb83e269c4b9704984610e3c6a3ab0cee07a72" + }, + { + "path": "meta/open-router.json", + "mode": "100644", + "type": "blob", + "sha": "0118b323865b53668a88d8f222890ae240a1190b", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0118b323865b53668a88d8f222890ae240a1190b" + }, + { + "path": "meta/open-source-initiative.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/open-wb.json", + "mode": "100644", + "type": "blob", + "sha": "bd2c6af0c58f42042981cd18cff7b30bdc790f2b", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd2c6af0c58f42042981cd18cff7b30bdc790f2b" + }, + { + "path": "meta/open-webui.json", + "mode": "100644", + "type": "blob", + "sha": "15c3ae06e802f98135bb56e4a6cc5d50be7fa706", + "size": 342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15c3ae06e802f98135bb56e4a6cc5d50be7fa706" + }, + { + "path": "meta/openai.json", + "mode": "100644", + "type": "blob", + "sha": "72e66b9f8375734b3487b79a067cef157aae0750", + "size": 335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72e66b9f8375734b3487b79a067cef157aae0750" + }, + { + "path": "meta/openaudible.json", + "mode": "100644", + "type": "blob", + "sha": "6c346275b5c23c2c2747ddd8e1b58bcf39ee54d1", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c346275b5c23c2c2747ddd8e1b58bcf39ee54d1" + }, + { + "path": "meta/openchangelog.json", + "mode": "100644", + "type": "blob", + "sha": "292cbe88566093c502b69b28308a2301da4457a2", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/292cbe88566093c502b69b28308a2301da4457a2" + }, + { + "path": "meta/opencode.json", + "mode": "100644", + "type": "blob", + "sha": "5611b283a8d446a25681fa115e0913850e8bb2ca", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5611b283a8d446a25681fa115e0913850e8bb2ca" + }, + { + "path": "meta/opencost.json", + "mode": "100644", + "type": "blob", + "sha": "98816ff8b301ffcbeb783dddd736fe6a8ea995dc", + "size": 226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98816ff8b301ffcbeb783dddd736fe6a8ea995dc" + }, + { + "path": "meta/openeats.json", + "mode": "100644", + "type": "blob", + "sha": "472c68c8771730b6d52fab1b8ac2d1838a3ee4d3", + "size": 333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/472c68c8771730b6d52fab1b8ac2d1838a3ee4d3" + }, + { + "path": "meta/openemr.json", + "mode": "100644", + "type": "blob", + "sha": "03bf3e2dfbea1a8d8e561be151efea749b8deefe", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03bf3e2dfbea1a8d8e561be151efea749b8deefe" + }, + { + "path": "meta/opengarage.json", + "mode": "100644", + "type": "blob", + "sha": "8b3c75d97b74329e9d2dd58f0c966c3a6815264d", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b3c75d97b74329e9d2dd58f0c966c3a6815264d" + }, + { + "path": "meta/opengist.json", + "mode": "100644", + "type": "blob", + "sha": "29d1455e44b265682a57647228337d1efdcf89d0", + "size": 339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29d1455e44b265682a57647228337d1efdcf89d0" + }, + { + "path": "meta/openhab.json", + "mode": "100644", + "type": "blob", + "sha": "44de9e27d8f1a55365e886bc922abd91bd9876cb", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44de9e27d8f1a55365e886bc922abd91bd9876cb" + }, + { + "path": "meta/openldap.json", + "mode": "100644", + "type": "blob", + "sha": "4c050e973c3a28cce9060e965d6a958aadb1f8b8", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c050e973c3a28cce9060e965d6a958aadb1f8b8" + }, + { + "path": "meta/openlist.json", + "mode": "100644", + "type": "blob", + "sha": "0c0174c2d929e60cf95e2094e99639bf475a784d", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c0174c2d929e60cf95e2094e99639bf475a784d" + }, + { + "path": "meta/openmaptiles.json", + "mode": "100644", + "type": "blob", + "sha": "0bb154391882871ab743ac80884dc6e0cdb6de73", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bb154391882871ab743ac80884dc6e0cdb6de73" + }, + { + "path": "meta/openmediavault.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/openoffice.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/openpanel.json", + "mode": "100644", + "type": "blob", + "sha": "081a20629b85d013b0105888174f8231562d98bb", + "size": 314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/081a20629b85d013b0105888174f8231562d98bb" + }, + { + "path": "meta/openproject.json", + "mode": "100644", + "type": "blob", + "sha": "b10284ceebd8222018a2a280e72f5b3e41f89235", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b10284ceebd8222018a2a280e72f5b3e41f89235" + }, + { + "path": "meta/openreads.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/opensearch.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/openshift.json", + "mode": "100644", + "type": "blob", + "sha": "0de8017f7806f3e67250ea64589eaa53dc3627e9", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0de8017f7806f3e67250ea64589eaa53dc3627e9" + }, + { + "path": "meta/openspeedtest.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/opensprinkler.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/openstack.json", + "mode": "100644", + "type": "blob", + "sha": "09d636f4894704da27a8ce6a82e04bbd29b2243b", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09d636f4894704da27a8ce6a82e04bbd29b2243b" + }, + { + "path": "meta/openstreetmap.json", + "mode": "100644", + "type": "blob", + "sha": "6ce2a4fcca8ff7b321c904a7df9695a08f7e202f", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ce2a4fcca8ff7b321c904a7df9695a08f7e202f" + }, + { + "path": "meta/opensuse.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/opentalk.json", + "mode": "100644", + "type": "blob", + "sha": "4b5d95e4c4561ca3ca75697ec07352246ee7d1c1", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b5d95e4c4561ca3ca75697ec07352246ee7d1c1" + }, + { + "path": "meta/opentofu.json", + "mode": "100644", + "type": "blob", + "sha": "7d9d90f6a577d4ad83d7d5ce25c7e3bcf7eece10", + "size": 274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d9d90f6a577d4ad83d7d5ce25c7e3bcf7eece10" + }, + { + "path": "meta/openvas.json", + "mode": "100644", + "type": "blob", + "sha": "0c5e9c1d9965fdc0e0d819195aa3311018bb91e9", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c5e9c1d9965fdc0e0d819195aa3311018bb91e9" + }, + { + "path": "meta/openvpn.json", + "mode": "100644", + "type": "blob", + "sha": "4d085cae954c2a770f39b7b7c427fd70d64002aa", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d085cae954c2a770f39b7b7c427fd70d64002aa" + }, + { + "path": "meta/openwebrx-plus.json", + "mode": "100644", + "type": "blob", + "sha": "62385838a2fd53dc157da180bbff701793c6964d", + "size": 299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62385838a2fd53dc157da180bbff701793c6964d" + }, + { + "path": "meta/openwrt.json", + "mode": "100644", + "type": "blob", + "sha": "f1e5404a50ef057cd38af0c95f96aaab1c5d5dc4", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1e5404a50ef057cd38af0c95f96aaab1c5d5dc4" + }, + { + "path": "meta/openziti.json", + "mode": "100644", + "type": "blob", + "sha": "f6437f89a9c129cd645557e51624d7116317191e", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6437f89a9c129cd645557e51624d7116317191e" + }, + { + "path": "meta/opera-beta.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/opera-developer.json", + "mode": "100644", + "type": "blob", + "sha": "3ed5a3571df4380de5dfbc59c4f1b5e66f83240a", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ed5a3571df4380de5dfbc59c4f1b5e66f83240a" + }, + { + "path": "meta/opera-mini-beta.json", + "mode": "100644", + "type": "blob", + "sha": "9671537d84e3efbcfae0c8493b84862005bde43d", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9671537d84e3efbcfae0c8493b84862005bde43d" + }, + { + "path": "meta/opera-mini.json", + "mode": "100644", + "type": "blob", + "sha": "b08829fe2f2079a895d31ac7c98180dab68758ae", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b08829fe2f2079a895d31ac7c98180dab68758ae" + }, + { + "path": "meta/opera-neon.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/opera-touch.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/opera.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/opnform.json", + "mode": "100644", + "type": "blob", + "sha": "8368be1173b7f9ee4a84bba378c65ba374474605", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8368be1173b7f9ee4a84bba378c65ba374474605" + }, + { + "path": "meta/opnsense.json", + "mode": "100644", + "type": "blob", + "sha": "a957e9416d318f69508fae49981e523671fc59c0", + "size": 328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a957e9416d318f69508fae49981e523671fc59c0" + }, + { + "path": "meta/oracle-cloud.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/oracle.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/orange.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/orb.json", + "mode": "100644", + "type": "blob", + "sha": "0e23bb6c32dd821c16c4e92bfb1d1f6d50212324", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e23bb6c32dd821c16c4e92bfb1d1f6d50212324" + }, + { + "path": "meta/orcaslicer.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/oreilly.json", + "mode": "100644", + "type": "blob", + "sha": "a6bbde53091e99218321cef5c46241071601ad4f", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6bbde53091e99218321cef5c46241071601ad4f" + }, + { + "path": "meta/organizr.json", + "mode": "100644", + "type": "blob", + "sha": "f7d867d94c288313c1c95f23e4056685971169cc", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7d867d94c288313c1c95f23e4056685971169cc" + }, + { + "path": "meta/origin.json", + "mode": "100644", + "type": "blob", + "sha": "13be77b6157ba31c5c53d16869e5fef3dea64232", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13be77b6157ba31c5c53d16869e5fef3dea64232" + }, + { + "path": "meta/oscarr.json", + "mode": "100644", + "type": "blob", + "sha": "58c84f1426e1608d55cf36b28e05ca89692a54c0", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58c84f1426e1608d55cf36b28e05ca89692a54c0" + }, + { + "path": "meta/osticket.json", + "mode": "100644", + "type": "blob", + "sha": "63dd0feabf05e15bfe0e1da8b0febbce212aba33", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63dd0feabf05e15bfe0e1da8b0febbce212aba33" + }, + { + "path": "meta/osu.json", + "mode": "100644", + "type": "blob", + "sha": "0e1520317129d6094a7de381624ca6a2411bda5b", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e1520317129d6094a7de381624ca6a2411bda5b" + }, + { + "path": "meta/otter-wiki.json", + "mode": "100644", + "type": "blob", + "sha": "b5553c4e7549f387f73e70bb5bb7c0150bcf6273", + "size": 295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5553c4e7549f387f73e70bb5bb7c0150bcf6273" + }, + { + "path": "meta/our-shopping-list.json", + "mode": "100644", + "type": "blob", + "sha": "127f91774b7c543317b6ff4d21fac60b9d584fd5", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/127f91774b7c543317b6ff4d21fac60b9d584fd5" + }, + { + "path": "meta/outline.json", + "mode": "100644", + "type": "blob", + "sha": "608972084bfc526433aec8333b8d79047d0f1598", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/608972084bfc526433aec8333b8d79047d0f1598" + }, + { + "path": "meta/overclockers.json", + "mode": "100644", + "type": "blob", + "sha": "8188ab24fbcd0f44fb48eaed524138b105e6674e", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8188ab24fbcd0f44fb48eaed524138b105e6674e" + }, + { + "path": "meta/overleaf.json", + "mode": "100644", + "type": "blob", + "sha": "0203871e130c9c6d22d559d95c9bdfd43b96baad", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0203871e130c9c6d22d559d95c9bdfd43b96baad" + }, + { + "path": "meta/overseerr.json", + "mode": "100644", + "type": "blob", + "sha": "6b6f50b0f6480f6c6548bf05bdee1aa0069a86bc", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b6f50b0f6480f6c6548bf05bdee1aa0069a86bc" + }, + { + "path": "meta/ovh.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ovirt.json", + "mode": "100644", + "type": "blob", + "sha": "1439869ae8e53ffd669bf86b02398b3094569672", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1439869ae8e53ffd669bf86b02398b3094569672" + }, + { + "path": "meta/owasp-zap.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/owncast.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/owncloud.json", + "mode": "100644", + "type": "blob", + "sha": "fdbddad00ade2c1490941b7a01fa935e3e84c90f", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdbddad00ade2c1490941b7a01fa935e3e84c90f" + }, + { + "path": "meta/ownphotos.json", + "mode": "100644", + "type": "blob", + "sha": "bacd84d1b1b204ecc63d661b36a4cf19216214d7", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bacd84d1b1b204ecc63d661b36a4cf19216214d7" + }, + { + "path": "meta/owntone.json", + "mode": "100644", + "type": "blob", + "sha": "39fb42bc79b45320888e11516bc032c7c897c1a9", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39fb42bc79b45320888e11516bc032c7c897c1a9" + }, + { + "path": "meta/owntracks.json", + "mode": "100644", + "type": "blob", + "sha": "0689e58fe023c4e20db3bf74b4472181c90df040", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0689e58fe023c4e20db3bf74b4472181c90df040" + }, + { + "path": "meta/oxker.json", + "mode": "100644", + "type": "blob", + "sha": "7af94b418ff982557dd474ee23d192b0207eaedc", + "size": 348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7af94b418ff982557dd474ee23d192b0207eaedc" + }, + { + "path": "meta/p-cal.json", + "mode": "100644", + "type": "blob", + "sha": "902f9eebe2e4a69bb295d02cfa103c31eb55b4d8", + "size": 350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/902f9eebe2e4a69bb295d02cfa103c31eb55b4d8" + }, + { + "path": "meta/p1ib.json", + "mode": "100644", + "type": "blob", + "sha": "8f7ded50c46ac56840c443fe5f51e748c286987f", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f7ded50c46ac56840c443fe5f51e748c286987f" + }, + { + "path": "meta/packetfence-full.json", + "mode": "100644", + "type": "blob", + "sha": "f70be0bf00cda347b42758e322a5962b2d209a94", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f70be0bf00cda347b42758e322a5962b2d209a94" + }, + { + "path": "meta/packetfence.json", + "mode": "100644", + "type": "blob", + "sha": "149427ce7fb3de8997b00ede996aac4514113a87", + "size": 330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/149427ce7fb3de8997b00ede996aac4514113a87" + }, + { + "path": "meta/pagerduty.json", + "mode": "100644", + "type": "blob", + "sha": "e0852d7acef06a4f31d5909fd81e7ae834087233", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0852d7acef06a4f31d5909fd81e7ae834087233" + }, + { + "path": "meta/pairdrop.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/palemoon.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/palmr.json", + "mode": "100644", + "type": "blob", + "sha": "5f7fa59ea2801b1d86e5d27aa3ddf564b44a50b2", + "size": 203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f7fa59ea2801b1d86e5d27aa3ddf564b44a50b2" + }, + { + "path": "meta/palo-alto.json", + "mode": "100644", + "type": "blob", + "sha": "45ffdb66eefc0244f86cd77631b186deb0cf93ce", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45ffdb66eefc0244f86cd77631b186deb0cf93ce" + }, + { + "path": "meta/pangolin.json", + "mode": "100644", + "type": "blob", + "sha": "863bf30248d0edf327b413ee5adde90ab3b3fe62", + "size": 248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/863bf30248d0edf327b413ee5adde90ab3b3fe62" + }, + { + "path": "meta/paperless-ng.json", + "mode": "100644", + "type": "blob", + "sha": "e0d3b1ca36a761d6207fd3e446cf24bc5adfcc75", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0d3b1ca36a761d6207fd3e446cf24bc5adfcc75" + }, + { + "path": "meta/paperless-ngx.json", + "mode": "100644", + "type": "blob", + "sha": "6377f602524cd24c9a4f7ebf2bffb540400e38f2", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6377f602524cd24c9a4f7ebf2bffb540400e38f2" + }, + { + "path": "meta/paperless.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/papermark.json", + "mode": "100644", + "type": "blob", + "sha": "401d220a6a4620a913fe60156b9e2bbbe543716e", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/401d220a6a4620a913fe60156b9e2bbbe543716e" + }, + { + "path": "meta/papermerge.json", + "mode": "100644", + "type": "blob", + "sha": "f29598b3c2b54a811a4c0675647abf9530cefae0", + "size": 362, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f29598b3c2b54a811a4c0675647abf9530cefae0" + }, + { + "path": "meta/papra.json", + "mode": "100644", + "type": "blob", + "sha": "999808a0ee5ea426a610d60e4d4b563a2bb7b411", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/999808a0ee5ea426a610d60e4d4b563a2bb7b411" + }, + { + "path": "meta/parseable.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/part-db.json", + "mode": "100644", + "type": "blob", + "sha": "d68be1ea61962c3e956c289d70f2b612bbef775d", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d68be1ea61962c3e956c289d70f2b612bbef775d" + }, + { + "path": "meta/partkeepr.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/passbolt.json", + "mode": "100644", + "type": "blob", + "sha": "18bf3a765dae26549612a8f782e0bfd802720f8d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18bf3a765dae26549612a8f782e0bfd802720f8d" + }, + { + "path": "meta/passwordpusher.json", + "mode": "100644", + "type": "blob", + "sha": "9e9aab95bf75e3947cc8fe8a31049622ad16ec4f", + "size": 370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e9aab95bf75e3947cc8fe8a31049622ad16ec4f" + }, + { + "path": "meta/passwork.json", + "mode": "100644", + "type": "blob", + "sha": "a2fdfd688ef034f3192246fee519c551ec074018", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2fdfd688ef034f3192246fee519c551ec074018" + }, + { + "path": "meta/pastatool.json", + "mode": "100644", + "type": "blob", + "sha": "f0d6e1c4075e9685633fa79a753f9faf6d3eba9d", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0d6e1c4075e9685633fa79a753f9faf6d3eba9d" + }, + { + "path": "meta/pastebin.json", + "mode": "100644", + "type": "blob", + "sha": "e1f06a48b373a924438c795698c6743de482db70", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1f06a48b373a924438c795698c6743de482db70" + }, + { + "path": "meta/pastey.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/patchmon.json", + "mode": "100644", + "type": "blob", + "sha": "d387ca651b27b9b5265755945b57d15535dbaa84", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d387ca651b27b9b5265755945b57d15535dbaa84" + }, + { + "path": "meta/patreon.json", + "mode": "100644", + "type": "blob", + "sha": "13fdb691f27e266adf09c973cdd51ed9294d9044", + "size": 341, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13fdb691f27e266adf09c973cdd51ed9294d9044" + }, + { + "path": "meta/payload.json", + "mode": "100644", + "type": "blob", + "sha": "8dad231d179f427cf797ba243f6bfe20c7e3da39", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8dad231d179f427cf797ba243f6bfe20c7e3da39" + }, + { + "path": "meta/paymenter.json", + "mode": "100644", + "type": "blob", + "sha": "3a849e0c4bbd3d78b08d993424651efff7698a7e", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a849e0c4bbd3d78b08d993424651efff7698a7e" + }, + { + "path": "meta/paypal.json", + "mode": "100644", + "type": "blob", + "sha": "a0013d55d9495be272e2f3d0e8f31e6a29a6c743", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0013d55d9495be272e2f3d0e8f31e6a29a6c743" + }, + { + "path": "meta/pdfding.json", + "mode": "100644", + "type": "blob", + "sha": "317e8b8acb03446f8614429a497c84817ea4d967", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/317e8b8acb03446f8614429a497c84817ea4d967" + }, + { + "path": "meta/peacock.json", + "mode": "100644", + "type": "blob", + "sha": "b8ff3dd84b51d2782ef960fdef34adf380ddc3db", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8ff3dd84b51d2782ef960fdef34adf380ddc3db" + }, + { + "path": "meta/peanut.json", + "mode": "100644", + "type": "blob", + "sha": "2e8aaae752b269a1a08d9cef62aa559716546098", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e8aaae752b269a1a08d9cef62aa559716546098" + }, + { + "path": "meta/peertube.json", + "mode": "100644", + "type": "blob", + "sha": "445ba9cd139831f41f231fbafa992209c3267782", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/445ba9cd139831f41f231fbafa992209c3267782" + }, + { + "path": "meta/pelican-panel.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/penpot.json", + "mode": "100644", + "type": "blob", + "sha": "6266b82825d6a741634648dab03b5adbf502d1e4", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6266b82825d6a741634648dab03b5adbf502d1e4" + }, + { + "path": "meta/peppermint.json", + "mode": "100644", + "type": "blob", + "sha": "80c6015336f61ab46b92db22ed89c98536de243b", + "size": 288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80c6015336f61ab46b92db22ed89c98536de243b" + }, + { + "path": "meta/pepperminty-wiki.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/perlite.json", + "mode": "100644", + "type": "blob", + "sha": "3cc4493092d80bc7e2cf8d8310e50bb04aa94e9d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cc4493092d80bc7e2cf8d8310e50bb04aa94e9d" + }, + { + "path": "meta/perplexity-book.json", + "mode": "100644", + "type": "blob", + "sha": "4888279c8c7a5d6a0ed5ed592e0348329a3dc87a", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4888279c8c7a5d6a0ed5ed592e0348329a3dc87a" + }, + { + "path": "meta/perplexity.json", + "mode": "100644", + "type": "blob", + "sha": "f28ed0266282002668939d89399ce4c0462aec17", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f28ed0266282002668939d89399ce4c0462aec17" + }, + { + "path": "meta/petio.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/pfsense.json", + "mode": "100644", + "type": "blob", + "sha": "b93647a820eb6523239ec8b2048121943aa6e578", + "size": 386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b93647a820eb6523239ec8b2048121943aa6e578" + }, + { + "path": "meta/pg-back-web.json", + "mode": "100644", + "type": "blob", + "sha": "1ca984f018fcd3edc1776f264b60db5b34dca8f0", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ca984f018fcd3edc1776f264b60db5b34dca8f0" + }, + { + "path": "meta/pgadmin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pgbackweb.json", + "mode": "100644", + "type": "blob", + "sha": "6786d6c658cd2c8fd149e18a9344b0342ebb1548", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6786d6c658cd2c8fd149e18a9344b0342ebb1548" + }, + { + "path": "meta/phanpy.json", + "mode": "100644", + "type": "blob", + "sha": "0a0a5b2a8d7df89a7c3ef62ca510f90869658d11", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a0a5b2a8d7df89a7c3ef62ca510f90869658d11" + }, + { + "path": "meta/phantombot.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/phase.json", + "mode": "100644", + "type": "blob", + "sha": "2df93eec3d2250f45d813c3f219a6a72172faa5e", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2df93eec3d2250f45d813c3f219a6a72172faa5e" + }, + { + "path": "meta/phoneinfoga.json", + "mode": "100644", + "type": "blob", + "sha": "41cae683e28316a593e5c127f47e99de7e07b0e5", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41cae683e28316a593e5c127f47e99de7e07b0e5" + }, + { + "path": "meta/phorge.json", + "mode": "100644", + "type": "blob", + "sha": "042da87a568bff716fd32180d3dc9e0a6ca5e3ed", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/042da87a568bff716fd32180d3dc9e0a6ca5e3ed" + }, + { + "path": "meta/phoscon.json", + "mode": "100644", + "type": "blob", + "sha": "f26e6aad600458204d742d8008161b35020c0909", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f26e6aad600458204d742d8008161b35020c0909" + }, + { + "path": "meta/photonix.json", + "mode": "100644", + "type": "blob", + "sha": "d2871e0d5bd17511478d41e2470b0dc2046fd240", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2871e0d5bd17511478d41e2470b0dc2046fd240" + }, + { + "path": "meta/photopea.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/photoprism.json", + "mode": "100644", + "type": "blob", + "sha": "a566cf185b434fa5e464699e14d50a8216232d5e", + "size": 339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a566cf185b434fa5e464699e14d50a8216232d5e" + }, + { + "path": "meta/photostructure.json", + "mode": "100644", + "type": "blob", + "sha": "b5d2497114a8e94f467e31d02c3349d427bb1a8c", + "size": 270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5d2497114a8e94f467e31d02c3349d427bb1a8c" + }, + { + "path": "meta/photoview.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/php.json", + "mode": "100644", + "type": "blob", + "sha": "22d095b57f91acefcfdf9b97e79349eadef8924b", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22d095b57f91acefcfdf9b97e79349eadef8924b" + }, + { + "path": "meta/phpipam.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/phpldapadmin.json", + "mode": "100644", + "type": "blob", + "sha": "ba903bbff31eb9e6bc10d0f7f50e57e5e58b22f6", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba903bbff31eb9e6bc10d0f7f50e57e5e58b22f6" + }, + { + "path": "meta/phpmyadmin.json", + "mode": "100644", + "type": "blob", + "sha": "0582daa4dd14fb1b96a629cb95fc5606d72a582e", + "size": 201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0582daa4dd14fb1b96a629cb95fc5606d72a582e" + }, + { + "path": "meta/pi-alert.json", + "mode": "100644", + "type": "blob", + "sha": "bfb6c913fe91fe52349d6f680d6540f6f2faee09", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfb6c913fe91fe52349d6f680d6540f6f2faee09" + }, + { + "path": "meta/pi-hole-unbound.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/pi-hole.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pia.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/piaware.json", + "mode": "100644", + "type": "blob", + "sha": "745270f6a47b032dcd8a8a23bf6d42dc1ba8875f", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/745270f6a47b032dcd8a8a23bf6d42dc1ba8875f" + }, + { + "path": "meta/picsur.json", + "mode": "100644", + "type": "blob", + "sha": "b3869a9f6cf0c3537cf68f0a721cd0e4bcfba350", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3869a9f6cf0c3537cf68f0a721cd0e4bcfba350" + }, + { + "path": "meta/pigallery2.json", + "mode": "100644", + "type": "blob", + "sha": "395282c196526c61ee95098d37a3a598116f03a4", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/395282c196526c61ee95098d37a3a598116f03a4" + }, + { + "path": "meta/pikapods.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/pikvm.json", + "mode": "100644", + "type": "blob", + "sha": "95731bcd8608d774a67719de4cb2adea66d41cb6", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95731bcd8608d774a67719de4cb2adea66d41cb6" + }, + { + "path": "meta/pinchflat.json", + "mode": "100644", + "type": "blob", + "sha": "eefe0f81234c6ed4992b4f90e5e86b85d30884ec", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eefe0f81234c6ed4992b4f90e5e86b85d30884ec" + }, + { + "path": "meta/pinepods.json", + "mode": "100644", + "type": "blob", + "sha": "cca0bcb3a15658f92aa1b0bb1ae8296d66395468", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cca0bcb3a15658f92aa1b0bb1ae8296d66395468" + }, + { + "path": "meta/pingdom.json", + "mode": "100644", + "type": "blob", + "sha": "269c01c55da364de627c9067359cfa0c7a17d57b", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/269c01c55da364de627c9067359cfa0c7a17d57b" + }, + { + "path": "meta/pingvin-share.json", + "mode": "100644", + "type": "blob", + "sha": "53f35008dc89983bae7937131ef46deed5cc8c71", + "size": 319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53f35008dc89983bae7937131ef46deed5cc8c71" + }, + { + "path": "meta/pingvin.json", + "mode": "100644", + "type": "blob", + "sha": "08e0a84661c2221660609513d71d367ae2755c11", + "size": 331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08e0a84661c2221660609513d71d367ae2755c11" + }, + { + "path": "meta/pinkary.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/pinry.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/pinterest.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pioneer.json", + "mode": "100644", + "type": "blob", + "sha": "669ac4b1a68f93bfe7f82196b6336cd6c6bc8cd6", + "size": 275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/669ac4b1a68f93bfe7f82196b6336cd6c6bc8cd6" + }, + { + "path": "meta/piped.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/pirate-proxy.json", + "mode": "100644", + "type": "blob", + "sha": "72fdaffe6f779083e51d5e6d2dbcba42cd5b03c8", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72fdaffe6f779083e51d5e6d2dbcba42cd5b03c8" + }, + { + "path": "meta/pivpn.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/piwigo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pixelfed.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/plane.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/planka.json", + "mode": "100644", + "type": "blob", + "sha": "c586f1fe3a23cbf974bb9f32a6df5a233d368a43", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c586f1fe3a23cbf974bb9f32a6df5a233d368a43" + }, + { + "path": "meta/plant-it.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/plantuml.json", + "mode": "100644", + "type": "blob", + "sha": "86e91603b953ca8b3b5033cc07da81c7ffc55f82", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86e91603b953ca8b3b5033cc07da81c7ffc55f82" + }, + { + "path": "meta/platzi.json", + "mode": "100644", + "type": "blob", + "sha": "2b97497f8bedb7a53f87b8cde605baf4ea8d5572", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b97497f8bedb7a53f87b8cde605baf4ea8d5572" + }, + { + "path": "meta/plausible.json", + "mode": "100644", + "type": "blob", + "sha": "4f0f3a38298ab80c1b65bab0b126197778605dc4", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f0f3a38298ab80c1b65bab0b126197778605dc4" + }, + { + "path": "meta/playstation.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/pleroma.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/plesk.json", + "mode": "100644", + "type": "blob", + "sha": "f8beeda5aa59b7d2d02e5bccc99ca596eee3fc00", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8beeda5aa59b7d2d02e5bccc99ca596eee3fc00" + }, + { + "path": "meta/plex-alt.json", + "mode": "100644", + "type": "blob", + "sha": "1fa1886976ecf8572fe8af2490fb4482d4f71703", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fa1886976ecf8572fe8af2490fb4482d4f71703" + }, + { + "path": "meta/plex-meta-manager.json", + "mode": "100644", + "type": "blob", + "sha": "dc7805e8cd83540b2360a61cf7243822adcf67bb", + "size": 346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc7805e8cd83540b2360a61cf7243822adcf67bb" + }, + { + "path": "meta/plex-rewind.json", + "mode": "100644", + "type": "blob", + "sha": "b8b28b3edbc45c2bdc8297c4f09d02f7bd0eb1bc", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8b28b3edbc45c2bdc8297c4f09d02f7bd0eb1bc" + }, + { + "path": "meta/plex.json", + "mode": "100644", + "type": "blob", + "sha": "bf4b2da7678478c235b610184af46bf67662ebb8", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf4b2da7678478c235b610184af46bf67662ebb8" + }, + { + "path": "meta/plexdrive.json", + "mode": "100644", + "type": "blob", + "sha": "e1d95be05b0bcbf19ea5dfbf9024ff5038c87885", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1d95be05b0bcbf19ea5dfbf9024ff5038c87885" + }, + { + "path": "meta/plexrequests.json", + "mode": "100644", + "type": "blob", + "sha": "1bca772da253bdfab41a63d2bcdc29b4cbd96c59", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bca772da253bdfab41a63d2bcdc29b4cbd96c59" + }, + { + "path": "meta/plexripper.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/plume.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pluralsight.json", + "mode": "100644", + "type": "blob", + "sha": "ab9f01fe42d62bd03bc12312eacd5bc5aab3f8e1", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab9f01fe42d62bd03bc12312eacd5bc5aab3f8e1" + }, + { + "path": "meta/pocket-casts.json", + "mode": "100644", + "type": "blob", + "sha": "bfcdc59f1aa57242b79875445f942ebf4541f8b4", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfcdc59f1aa57242b79875445f942ebf4541f8b4" + }, + { + "path": "meta/pocket-id.json", + "mode": "100644", + "type": "blob", + "sha": "04838c14bb9aa9ca5fa5eac745f38fb18c4f7079", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04838c14bb9aa9ca5fa5eac745f38fb18c4f7079" + }, + { + "path": "meta/pocketbase.json", + "mode": "100644", + "type": "blob", + "sha": "1372d76c87ad72fa81a74a80eccd3ee26b2465b0", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1372d76c87ad72fa81a74a80eccd3ee26b2465b0" + }, + { + "path": "meta/podfetch.json", + "mode": "100644", + "type": "blob", + "sha": "896f667a47016506461fb4b20ab66a16e0efe389", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/896f667a47016506461fb4b20ab66a16e0efe389" + }, + { + "path": "meta/podgrab.json", + "mode": "100644", + "type": "blob", + "sha": "d9cb5f13b8746127d7b53bed3e1b0fc07e940365", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9cb5f13b8746127d7b53bed3e1b0fc07e940365" + }, + { + "path": "meta/podify.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/podman.json", + "mode": "100644", + "type": "blob", + "sha": "b44d8ff65bfc62dd5c2dccbb389b971488c27181", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b44d8ff65bfc62dd5c2dccbb389b971488c27181" + }, + { + "path": "meta/podnapisi.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/policycontroller.json", + "mode": "100644", + "type": "blob", + "sha": "6b57cc0f79ea3dfa164822d44033d6cb1ab5272c", + "size": 298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b57cc0f79ea3dfa164822d44033d6cb1ab5272c" + }, + { + "path": "meta/poly.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/polywork.json", + "mode": "100644", + "type": "blob", + "sha": "500565937a3dcb3a5207c098b97be8ba6d353881", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/500565937a3dcb3a5207c098b97be8ba6d353881" + }, + { + "path": "meta/porkbun.json", + "mode": "100644", + "type": "blob", + "sha": "1a353211924a7535880fa6b07abd9e8230dcacb6", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a353211924a7535880fa6b07abd9e8230dcacb6" + }, + { + "path": "meta/port-note.json", + "mode": "100644", + "type": "blob", + "sha": "ba6821a8c27ffe2024c8ad274addd09377d40dc6", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba6821a8c27ffe2024c8ad274addd09377d40dc6" + }, + { + "path": "meta/portainer-alt.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/portainer-be.json", + "mode": "100644", + "type": "blob", + "sha": "bf14e4a86a589f9a87478cd5c83c20fabc76d6e2", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf14e4a86a589f9a87478cd5c83c20fabc76d6e2" + }, + { + "path": "meta/portainer.json", + "mode": "100644", + "type": "blob", + "sha": "cefb244cc432861979a5b44b5d6307d7e93b49cf", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cefb244cc432861979a5b44b5d6307d7e93b49cf" + }, + { + "path": "meta/portracker.json", + "mode": "100644", + "type": "blob", + "sha": "4cb17654be6958b13baf71d49bfb18f1736b1809", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cb17654be6958b13baf71d49bfb18f1736b1809" + }, + { + "path": "meta/portus.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/postal.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/poste.json", + "mode": "100644", + "type": "blob", + "sha": "324bc7921de88218d90560a5f5728af8669e697b", + "size": 275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/324bc7921de88218d90560a5f5728af8669e697b" + }, + { + "path": "meta/posterizarr.json", + "mode": "100644", + "type": "blob", + "sha": "abd7431d2d1dcce44a2e3084d91d0c9f417057fb", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abd7431d2d1dcce44a2e3084d91d0c9f417057fb" + }, + { + "path": "meta/postgres.json", + "mode": "100644", + "type": "blob", + "sha": "fe775793c295fe79f62c2fc61c954f75e9d8d978", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe775793c295fe79f62c2fc61c954f75e9d8d978" + }, + { + "path": "meta/postgresql.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/postgresus.json", + "mode": "100644", + "type": "blob", + "sha": "900d26cd6edc4db67687a9bfd2019fbdf14feeed", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/900d26cd6edc4db67687a9bfd2019fbdf14feeed" + }, + { + "path": "meta/posthog.json", + "mode": "100644", + "type": "blob", + "sha": "616817a121453b449eef6a572b6ce09e74f2f87b", + "size": 360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/616817a121453b449eef6a572b6ce09e74f2f87b" + }, + { + "path": "meta/postiz.json", + "mode": "100644", + "type": "blob", + "sha": "18fbbfc130a89a18ee7008fedf204a1861935f6d", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18fbbfc130a89a18ee7008fedf204a1861935f6d" + }, + { + "path": "meta/powerbi.json", + "mode": "100644", + "type": "blob", + "sha": "e14c419914277ab923a38f1b9ac127c095392da2", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e14c419914277ab923a38f1b9ac127c095392da2" + }, + { + "path": "meta/powerdns.json", + "mode": "100644", + "type": "blob", + "sha": "26912a5d00a8cd312b28f15c8f2548322a1c7827", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26912a5d00a8cd312b28f15c8f2548322a1c7827" + }, + { + "path": "meta/powerpanel.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/premium-mobile.json", + "mode": "100644", + "type": "blob", + "sha": "ad0c7adc4f5695eb9400b4193a0969ebb905cdaa", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad0c7adc4f5695eb9400b4193a0969ebb905cdaa" + }, + { + "path": "meta/premiumize.json", + "mode": "100644", + "type": "blob", + "sha": "aa86049824a811f1de5844b80a537fafe3f6a651", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa86049824a811f1de5844b80a537fafe3f6a651" + }, + { + "path": "meta/pretix.json", + "mode": "100644", + "type": "blob", + "sha": "7961cfc698c403e1acd2440657ee3e115d7627a6", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7961cfc698c403e1acd2440657ee3e115d7627a6" + }, + { + "path": "meta/price-buddy.json", + "mode": "100644", + "type": "blob", + "sha": "3afe318979a1a21f3e39c884152487f866f73fb4", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3afe318979a1a21f3e39c884152487f866f73fb4" + }, + { + "path": "meta/primal.json", + "mode": "100644", + "type": "blob", + "sha": "5abb2fdf8eb44d430ac9280a4b1613af96a25512", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5abb2fdf8eb44d430ac9280a4b1613af96a25512" + }, + { + "path": "meta/prime-video-alt.json", + "mode": "100644", + "type": "blob", + "sha": "2a4187d4e52e9c9a7b2b291d5c7a32043138bab6", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a4187d4e52e9c9a7b2b291d5c7a32043138bab6" + }, + { + "path": "meta/prime-video.json", + "mode": "100644", + "type": "blob", + "sha": "63b57f6bf595ec4ea73574d3e4ddb717d42789e4", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63b57f6bf595ec4ea73574d3e4ddb717d42789e4" + }, + { + "path": "meta/printables.json", + "mode": "100644", + "type": "blob", + "sha": "4f9f6b5d6d491917c60f7e09add172860e47455a", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f9f6b5d6d491917c60f7e09add172860e47455a" + }, + { + "path": "meta/printer.json", + "mode": "100644", + "type": "blob", + "sha": "f58509e33e9a19f163793db918f8e25159ec9d96", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f58509e33e9a19f163793db918f8e25159ec9d96" + }, + { + "path": "meta/pritunl.json", + "mode": "100644", + "type": "blob", + "sha": "3ebfcf6e9d6a7cf8bf5f021066559b1871c120f7", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ebfcf6e9d6a7cf8bf5f021066559b1871c120f7" + }, + { + "path": "meta/privacyidea.json", + "mode": "100644", + "type": "blob", + "sha": "b4ae776a61ce75a085ae8b084e8b2bbfaaa2ba54", + "size": 242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4ae776a61ce75a085ae8b084e8b2bbfaaa2ba54" + }, + { + "path": "meta/private-internet-access.json", + "mode": "100644", + "type": "blob", + "sha": "311c70cb6c3c82553c731e9c16008342a2567323", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/311c70cb6c3c82553c731e9c16008342a2567323" + }, + { + "path": "meta/privatebin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/profilarr.json", + "mode": "100644", + "type": "blob", + "sha": "fdff81a91aa60d3ae13173c6b265ec66be29540c", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdff81a91aa60d3ae13173c6b265ec66be29540c" + }, + { + "path": "meta/projection-lab.json", + "mode": "100644", + "type": "blob", + "sha": "bf93bd6a8ca23cb7e0be16c49a97933101978e3f", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf93bd6a8ca23cb7e0be16c49a97933101978e3f" + }, + { + "path": "meta/projectsend.json", + "mode": "100644", + "type": "blob", + "sha": "d0b5f977159cc12955d8bb89e3a1a55ce6126ecf", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0b5f977159cc12955d8bb89e3a1a55ce6126ecf" + }, + { + "path": "meta/prometheus.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/proton-calendar.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/proton-docs.json", + "mode": "100644", + "type": "blob", + "sha": "d2642cae5edc5a64f81f2d5b7ead865eae5ed91a", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2642cae5edc5a64f81f2d5b7ead865eae5ed91a" + }, + { + "path": "meta/proton-drive.json", + "mode": "100644", + "type": "blob", + "sha": "2ba0899da7496cad508bf9a8ffd24b712d4d7148", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ba0899da7496cad508bf9a8ffd24b712d4d7148" + }, + { + "path": "meta/proton-lumo.json", + "mode": "100644", + "type": "blob", + "sha": "7316e4c940ad5a599fd8eb4e6756ba1171957c4c", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7316e4c940ad5a599fd8eb4e6756ba1171957c4c" + }, + { + "path": "meta/proton-mail.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/proton-pass.json", + "mode": "100644", + "type": "blob", + "sha": "c9df2a5f981661212ad1778829eb90a075a035e4", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9df2a5f981661212ad1778829eb90a075a035e4" + }, + { + "path": "meta/proton-vpn.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/proton-wallet.json", + "mode": "100644", + "type": "blob", + "sha": "f16bae43afadf8bc3986336c9e4dd8f10be852ab", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f16bae43afadf8bc3986336c9e4dd8f10be852ab" + }, + { + "path": "meta/prowlarr.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/proxmox.json", + "mode": "100644", + "type": "blob", + "sha": "f074acbab0a374fb0776ae11cbc9d54b68f2c128", + "size": 361, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f074acbab0a374fb0776ae11cbc9d54b68f2c128" + }, + { + "path": "meta/prtg.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/prusa-research.json", + "mode": "100644", + "type": "blob", + "sha": "c3b02076da1addf762bb58f9d75fa298fc2b7563", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3b02076da1addf762bb58f9d75fa298fc2b7563" + }, + { + "path": "meta/psitransfer.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/pterodactyl.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/public-pool.json", + "mode": "100644", + "type": "blob", + "sha": "ad0fc39f63c06ee92c3b42c1c2caaf5642ca4e81", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad0fc39f63c06ee92c3b42c1c2caaf5642ca4e81" + }, + { + "path": "meta/pufferpanel.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pulsarr.json", + "mode": "100644", + "type": "blob", + "sha": "e4c5ca73fe3a2053108f7c13e2741f7e2eb05ef9", + "size": 202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4c5ca73fe3a2053108f7c13e2741f7e2eb05ef9" + }, + { + "path": "meta/pulse.json", + "mode": "100644", + "type": "blob", + "sha": "c9fcaeb87c061824d22ad41619d611d459f211ae", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9fcaeb87c061824d22ad41619d611d459f211ae" + }, + { + "path": "meta/purelymail.json", + "mode": "100644", + "type": "blob", + "sha": "d6e31611afd03fbfd33b8a93742da5f1c933782a", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6e31611afd03fbfd33b8a93742da5f1c933782a" + }, + { + "path": "meta/pushfish.json", + "mode": "100644", + "type": "blob", + "sha": "7c12e3ae65cc2848c2524e1bd5c00acdac5ef484", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c12e3ae65cc2848c2524e1bd5c00acdac5ef484" + }, + { + "path": "meta/pushover.json", + "mode": "100644", + "type": "blob", + "sha": "40a1f0b3e7fec329b184d679e047dbf00cbdf08d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40a1f0b3e7fec329b184d679e047dbf00cbdf08d" + }, + { + "path": "meta/putty.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pve-scripts-local.json", + "mode": "100644", + "type": "blob", + "sha": "8da5e9a781265d483aa1a5b6a30020a2002034bf", + "size": 196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8da5e9a781265d483aa1a5b6a30020a2002034bf" + }, + { + "path": "meta/pwndrop.json", + "mode": "100644", + "type": "blob", + "sha": "9150b766ee2f0682e307c6c39ad1331a8547d0ab", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9150b766ee2f0682e307c6c39ad1331a8547d0ab" + }, + { + "path": "meta/pwpush.json", + "mode": "100644", + "type": "blob", + "sha": "3eca4684617b2ef936796f1d80f611a09c1737cc", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3eca4684617b2ef936796f1d80f611a09c1737cc" + }, + { + "path": "meta/pydio.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/pyload.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/python.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/qbittorrent.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/qd-today.json", + "mode": "100644", + "type": "blob", + "sha": "2705e9de152ebe76e9acf4d22074c0cd1e41bc9c", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2705e9de152ebe76e9acf4d22074c0cd1e41bc9c" + }, + { + "path": "meta/qdirstat.json", + "mode": "100644", + "type": "blob", + "sha": "d03b7c1ea9e1c44f988dd36942b53007b438c955", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d03b7c1ea9e1c44f988dd36942b53007b438c955" + }, + { + "path": "meta/qdrant.json", + "mode": "100644", + "type": "blob", + "sha": "6ff162ac98b1468e8e374965fcf68f32b5276b06", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ff162ac98b1468e8e374965fcf68f32b5276b06" + }, + { + "path": "meta/qinglong.json", + "mode": "100644", + "type": "blob", + "sha": "0d3cc10595b713b358ae6e3da6a95d4b2de965fe", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d3cc10595b713b358ae6e3da6a95d4b2de965fe" + }, + { + "path": "meta/qnap.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/quant-ux.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/quay.json", + "mode": "100644", + "type": "blob", + "sha": "5c8fc2a8b4525a1cd21fbc60b9d2a32a5280afe9", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c8fc2a8b4525a1cd21fbc60b9d2a32a5280afe9" + }, + { + "path": "meta/questdb.json", + "mode": "100644", + "type": "blob", + "sha": "ff42c421590150eb91244c47daf83f49887b26c7", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff42c421590150eb91244c47daf83f49887b26c7" + }, + { + "path": "meta/quetre.json", + "mode": "100644", + "type": "blob", + "sha": "8bb322b64bea5ffb27c21b7096a0bf80fcc9bcd1", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bb322b64bea5ffb27c21b7096a0bf80fcc9bcd1" + }, + { + "path": "meta/qui.json", + "mode": "100644", + "type": "blob", + "sha": "928ab0042a97a6b17c10b4e01d0e52c2c321755f", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/928ab0042a97a6b17c10b4e01d0e52c2c321755f" + }, + { + "path": "meta/quickshare.json", + "mode": "100644", + "type": "blob", + "sha": "1e1b8861e958ec4667aa30b3de0220051fb935e0", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e1b8861e958ec4667aa30b3de0220051fb935e0" + }, + { + "path": "meta/quickwit.json", + "mode": "100644", + "type": "blob", + "sha": "888c990248a637887472282891722cc2ab0f864c", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/888c990248a637887472282891722cc2ab0f864c" + }, + { + "path": "meta/quizlet.json", + "mode": "100644", + "type": "blob", + "sha": "00d882025246e051b6b96bd75c30d02ad2e6829c", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00d882025246e051b6b96bd75c30d02ad2e6829c" + }, + { + "path": "meta/qutebrowser.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/qwen.json", + "mode": "100644", + "type": "blob", + "sha": "7f5ef61f9446166ad1c7ba557a2a88aedce58554", + "size": 196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f5ef61f9446166ad1c7ba557a2a88aedce58554" + }, + { + "path": "meta/qwik.json", + "mode": "100644", + "type": "blob", + "sha": "cab619a7f359746d1647d9abe6de89f414951da2", + "size": 227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cab619a7f359746d1647d9abe6de89f414951da2" + }, + { + "path": "meta/r.json", + "mode": "100644", + "type": "blob", + "sha": "1503fc987a032c57b07e599c0cb00de2de99a1af", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1503fc987a032c57b07e599c0cb00de2de99a1af" + }, + { + "path": "meta/rabbitmq.json", + "mode": "100644", + "type": "blob", + "sha": "0a157f1193a532ebe1d419c55daddc223fc6f84d", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a157f1193a532ebe1d419c55daddc223fc6f84d" + }, + { + "path": "meta/racknerd.json", + "mode": "100644", + "type": "blob", + "sha": "fef8e845120b1c7399a3091e2a5e6734b1e5a748", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fef8e845120b1c7399a3091e2a5e6734b1e5a748" + }, + { + "path": "meta/radarr-4k.json", + "mode": "100644", + "type": "blob", + "sha": "096d4fe3a04cc9a2464a74b5ee9de79baff29ad5", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/096d4fe3a04cc9a2464a74b5ee9de79baff29ad5" + }, + { + "path": "meta/radarr.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/radicale.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/rainloop.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/rallly.json", + "mode": "100644", + "type": "blob", + "sha": "b9ce456f29bc5c1293cca20fb1142d25e89690d5", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9ce456f29bc5c1293cca20fb1142d25e89690d5" + }, + { + "path": "meta/ramp.json", + "mode": "100644", + "type": "blob", + "sha": "6f58d5e818a6a86e37f94a8e8666eb1a1e3e9108", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f58d5e818a6a86e37f94a8e8666eb1a1e3e9108" + }, + { + "path": "meta/rancher.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/raneto.json", + "mode": "100644", + "type": "blob", + "sha": "6062e79d690e930139bf8614242fa9db4a79bd5c", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6062e79d690e930139bf8614242fa9db4a79bd5c" + }, + { + "path": "meta/raritan.json", + "mode": "100644", + "type": "blob", + "sha": "55c283ed57c0496eb549ff85fe5a14583edd6fc5", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55c283ed57c0496eb549ff85fe5a14583edd6fc5" + }, + { + "path": "meta/raspberry-pi.json", + "mode": "100644", + "type": "blob", + "sha": "3c7ada016c21e49cdb18c2c8873e68891902046a", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c7ada016c21e49cdb18c2c8873e68891902046a" + }, + { + "path": "meta/raspberrymatic.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/rathole.json", + "mode": "100644", + "type": "blob", + "sha": "1b5182bc535cf287de67f2cadad7809d1a595676", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b5182bc535cf287de67f2cadad7809d1a595676" + }, + { + "path": "meta/rclone.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/rdt-client.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/reactive-resume.json", + "mode": "100644", + "type": "blob", + "sha": "74a67a0cfbdbc267bffe33010941c4412bbaf004", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74a67a0cfbdbc267bffe33010941c4412bbaf004" + }, + { + "path": "meta/reactjs.json", + "mode": "100644", + "type": "blob", + "sha": "b7119fac6763062511bfd40dc170568401f8eaaa", + "size": 231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7119fac6763062511bfd40dc170568401f8eaaa" + }, + { + "path": "meta/readarr.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/readeck.json", + "mode": "100644", + "type": "blob", + "sha": "9c3f7f93ed23d2dc4769a7c3d917c9fc545ee1d7", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c3f7f93ed23d2dc4769a7c3d917c9fc545ee1d7" + }, + { + "path": "meta/readthedocs.json", + "mode": "100644", + "type": "blob", + "sha": "5c61edbd1e3bc40b12e448c6338b9ba847120867", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c61edbd1e3bc40b12e448c6338b9ba847120867" + }, + { + "path": "meta/readwise-reader.json", + "mode": "100644", + "type": "blob", + "sha": "a9adb5b355961320da1a5bf4620fd4c9c41790e8", + "size": 328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9adb5b355961320da1a5bf4620fd4c9c41790e8" + }, + { + "path": "meta/real-debrid.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/realhosting.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/recalbox.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/receipt-wrangler.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/recipesage.json", + "mode": "100644", + "type": "blob", + "sha": "3436c4dbdfb85e39d11c164178dbad1d17c10b9a", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3436c4dbdfb85e39d11c164178dbad1d17c10b9a" + }, + { + "path": "meta/recipya.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/recomendarr.json", + "mode": "100644", + "type": "blob", + "sha": "e94cb2e3a8cdb2499014b87888105eb22c818828", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e94cb2e3a8cdb2499014b87888105eb22c818828" + }, + { + "path": "meta/recyclarr.json", + "mode": "100644", + "type": "blob", + "sha": "5ff5f47e234c0d94de14e1675f3935037250f29d", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ff5f47e234c0d94de14e1675f3935037250f29d" + }, + { + "path": "meta/reddit.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/redhat-linux.json", + "mode": "100644", + "type": "blob", + "sha": "568f33bbf141df15c19eac2ba22c60f351774621", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568f33bbf141df15c19eac2ba22c60f351774621" + }, + { + "path": "meta/redict.json", + "mode": "100644", + "type": "blob", + "sha": "32eb65cdd0f668685c89bfabf27702bd76cdac80", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32eb65cdd0f668685c89bfabf27702bd76cdac80" + }, + { + "path": "meta/redis.json", + "mode": "100644", + "type": "blob", + "sha": "412b0b20477129865b9768b8fc195a84fe57a4d5", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/412b0b20477129865b9768b8fc195a84fe57a4d5" + }, + { + "path": "meta/redlib.json", + "mode": "100644", + "type": "blob", + "sha": "2e1d2dc7b05797f07c353f4b06f54897efe24f1c", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e1d2dc7b05797f07c353f4b06f54897efe24f1c" + }, + { + "path": "meta/redmine.json", + "mode": "100644", + "type": "blob", + "sha": "23a381314c22e4cf8996d4bddc7ca40294a56850", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23a381314c22e4cf8996d4bddc7ca40294a56850" + }, + { + "path": "meta/rekor.json", + "mode": "100644", + "type": "blob", + "sha": "0531d9933ef9828fce451a9d4902f9d9aa0ca098", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0531d9933ef9828fce451a9d4902f9d9aa0ca098" + }, + { + "path": "meta/release-argus.json", + "mode": "100644", + "type": "blob", + "sha": "529294be6a39753f7749492c56b8e3a7a4990d97", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/529294be6a39753f7749492c56b8e3a7a4990d97" + }, + { + "path": "meta/remmina.json", + "mode": "100644", + "type": "blob", + "sha": "7cb61f86f56fcd7752bebd6f287b90caf73591e9", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cb61f86f56fcd7752bebd6f287b90caf73591e9" + }, + { + "path": "meta/remnawave.json", + "mode": "100644", + "type": "blob", + "sha": "949984a50296d52d2abe324b0d05e431d7afcfbf", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/949984a50296d52d2abe324b0d05e431d7afcfbf" + }, + { + "path": "meta/remnote.json", + "mode": "100644", + "type": "blob", + "sha": "8e3514e2ce03cf59d67538abc6569f03c8a4f5f0", + "size": 244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e3514e2ce03cf59d67538abc6569f03c8a4f5f0" + }, + { + "path": "meta/remotely.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/renovate.json", + "mode": "100644", + "type": "blob", + "sha": "2eea382cf657b18ca08928fd20dc586516c2ff5c", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eea382cf657b18ca08928fd20dc586516c2ff5c" + }, + { + "path": "meta/reolink.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/reposilite.json", + "mode": "100644", + "type": "blob", + "sha": "56e06c535b30e73ba7e1de016c07ac8ca901b6e8", + "size": 334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56e06c535b30e73ba7e1de016c07ac8ca901b6e8" + }, + { + "path": "meta/requestly.json", + "mode": "100644", + "type": "blob", + "sha": "ec9c4d8ddb1c7c9efe083ed63a7331b9dd4d60e7", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec9c4d8ddb1c7c9efe083ed63a7331b9dd4d60e7" + }, + { + "path": "meta/requestrr.json", + "mode": "100644", + "type": "blob", + "sha": "429a71f53d287d4d99d4f828f113d252e3c4617c", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/429a71f53d287d4d99d4f828f113d252e3c4617c" + }, + { + "path": "meta/resiliosync-full.json", + "mode": "100644", + "type": "blob", + "sha": "150ad7716dc8ce144199dd8176195abd6c272453", + "size": 350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/150ad7716dc8ce144199dd8176195abd6c272453" + }, + { + "path": "meta/resiliosync.json", + "mode": "100644", + "type": "blob", + "sha": "f6fa09ff5940545917a754e30d55526a34de9baa", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6fa09ff5940545917a754e30d55526a34de9baa" + }, + { + "path": "meta/restic.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/restreamer.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/retrom.json", + "mode": "100644", + "type": "blob", + "sha": "615562ade970bfac9a219636d3ddf76c1eb7b5f2", + "size": 236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/615562ade970bfac9a219636d3ddf76c1eb7b5f2" + }, + { + "path": "meta/revanced-manager.json", + "mode": "100644", + "type": "blob", + "sha": "ce5c92dd835fe0fb6f859bca38b294147321fb0a", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce5c92dd835fe0fb6f859bca38b294147321fb0a" + }, + { + "path": "meta/revolt.json", + "mode": "100644", + "type": "blob", + "sha": "a884260a51e1ef9de13c7f16c01cef4273b71a94", + "size": 353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a884260a51e1ef9de13c7f16c01cef4273b71a94" + }, + { + "path": "meta/rhasspy.json", + "mode": "100644", + "type": "blob", + "sha": "32da7a6f40d393c7b4cfe45448d811f87fd8b80b", + "size": 371, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32da7a6f40d393c7b4cfe45448d811f87fd8b80b" + }, + { + "path": "meta/rhodecode.json", + "mode": "100644", + "type": "blob", + "sha": "0aad1add60275975b6f061150d13c31c62891921", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0aad1add60275975b6f061150d13c31c62891921" + }, + { + "path": "meta/richy.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/rimgo.json", + "mode": "100644", + "type": "blob", + "sha": "efb4a961f7dcaaf6855ae178774963c97fb36359", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efb4a961f7dcaaf6855ae178774963c97fb36359" + }, + { + "path": "meta/riot.json", + "mode": "100644", + "type": "blob", + "sha": "d5ed94ca32fbf560d06d98e2dc92dca0d3501710", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5ed94ca32fbf560d06d98e2dc92dca0d3501710" + }, + { + "path": "meta/ripe.json", + "mode": "100644", + "type": "blob", + "sha": "9fb1320f3a10f2e6ff63ad78d9973d39061e0d2b", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9fb1320f3a10f2e6ff63ad78d9973d39061e0d2b" + }, + { + "path": "meta/riverside-fm.json", + "mode": "100644", + "type": "blob", + "sha": "2c9ff6f0becc589d04631311392c407748594bb1", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c9ff6f0becc589d04631311392c407748594bb1" + }, + { + "path": "meta/robinhood.json", + "mode": "100644", + "type": "blob", + "sha": "715ed76b261a19cbdc6c95f0e445751536dea607", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/715ed76b261a19cbdc6c95f0e445751536dea607" + }, + { + "path": "meta/rocket-chat.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/rocky-linux.json", + "mode": "100644", + "type": "blob", + "sha": "fa27f8aa39ba820c5fad7745f6b24d8fd212eb49", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa27f8aa39ba820c5fad7745f6b24d8fd212eb49" + }, + { + "path": "meta/romm.json", + "mode": "100644", + "type": "blob", + "sha": "4c21a4ae024f3aa0fb4daeeb3a0b4e5c4df86f93", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c21a4ae024f3aa0fb4daeeb3a0b4e5c4df86f93" + }, + { + "path": "meta/rompya.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/rook.json", + "mode": "100644", + "type": "blob", + "sha": "10ac5c9e5133454575a989e5e6692efeffce3521", + "size": 307, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10ac5c9e5133454575a989e5e6692efeffce3521" + }, + { + "path": "meta/root-me.json", + "mode": "100644", + "type": "blob", + "sha": "1c145298ec0b0040755845ec845c01f3ca8d8b67", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c145298ec0b0040755845ec845c01f3ca8d8b67" + }, + { + "path": "meta/rotki.json", + "mode": "100644", + "type": "blob", + "sha": "51c1204948550065b6b16e2ef59a0970dd8de97b", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51c1204948550065b6b16e2ef59a0970dd8de97b" + }, + { + "path": "meta/roundcube.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/router.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/rozetkaua.json", + "mode": "100644", + "type": "blob", + "sha": "a351aecaa7dc7c15be0733951c2555b939bd5198", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a351aecaa7dc7c15be0733951c2555b939bd5198" + }, + { + "path": "meta/rpi-monitor.json", + "mode": "100644", + "type": "blob", + "sha": "8528d94a2f01237b7d9d95f8f3bb1bea8efcdab4", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8528d94a2f01237b7d9d95f8f3bb1bea8efcdab4" + }, + { + "path": "meta/rport.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/rspamd.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/rss-bridge.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/rss-translator.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/rsshub.json", + "mode": "100644", + "type": "blob", + "sha": "2cc8fa88b4bf7aa86e39a2f59ffe1f45208b3141", + "size": 269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cc8fa88b4bf7aa86e39a2f59ffe1f45208b3141" + }, + { + "path": "meta/rstudio.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/rstudioserver.json", + "mode": "100644", + "type": "blob", + "sha": "90970b7bff2b23dc073e26b7600ed4519433382f", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90970b7bff2b23dc073e26b7600ed4519433382f" + }, + { + "path": "meta/ruby.json", + "mode": "100644", + "type": "blob", + "sha": "1503fc987a032c57b07e599c0cb00de2de99a1af", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1503fc987a032c57b07e599c0cb00de2de99a1af" + }, + { + "path": "meta/ruckus-unleashed.json", + "mode": "100644", + "type": "blob", + "sha": "0cfbd5703ed80d3c5075c559756c54eea52570a8", + "size": 220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cfbd5703ed80d3c5075c559756c54eea52570a8" + }, + { + "path": "meta/rumble.json", + "mode": "100644", + "type": "blob", + "sha": "a96e68858e4513c9417201ee30fe9d01a9bfca35", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a96e68858e4513c9417201ee30fe9d01a9bfca35" + }, + { + "path": "meta/rundeck.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/runeaudio.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/runonflux.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/runson.json", + "mode": "100644", + "type": "blob", + "sha": "eb40d407b43b012ea74438020c601896450f6496", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb40d407b43b012ea74438020c601896450f6496" + }, + { + "path": "meta/rust.json", + "mode": "100644", + "type": "blob", + "sha": "19c74e1c0d546a690d77df21a9e7cfce993de521", + "size": 375, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19c74e1c0d546a690d77df21a9e7cfce993de521" + }, + { + "path": "meta/rustdesk.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/rutorrent.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ryot.json", + "mode": "100644", + "type": "blob", + "sha": "e0a0d6a50bdf8aff3ce0e24c827210e0f291783b", + "size": 326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0a0d6a50bdf8aff3ce0e24c827210e0f291783b" + }, + { + "path": "meta/sabnzbd.json", + "mode": "100644", + "type": "blob", + "sha": "0416b132a3ce285053f87b2471a758a42be8572e", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0416b132a3ce285053f87b2471a758a42be8572e" + }, + { + "path": "meta/safari-ios.json", + "mode": "100644", + "type": "blob", + "sha": "43adee884e4824b2ef7dc2bba3e064e87cb9c3b6", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43adee884e4824b2ef7dc2bba3e064e87cb9c3b6" + }, + { + "path": "meta/safari.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/safeline.json", + "mode": "100644", + "type": "blob", + "sha": "461d5c142a98eba5c69f411e182b42eb343de8ba", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/461d5c142a98eba5c69f411e182b42eb343de8ba" + }, + { + "path": "meta/sagemcom.json", + "mode": "100644", + "type": "blob", + "sha": "87dde2cece071ef5361d008dddc986695ba83e40", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87dde2cece071ef5361d008dddc986695ba83e40" + }, + { + "path": "meta/salad.json", + "mode": "100644", + "type": "blob", + "sha": "561ccb8d65afa4997c06f2b5745489a0e0f154ac", + "size": 369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/561ccb8d65afa4997c06f2b5745489a0e0f154ac" + }, + { + "path": "meta/salt-project.json", + "mode": "100644", + "type": "blob", + "sha": "46f6c8c4b05d4b6499b720f2ed7490aba049d020", + "size": 244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46f6c8c4b05d4b6499b720f2ed7490aba049d020" + }, + { + "path": "meta/saltcorn.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/samba-server.json", + "mode": "100644", + "type": "blob", + "sha": "3eab69b088dae0d2eb1278bc159a91b38d6f04cd", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3eab69b088dae0d2eb1278bc159a91b38d6f04cd" + }, + { + "path": "meta/samsung-internet.json", + "mode": "100644", + "type": "blob", + "sha": "e3d062f154392979c0aeec48a92f16abb5721f5d", + "size": 229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3d062f154392979c0aeec48a92f16abb5721f5d" + }, + { + "path": "meta/sandstorm.json", + "mode": "100644", + "type": "blob", + "sha": "6fecee4060966c4a5790fb649207e90f04bf0317", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fecee4060966c4a5790fb649207e90f04bf0317" + }, + { + "path": "meta/satisfactory.json", + "mode": "100644", + "type": "blob", + "sha": "c6cbe916f03a1483408a6fd2ecb140515eca6f7b", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6cbe916f03a1483408a6fd2ecb140515eca6f7b" + }, + { + "path": "meta/scanservjs.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/schedulearn.json", + "mode": "100644", + "type": "blob", + "sha": "8b3fe265e2befbc3f828d3741f64cec5682552dd", + "size": 295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b3fe265e2befbc3f828d3741f64cec5682552dd" + }, + { + "path": "meta/schneider.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/scraperr.json", + "mode": "100644", + "type": "blob", + "sha": "1ef53851f352a9e0f81e45782d7f3a26ab9185c5", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ef53851f352a9e0f81e45782d7f3a26ab9185c5" + }, + { + "path": "meta/scrcpy.json", + "mode": "100644", + "type": "blob", + "sha": "6f482bbe4df432bde64909d7aa76aaa4aeefd69c", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f482bbe4df432bde64909d7aa76aaa4aeefd69c" + }, + { + "path": "meta/screenconnect.json", + "mode": "100644", + "type": "blob", + "sha": "93fbd9ff42ea268ba24dcf46687f2eb08786d711", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93fbd9ff42ea268ba24dcf46687f2eb08786d711" + }, + { + "path": "meta/scrutiny.json", + "mode": "100644", + "type": "blob", + "sha": "c7097abd507a14772e936a76b2a5e6ded7c94ff1", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7097abd507a14772e936a76b2a5e6ded7c94ff1" + }, + { + "path": "meta/scrypted.json", + "mode": "100644", + "type": "blob", + "sha": "4c569a227feed59961350033f16db51b2cb2f190", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c569a227feed59961350033f16db51b2cb2f190" + }, + { + "path": "meta/seafile.json", + "mode": "100644", + "type": "blob", + "sha": "2e43d4b7299ddb4cc7d4af376baac713853a5d7e", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e43d4b7299ddb4cc7d4af376baac713853a5d7e" + }, + { + "path": "meta/searx.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/searxng.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/secureai-tools.json", + "mode": "100644", + "type": "blob", + "sha": "03855e6faf52c99e131199db5edd3903845842a8", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03855e6faf52c99e131199db5edd3903845842a8" + }, + { + "path": "meta/security-onion.json", + "mode": "100644", + "type": "blob", + "sha": "6a86b2c6b9eb94409bfed2f25a8977e10014f6e5", + "size": 320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a86b2c6b9eb94409bfed2f25a8977e10014f6e5" + }, + { + "path": "meta/seelf.json", + "mode": "100644", + "type": "blob", + "sha": "1cf76d511c5607052853bf4825738a9511da8163", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cf76d511c5607052853bf4825738a9511da8163" + }, + { + "path": "meta/selenium.json", + "mode": "100644", + "type": "blob", + "sha": "f57de6c0b0ced279acc58937a28ccddf2e35eede", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f57de6c0b0ced279acc58937a28ccddf2e35eede" + }, + { + "path": "meta/self-hosted-gateway.json", + "mode": "100644", + "type": "blob", + "sha": "e09084bd5a52c4836224c6726abfff37c79d50be", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e09084bd5a52c4836224c6726abfff37c79d50be" + }, + { + "path": "meta/selfh-st.json", + "mode": "100644", + "type": "blob", + "sha": "2b003b1923620377e884010d7abf36426dbc519f", + "size": 333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b003b1923620377e884010d7abf36426dbc519f" + }, + { + "path": "meta/selfhosted.json", + "mode": "100644", + "type": "blob", + "sha": "e621f83f78104b15667b923de4a7e70b22fe8cd9", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e621f83f78104b15667b923de4a7e70b22fe8cd9" + }, + { + "path": "meta/semaphore.json", + "mode": "100644", + "type": "blob", + "sha": "9382ccc7132afebf20e1b58ea8ae75122c78e92c", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9382ccc7132afebf20e1b58ea8ae75122c78e92c" + }, + { + "path": "meta/send.json", + "mode": "100644", + "type": "blob", + "sha": "46156e3abe341de7227546fe63b82875b42a6395", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46156e3abe341de7227546fe63b82875b42a6395" + }, + { + "path": "meta/sendgrid.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/sendinblue.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/sensu.json", + "mode": "100644", + "type": "blob", + "sha": "257481a829fbe141de5dca66c6378ec9ee19615c", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/257481a829fbe141de5dca66c6378ec9ee19615c" + }, + { + "path": "meta/sentry.json", + "mode": "100644", + "type": "blob", + "sha": "505d12ba7e013ea4ed4579fb09f95ac39cd2fecd", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/505d12ba7e013ea4ed4579fb09f95ac39cd2fecd" + }, + { + "path": "meta/seq.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/series-troxide.json", + "mode": "100644", + "type": "blob", + "sha": "efb10720c34d84cb8d06139d95bb4f899c2b3b37", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efb10720c34d84cb8d06139d95bb4f899c2b3b37" + }, + { + "path": "meta/serpbear.json", + "mode": "100644", + "type": "blob", + "sha": "bbc4274c5e70542e9587d4903494dde6f65c00ea", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbc4274c5e70542e9587d4903494dde6f65c00ea" + }, + { + "path": "meta/servarr.json", + "mode": "100644", + "type": "blob", + "sha": "d62a673edd32406e4d3afa2d70dda68d4afceb7b", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d62a673edd32406e4d3afa2d70dda68d4afceb7b" + }, + { + "path": "meta/serviio.json", + "mode": "100644", + "type": "blob", + "sha": "6d94249b7319c1f9c95a25fa170ce78121cca1d3", + "size": 325, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d94249b7319c1f9c95a25fa170ce78121cca1d3" + }, + { + "path": "meta/session.json", + "mode": "100644", + "type": "blob", + "sha": "00814794e51bd49cf2fc60a8bb97ec5f5ad08bc2", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00814794e51bd49cf2fc60a8bb97ec5f5ad08bc2" + }, + { + "path": "meta/seznam.json", + "mode": "100644", + "type": "blob", + "sha": "50310250e3bd7f693e83b0967f66aca6458eeca8", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50310250e3bd7f693e83b0967f66aca6458eeca8" + }, + { + "path": "meta/sftpgo.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/shaarli.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/shell-tips.json", + "mode": "100644", + "type": "blob", + "sha": "fd0da692d8b234aeba51eeb232044e08c456b969", + "size": 315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd0da692d8b234aeba51eeb232044e08c456b969" + }, + { + "path": "meta/shell.json", + "mode": "100644", + "type": "blob", + "sha": "45f52b40bc67442fdbb064fc4d316d01e9a980f1", + "size": 357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45f52b40bc67442fdbb064fc4d316d01e9a980f1" + }, + { + "path": "meta/shellhub.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/shellngn.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/shelly.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/shinkro.json", + "mode": "100644", + "type": "blob", + "sha": "90433a40ffe8ab626fead568bfe7b4d9cc1dfc99", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90433a40ffe8ab626fead568bfe7b4d9cc1dfc99" + }, + { + "path": "meta/shinobi.json", + "mode": "100644", + "type": "blob", + "sha": "3afe23ed973c8d1748f7999c2fc18ce9b307c8f2", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3afe23ed973c8d1748f7999c2fc18ce9b307c8f2" + }, + { + "path": "meta/shiori.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/shlink.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/shoko-server.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/shoko.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/shopify.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/shortcut.json", + "mode": "100644", + "type": "blob", + "sha": "66cf26c578cb09d756c40b989365db941fe4a49b", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66cf26c578cb09d756c40b989365db941fe4a49b" + }, + { + "path": "meta/sickbeard.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/sickchill.json", + "mode": "100644", + "type": "blob", + "sha": "5a3a2199e80c075413c20a8de68c59b4f83aaadd", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a3a2199e80c075413c20a8de68c59b4f83aaadd" + }, + { + "path": "meta/sickgear.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/signal.json", + "mode": "100644", + "type": "blob", + "sha": "1233caa498e157defa081b56433fd4fc35acc9e3", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1233caa498e157defa081b56433fd4fc35acc9e3" + }, + { + "path": "meta/signoz.json", + "mode": "100644", + "type": "blob", + "sha": "3099d18d0824531f44c36d1989a26618cca43fcc", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3099d18d0824531f44c36d1989a26618cca43fcc" + }, + { + "path": "meta/sigstore.json", + "mode": "100644", + "type": "blob", + "sha": "9206f06f5595afda7d55007b5f6ffe2c14960241", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9206f06f5595afda7d55007b5f6ffe2c14960241" + }, + { + "path": "meta/silae.json", + "mode": "100644", + "type": "blob", + "sha": "0fab4347bb98c37c03efda2a0f74fd050c3d2f3d", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fab4347bb98c37c03efda2a0f74fd050c3d2f3d" + }, + { + "path": "meta/silverbullet.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/simplelogin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/simplex-chat.json", + "mode": "100644", + "type": "blob", + "sha": "1d59c01a8eeecc18d28022534dd88b97f160f9ed", + "size": 248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d59c01a8eeecc18d28022534dd88b97f160f9ed" + }, + { + "path": "meta/sinusbot.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/sipeed.json", + "mode": "100644", + "type": "blob", + "sha": "1f603f47c2237693d98bed1b9eaab92f5b58c37a", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f603f47c2237693d98bed1b9eaab92f5b58c37a" + }, + { + "path": "meta/siyuan.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/sketchup-make.json", + "mode": "100644", + "type": "blob", + "sha": "b6db86b775716f8812aacf13f55ad29d08837009", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6db86b775716f8812aacf13f55ad29d08837009" + }, + { + "path": "meta/skylink-fibernet.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/skype.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/slaanesh.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/slack.json", + "mode": "100644", + "type": "blob", + "sha": "6d8f6033cf6cd6179025581c978c5ac31191e202", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d8f6033cf6cd6179025581c978c5ac31191e202" + }, + { + "path": "meta/slash.json", + "mode": "100644", + "type": "blob", + "sha": "6db6d5113889cdd98dbcf57b7a2b687ab5302001", + "size": 323, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6db6d5113889cdd98dbcf57b7a2b687ab5302001" + }, + { + "path": "meta/slice.json", + "mode": "100644", + "type": "blob", + "sha": "62972d3a88e457d3c0d998377000546db29ece8f", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62972d3a88e457d3c0d998377000546db29ece8f" + }, + { + "path": "meta/slidev.json", + "mode": "100644", + "type": "blob", + "sha": "ab2002af686a090dff5bdb768bd091952a96c25a", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab2002af686a090dff5bdb768bd091952a96c25a" + }, + { + "path": "meta/slink.json", + "mode": "100644", + "type": "blob", + "sha": "3ed7ad08834fe77e3954efa84aa8f88e86747759", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ed7ad08834fe77e3954efa84aa8f88e86747759" + }, + { + "path": "meta/slskd.json", + "mode": "100644", + "type": "blob", + "sha": "0a90a2848ec25c3d0842a65bdf66cc5d87733986", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a90a2848ec25c3d0842a65bdf66cc5d87733986" + }, + { + "path": "meta/slurpit.json", + "mode": "100644", + "type": "blob", + "sha": "7557555c2ea53de27ea0ddbd169a799734b5a78f", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7557555c2ea53de27ea0ddbd169a799734b5a78f" + }, + { + "path": "meta/smartfox.json", + "mode": "100644", + "type": "blob", + "sha": "1b4347e6520d1f664eb236b9d475576c34ffe9ce", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b4347e6520d1f664eb236b9d475576c34ffe9ce" + }, + { + "path": "meta/smlight.json", + "mode": "100644", + "type": "blob", + "sha": "4a39b0718571aad2571a4383ec3e19707deb4aef", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a39b0718571aad2571a4383ec3e19707deb4aef" + }, + { + "path": "meta/smokeping.json", + "mode": "100644", + "type": "blob", + "sha": "2165463c07a77e33099bee38d0648c10c23c265f", + "size": 284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2165463c07a77e33099bee38d0648c10c23c265f" + }, + { + "path": "meta/snapcast.json", + "mode": "100644", + "type": "blob", + "sha": "6238dfb4bf18bb08509a2dde51db8d275b092420", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6238dfb4bf18bb08509a2dde51db8d275b092420" + }, + { + "path": "meta/snapchat.json", + "mode": "100644", + "type": "blob", + "sha": "87012563ae95c29ea163976f61cd36151b14973c", + "size": 328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87012563ae95c29ea163976f61cd36151b14973c" + }, + { + "path": "meta/snapdrop.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/snappymail.json", + "mode": "100644", + "type": "blob", + "sha": "94de5d231625f08c7d3dbbba04da6b6a34fb628f", + "size": 356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94de5d231625f08c7d3dbbba04da6b6a34fb628f" + }, + { + "path": "meta/snibox.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/snikket.json", + "mode": "100644", + "type": "blob", + "sha": "805890aa4a97953d363ab41f74b4d728f165b95e", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/805890aa4a97953d363ab41f74b4d728f165b95e" + }, + { + "path": "meta/snipe-it.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/snippetbox.json", + "mode": "100644", + "type": "blob", + "sha": "cbc10c5c66c5149ecf0843f1930d55a20e6bac3b", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbc10c5c66c5149ecf0843f1930d55a20e6bac3b" + }, + { + "path": "meta/socialhome.json", + "mode": "100644", + "type": "blob", + "sha": "e8d8134eb08a997c36c162a314da42706d8deaa0", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8d8134eb08a997c36c162a314da42706d8deaa0" + }, + { + "path": "meta/sogo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/solaar.json", + "mode": "100644", + "type": "blob", + "sha": "5d7c188409b7eeea8d3ed8683f3d4ffc3678a764", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d7c188409b7eeea8d3ed8683f3d4ffc3678a764" + }, + { + "path": "meta/solid-invoice.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/solidtime.json", + "mode": "100644", + "type": "blob", + "sha": "4d3a36d9553193fbc241283e27de8e3312f33d22", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d3a36d9553193fbc241283e27de8e3312f33d22" + }, + { + "path": "meta/sonarqube.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/sonarr-4k.json", + "mode": "100644", + "type": "blob", + "sha": "4e64f874ffe703d64f4bf5cfbea63230ca5afa24", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e64f874ffe703d64f4bf5cfbea63230ca5afa24" + }, + { + "path": "meta/sonarr.json", + "mode": "100644", + "type": "blob", + "sha": "93da23600aa17a85a30b402e154f080edab600f0", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93da23600aa17a85a30b402e154f080edab600f0" + }, + { + "path": "meta/sophos.json", + "mode": "100644", + "type": "blob", + "sha": "c3f6818f41be3f9214fa7ff6085d098b2b70b64e", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3f6818f41be3f9214fa7ff6085d098b2b70b64e" + }, + { + "path": "meta/soulseek.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/sourcegraph.json", + "mode": "100644", + "type": "blob", + "sha": "5738c2ed7efceae5e9666c40b57f57f3f63dae30", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5738c2ed7efceae5e9666c40b57f57f3f63dae30" + }, + { + "path": "meta/spamassassin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/spark.json", + "mode": "100644", + "type": "blob", + "sha": "bb517079956a3b7ac9017946db71c04d6d39a229", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb517079956a3b7ac9017946db71c04d6d39a229" + }, + { + "path": "meta/sparkleshare.json", + "mode": "100644", + "type": "blob", + "sha": "a1c68b207ed064d85e921cb892c26457a3228023", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1c68b207ed064d85e921cb892c26457a3228023" + }, + { + "path": "meta/sparky-fitness.json", + "mode": "100644", + "type": "blob", + "sha": "4d60ce586e11617e38276ddde34a14d60329340b", + "size": 203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d60ce586e11617e38276ddde34a14d60329340b" + }, + { + "path": "meta/specifically-clementines.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/specter-desktop.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/speedtest-tracker.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/sphinx-doc.json", + "mode": "100644", + "type": "blob", + "sha": "8ee36c0ac4881b9a699431fd4964a25c1566624a", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ee36c0ac4881b9a699431fd4964a25c1566624a" + }, + { + "path": "meta/sphinx-relay.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/sphinx.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/spiceworks.json", + "mode": "100644", + "type": "blob", + "sha": "b682e0b1dbfed0e3c1196ca62329a4fffacd4fd2", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b682e0b1dbfed0e3c1196ca62329a4fffacd4fd2" + }, + { + "path": "meta/spiderfoot.json", + "mode": "100644", + "type": "blob", + "sha": "290243a14737e2bcada280f9a41a9e0bc61de191", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/290243a14737e2bcada280f9a41a9e0bc61de191" + }, + { + "path": "meta/spliit.json", + "mode": "100644", + "type": "blob", + "sha": "e127373b3d91cb256f7152d34c18e5bfbd025e9b", + "size": 219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e127373b3d91cb256f7152d34c18e5bfbd025e9b" + }, + { + "path": "meta/splunk.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/spoolman.json", + "mode": "100644", + "type": "blob", + "sha": "d9311c01aaf0378c5e818432fb1d51fac1eeead2", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9311c01aaf0378c5e818432fb1d51fac1eeead2" + }, + { + "path": "meta/spotify.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/spotnet.json", + "mode": "100644", + "type": "blob", + "sha": "cd6d82f2011b37bdf33f0932554b5ccbea2a6712", + "size": 236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd6d82f2011b37bdf33f0932554b5ccbea2a6712" + }, + { + "path": "meta/spree.json", + "mode": "100644", + "type": "blob", + "sha": "755c5d04e1b1dba77e82d2c687976887065c5ab7", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/755c5d04e1b1dba77e82d2c687976887065c5ab7" + }, + { + "path": "meta/springboot-initializer.json", + "mode": "100644", + "type": "blob", + "sha": "577dceeecacd8ed8a65f97ab84caca654af6b873", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/577dceeecacd8ed8a65f97ab84caca654af6b873" + }, + { + "path": "meta/sqlitebrowser.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/squeezebox-server.json", + "mode": "100644", + "type": "blob", + "sha": "2348c6c9bf52b366de4497cd3ab4d61a73f2265b", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2348c6c9bf52b366de4497cd3ab4d61a73f2265b" + }, + { + "path": "meta/squidex.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/squirrel-servers-manager.json", + "mode": "100644", + "type": "blob", + "sha": "e64c1da4a788b66ed610cc0f18d11b524fe8c857", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e64c1da4a788b66ed610cc0f18d11b524fe8c857" + }, + { + "path": "meta/sshwifty.json", + "mode": "100644", + "type": "blob", + "sha": "21dbecb9b346b6873731816b003af04c73b6df58", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21dbecb9b346b6873731816b003af04c73b6df58" + }, + { + "path": "meta/sst-dev.json", + "mode": "100644", + "type": "blob", + "sha": "8fd7444e7c0c01454ccf2421f8445937f91de107", + "size": 288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fd7444e7c0c01454ccf2421f8445937f91de107" + }, + { + "path": "meta/stalwart-mail-server.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/stalwart.json", + "mode": "100644", + "type": "blob", + "sha": "7318de111a1395ae614c1c22cbfe46b5e945356f", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7318de111a1395ae614c1c22cbfe46b5e945356f" + }, + { + "path": "meta/standard-notes.json", + "mode": "100644", + "type": "blob", + "sha": "2e7ee9e7066f93defe8485e657744becbd6aa9d7", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e7ee9e7066f93defe8485e657744becbd6aa9d7" + }, + { + "path": "meta/startpage.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/stash.json", + "mode": "100644", + "type": "blob", + "sha": "59c5276371309af1aef4aab72e6d3769c4512349", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59c5276371309af1aef4aab72e6d3769c4512349" + }, + { + "path": "meta/statping-ng.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/statping.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/stb-proxy.json", + "mode": "100644", + "type": "blob", + "sha": "305f9c7ec2c804ee0702dc83d9a16bcc9f5ecc93", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/305f9c7ec2c804ee0702dc83d9a16bcc9f5ecc93" + }, + { + "path": "meta/steam.json", + "mode": "100644", + "type": "blob", + "sha": "319f52f5da2c360ef28e3edd06ce439b5d59d350", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/319f52f5da2c360ef28e3edd06ce439b5d59d350" + }, + { + "path": "meta/step-ca.json", + "mode": "100644", + "type": "blob", + "sha": "d08d6f7e518ab63e125ef17879ee039fd57a3375", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d08d6f7e518ab63e125ef17879ee039fd57a3375" + }, + { + "path": "meta/stirling-pdf.json", + "mode": "100644", + "type": "blob", + "sha": "3e1a04b5bd4765b99e4dab63844ac846ebceae9c", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e1a04b5bd4765b99e4dab63844ac846ebceae9c" + }, + { + "path": "meta/storj.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/storm.json", + "mode": "100644", + "type": "blob", + "sha": "81e70fd55b56681601c8ce1b4dac2587f6c67693", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81e70fd55b56681601c8ce1b4dac2587f6c67693" + }, + { + "path": "meta/stormkit.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/strapi.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/strava.json", + "mode": "100644", + "type": "blob", + "sha": "a8d6889dd764aa0e8451faff9c36536fe3922f30", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8d6889dd764aa0e8451faff9c36536fe3922f30" + }, + { + "path": "meta/stream-harvestarr.json", + "mode": "100644", + "type": "blob", + "sha": "4b5e8a87c3619c87d11b2f887d23183ea45ac8da", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b5e8a87c3619c87d11b2f887d23183ea45ac8da" + }, + { + "path": "meta/streama.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/stremio.json", + "mode": "100644", + "type": "blob", + "sha": "d9f04bcbcbab0d70dfe840b5708d55d18d77b66d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9f04bcbcbab0d70dfe840b5708d55d18d77b66d" + }, + { + "path": "meta/stump-alt.json", + "mode": "100644", + "type": "blob", + "sha": "294c970ba6fec1cca15f6579d74ab7ec20be7802", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/294c970ba6fec1cca15f6579d74ab7ec20be7802" + }, + { + "path": "meta/stump.json", + "mode": "100644", + "type": "blob", + "sha": "62fe02c1c3a0623929ec830dc685cdf5aa5f55cd", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62fe02c1c3a0623929ec830dc685cdf5aa5f55cd" + }, + { + "path": "meta/sub-store.json", + "mode": "100644", + "type": "blob", + "sha": "b5ef8ec1cf3ce7454b4ad02b368b367983004640", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5ef8ec1cf3ce7454b4ad02b368b367983004640" + }, + { + "path": "meta/subatic.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/subdl.json", + "mode": "100644", + "type": "blob", + "sha": "cdf01e6e7474b65ae722a6f7ddfa32638bd78ac2", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdf01e6e7474b65ae722a6f7ddfa32638bd78ac2" + }, + { + "path": "meta/substreamer.json", + "mode": "100644", + "type": "blob", + "sha": "6a60931fb04cf56e43763d33a2aac9ed3f0cc38a", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a60931fb04cf56e43763d33a2aac9ed3f0cc38a" + }, + { + "path": "meta/suggest-arr.json", + "mode": "100644", + "type": "blob", + "sha": "885be59e67702c82c243788ab407247bf9663f0c", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/885be59e67702c82c243788ab407247bf9663f0c" + }, + { + "path": "meta/sun-panel.json", + "mode": "100644", + "type": "blob", + "sha": "aab8b1e59a61b5a8c03aa21a11599803581cb65f", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aab8b1e59a61b5a8c03aa21a11599803581cb65f" + }, + { + "path": "meta/sunsama.json", + "mode": "100644", + "type": "blob", + "sha": "1cc3ea652bf23573336843e942c83d0076385064", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cc3ea652bf23573336843e942c83d0076385064" + }, + { + "path": "meta/sunshine.json", + "mode": "100644", + "type": "blob", + "sha": "2c3e9331f3a4ab80982a379af3ec17d052fc67f6", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c3e9331f3a4ab80982a379af3ec17d052fc67f6" + }, + { + "path": "meta/supabase.json", + "mode": "100644", + "type": "blob", + "sha": "b54fb2e85733ef95606ab7ed7b4e503e68c39fb4", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b54fb2e85733ef95606ab7ed7b4e503e68c39fb4" + }, + { + "path": "meta/superlist.json", + "mode": "100644", + "type": "blob", + "sha": "d9f493617d85ce5a419eedf1ec063f269c698a64", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9f493617d85ce5a419eedf1ec063f269c698a64" + }, + { + "path": "meta/supermicro.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/surveymonkey.json", + "mode": "100644", + "type": "blob", + "sha": "53859bf312dcb90a98e13d971b765a859f6e7c76", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53859bf312dcb90a98e13d971b765a859f6e7c76" + }, + { + "path": "meta/suwayomi.json", + "mode": "100644", + "type": "blob", + "sha": "bfeede0b1d6c4f0251cb924c19c1e3aff5b9fdd4", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfeede0b1d6c4f0251cb924c19c1e3aff5b9fdd4" + }, + { + "path": "meta/svelte.json", + "mode": "100644", + "type": "blob", + "sha": "b20db5822bbb45ae013b8f5974996e02dafea64e", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b20db5822bbb45ae013b8f5974996e02dafea64e" + }, + { + "path": "meta/swagger.json", + "mode": "100644", + "type": "blob", + "sha": "9f05fd1d174f9ec1f2f1c97a339b34681bfe3e7e", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f05fd1d174f9ec1f2f1c97a339b34681bfe3e7e" + }, + { + "path": "meta/swarmpit.json", + "mode": "100644", + "type": "blob", + "sha": "22a88d448fcee29d192fa513fb39e5107e83b6b7", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22a88d448fcee29d192fa513fb39e5107e83b6b7" + }, + { + "path": "meta/swift.json", + "mode": "100644", + "type": "blob", + "sha": "1503fc987a032c57b07e599c0cb00de2de99a1af", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1503fc987a032c57b07e599c0cb00de2de99a1af" + }, + { + "path": "meta/swizzin.json", + "mode": "100644", + "type": "blob", + "sha": "b4aa9b5e67706eb2274563f5e7109ba2a69d74a0", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4aa9b5e67706eb2274563f5e7109ba2a69d74a0" + }, + { + "path": "meta/syft.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/symedia.json", + "mode": "100644", + "type": "blob", + "sha": "849acbe626def778eb1ccd98f175800a012d896b", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/849acbe626def778eb1ccd98f175800a012d896b" + }, + { + "path": "meta/symmetricom.json", + "mode": "100644", + "type": "blob", + "sha": "db835ca49bea97dd46db0e97ab6dabe14bd66538", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db835ca49bea97dd46db0e97ab6dabe14bd66538" + }, + { + "path": "meta/sympa.json", + "mode": "100644", + "type": "blob", + "sha": "a13e3a3f74dcfcc1dbedd10d7894f3aa2fe0985b", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a13e3a3f74dcfcc1dbedd10d7894f3aa2fe0985b" + }, + { + "path": "meta/synapse.json", + "mode": "100644", + "type": "blob", + "sha": "97ccfaf097ea51a66af764fb3dd32bb28a3f4a56", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97ccfaf097ea51a66af764fb3dd32bb28a3f4a56" + }, + { + "path": "meta/syncany.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synclounge.json", + "mode": "100644", + "type": "blob", + "sha": "e3d5b9a1d0a246a99bd0f064a42ffcfc2d4c985e", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3d5b9a1d0a246a99bd0f064a42ffcfc2d4c985e" + }, + { + "path": "meta/syncplay.json", + "mode": "100644", + "type": "blob", + "sha": "331d4b6b5cae69f5e8ba01888b2a4e50eacb7e53", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/331d4b6b5cae69f5e8ba01888b2a4e50eacb7e53" + }, + { + "path": "meta/syncthing.json", + "mode": "100644", + "type": "blob", + "sha": "d0b75697f5d8affbf146b26ff728f0bb95852200", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0b75697f5d8affbf146b26ff728f0bb95852200" + }, + { + "path": "meta/synology-audio-station.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-calendar.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-chat.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-cloud-sync.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-contacts.json", + "mode": "100644", + "type": "blob", + "sha": "80dfcc143e061cecba6e6dba43c9741b2ce0b7d2", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80dfcc143e061cecba6e6dba43c9741b2ce0b7d2" + }, + { + "path": "meta/synology-document-viewer.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-download-station.json", + "mode": "100644", + "type": "blob", + "sha": "655ac53c01026229dc47c0c388c377c5fd0183fd", + "size": 260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/655ac53c01026229dc47c0c388c377c5fd0183fd" + }, + { + "path": "meta/synology-drive-server.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-drive.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-dsm.json", + "mode": "100644", + "type": "blob", + "sha": "461b8dca3a22365c901b892832c60192196a744c", + "size": 275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/461b8dca3a22365c901b892832c60192196a744c" + }, + { + "path": "meta/synology-file-station.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-mail-plus.json", + "mode": "100644", + "type": "blob", + "sha": "3cd011abcaff7bedb5ec698e805f45de18f734a3", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cd011abcaff7bedb5ec698e805f45de18f734a3" + }, + { + "path": "meta/synology-mail-station.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-note-station.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-office.json", + "mode": "100644", + "type": "blob", + "sha": "c99e63ad23668f941c9850c91e65f1b9f4d7ca71", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c99e63ad23668f941c9850c91e65f1b9f4d7ca71" + }, + { + "path": "meta/synology-pdfviewer.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-photo-station.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-photos.json", + "mode": "100644", + "type": "blob", + "sha": "f1996adef91fd0c5b9522b84d421226dde7e5df4", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1996adef91fd0c5b9522b84d421226dde7e5df4" + }, + { + "path": "meta/synology-surveillance-station.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-text-editor.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/synology-video-station.json", + "mode": "100644", + "type": "blob", + "sha": "d8ed24f82f54693d9137fc4ca1ef7ab0ea56dd8f", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8ed24f82f54693d9137fc4ca1ef7ab0ea56dd8f" + }, + { + "path": "meta/synology-vmm.json", + "mode": "100644", + "type": "blob", + "sha": "a1324e838aff5de266441b59087c5223ce8c3b2e", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1324e838aff5de266441b59087c5223ce8c3b2e" + }, + { + "path": "meta/synology-webstation.json", + "mode": "100644", + "type": "blob", + "sha": "b907323ac2d781dde74e3f733da4f0d5f6f11181", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b907323ac2d781dde74e3f733da4f0d5f6f11181" + }, + { + "path": "meta/synology.json", + "mode": "100644", + "type": "blob", + "sha": "066f9ab028304157036b83a0e937bb201b0d2537", + "size": 343, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/066f9ab028304157036b83a0e937bb201b0d2537" + }, + { + "path": "meta/sysreptor.json", + "mode": "100644", + "type": "blob", + "sha": "a2e850509ebbafdd68f7fff8d4f4d70c07684d45", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2e850509ebbafdd68f7fff8d4f4d70c07684d45" + }, + { + "path": "meta/t3-chat.json", + "mode": "100644", + "type": "blob", + "sha": "3c3eed7a942861b2f16e8abe233c361768974bb0", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c3eed7a942861b2f16e8abe233c361768974bb0" + }, + { + "path": "meta/tabula.json", + "mode": "100644", + "type": "blob", + "sha": "b7ddb9353cf2cd9555301802548e51b20c60c7c2", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7ddb9353cf2cd9555301802548e51b20c60c7c2" + }, + { + "path": "meta/tacticalrmm.json", + "mode": "100644", + "type": "blob", + "sha": "29bbb17262226118eba0734286d3a0431fb172ac", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29bbb17262226118eba0734286d3a0431fb172ac" + }, + { + "path": "meta/taiga.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/tailscale.json", + "mode": "100644", + "type": "blob", + "sha": "2bfeb7e909cfe67b90f6de5076337f2529b9b079", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bfeb7e909cfe67b90f6de5076337f2529b9b079" + }, + { + "path": "meta/tailwind.json", + "mode": "100644", + "type": "blob", + "sha": "10f6e3d50b155dc5b2f3361052df9dde13874f7f", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10f6e3d50b155dc5b2f3361052df9dde13874f7f" + }, + { + "path": "meta/talos.json", + "mode": "100644", + "type": "blob", + "sha": "c00d94bc464320bc70477f2639e8aad3cf4137e3", + "size": 180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c00d94bc464320bc70477f2639e8aad3cf4137e3" + }, + { + "path": "meta/tandoor-recipes.json", + "mode": "100644", + "type": "blob", + "sha": "591a3836b4ea6d4b0045967b841f8352eb9b2584", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/591a3836b4ea6d4b0045967b841f8352eb9b2584" + }, + { + "path": "meta/tangerine-ui.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/tanoshi.json", + "mode": "100644", + "type": "blob", + "sha": "89260bfe4a1114309975a9ef5f5fd878122efc1d", + "size": 251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89260bfe4a1114309975a9ef5f5fd878122efc1d" + }, + { + "path": "meta/tar1090.json", + "mode": "100644", + "type": "blob", + "sha": "82e763063265afaede9eb9b6b9fac7887c165ed5", + "size": 212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82e763063265afaede9eb9b6b9fac7887c165ed5" + }, + { + "path": "meta/taskcafe.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/tasmoadmin.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/tasmocompiler.json", + "mode": "100644", + "type": "blob", + "sha": "644a04ff897cc0b5af933a2415ef7c32cbe621ea", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/644a04ff897cc0b5af933a2415ef7c32cbe621ea" + }, + { + "path": "meta/tasmota.json", + "mode": "100644", + "type": "blob", + "sha": "fb24d0be47d5ead6edb1074b23b8a29bb558847a", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb24d0be47d5ead6edb1074b23b8a29bb558847a" + }, + { + "path": "meta/tautulli.json", + "mode": "100644", + "type": "blob", + "sha": "533d2a96da4862d71b7defc6dd293ff2f3a7913f", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/533d2a96da4862d71b7defc6dd293ff2f3a7913f" + }, + { + "path": "meta/tdarr.json", + "mode": "100644", + "type": "blob", + "sha": "45c673a1b8a0a77dca816dc82e8456f3295da388", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45c673a1b8a0a77dca816dc82e8456f3295da388" + }, + { + "path": "meta/team-viewer.json", + "mode": "100644", + "type": "blob", + "sha": "7f2ac1ee3e9634aec08222711b1c6ed9da4ed69c", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f2ac1ee3e9634aec08222711b1c6ed9da4ed69c" + }, + { + "path": "meta/teamcity.json", + "mode": "100644", + "type": "blob", + "sha": "6c0f2f370ee9b79e132400077b2b0c516e21fe22", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c0f2f370ee9b79e132400077b2b0c516e21fe22" + }, + { + "path": "meta/teamspeak.json", + "mode": "100644", + "type": "blob", + "sha": "1ff13b906fe628f9cc8f6a36a40cac551bafef73", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ff13b906fe628f9cc8f6a36a40cac551bafef73" + }, + { + "path": "meta/teamtailor.json", + "mode": "100644", + "type": "blob", + "sha": "2fca03c434e7e81c3fff6567557168960176ad4c", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fca03c434e7e81c3fff6567557168960176ad4c" + }, + { + "path": "meta/technitium.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/teddy-cloud.json", + "mode": "100644", + "type": "blob", + "sha": "9f9573083c6ae73d9032858a30327a78a3def098", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f9573083c6ae73d9032858a30327a78a3def098" + }, + { + "path": "meta/teedy.json", + "mode": "100644", + "type": "blob", + "sha": "c7fde9a94598d6c1cf40e91b45d8bede5f5246f0", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7fde9a94598d6c1cf40e91b45d8bede5f5246f0" + }, + { + "path": "meta/telegraf.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/telegram.json", + "mode": "100644", + "type": "blob", + "sha": "e33282907cb59bce5f31f9e715b0964653f4f08a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e33282907cb59bce5f31f9e715b0964653f4f08a" + }, + { + "path": "meta/telekom.json", + "mode": "100644", + "type": "blob", + "sha": "64eb85c53730a602283242bb8b6ccbcc40cc8064", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64eb85c53730a602283242bb8b6ccbcc40cc8064" + }, + { + "path": "meta/teleport.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/tenable.json", + "mode": "100644", + "type": "blob", + "sha": "0bd5d77e8d0ca523390cb4adfc5f075a6379bc6c", + "size": 400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bd5d77e8d0ca523390cb4adfc5f075a6379bc6c" + }, + { + "path": "meta/tenda.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/terminal.json", + "mode": "100644", + "type": "blob", + "sha": "a50a790535ab8dc353660dfdc3ea41dca4644421", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a50a790535ab8dc353660dfdc3ea41dca4644421" + }, + { + "path": "meta/termix.json", + "mode": "100644", + "type": "blob", + "sha": "d907e9024dda95c25b0c5a5bd94d23ae25c3ed13", + "size": 225, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d907e9024dda95c25b0c5a5bd94d23ae25c3ed13" + }, + { + "path": "meta/terraform.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/terraria.json", + "mode": "100644", + "type": "blob", + "sha": "3deda7db46fca44fed0d8e23aa184cdb54bc123d", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3deda7db46fca44fed0d8e23aa184cdb54bc123d" + }, + { + "path": "meta/teslamate.json", + "mode": "100644", + "type": "blob", + "sha": "e449f7b7ac224fcdbca9e95d97e0ff170320c5fc", + "size": 332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e449f7b7ac224fcdbca9e95d97e0ff170320c5fc" + }, + { + "path": "meta/thanos.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/the-onion.json", + "mode": "100644", + "type": "blob", + "sha": "6482012fb321cec2d6eca3729b88f306743e22fa", + "size": 222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6482012fb321cec2d6eca3729b88f306743e22fa" + }, + { + "path": "meta/the-pirate-bay.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/the-proxy-bay.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/theia.json", + "mode": "100644", + "type": "blob", + "sha": "63e633d7c575dfe34634afb95c3114c8d8050fc8", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63e633d7c575dfe34634afb95c3114c8d8050fc8" + }, + { + "path": "meta/thelounge.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/themepark.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/theodinproject.json", + "mode": "100644", + "type": "blob", + "sha": "bca280b471b38d57be52592b3c4e681bc1da6928", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bca280b471b38d57be52592b3c4e681bc1da6928" + }, + { + "path": "meta/thin-linc.json", + "mode": "100644", + "type": "blob", + "sha": "1d49c32426cb67320e82c48917af45244b80eb31", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d49c32426cb67320e82c48917af45244b80eb31" + }, + { + "path": "meta/thingsboard.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/threadfin.json", + "mode": "100644", + "type": "blob", + "sha": "5c0f96516fcef90fa96d3e99e8e117548d4abee8", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c0f96516fcef90fa96d3e99e8e117548d4abee8" + }, + { + "path": "meta/threads.json", + "mode": "100644", + "type": "blob", + "sha": "fc4fa91c1a5c80fbe39400e271afae364f5e61ab", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc4fa91c1a5c80fbe39400e271afae364f5e61ab" + }, + { + "path": "meta/thunderbird.json", + "mode": "100644", + "type": "blob", + "sha": "b6f9e136e5b0ff12255d07d94a25c0e6c9781345", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6f9e136e5b0ff12255d07d94a25c0e6c9781345" + }, + { + "path": "meta/thunderhub.json", + "mode": "100644", + "type": "blob", + "sha": "0b0d37e996756c281f4c3264d0e16a8bb294eabe", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b0d37e996756c281f4c3264d0e16a8bb294eabe" + }, + { + "path": "meta/tianji.json", + "mode": "100644", + "type": "blob", + "sha": "eb827a8b59428baa87e99759f0c552ae37834e61", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb827a8b59428baa87e99759f0c552ae37834e61" + }, + { + "path": "meta/ticky.json", + "mode": "100644", + "type": "blob", + "sha": "c57d2fa5aecfce8b4b5724f72a1c4095012524ec", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c57d2fa5aecfce8b4b5724f72a1c4095012524ec" + }, + { + "path": "meta/tidal.json", + "mode": "100644", + "type": "blob", + "sha": "324d436319f8875c65502d87bfad4dec14c708d5", + "size": 262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/324d436319f8875c65502d87bfad4dec14c708d5" + }, + { + "path": "meta/tiddlywiki.json", + "mode": "100644", + "type": "blob", + "sha": "8565a29418067729df43f5cf9b99ea456c37f2a6", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8565a29418067729df43f5cf9b99ea456c37f2a6" + }, + { + "path": "meta/tiktok.json", + "mode": "100644", + "type": "blob", + "sha": "224468238e1d3174912c2160eb3599712f74b3ac", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/224468238e1d3174912c2160eb3599712f74b3ac" + }, + { + "path": "meta/timemachines.json", + "mode": "100644", + "type": "blob", + "sha": "0391b9a053596bf7fa4591bba6ce7583fda7337f", + "size": 267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0391b9a053596bf7fa4591bba6ce7583fda7337f" + }, + { + "path": "meta/timetagger.json", + "mode": "100644", + "type": "blob", + "sha": "4391df84cd696c2300a04fc0cc93eab14bbeb1b9", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4391df84cd696c2300a04fc0cc93eab14bbeb1b9" + }, + { + "path": "meta/ting-isp.json", + "mode": "100644", + "type": "blob", + "sha": "7170a47efdfa212c9cb7cdb87bffffd2bff0f467", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7170a47efdfa212c9cb7cdb87bffffd2bff0f467" + }, + { + "path": "meta/tiny-media-manager.json", + "mode": "100644", + "type": "blob", + "sha": "3521b9a970d0b827bc9883f16c509465ecfa2d5f", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3521b9a970d0b827bc9883f16c509465ecfa2d5f" + }, + { + "path": "meta/tinyauth.json", + "mode": "100644", + "type": "blob", + "sha": "cbe593463d7dd5304b593956f66d8c522344db3a", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbe593463d7dd5304b593956f66d8c522344db3a" + }, + { + "path": "meta/tinypilot.json", + "mode": "100644", + "type": "blob", + "sha": "c9e0ca20ef76cfb624c93500fa382fd9da97db46", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9e0ca20ef76cfb624c93500fa382fd9da97db46" + }, + { + "path": "meta/tinytinyrss.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/tipi.json", + "mode": "100644", + "type": "blob", + "sha": "a9e5b087921e27dd464cf907cfc997d05755033d", + "size": 203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9e5b087921e27dd464cf907cfc997d05755033d" + }, + { + "path": "meta/tmdb.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/todoist.json", + "mode": "100644", + "type": "blob", + "sha": "ffac0494c0874a87c02949ba89597acc16c163b9", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffac0494c0874a87c02949ba89597acc16c163b9" + }, + { + "path": "meta/toggl.json", + "mode": "100644", + "type": "blob", + "sha": "675fae0f68062e28c892145f9fe11684018b018c", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/675fae0f68062e28c892145f9fe11684018b018c" + }, + { + "path": "meta/tolgee.json", + "mode": "100644", + "type": "blob", + "sha": "47ab5352da7277fa358a97987203345779ef2546", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47ab5352da7277fa358a97987203345779ef2546" + }, + { + "path": "meta/tooljet.json", + "mode": "100644", + "type": "blob", + "sha": "2056d5214aa07293388c43232eb7bf7c2685b8a6", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2056d5214aa07293388c43232eb7bf7c2685b8a6" + }, + { + "path": "meta/topdesk.json", + "mode": "100644", + "type": "blob", + "sha": "c9b7c65ca90eae81ac1ebe11f83bb993d9be74a8", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9b7c65ca90eae81ac1ebe11f83bb993d9be74a8" + }, + { + "path": "meta/tor.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/torrserver.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/touitomamout.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/tp-link.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/tpdb.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/traccar.json", + "mode": "100644", + "type": "blob", + "sha": "5f2da33c6dbdfcb37ad4dca3205d0f43c0ee0d20", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f2da33c6dbdfcb37ad4dca3205d0f43c0ee0d20" + }, + { + "path": "meta/trading-view.json", + "mode": "100644", + "type": "blob", + "sha": "fbf16302d3851a35b476d3b068205f7579463483", + "size": 335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbf16302d3851a35b476d3b068205f7579463483" + }, + { + "path": "meta/traefik-proxy.json", + "mode": "100644", + "type": "blob", + "sha": "54b37beaaba6c94d8bf8aa2e8432499db19aaf06", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54b37beaaba6c94d8bf8aa2e8432499db19aaf06" + }, + { + "path": "meta/traefik.json", + "mode": "100644", + "type": "blob", + "sha": "66283be91fc539a16009b15facd78d613c0d14c9", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66283be91fc539a16009b15facd78d613c0d14c9" + }, + { + "path": "meta/traggo.json", + "mode": "100644", + "type": "blob", + "sha": "d19cb0e209b07ce955b2777e27be5a096350a382", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d19cb0e209b07ce955b2777e27be5a096350a382" + }, + { + "path": "meta/trailarr.json", + "mode": "100644", + "type": "blob", + "sha": "b6e70cb0aa9fcba9ebb128885d70706451b7d1c3", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6e70cb0aa9fcba9ebb128885d70706451b7d1c3" + }, + { + "path": "meta/trakt.json", + "mode": "100644", + "type": "blob", + "sha": "ebc3f2fd2d17bd430e9bf2b224e149c2ec32eb9e", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebc3f2fd2d17bd430e9bf2b224e149c2ec32eb9e" + }, + { + "path": "meta/transmission.json", + "mode": "100644", + "type": "blob", + "sha": "0c1cac72cdbaed98d33a426146145b479631b862", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c1cac72cdbaed98d33a426146145b479631b862" + }, + { + "path": "meta/trash-guides.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/trellix.json", + "mode": "100644", + "type": "blob", + "sha": "55351e752db27c6515fd85210591654b65ab178b", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55351e752db27c6515fd85210591654b65ab178b" + }, + { + "path": "meta/trilium.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/triliumnext.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/trivy.json", + "mode": "100644", + "type": "blob", + "sha": "8b66f73fa1c30d2185b61c6b49d8a1ecee18008e", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b66f73fa1c30d2185b61c6b49d8a1ecee18008e" + }, + { + "path": "meta/trmnl-android.json", + "mode": "100644", + "type": "blob", + "sha": "480e8de9ac2455c2759e2f680c91f50767f73be5", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/480e8de9ac2455c2759e2f680c91f50767f73be5" + }, + { + "path": "meta/trmnl.json", + "mode": "100644", + "type": "blob", + "sha": "ae9082ba73af935a55fc75416182437fe2bb3176", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae9082ba73af935a55fc75416182437fe2bb3176" + }, + { + "path": "meta/troddit.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/trudesk.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/truecommand.json", + "mode": "100644", + "type": "blob", + "sha": "bb451d6c783f5f3788d0299e61aa150a93761034", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb451d6c783f5f3788d0299e61aa150a93761034" + }, + { + "path": "meta/truenas-core.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/truenas-enterprise.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/truenas-scale.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/truenas.json", + "mode": "100644", + "type": "blob", + "sha": "7d54e0a8b6a4917b5a6e4e1c7151a1db3396e235", + "size": 304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d54e0a8b6a4917b5a6e4e1c7151a1db3396e235" + }, + { + "path": "meta/tryhackme.json", + "mode": "100644", + "type": "blob", + "sha": "cf8b907935ea0a20bfae295adb95d5ff09e2d32e", + "size": 196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf8b907935ea0a20bfae295adb95d5ff09e2d32e" + }, + { + "path": "meta/tsd-proxy.json", + "mode": "100644", + "type": "blob", + "sha": "e2136b80573111c07c7450ba9e2908d1b940ead0", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2136b80573111c07c7450ba9e2908d1b940ead0" + }, + { + "path": "meta/tube-archivist.json", + "mode": "100644", + "type": "blob", + "sha": "d30e86d08965b576c3e8aad740f8a7d5b75a9636", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d30e86d08965b576c3e8aad740f8a7d5b75a9636" + }, + { + "path": "meta/tubesync.json", + "mode": "100644", + "type": "blob", + "sha": "75daac64cfaf414be4ea05fba07eccffe8b07cc7", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75daac64cfaf414be4ea05fba07eccffe8b07cc7" + }, + { + "path": "meta/tugtainer.json", + "mode": "100644", + "type": "blob", + "sha": "ec8ea82cbbabd15c2c50eb3ef7f56fcb99873177", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec8ea82cbbabd15c2c50eb3ef7f56fcb99873177" + }, + { + "path": "meta/tumblr.json", + "mode": "100644", + "type": "blob", + "sha": "d58fe9df3d9091ee829cebbe6676b086b3104c95", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d58fe9df3d9091ee829cebbe6676b086b3104c95" + }, + { + "path": "meta/tunarr.json", + "mode": "100644", + "type": "blob", + "sha": "3721c7399faa15cbec3c6620f691de559fc9bbd7", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3721c7399faa15cbec3c6620f691de559fc9bbd7" + }, + { + "path": "meta/tunnelix.json", + "mode": "100644", + "type": "blob", + "sha": "e18c51d893435ea5e398e2947b553babf06f6554", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e18c51d893435ea5e398e2947b553babf06f6554" + }, + { + "path": "meta/turbopack.json", + "mode": "100644", + "type": "blob", + "sha": "3026d2e1728a0fbcec75a3c51affb67030ddfec1", + "size": 342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3026d2e1728a0fbcec75a3c51affb67030ddfec1" + }, + { + "path": "meta/tuta.json", + "mode": "100644", + "type": "blob", + "sha": "6b74a04f01d6326283f4b43a5451ad089566d60e", + "size": 240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b74a04f01d6326283f4b43a5451ad089566d60e" + }, + { + "path": "meta/tux.json", + "mode": "100644", + "type": "blob", + "sha": "36a84e966e593ada305977df217892a07471c724", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36a84e966e593ada305977df217892a07471c724" + }, + { + "path": "meta/tvdb.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/tvheadend.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/tvp-vod.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/tweakers.json", + "mode": "100644", + "type": "blob", + "sha": "ebbf7554f3d4d69bebc9bbd97dee0701e37d6198", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebbf7554f3d4d69bebc9bbd97dee0701e37d6198" + }, + { + "path": "meta/twingate.json", + "mode": "100644", + "type": "blob", + "sha": "c7fdab3530c6732ac659bacf5ba6ca2a842041d0", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7fdab3530c6732ac659bacf5ba6ca2a842041d0" + }, + { + "path": "meta/twitch.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/twitter.json", + "mode": "100644", + "type": "blob", + "sha": "7f75b2f9fbad2de16c119f5ea9b1a1e4aa5a6464", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f75b2f9fbad2de16c119f5ea9b1a1e4aa5a6464" + }, + { + "path": "meta/txlog.json", + "mode": "100644", + "type": "blob", + "sha": "f544510921c34118d3a1f1e170a13ab541fe2cf8", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f544510921c34118d3a1f1e170a13ab541fe2cf8" + }, + { + "path": "meta/typemill.json", + "mode": "100644", + "type": "blob", + "sha": "7c9a0a8f5b9e1355741ace43a76c190702ee991e", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c9a0a8f5b9e1355741ace43a76c190702ee991e" + }, + { + "path": "meta/typescript.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/typesense.json", + "mode": "100644", + "type": "blob", + "sha": "e1bc2a362d87a52dae47a17e063e922c0f6274df", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1bc2a362d87a52dae47a17e063e922c0f6274df" + }, + { + "path": "meta/typo3.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ubiquiti-networks.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ubiquiti-unifi.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/ubiquiti.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/ubooquity.json", + "mode": "100644", + "type": "blob", + "sha": "8937a51c93121f0f1b83cf6f4fe6fc9ee5d615d6", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8937a51c93121f0f1b83cf6f4fe6fc9ee5d615d6" + }, + { + "path": "meta/ubuntu-linux-alt.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/ubuntu-linux.json", + "mode": "100644", + "type": "blob", + "sha": "f394ec89aff941dec8482968c8ce4573bf0e38f3", + "size": 268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f394ec89aff941dec8482968c8ce4573bf0e38f3" + }, + { + "path": "meta/uc-browser.json", + "mode": "100644", + "type": "blob", + "sha": "0de6f0c609fde8fdaa91c981733856eb35197772", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0de6f0c609fde8fdaa91c981733856eb35197772" + }, + { + "path": "meta/udemy.json", + "mode": "100644", + "type": "blob", + "sha": "51fad3ede4839a12596e33cfc849070d16994539", + "size": 323, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51fad3ede4839a12596e33cfc849070d16994539" + }, + { + "path": "meta/ugreen-nas.json", + "mode": "100644", + "type": "blob", + "sha": "8b78153755a6428907733156779e4cb68c724f14", + "size": 193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b78153755a6428907733156779e4cb68c724f14" + }, + { + "path": "meta/ugreen.json", + "mode": "100644", + "type": "blob", + "sha": "63cbfecb326213a3dd05a053d94d5ba6a29b098f", + "size": 211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63cbfecb326213a3dd05a053d94d5ba6a29b098f" + }, + { + "path": "meta/ultimate-guitar.json", + "mode": "100644", + "type": "blob", + "sha": "4c595029db37e83f6396a0d69f39796c09415db0", + "size": 340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c595029db37e83f6396a0d69f39796c09415db0" + }, + { + "path": "meta/umami.json", + "mode": "100644", + "type": "blob", + "sha": "ec4822114ea5147f96c61d8ed48b12f17baa5f92", + "size": 339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec4822114ea5147f96c61d8ed48b12f17baa5f92" + }, + { + "path": "meta/umbrel.json", + "mode": "100644", + "type": "blob", + "sha": "bae0fa6f144da751f0b37b5cd01879cb900ce537", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bae0fa6f144da751f0b37b5cd01879cb900ce537" + }, + { + "path": "meta/unbound.json", + "mode": "100644", + "type": "blob", + "sha": "a8e66a835fc4b24d102bd4356c1d211f60378e7f", + "size": 183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8e66a835fc4b24d102bd4356c1d211f60378e7f" + }, + { + "path": "meta/uncomplicated-alert-receiver.json", + "mode": "100644", + "type": "blob", + "sha": "71cdf30d4b1eb40831d8df82bf54e54eb5cb3e70", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71cdf30d4b1eb40831d8df82bf54e54eb5cb3e70" + }, + { + "path": "meta/undb.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/unifi-controller.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/unifi-drive.json", + "mode": "100644", + "type": "blob", + "sha": "03d9e84245f9d9a1f1df55d3a58140d7d2299b18", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03d9e84245f9d9a1f1df55d3a58140d7d2299b18" + }, + { + "path": "meta/unifi-protect.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/unifi-voucher-site.json", + "mode": "100644", + "type": "blob", + "sha": "a1713f772687c86898389c65de70c7546c8fe164", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1713f772687c86898389c65de70c7546c8fe164" + }, + { + "path": "meta/unifi.json", + "mode": "100644", + "type": "blob", + "sha": "a1e007ca80223ec53702954044842c0c46bca9d1", + "size": 337, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1e007ca80223ec53702954044842c0c46bca9d1" + }, + { + "path": "meta/unimus.json", + "mode": "100644", + "type": "blob", + "sha": "29bbb17262226118eba0734286d3a0431fb172ac", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29bbb17262226118eba0734286d3a0431fb172ac" + }, + { + "path": "meta/unity.json", + "mode": "100644", + "type": "blob", + "sha": "21498684632fcefd7eca0a8d7bbe84959879bdda", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21498684632fcefd7eca0a8d7bbe84959879bdda" + }, + { + "path": "meta/universal-media-server.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/university-applied-sciences-brandenburg.json", + "mode": "100644", + "type": "blob", + "sha": "1d0bddd53323cc93e3287f6328c86263e863ba84", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d0bddd53323cc93e3287f6328c86263e863ba84" + }, + { + "path": "meta/unmanic.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/unraid.json", + "mode": "100644", + "type": "blob", + "sha": "d3eb05366eaaa2208ad7b43254beb46697141581", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3eb05366eaaa2208ad7b43254beb46697141581" + }, + { + "path": "meta/untangle.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/updog.json", + "mode": "100644", + "type": "blob", + "sha": "4bc578e0392a41c1821b1672b3b03e3a70a5978a", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bc578e0392a41c1821b1672b3b03e3a70a5978a" + }, + { + "path": "meta/ups.json", + "mode": "100644", + "type": "blob", + "sha": "692ce6de3fceace8df4d7967a46c4bc7ace20578", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/692ce6de3fceace8df4d7967a46c4bc7ace20578" + }, + { + "path": "meta/upsnap.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/uptime-kuma.json", + "mode": "100644", + "type": "blob", + "sha": "3cab7a8d601a68c86fb19c3b506c2f389ecbba27", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cab7a8d601a68c86fb19c3b506c2f389ecbba27" + }, + { + "path": "meta/uptimerobot.json", + "mode": "100644", + "type": "blob", + "sha": "f87639fe9d1a25b3182cf5a4395ac52f1dfe7616", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f87639fe9d1a25b3182cf5a4395ac52f1dfe7616" + }, + { + "path": "meta/upvote-rss.json", + "mode": "100644", + "type": "blob", + "sha": "b6e6071be36f620699a1a26b13a068387138c10c", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6e6071be36f620699a1a26b13a068387138c10c" + }, + { + "path": "meta/upwork.json", + "mode": "100644", + "type": "blob", + "sha": "f1c746d5245ca9654edf35da3407f25a0b081560", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1c746d5245ca9654edf35da3407f25a0b081560" + }, + { + "path": "meta/urbackup-server.json", + "mode": "100644", + "type": "blob", + "sha": "5c28181eedf158b40441530ac643c58056bd2445", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c28181eedf158b40441530ac643c58056bd2445" + }, + { + "path": "meta/urbackup.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/usermin.json", + "mode": "100644", + "type": "blob", + "sha": "13227c88fc14c0d28ee2197622f171577812ce7c", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13227c88fc14c0d28ee2197622f171577812ce7c" + }, + { + "path": "meta/valetudo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/valkey.json", + "mode": "100644", + "type": "blob", + "sha": "877a59c88a604944fb9089a7edfa6abdb061f4cc", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/877a59c88a604944fb9089a7edfa6abdb061f4cc" + }, + { + "path": "meta/vault.json", + "mode": "100644", + "type": "blob", + "sha": "5a01a673b0d421c59b82c218938a3c15041b5c3a", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a01a673b0d421c59b82c218938a3c15041b5c3a" + }, + { + "path": "meta/vaultwarden.json", + "mode": "100644", + "type": "blob", + "sha": "ba844e9085af71e51aac5dade948bb218d607687", + "size": 276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba844e9085af71e51aac5dade948bb218d607687" + }, + { + "path": "meta/vector.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/veeam.json", + "mode": "100644", + "type": "blob", + "sha": "db69271c91db42c9c2b342e901731211a8b5cd43", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db69271c91db42c9c2b342e901731211a8b5cd43" + }, + { + "path": "meta/vera-crypt.json", + "mode": "100644", + "type": "blob", + "sha": "b112872ac552794ed395b45223f78bfa60a9142e", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b112872ac552794ed395b45223f78bfa60a9142e" + }, + { + "path": "meta/vercel.json", + "mode": "100644", + "type": "blob", + "sha": "e6061ff03962b7b88fd7d42e2ce20df954b39cbe", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6061ff03962b7b88fd7d42e2ce20df954b39cbe" + }, + { + "path": "meta/verizon.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/verriflo.json", + "mode": "100644", + "type": "blob", + "sha": "936cebc56b964d690aef037153f06d82c7b0ca6d", + "size": 312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/936cebc56b964d690aef037153f06d82c7b0ca6d" + }, + { + "path": "meta/vertiv.json", + "mode": "100644", + "type": "blob", + "sha": "ac4284bc752b281aa16a20df44aafbceafc717ad", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac4284bc752b281aa16a20df44aafbceafc717ad" + }, + { + "path": "meta/vi.json", + "mode": "100644", + "type": "blob", + "sha": "bef3e05ddb1713424fe78e174cda9c3140664a2a", + "size": 232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bef3e05ddb1713424fe78e174cda9c3140664a2a" + }, + { + "path": "meta/viber.json", + "mode": "100644", + "type": "blob", + "sha": "2b4994ca1ed415de8567d7509c3765485a7ef976", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b4994ca1ed415de8567d7509c3765485a7ef976" + }, + { + "path": "meta/victorialogs.json", + "mode": "100644", + "type": "blob", + "sha": "5bc6a015bf8d1524b4328081c7c9a7fc50a67182", + "size": 205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bc6a015bf8d1524b4328081c7c9a7fc50a67182" + }, + { + "path": "meta/victoriametrics.json", + "mode": "100644", + "type": "blob", + "sha": "71d9367ae620e85d3355bdb47062f45da843e621", + "size": 273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71d9367ae620e85d3355bdb47062f45da843e621" + }, + { + "path": "meta/victron-energy.json", + "mode": "100644", + "type": "blob", + "sha": "bc244374015e7ed5df6c68c56730c0a9a5f688b6", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc244374015e7ed5df6c68c56730c0a9a5f688b6" + }, + { + "path": "meta/vidzy.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/viewtube.json", + "mode": "100644", + "type": "blob", + "sha": "ab859712647eb642d2aa34e0ae8340b531819f02", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab859712647eb642d2aa34e0ae8340b531819f02" + }, + { + "path": "meta/vikunja.json", + "mode": "100644", + "type": "blob", + "sha": "51b4ea1566333bc6fb7022a1b35927dd717183ba", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51b4ea1566333bc6fb7022a1b35927dd717183ba" + }, + { + "path": "meta/vinchin-backup.json", + "mode": "100644", + "type": "blob", + "sha": "03fd860826337c3857b0c3b28941915992771d57", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03fd860826337c3857b0c3b28941915992771d57" + }, + { + "path": "meta/virgin-media.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/virtualmin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/virtualradarserver.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/viseron.json", + "mode": "100644", + "type": "blob", + "sha": "b322b31284c6c96d1c7b5afd4753ba56b41a8d38", + "size": 257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b322b31284c6c96d1c7b5afd4753ba56b41a8d38" + }, + { + "path": "meta/visual-studio-code.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/vitalpbx.json", + "mode": "100644", + "type": "blob", + "sha": "8d04b635c4f9db8f7830619681cf58307511530b", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d04b635c4f9db8f7830619681cf58307511530b" + }, + { + "path": "meta/vite.json", + "mode": "100644", + "type": "blob", + "sha": "6d21eda8d70f709d9b2360784b294663789022bd", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d21eda8d70f709d9b2360784b294663789022bd" + }, + { + "path": "meta/vitest.json", + "mode": "100644", + "type": "blob", + "sha": "5b3edf5e02e05bbfa4571030ae6d58091fb3b300", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b3edf5e02e05bbfa4571030ae6d58091fb3b300" + }, + { + "path": "meta/vito-deploy.json", + "mode": "100644", + "type": "blob", + "sha": "e3449ab43572f29dfcea761a79d9bc8048fcd3cb", + "size": 227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3449ab43572f29dfcea761a79d9bc8048fcd3cb" + }, + { + "path": "meta/vivaldi.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/vmware-esxi.json", + "mode": "100644", + "type": "blob", + "sha": "dd5cf340e07c068e11f379b5ea5821d73babb153", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd5cf340e07c068e11f379b5ea5821d73babb153" + }, + { + "path": "meta/vmware-horizon.json", + "mode": "100644", + "type": "blob", + "sha": "1556dad7616c9e87c63a2ff4397ad90aaa6624c2", + "size": 285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1556dad7616c9e87c63a2ff4397ad90aaa6624c2" + }, + { + "path": "meta/vmware-vcenter.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/vmware-workstation.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/vmware.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/vn-stat.json", + "mode": "100644", + "type": "blob", + "sha": "aff05fc6d47794e2c75f66af6a2672344419fcaa", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aff05fc6d47794e2c75f66af6a2672344419fcaa" + }, + { + "path": "meta/vodafone.json", + "mode": "100644", + "type": "blob", + "sha": "c7433a8852c85e4943e047fda6127bcff12eb1a4", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7433a8852c85e4943e047fda6127bcff12eb1a4" + }, + { + "path": "meta/voilib.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/voip-info.json", + "mode": "100644", + "type": "blob", + "sha": "5412159b08d5283590ce6f46fdac3d2d661205c0", + "size": 231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5412159b08d5283590ce6f46fdac3d2d661205c0" + }, + { + "path": "meta/voip-ms.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/voltaserve.json", + "mode": "100644", + "type": "blob", + "sha": "ebcc8c1ec68cf566e12de5768ea00e9f7a0b2db3", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebcc8c1ec68cf566e12de5768ea00e9f7a0b2db3" + }, + { + "path": "meta/volumio.json", + "mode": "100644", + "type": "blob", + "sha": "99977483c1267e0b233ab4f5b90cb68b755d81c2", + "size": 359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99977483c1267e0b233ab4f5b90cb68b755d81c2" + }, + { + "path": "meta/voron.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/vouchervault.json", + "mode": "100644", + "type": "blob", + "sha": "669a5d75fae175b9e2918d741b6d0cb6fce94213", + "size": 289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/669a5d75fae175b9e2918d741b6d0cb6fce94213" + }, + { + "path": "meta/vscode.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/vtvgo.json", + "mode": "100644", + "type": "blob", + "sha": "66a167f0371f918e0fbce7d77d604d0803ac9b30", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66a167f0371f918e0fbce7d77d604d0803ac9b30" + }, + { + "path": "meta/vuetorrent.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/vultr.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/vuplus.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/wakapi.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/wakatime.json", + "mode": "100644", + "type": "blob", + "sha": "17faac358888898c3902bdde7519614b84de79db", + "size": 359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17faac358888898c3902bdde7519614b84de79db" + }, + { + "path": "meta/wallabag.json", + "mode": "100644", + "type": "blob", + "sha": "803a12ed1eb1df86b041b03ee8538fabf0e41663", + "size": 353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/803a12ed1eb1df86b041b03ee8538fabf0e41663" + }, + { + "path": "meta/wallos.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/wanderer.json", + "mode": "100644", + "type": "blob", + "sha": "2419e9b75edb62e7398448385425a873ef3f1d67", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2419e9b75edb62e7398448385425a873ef3f1d67" + }, + { + "path": "meta/wanikani.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ward.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/warpgate.json", + "mode": "100644", + "type": "blob", + "sha": "061f4bd1f3fbdcdf2ba565a2e6f10f9dbaef525d", + "size": 184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/061f4bd1f3fbdcdf2ba565a2e6f10f9dbaef525d" + }, + { + "path": "meta/warracker.json", + "mode": "100644", + "type": "blob", + "sha": "34654345bbe82e16ffb636c5de8597a7d2a0b262", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34654345bbe82e16ffb636c5de8597a7d2a0b262" + }, + { + "path": "meta/watcharr.json", + "mode": "100644", + "type": "blob", + "sha": "dc67af0430dd0aa10d92560e7ce92224a7a0c19e", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc67af0430dd0aa10d92560e7ce92224a7a0c19e" + }, + { + "path": "meta/watcher.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/watchlistarr.json", + "mode": "100644", + "type": "blob", + "sha": "58a7cce2c94f460d1d126edc84d85d9cb0c68a1e", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58a7cce2c94f460d1d126edc84d85d9cb0c68a1e" + }, + { + "path": "meta/watchtower.json", + "mode": "100644", + "type": "blob", + "sha": "2ae06e5c373c0feb505d9cb96464cc6da1bc4200", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ae06e5c373c0feb505d9cb96464cc6da1bc4200" + }, + { + "path": "meta/watchyourlan.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/watchyourports.json", + "mode": "100644", + "type": "blob", + "sha": "ff5a97ccce1ebe0e5360040eca6dbc909dc216bf", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff5a97ccce1ebe0e5360040eca6dbc909dc216bf" + }, + { + "path": "meta/wavelog.json", + "mode": "100644", + "type": "blob", + "sha": "7ae0a82656929a4f1a14103f75aff0260d5c9010", + "size": 215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ae0a82656929a4f1a14103f75aff0260d5c9010" + }, + { + "path": "meta/waze.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/wazuh.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/wbo.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/wd-mycloud.json", + "mode": "100644", + "type": "blob", + "sha": "67dbbbb40ffa5c032a970305458da9f1bc0e7858", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67dbbbb40ffa5c032a970305458da9f1bc0e7858" + }, + { + "path": "meta/web-check.json", + "mode": "100644", + "type": "blob", + "sha": "56b6cce38ac9511a927e4eb66f0909f94dc9296c", + "size": 354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56b6cce38ac9511a927e4eb66f0909f94dc9296c" + }, + { + "path": "meta/web-whisper.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/webdav.json", + "mode": "100644", + "type": "blob", + "sha": "d2af486047ab8adf22d4ddb893e4adc8e4cb99ae", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2af486047ab8adf22d4ddb893e4adc8e4cb99ae" + }, + { + "path": "meta/webdb.json", + "mode": "100644", + "type": "blob", + "sha": "1fa8e679d68bd47d272c3a62b861050e7dfb0542", + "size": 279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fa8e679d68bd47d272c3a62b861050e7dfb0542" + }, + { + "path": "meta/webex.json", + "mode": "100644", + "type": "blob", + "sha": "2b94e7495428a76a45306c26af847bd95ea3258c", + "size": 214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b94e7495428a76a45306c26af847bd95ea3258c" + }, + { + "path": "meta/webhook.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/webhookd.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/webkit.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/webmin.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/webtools.json", + "mode": "100644", + "type": "blob", + "sha": "2dfd29aedc1ef8abbd6f2e3c8a431cf034b36c20", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dfd29aedc1ef8abbd6f2e3c8a431cf034b36c20" + }, + { + "path": "meta/webtop.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/webtorrent.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/webtrees.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/wekan.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/wero.json", + "mode": "100644", + "type": "blob", + "sha": "f9104a2b5dcdcf3e95ce02404e12ee96c2de215a", + "size": 347, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9104a2b5dcdcf3e95ce02404e12ee96c2de215a" + }, + { + "path": "meta/western-digital.json", + "mode": "100644", + "type": "blob", + "sha": "189ead1fb388788c15168995613dbb4db45f8333", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/189ead1fb388788c15168995613dbb4db45f8333" + }, + { + "path": "meta/wetty.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/wevr-labs.json", + "mode": "100644", + "type": "blob", + "sha": "cda1d8532d29c219c18325e02f1ed18103428d01", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cda1d8532d29c219c18325e02f1ed18103428d01" + }, + { + "path": "meta/wg-gen-web.json", + "mode": "100644", + "type": "blob", + "sha": "31bf381e202390fc4ba66024e518cff7174433ec", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31bf381e202390fc4ba66024e518cff7174433ec" + }, + { + "path": "meta/wger.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/whatnot.json", + "mode": "100644", + "type": "blob", + "sha": "52f47481b537fa2814da3ccc8cf8af74fbb637ef", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52f47481b537fa2814da3ccc8cf8af74fbb637ef" + }, + { + "path": "meta/whats-up-docker.json", + "mode": "100644", + "type": "blob", + "sha": "77f7bfb7c55f46f965e8b929ba7f7b916eeffe2f", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77f7bfb7c55f46f965e8b929ba7f7b916eeffe2f" + }, + { + "path": "meta/whatsapp.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/whisparr.json", + "mode": "100644", + "type": "blob", + "sha": "10fd457e99bebd1f64677b7445165d0a118462a8", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10fd457e99bebd1f64677b7445165d0a118462a8" + }, + { + "path": "meta/whodb.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/whoogle.json", + "mode": "100644", + "type": "blob", + "sha": "f265995421e365c0351317949faf8e738f764eb0", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f265995421e365c0351317949faf8e738f764eb0" + }, + { + "path": "meta/wifiman.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/wiki-go.json", + "mode": "100644", + "type": "blob", + "sha": "79eb1433efea1f08a23b3bbb6d51f28c992a0e38", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79eb1433efea1f08a23b3bbb6d51f28c992a0e38" + }, + { + "path": "meta/wikidocs.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/wikijs-alt.json", + "mode": "100644", + "type": "blob", + "sha": "389a057f293df6ff37f7e82958b0d2fc867d4e77", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/389a057f293df6ff37f7e82958b0d2fc867d4e77" + }, + { + "path": "meta/wikijs.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/wikipedia.json", + "mode": "100644", + "type": "blob", + "sha": "0088a0f50aafc8022df73de7d45abaca82cfd20c", + "size": 329, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0088a0f50aafc8022df73de7d45abaca82cfd20c" + }, + { + "path": "meta/willow.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/windmill.json", + "mode": "100644", + "type": "blob", + "sha": "fbab95d8812220f04c14ae116e9041d5268deeed", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbab95d8812220f04c14ae116e9041d5268deeed" + }, + { + "path": "meta/windows-10.json", + "mode": "100644", + "type": "blob", + "sha": "2d717252c91b1deaa532c750537eec5ebe5d3078", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d717252c91b1deaa532c750537eec5ebe5d3078" + }, + { + "path": "meta/windows-11.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/windows-7.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/windows-95.json", + "mode": "100644", + "type": "blob", + "sha": "acd62f1c486081d1c73d140f61db639c0daea64e", + "size": 263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acd62f1c486081d1c73d140f61db639c0daea64e" + }, + { + "path": "meta/windows-98.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/windows-retro.json", + "mode": "100644", + "type": "blob", + "sha": "280c01564c4cc22020741e690a9828aa6944598e", + "size": 351, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/280c01564c4cc22020741e690a9828aa6944598e" + }, + { + "path": "meta/windows-vista.json", + "mode": "100644", + "type": "blob", + "sha": "ec4c184033e72b9463b91040905226ae7ddd349b", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec4c184033e72b9463b91040905226ae7ddd349b" + }, + { + "path": "meta/windows-xp.json", + "mode": "100644", + "type": "blob", + "sha": "2fcfb7a50996ccd8aba53d14c1b44ae48e3cc898", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fcfb7a50996ccd8aba53d14c1b44ae48e3cc898" + }, + { + "path": "meta/wireguard.json", + "mode": "100644", + "type": "blob", + "sha": "69a4698b1ff685a7f39c1a216c7e745c719f682d", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69a4698b1ff685a7f39c1a216c7e745c719f682d" + }, + { + "path": "meta/wirenboard.json", + "mode": "100644", + "type": "blob", + "sha": "34be5200dad6554fca4df496f2e19e898c4ead43", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34be5200dad6554fca4df496f2e19e898c4ead43" + }, + { + "path": "meta/wireshark.json", + "mode": "100644", + "type": "blob", + "sha": "123c79716396207dd47f458725040c24ad59ace8", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/123c79716396207dd47f458725040c24ad59ace8" + }, + { + "path": "meta/wizarr.json", + "mode": "100644", + "type": "blob", + "sha": "e57374de1280c9d08f87db40ecb8cb4bf47af754", + "size": 233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e57374de1280c9d08f87db40ecb8cb4bf47af754" + }, + { + "path": "meta/wled.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/wolfi.json", + "mode": "100644", + "type": "blob", + "sha": "492a794349f9fce9d83028a7cc8cdbf348f23ce5", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/492a794349f9fce9d83028a7cc8cdbf348f23ce5" + }, + { + "path": "meta/woocommerce.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/woodpecker-ci.json", + "mode": "100644", + "type": "blob", + "sha": "92ad616252e352cd2b0dd38b01fcd9b51d76adab", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92ad616252e352cd2b0dd38b01fcd9b51d76adab" + }, + { + "path": "meta/wooting.json", + "mode": "100644", + "type": "blob", + "sha": "ac2eb1e057620e8298274c02c398e1c245bd3b70", + "size": 316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac2eb1e057620e8298274c02c398e1c245bd3b70" + }, + { + "path": "meta/wordpress.json", + "mode": "100644", + "type": "blob", + "sha": "3074a60c1992064da7fcb3efc3c6a0f2bb20c72a", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3074a60c1992064da7fcb3efc3c6a0f2bb20c72a" + }, + { + "path": "meta/workadventure.json", + "mode": "100644", + "type": "blob", + "sha": "d15593c57c24d8fb8971d4f809cf73c80ec12707", + "size": 291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d15593c57c24d8fb8971d4f809cf73c80ec12707" + }, + { + "path": "meta/worklenz.json", + "mode": "100644", + "type": "blob", + "sha": "dd8eac5d0d1378f9bdba485c23f8495dcdf60b72", + "size": 272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd8eac5d0d1378f9bdba485c23f8495dcdf60b72" + }, + { + "path": "meta/wotdle.json", + "mode": "100644", + "type": "blob", + "sha": "9eaf7acab53c37456f1824f14d8ab01f32f6f3a8", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eaf7acab53c37456f1824f14d8ab01f32f6f3a8" + }, + { + "path": "meta/wownero.json", + "mode": "100644", + "type": "blob", + "sha": "f5247de9fb2dffaea8aba3e535517c1ec67361b2", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5247de9fb2dffaea8aba3e535517c1ec67361b2" + }, + { + "path": "meta/writefreely.json", + "mode": "100644", + "type": "blob", + "sha": "6d8fc65ae578387781e8e75cc6cd24a941cc2685", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d8fc65ae578387781e8e75cc6cd24a941cc2685" + }, + { + "path": "meta/wsz.json", + "mode": "100644", + "type": "blob", + "sha": "16faf46e663bcce40bdb970f5ea7540bc4bbc2c6", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16faf46e663bcce40bdb970f5ea7540bc4bbc2c6" + }, + { + "path": "meta/x.json", + "mode": "100644", + "type": "blob", + "sha": "2105372ece388917c1c741bd3e9a0d6a81c03aee", + "size": 245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2105372ece388917c1c741bd3e9a0d6a81c03aee" + }, + { + "path": "meta/xbackbone.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/xbox-game-pass.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/xbox.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/xbrowsersync.json", + "mode": "100644", + "type": "blob", + "sha": "b9689a7d83e867708bdcf9705557903b192b8b75", + "size": 185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9689a7d83e867708bdcf9705557903b192b8b75" + }, + { + "path": "meta/xcp-ng.json", + "mode": "100644", + "type": "blob", + "sha": "11e42e7a6c5e6ac02ad2d0daf81061e7df2c325e", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11e42e7a6c5e6ac02ad2d0daf81061e7df2c325e" + }, + { + "path": "meta/xen-orchestra.json", + "mode": "100644", + "type": "blob", + "sha": "1de1d69b0fd1e078ee3c39e0a1e7a7451627aece", + "size": 197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1de1d69b0fd1e078ee3c39e0a1e7a7451627aece" + }, + { + "path": "meta/xiaomi-global.json", + "mode": "100644", + "type": "blob", + "sha": "f383cb1987938438ea813efae81348c8ec7a3638", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f383cb1987938438ea813efae81348c8ec7a3638" + }, + { + "path": "meta/xigmanas.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/xmr.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/xmrig.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/xpipe.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/xteve.json", + "mode": "100644", + "type": "blob", + "sha": "b79b66e0bf2eec90309aa594263ab8dfd3c1f12c", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b79b66e0bf2eec90309aa594263ab8dfd3c1f12c" + }, + { + "path": "meta/xubuntu-linux.json", + "mode": "100644", + "type": "blob", + "sha": "e775118fd868ec4afb96d5da5fa1cf66c999e08e", + "size": 195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e775118fd868ec4afb96d5da5fa1cf66c999e08e" + }, + { + "path": "meta/xwiki.json", + "mode": "100644", + "type": "blob", + "sha": "cf15ce372451deeb400360c275c03ff874390f9a", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf15ce372451deeb400360c275c03ff874390f9a" + }, + { + "path": "meta/yaade.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/yac-reader.json", + "mode": "100644", + "type": "blob", + "sha": "0b42f807c7c073692c3111d81b0e8c48bac01b10", + "size": 242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b42f807c7c073692c3111d81b0e8c48bac01b10" + }, + { + "path": "meta/yacd-blue.json", + "mode": "100644", + "type": "blob", + "sha": "66e5d13aba74149aee6cff8cdaa68a9b1f1eff34", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66e5d13aba74149aee6cff8cdaa68a9b1f1eff34" + }, + { + "path": "meta/yacd.json", + "mode": "100644", + "type": "blob", + "sha": "14ce198bf23837c59f30eabc786cc61402aad078", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14ce198bf23837c59f30eabc786cc61402aad078" + }, + { + "path": "meta/yacht.json", + "mode": "100644", + "type": "blob", + "sha": "808c7b5173c4729c3478f6e7c8dde241206a8f7c", + "size": 300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/808c7b5173c4729c3478f6e7c8dde241206a8f7c" + }, + { + "path": "meta/yahoo-mail.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/yahoo.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/yamtrack.json", + "mode": "100644", + "type": "blob", + "sha": "ef56da31da767fa3471e5979b3638fe3cf7aad4a", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef56da31da767fa3471e5979b3638fe3cf7aad4a" + }, + { + "path": "meta/yandex.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/yarn-social.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/yarr.json", + "mode": "100644", + "type": "blob", + "sha": "737fdd8e24990b5ccba0985aaa7ab1f7dfd97301", + "size": 313, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/737fdd8e24990b5ccba0985aaa7ab1f7dfd97301" + }, + { + "path": "meta/yazi.json", + "mode": "100644", + "type": "blob", + "sha": "d683999e035943f7249e57840d4255dcbaa8fca0", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d683999e035943f7249e57840d4255dcbaa8fca0" + }, + { + "path": "meta/ycombinator.json", + "mode": "100644", + "type": "blob", + "sha": "0a1152ba8978368d355267f6130ac35a9ff8dcff", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a1152ba8978368d355267f6130ac35a9ff8dcff" + }, + { + "path": "meta/ymarks.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/ynab.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/your-spotify.json", + "mode": "100644", + "type": "blob", + "sha": "5d4366366e1d5a20cc9babe6eb8d185cac09568b", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d4366366e1d5a20cc9babe6eb8d185cac09568b" + }, + { + "path": "meta/yourls.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/youtarr.json", + "mode": "100644", + "type": "blob", + "sha": "1c961885d6499ccd747aceac0c6e8c8522e8522f", + "size": 208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c961885d6499ccd747aceac0c6e8c8522e8522f" + }, + { + "path": "meta/youtube-dl.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/youtube-kids.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/youtube-music.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/youtube-tv.json", + "mode": "100644", + "type": "blob", + "sha": "15f5d8c90ab194472416ceee9ea455f9672b5c48", + "size": 230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15f5d8c90ab194472416ceee9ea455f9672b5c48" + }, + { + "path": "meta/youtube.json", + "mode": "100644", + "type": "blob", + "sha": "c1d395cbf63896eb703d923e8b2d51cfd3535bc2", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1d395cbf63896eb703d923e8b2d51cfd3535bc2" + }, + { + "path": "meta/yt-dlp.json", + "mode": "100644", + "type": "blob", + "sha": "63ddf896533269aea29d2229dbbf68aadd30b69c", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63ddf896533269aea29d2229dbbf68aadd30b69c" + }, + { + "path": "meta/yts.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/yuno-host.json", + "mode": "100644", + "type": "blob", + "sha": "dc10a770904aebb3ec7ac5d87062838887b71802", + "size": 355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc10a770904aebb3ec7ac5d87062838887b71802" + }, + { + "path": "meta/yunohost.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/z-ai.json", + "mode": "100644", + "type": "blob", + "sha": "184f02a250c404e4702c04fee7e60ccdef769111", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/184f02a250c404e4702c04fee7e60ccdef769111" + }, + { + "path": "meta/z-wave-js-ui.json", + "mode": "100644", + "type": "blob", + "sha": "91bc88a529e986822ed1cbdebfe3ccef16349861", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91bc88a529e986822ed1cbdebfe3ccef16349861" + }, + { + "path": "meta/zabbix.json", + "mode": "100644", + "type": "blob", + "sha": "9ea6fbb77229eb9d48ffd30f1bae2223956c5de8", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ea6fbb77229eb9d48ffd30f1bae2223956c5de8" + }, + { + "path": "meta/zabka.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/zalo.json", + "mode": "100644", + "type": "blob", + "sha": "6c4ecebe8a6d21d8c454ebe0c5323d7eb05773f4", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c4ecebe8a6d21d8c454ebe0c5323d7eb05773f4" + }, + { + "path": "meta/zammad.json", + "mode": "100644", + "type": "blob", + "sha": "f210b9a083398bbf6b0e7649e322994193f55da2", + "size": 274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f210b9a083398bbf6b0e7649e322994193f55da2" + }, + { + "path": "meta/zapier.json", + "mode": "100644", + "type": "blob", + "sha": "a8fa87a988155ee1fd549d4f88746c68cd5d758f", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8fa87a988155ee1fd549d4f88746c68cd5d758f" + }, + { + "path": "meta/zashboard.json", + "mode": "100644", + "type": "blob", + "sha": "b3ac5e1f71f9497cb225514e94bdf6bef8d96123", + "size": 286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3ac5e1f71f9497cb225514e94bdf6bef8d96123" + }, + { + "path": "meta/zen-browser.json", + "mode": "100644", + "type": "blob", + "sha": "65ce623ef97b69a7a9cb7ccdb093fdfa409461af", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65ce623ef97b69a7a9cb7ccdb093fdfa409461af" + }, + { + "path": "meta/zenarmor.json", + "mode": "100644", + "type": "blob", + "sha": "7aa791869bbacd215b4e9d3a9d93f28b17a844e7", + "size": 210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aa791869bbacd215b4e9d3a9d93f28b17a844e7" + }, + { + "path": "meta/zendesk.json", + "mode": "100644", + "type": "blob", + "sha": "b5e1279ceed619dbb298bb6f185d2cf6d73c56bb", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e1279ceed619dbb298bb6f185d2cf6d73c56bb" + }, + { + "path": "meta/zerotier.json", + "mode": "100644", + "type": "blob", + "sha": "2e79d9035c10d1bc019bf6ad24eea1334ecdc6f8", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e79d9035c10d1bc019bf6ad24eea1334ecdc6f8" + }, + { + "path": "meta/zigbee2mqtt.json", + "mode": "100644", + "type": "blob", + "sha": "b9703c39127064a586d1c9e16269a6b74aee4ad1", + "size": 265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9703c39127064a586d1c9e16269a6b74aee4ad1" + }, + { + "path": "meta/zima-os.json", + "mode": "100644", + "type": "blob", + "sha": "41ea7b0efb1703d346e000efe59993b333269cb9", + "size": 194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41ea7b0efb1703d346e000efe59993b333269cb9" + }, + { + "path": "meta/zimbra.json", + "mode": "100644", + "type": "blob", + "sha": "ca53ceceaec8af45894b2c72c8159ef0a8668d3c", + "size": 213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca53ceceaec8af45894b2c72c8159ef0a8668d3c" + }, + { + "path": "meta/zipcaptions.json", + "mode": "100644", + "type": "blob", + "sha": "9511d4db6ff56371659b3fe7c3056b560afa9371", + "size": 255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9511d4db6ff56371659b3fe7c3056b560afa9371" + }, + { + "path": "meta/zipline-diced.json", + "mode": "100644", + "type": "blob", + "sha": "49bec90e21c5138a40656eafa0e231289fbd8061", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49bec90e21c5138a40656eafa0e231289fbd8061" + }, + { + "path": "meta/zipline.json", + "mode": "100644", + "type": "blob", + "sha": "ddccf761254e1a58cbc2899b53e8b158e07e0a89", + "size": 366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddccf761254e1a58cbc2899b53e8b158e07e0a89" + }, + { + "path": "meta/zitadel.json", + "mode": "100644", + "type": "blob", + "sha": "ac5d634617556f9611317a783940c9f9ef125ecd", + "size": 327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac5d634617556f9611317a783940c9f9ef125ecd" + }, + { + "path": "meta/znc.json", + "mode": "100644", + "type": "blob", + "sha": "902b09d3d89704da7c23fe370f816f84b2ef3fb5", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/902b09d3d89704da7c23fe370f816f84b2ef3fb5" + }, + { + "path": "meta/zohomail.json", + "mode": "100644", + "type": "blob", + "sha": "a10f0333941dabca838466ca8e9f6f2f8eb93d47", + "size": 190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a10f0333941dabca838466ca8e9f6f2f8eb93d47" + }, + { + "path": "meta/zomro.json", + "mode": "100644", + "type": "blob", + "sha": "019462a101184ac20ae3269ba495ef8cbf327139", + "size": 192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/019462a101184ac20ae3269ba495ef8cbf327139" + }, + { + "path": "meta/zoneminder.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/zoom-alt.json", + "mode": "100644", + "type": "blob", + "sha": "ed8567d96033fc8dd03c5be39f764e70445010a2", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed8567d96033fc8dd03c5be39f764e70445010a2" + }, + { + "path": "meta/zoom.json", + "mode": "100644", + "type": "blob", + "sha": "eafd7e7346062f5b50d07f28c76de48950df0f86", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eafd7e7346062f5b50d07f28c76de48950df0f86" + }, + { + "path": "meta/zoraxy.json", + "mode": "100644", + "type": "blob", + "sha": "0f2cb71421b6fd6063a88c10e856026aa7d6a5e1", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f2cb71421b6fd6063a88c10e856026aa7d6a5e1" + }, + { + "path": "meta/zorin-linux.json", + "mode": "100644", + "type": "blob", + "sha": "b1bc394a7095b802f4d881463969b022ef56c6e8", + "size": 228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1bc394a7095b802f4d881463969b022ef56c6e8" + }, + { + "path": "meta/zot-registry.json", + "mode": "100644", + "type": "blob", + "sha": "5a5527de308f53d41ffef18894879759101f144d", + "size": 207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a5527de308f53d41ffef18894879759101f144d" + }, + { + "path": "meta/zulip.json", + "mode": "100644", + "type": "blob", + "sha": "aa043029be6201dcb860ad4a64a3c333172197e8", + "size": 249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa043029be6201dcb860ad4a64a3c333172197e8" + }, + { + "path": "meta/zwavejs2mqtt.json", + "mode": "100644", + "type": "blob", + "sha": "520160020008e5e17037f3717fdb3bc2d9d9c59d", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520160020008e5e17037f3717fdb3bc2d9d9c59d" + }, + { + "path": "meta/zyxel-communications.json", + "mode": "100644", + "type": "blob", + "sha": "a4e1f37911f8b99ab59c8a7c369344f7eba1d255", + "size": 283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4e1f37911f8b99ab59c8a7c369344f7eba1d255" + }, + { + "path": "meta/zyxel-networks.json", + "mode": "100644", + "type": "blob", + "sha": "9a00254db09e0934c559a6369c989906eebf2447", + "size": 338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a00254db09e0934c559a6369c989906eebf2447" + }, + { + "path": "metadata.json", + "mode": "100644", + "type": "blob", + "sha": "b15178a983004d2558e58887d10bea8c997c96db", + "size": 791348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b15178a983004d2558e58887d10bea8c997c96db" + }, + { + "path": "png", + "mode": "040000", + "type": "tree", + "sha": "4f3fb251625686eb781b47d831a939f95247af46", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/4f3fb251625686eb781b47d831a939f95247af46" + }, + { + "path": "png/1337x.png", + "mode": "100644", + "type": "blob", + "sha": "53ff03524fb90b237f65b741da704d3044ce4a5e", + "size": 11526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53ff03524fb90b237f65b741da704d3044ce4a5e" + }, + { + "path": "png/13ft.png", + "mode": "100644", + "type": "blob", + "sha": "e3a8a9bbafb9646170f43fadd3fbc2486fb3c089", + "size": 20509, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3a8a9bbafb9646170f43fadd3fbc2486fb3c089" + }, + { + "path": "png/1panel.png", + "mode": "100644", + "type": "blob", + "sha": "c8316afbd080d4f12dd8a8ab0efd1edee0d09425", + "size": 14242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8316afbd080d4f12dd8a8ab0efd1edee0d09425" + }, + { + "path": "png/1password-dark.png", + "mode": "100644", + "type": "blob", + "sha": "eaaaaec66d8d0bbe76e91a6dc3f4519fe93bf75a", + "size": 33171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaaaaec66d8d0bbe76e91a6dc3f4519fe93bf75a" + }, + { + "path": "png/1password.png", + "mode": "100644", + "type": "blob", + "sha": "13507fa9d418f7b0989c62a57ca2912ffae04174", + "size": 34133, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13507fa9d418f7b0989c62a57ca2912ffae04174" + }, + { + "path": "png/20i-dark.png", + "mode": "100644", + "type": "blob", + "sha": "28247cb2f0786015868eec1cb81eeb0b4d316651", + "size": 34557, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28247cb2f0786015868eec1cb81eeb0b4d316651" + }, + { + "path": "png/20i.png", + "mode": "100644", + "type": "blob", + "sha": "457887ccf25cf20fdd7e9194efc586c25ea11bfa", + "size": 37840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/457887ccf25cf20fdd7e9194efc586c25ea11bfa" + }, + { + "path": "png/2fauth-light.png", + "mode": "100644", + "type": "blob", + "sha": "fbbbfe7bd62dc508d9be2626191b306533e77bf0", + "size": 2169, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbbbfe7bd62dc508d9be2626191b306533e77bf0" + }, + { + "path": "png/2fauth.png", + "mode": "100644", + "type": "blob", + "sha": "3a528c7c593116acd5720ee16936b715510467af", + "size": 2185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a528c7c593116acd5720ee16936b715510467af" + }, + { + "path": "png/3cx-light.png", + "mode": "100644", + "type": "blob", + "sha": "002d3be8ebeb857bc384c2f9e13b213672fd09d8", + "size": 17454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/002d3be8ebeb857bc384c2f9e13b213672fd09d8" + }, + { + "path": "png/3cx.png", + "mode": "100644", + "type": "blob", + "sha": "f353da70b6c934eae9cdc1a02282980e52325d49", + "size": 17641, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f353da70b6c934eae9cdc1a02282980e52325d49" + }, + { + "path": "png/4chan.png", + "mode": "100644", + "type": "blob", + "sha": "f984e1531d525823cf155c2ed34fb3c222fd0b9b", + "size": 34500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f984e1531d525823cf155c2ed34fb3c222fd0b9b" + }, + { + "path": "png/5etools-dark.png", + "mode": "100644", + "type": "blob", + "sha": "884688dff7282fe4c0ffc39bbc8ab21de4362de6", + "size": 41886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/884688dff7282fe4c0ffc39bbc8ab21de4362de6" + }, + { + "path": "png/5etools.png", + "mode": "100644", + "type": "blob", + "sha": "61763f461b0d02fc0211168cb6fac23ab72ed576", + "size": 45569, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61763f461b0d02fc0211168cb6fac23ab72ed576" + }, + { + "path": "png/7zip.png", + "mode": "100644", + "type": "blob", + "sha": "d9e48c4ee6d97a2d4df3fa2fdfc51f8238bdb838", + "size": 20674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9e48c4ee6d97a2d4df3fa2fdfc51f8238bdb838" + }, + { + "path": "png/a-mule.png", + "mode": "100644", + "type": "blob", + "sha": "c670b2f3a50c60d578d7e40f12a58c8c1427d106", + "size": 55574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c670b2f3a50c60d578d7e40f12a58c8c1427d106" + }, + { + "path": "png/aboard.png", + "mode": "100644", + "type": "blob", + "sha": "ccdb7536b8ff0c6e586d247b58c0580c465311ef", + "size": 25050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccdb7536b8ff0c6e586d247b58c0580c465311ef" + }, + { + "path": "png/act.png", + "mode": "100644", + "type": "blob", + "sha": "b64e1b777c17d3626392c0da87a738dc74cbcaa8", + "size": 37266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b64e1b777c17d3626392c0da87a738dc74cbcaa8" + }, + { + "path": "png/action1.png", + "mode": "100644", + "type": "blob", + "sha": "7ebc811cc6831df1fee62e8ab999f61cccedad67", + "size": 28003, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ebc811cc6831df1fee62e8ab999f61cccedad67" + }, + { + "path": "png/activepieces.png", + "mode": "100644", + "type": "blob", + "sha": "4780e848cb85ca271bfb074c1e09e22f13514ba8", + "size": 17255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4780e848cb85ca271bfb074c1e09e22f13514ba8" + }, + { + "path": "png/actual-budget.png", + "mode": "100644", + "type": "blob", + "sha": "29dbfb65c966a47b88262642f28f560e1e319d82", + "size": 20478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29dbfb65c966a47b88262642f28f560e1e319d82" + }, + { + "path": "png/adblock.png", + "mode": "100644", + "type": "blob", + "sha": "869112e837722b0742b875ac3cbed4276998eece", + "size": 50372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/869112e837722b0742b875ac3cbed4276998eece" + }, + { + "path": "png/adguard-home-sync.png", + "mode": "100644", + "type": "blob", + "sha": "0eb59bd549009a763a61e7ce4d12416f2cd6bdf7", + "size": 19021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0eb59bd549009a763a61e7ce4d12416f2cd6bdf7" + }, + { + "path": "png/adguard-home.png", + "mode": "100644", + "type": "blob", + "sha": "73f37ce00e4f744d8ea9f70ebd62bb74b4399dd6", + "size": 20385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73f37ce00e4f744d8ea9f70ebd62bb74b4399dd6" + }, + { + "path": "png/adminer.png", + "mode": "100644", + "type": "blob", + "sha": "a6a9f0843986b58a338268a38bfd58e3624ca155", + "size": 24227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6a9f0843986b58a338268a38bfd58e3624ca155" + }, + { + "path": "png/adobe.png", + "mode": "100644", + "type": "blob", + "sha": "e8455a1dc6c1d116e57aa936284c7c4c77f5ef95", + "size": 6541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8455a1dc6c1d116e57aa936284c7c4c77f5ef95" + }, + { + "path": "png/ads-b-exchange.png", + "mode": "100644", + "type": "blob", + "sha": "2efa3ac59b1b104f16e50ba093fef27104db2047", + "size": 18069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2efa3ac59b1b104f16e50ba093fef27104db2047" + }, + { + "path": "png/adsb.png", + "mode": "100644", + "type": "blob", + "sha": "b408adf3ef398a4e685862e049a2c95c374edf3a", + "size": 25075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b408adf3ef398a4e685862e049a2c95c374edf3a" + }, + { + "path": "png/advanzia.png", + "mode": "100644", + "type": "blob", + "sha": "f67d3cfe2f867a9a19ff855f88b8842c7b3d7090", + "size": 10536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f67d3cfe2f867a9a19ff855f88b8842c7b3d7090" + }, + { + "path": "png/adventure-log.png", + "mode": "100644", + "type": "blob", + "sha": "05915adca943ec3eea88ded5177da48c02a2cfbf", + "size": 23851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05915adca943ec3eea88ded5177da48c02a2cfbf" + }, + { + "path": "png/affine-light.png", + "mode": "100644", + "type": "blob", + "sha": "1f1dd238def57574c83d2aba30111a8693f1516c", + "size": 29751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f1dd238def57574c83d2aba30111a8693f1516c" + }, + { + "path": "png/affine.png", + "mode": "100644", + "type": "blob", + "sha": "22a6ad40bbb5ccfc70c1ad8ab23ef23d915cbd15", + "size": 23425, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22a6ad40bbb5ccfc70c1ad8ab23ef23d915cbd15" + }, + { + "path": "png/agile-freaks.png", + "mode": "100644", + "type": "blob", + "sha": "a6e13a75380742d44f4eb255df7791a577c1c11f", + "size": 30006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6e13a75380742d44f4eb255df7791a577c1c11f" + }, + { + "path": "png/agregarr.png", + "mode": "100644", + "type": "blob", + "sha": "f347fd40b28b6b2aaaeb274354b9241a538fd102", + "size": 11263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f347fd40b28b6b2aaaeb274354b9241a538fd102" + }, + { + "path": "png/air-trail.png", + "mode": "100644", + "type": "blob", + "sha": "6ac7d93c4dd18e1ee02b5c4883246dcbb30d8d51", + "size": 7799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ac7d93c4dd18e1ee02b5c4883246dcbb30d8d51" + }, + { + "path": "png/airsonic.png", + "mode": "100644", + "type": "blob", + "sha": "3bddf0b1df86b4481f502770a1812114ab0e238f", + "size": 16559, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bddf0b1df86b4481f502770a1812114ab0e238f" + }, + { + "path": "png/airtable.png", + "mode": "100644", + "type": "blob", + "sha": "48a37b779e7c2388a2a65ddaf1039d371f5a0d98", + "size": 17221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48a37b779e7c2388a2a65ddaf1039d371f5a0d98" + }, + { + "path": "png/airtel.png", + "mode": "100644", + "type": "blob", + "sha": "8aff76e92ae4d99e8c85e9803dd84f4a1020dbc6", + "size": 19941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8aff76e92ae4d99e8c85e9803dd84f4a1020dbc6" + }, + { + "path": "png/airvpn.png", + "mode": "100644", + "type": "blob", + "sha": "e2a7234d80d18fe7e1cf6cb754ef08feec39b889", + "size": 20851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2a7234d80d18fe7e1cf6cb754ef08feec39b889" + }, + { + "path": "png/akamai.png", + "mode": "100644", + "type": "blob", + "sha": "6fc5d1ba292372b572204de985940face1aa7bd3", + "size": 34692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fc5d1ba292372b572204de985940face1aa7bd3" + }, + { + "path": "png/akaunting.png", + "mode": "100644", + "type": "blob", + "sha": "17f54e3f55415b5cded308a51d0236564af1d82c", + "size": 13955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17f54e3f55415b5cded308a51d0236564af1d82c" + }, + { + "path": "png/akkoma-light.png", + "mode": "100644", + "type": "blob", + "sha": "dbb48ef40e2c006d472b4bacad32770a57107c78", + "size": 17919, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbb48ef40e2c006d472b4bacad32770a57107c78" + }, + { + "path": "png/akkoma.png", + "mode": "100644", + "type": "blob", + "sha": "0cc9151b2d6b3c9c8529005f06800d5065c6d889", + "size": 17569, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cc9151b2d6b3c9c8529005f06800d5065c6d889" + }, + { + "path": "png/alarmpi.png", + "mode": "100644", + "type": "blob", + "sha": "97503eb7e5e1416104b2b107c57abe95274b7996", + "size": 35435, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97503eb7e5e1416104b2b107c57abe95274b7996" + }, + { + "path": "png/albert-heijn.png", + "mode": "100644", + "type": "blob", + "sha": "8a90defc9554e80a8975c8d1dec2f83f77edc771", + "size": 20903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a90defc9554e80a8975c8d1dec2f83f77edc771" + }, + { + "path": "png/alertmanager.png", + "mode": "100644", + "type": "blob", + "sha": "f3d955c5b370ab17608ba61b694ceffe8effd0cd", + "size": 22982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3d955c5b370ab17608ba61b694ceffe8effd0cd" + }, + { + "path": "png/alexa.png", + "mode": "100644", + "type": "blob", + "sha": "3894761f0fdd6c3265b17b123d16615e94250097", + "size": 7591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3894761f0fdd6c3265b17b123d16615e94250097" + }, + { + "path": "png/algo.png", + "mode": "100644", + "type": "blob", + "sha": "1ecec279e7202586a890f051d5ac7c7954ef1899", + "size": 4527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ecec279e7202586a890f051d5ac7c7954ef1899" + }, + { + "path": "png/ali-mail.png", + "mode": "100644", + "type": "blob", + "sha": "f5dde96802b9f7e3ad2fb33fa4a8c1be7166a67b", + "size": 55359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5dde96802b9f7e3ad2fb33fa4a8c1be7166a67b" + }, + { + "path": "png/aliexpress.png", + "mode": "100644", + "type": "blob", + "sha": "080e525332c8f6d28124e41613ed0f31c1704d8e", + "size": 12800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/080e525332c8f6d28124e41613ed0f31c1704d8e" + }, + { + "path": "png/alist.png", + "mode": "100644", + "type": "blob", + "sha": "686e1499edf0689695488c952d58ddc700dbc8f8", + "size": 24426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/686e1499edf0689695488c952d58ddc700dbc8f8" + }, + { + "path": "png/aliyun.png", + "mode": "100644", + "type": "blob", + "sha": "3661ae9c021b9d97dac404ff5a14ec8089876828", + "size": 6787, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3661ae9c021b9d97dac404ff5a14ec8089876828" + }, + { + "path": "png/alloy.png", + "mode": "100644", + "type": "blob", + "sha": "e2d2c6c610fd47b0f6f309f3f19759a66de4e899", + "size": 28067, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2d2c6c610fd47b0f6f309f3f19759a66de4e899" + }, + { + "path": "png/alltube-light.png", + "mode": "100644", + "type": "blob", + "sha": "d5f79bdd27e2ce41bae8c18cce0e68704c0300dd", + "size": 10196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5f79bdd27e2ce41bae8c18cce0e68704c0300dd" + }, + { + "path": "png/alltube.png", + "mode": "100644", + "type": "blob", + "sha": "8f7e5bb144eceae0af541fb10a2f34268d6abbff", + "size": 10326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f7e5bb144eceae0af541fb10a2f34268d6abbff" + }, + { + "path": "png/alma-linux.png", + "mode": "100644", + "type": "blob", + "sha": "895fe87eefcb80fa3535ffee9fac1958be57a836", + "size": 34090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/895fe87eefcb80fa3535ffee9fac1958be57a836" + }, + { + "path": "png/alpine-linux.png", + "mode": "100644", + "type": "blob", + "sha": "8d609a0d4725560bc18f894840e1fa9e99b771c6", + "size": 22437, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d609a0d4725560bc18f894840e1fa9e99b771c6" + }, + { + "path": "png/amazon-light.png", + "mode": "100644", + "type": "blob", + "sha": "c618070be08d89bdeb3903296e78c08b024f3891", + "size": 17494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c618070be08d89bdeb3903296e78c08b024f3891" + }, + { + "path": "png/amazon-prime.png", + "mode": "100644", + "type": "blob", + "sha": "0e481b59cbece90bc7de8d9c7e28b97a787d8d76", + "size": 27580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e481b59cbece90bc7de8d9c7e28b97a787d8d76" + }, + { + "path": "png/amazon-web-services-light.png", + "mode": "100644", + "type": "blob", + "sha": "b091149ffa434a6aa05676d7f5df98be5cbc3c25", + "size": 33841, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b091149ffa434a6aa05676d7f5df98be5cbc3c25" + }, + { + "path": "png/amazon-web-services.png", + "mode": "100644", + "type": "blob", + "sha": "11e81f160bf045cf3556c812202e04928eac8311", + "size": 31210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11e81f160bf045cf3556c812202e04928eac8311" + }, + { + "path": "png/amazon.png", + "mode": "100644", + "type": "blob", + "sha": "c4f6cac3a9813596637ee2f7fd022042f9fcb5be", + "size": 16400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4f6cac3a9813596637ee2f7fd022042f9fcb5be" + }, + { + "path": "png/amcrest-cloud.png", + "mode": "100644", + "type": "blob", + "sha": "034453684a40c18209ebd82d3dac5585b5d5a1e7", + "size": 16555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/034453684a40c18209ebd82d3dac5585b5d5a1e7" + }, + { + "path": "png/amcrest.png", + "mode": "100644", + "type": "blob", + "sha": "937ba959291cfeaeb43760c071bbf3c12eee8488", + "size": 39604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/937ba959291cfeaeb43760c071bbf3c12eee8488" + }, + { + "path": "png/amd-light.png", + "mode": "100644", + "type": "blob", + "sha": "592360ce0c46fbd79d2b7870e2663c5755b50a69", + "size": 4220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/592360ce0c46fbd79d2b7870e2663c5755b50a69" + }, + { + "path": "png/amd.png", + "mode": "100644", + "type": "blob", + "sha": "4b1d10f3629aeaaa4e598337622e0b98df5daf5f", + "size": 4521, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b1d10f3629aeaaa4e598337622e0b98df5daf5f" + }, + { + "path": "png/ami-alt-light.png", + "mode": "100644", + "type": "blob", + "sha": "89acab684759a19512b4e32f721d855b8ce22281", + "size": 40991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89acab684759a19512b4e32f721d855b8ce22281" + }, + { + "path": "png/ami-alt.png", + "mode": "100644", + "type": "blob", + "sha": "ed24084fc65ef41b5cb185d611ea652e0c668717", + "size": 44181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed24084fc65ef41b5cb185d611ea652e0c668717" + }, + { + "path": "png/ami.png", + "mode": "100644", + "type": "blob", + "sha": "e82c3f90a95e72fc0719985a010b3ccae4e34f3d", + "size": 16268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e82c3f90a95e72fc0719985a010b3ccae4e34f3d" + }, + { + "path": "png/amp.png", + "mode": "100644", + "type": "blob", + "sha": "ff93038e5b1368cf2f821708d34a4d151e7ca6cc", + "size": 6659, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff93038e5b1368cf2f821708d34a4d151e7ca6cc" + }, + { + "path": "png/ampache.png", + "mode": "100644", + "type": "blob", + "sha": "c3b5c32ac9f80f7108dd621e779811630982a99b", + "size": 39356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3b5c32ac9f80f7108dd621e779811630982a99b" + }, + { + "path": "png/android-auto-dark.png", + "mode": "100644", + "type": "blob", + "sha": "06afa574726bf410dedd8488b3e765cf413a4248", + "size": 37067, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06afa574726bf410dedd8488b3e765cf413a4248" + }, + { + "path": "png/android-auto.png", + "mode": "100644", + "type": "blob", + "sha": "2eb5f44f8253485a26bc8c6536e966f0e85805f4", + "size": 32102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eb5f44f8253485a26bc8c6536e966f0e85805f4" + }, + { + "path": "png/android-robot.png", + "mode": "100644", + "type": "blob", + "sha": "c86626a36be25e0fdd023eaf8a06cea302be6e9a", + "size": 20273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c86626a36be25e0fdd023eaf8a06cea302be6e9a" + }, + { + "path": "png/android.png", + "mode": "100644", + "type": "blob", + "sha": "59b5368d852a5438f4efc2db3321b32a5e5e49cf", + "size": 21855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59b5368d852a5438f4efc2db3321b32a5e5e49cf" + }, + { + "path": "png/anghami.png", + "mode": "100644", + "type": "blob", + "sha": "20cee09419a2732f440eb80790b02026d99c4b71", + "size": 33856, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20cee09419a2732f440eb80790b02026d99c4b71" + }, + { + "path": "png/angular.png", + "mode": "100644", + "type": "blob", + "sha": "db98531b32edbffceb5aa0cd5643cbeba0d647a1", + "size": 51863, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db98531b32edbffceb5aa0cd5643cbeba0d647a1" + }, + { + "path": "png/anime-kai.png", + "mode": "100644", + "type": "blob", + "sha": "3868d32bb53855bd20b8a1c621db9409e0357be8", + "size": 28848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3868d32bb53855bd20b8a1c621db9409e0357be8" + }, + { + "path": "png/anonaddy.png", + "mode": "100644", + "type": "blob", + "sha": "8f40dab178e52cbabeb3d0aafd31b76ae199c07e", + "size": 24116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f40dab178e52cbabeb3d0aafd31b76ae199c07e" + }, + { + "path": "png/ansible-light.png", + "mode": "100644", + "type": "blob", + "sha": "3cf0b9351432af585dc1d26202c0f0e76fae07a2", + "size": 21374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cf0b9351432af585dc1d26202c0f0e76fae07a2" + }, + { + "path": "png/ansible.png", + "mode": "100644", + "type": "blob", + "sha": "961daaa37cc31ce45507e0eee22cbbccb5ab6144", + "size": 23703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/961daaa37cc31ce45507e0eee22cbbccb5ab6144" + }, + { + "path": "png/any-listen.png", + "mode": "100644", + "type": "blob", + "sha": "4a1ae764e7368be23342006019025ca2d57c2fb0", + "size": 10106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a1ae764e7368be23342006019025ca2d57c2fb0" + }, + { + "path": "png/anything-llm-light.png", + "mode": "100644", + "type": "blob", + "sha": "26ec7e3d14efdc81fc758f3ce34a322106ac2d57", + "size": 16992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26ec7e3d14efdc81fc758f3ce34a322106ac2d57" + }, + { + "path": "png/anything-llm.png", + "mode": "100644", + "type": "blob", + "sha": "771adc2fc05cff78327e2750fd4afbeec48ff236", + "size": 17444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/771adc2fc05cff78327e2750fd4afbeec48ff236" + }, + { + "path": "png/apache-airflow.png", + "mode": "100644", + "type": "blob", + "sha": "afae66a75f37ef08bb3c445f1ca63d96cb91dfef", + "size": 29609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afae66a75f37ef08bb3c445f1ca63d96cb91dfef" + }, + { + "path": "png/apache-answer.png", + "mode": "100644", + "type": "blob", + "sha": "65d21580cd1103753bd7921d508a7839d25855a6", + "size": 8264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65d21580cd1103753bd7921d508a7839d25855a6" + }, + { + "path": "png/apache-cassandra.png", + "mode": "100644", + "type": "blob", + "sha": "3dbc8bcccec6793834a468f9414eb3081d48a363", + "size": 59924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3dbc8bcccec6793834a468f9414eb3081d48a363" + }, + { + "path": "png/apache-cloudstack.png", + "mode": "100644", + "type": "blob", + "sha": "1fdd63af0b9efa9e3477acaa27e825e8e8671c15", + "size": 47030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fdd63af0b9efa9e3477acaa27e825e8e8671c15" + }, + { + "path": "png/apache-druid.png", + "mode": "100644", + "type": "blob", + "sha": "a8bc0bd93ab2fe223ec9fc655433aa4e99c2e82f", + "size": 21946, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8bc0bd93ab2fe223ec9fc655433aa4e99c2e82f" + }, + { + "path": "png/apache-openoffice.png", + "mode": "100644", + "type": "blob", + "sha": "df6b352da012fda31800316c7f62be96009195a5", + "size": 23989, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df6b352da012fda31800316c7f62be96009195a5" + }, + { + "path": "png/apache-solr.png", + "mode": "100644", + "type": "blob", + "sha": "bc78bc6d2542b371ac0247cb2afc34f5d076f81f", + "size": 32385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc78bc6d2542b371ac0247cb2afc34f5d076f81f" + }, + { + "path": "png/apache-subversion.png", + "mode": "100644", + "type": "blob", + "sha": "846f09c8d492ddedcc93d4cf8db0f9d001eaa969", + "size": 24860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/846f09c8d492ddedcc93d4cf8db0f9d001eaa969" + }, + { + "path": "png/apache-tomcat-light.png", + "mode": "100644", + "type": "blob", + "sha": "6340ada92000337ad6c6a2b16d8bc20ca60dd857", + "size": 49661, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6340ada92000337ad6c6a2b16d8bc20ca60dd857" + }, + { + "path": "png/apache-tomcat.png", + "mode": "100644", + "type": "blob", + "sha": "a22b77ca7a480a6295091fe7946a358a4bad9d3f", + "size": 51934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a22b77ca7a480a6295091fe7946a358a4bad9d3f" + }, + { + "path": "png/apache.png", + "mode": "100644", + "type": "blob", + "sha": "0f395542242ff2aa2519184e11ed06e630df8083", + "size": 29601, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f395542242ff2aa2519184e11ed06e630df8083" + }, + { + "path": "png/apc.png", + "mode": "100644", + "type": "blob", + "sha": "e2f861584391576c7fc2fa1c36b2ace3b5c2574c", + "size": 11917, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2f861584391576c7fc2fa1c36b2ace3b5c2574c" + }, + { + "path": "png/apiscp.png", + "mode": "100644", + "type": "blob", + "sha": "eb0d90ea0541c59e171d3aacfc72aa3c368257ce", + "size": 53016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb0d90ea0541c59e171d3aacfc72aa3c368257ce" + }, + { + "path": "png/app-store.png", + "mode": "100644", + "type": "blob", + "sha": "a299e110a83d804d18c5a95826130a1e2b33579d", + "size": 18297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a299e110a83d804d18c5a95826130a1e2b33579d" + }, + { + "path": "png/appdaemon.png", + "mode": "100644", + "type": "blob", + "sha": "b06b43ab4e5892f4271f7f5f84db591d11a4ee76", + "size": 621, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b06b43ab4e5892f4271f7f5f84db591d11a4ee76" + }, + { + "path": "png/appflowy.png", + "mode": "100644", + "type": "blob", + "sha": "5bb9aa1e571f6e1dc6bacefb74047ab8fde15824", + "size": 26979, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bb9aa1e571f6e1dc6bacefb74047ab8fde15824" + }, + { + "path": "png/apple-alt.png", + "mode": "100644", + "type": "blob", + "sha": "aaa4f93593521ee1b1fed211f91b52267dc16d79", + "size": 14853, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aaa4f93593521ee1b1fed211f91b52267dc16d79" + }, + { + "path": "png/apple-light.png", + "mode": "100644", + "type": "blob", + "sha": "bcc254d59b02733f42e2907ed22e425947ab57a1", + "size": 11401, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcc254d59b02733f42e2907ed22e425947ab57a1" + }, + { + "path": "png/apple-maps.png", + "mode": "100644", + "type": "blob", + "sha": "78d02954fbbce57dad1dc04938c2e3bd7940dae0", + "size": 27777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78d02954fbbce57dad1dc04938c2e3bd7940dae0" + }, + { + "path": "png/apple-music.png", + "mode": "100644", + "type": "blob", + "sha": "3cfcaaef02045b095dc41c3d97ea91a33cc6fd4f", + "size": 13542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cfcaaef02045b095dc41c3d97ea91a33cc6fd4f" + }, + { + "path": "png/apple-podcasts.png", + "mode": "100644", + "type": "blob", + "sha": "8d245bb92f981aa58b1bdddde0d19e72fab56143", + "size": 24903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d245bb92f981aa58b1bdddde0d19e72fab56143" + }, + { + "path": "png/apple-tv-plus-light.png", + "mode": "100644", + "type": "blob", + "sha": "d7c6af2e8ed1000103f86df4626bee9508567f00", + "size": 23341, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7c6af2e8ed1000103f86df4626bee9508567f00" + }, + { + "path": "png/apple-tv-plus.png", + "mode": "100644", + "type": "blob", + "sha": "600f5e124a33ce412fcd8909fc391f79951633ad", + "size": 21211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/600f5e124a33ce412fcd8909fc391f79951633ad" + }, + { + "path": "png/apple.png", + "mode": "100644", + "type": "blob", + "sha": "58df17be93c946c6673f2049e4b89dc187670c3e", + "size": 10340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58df17be93c946c6673f2049e4b89dc187670c3e" + }, + { + "path": "png/apprise.png", + "mode": "100644", + "type": "blob", + "sha": "9ce06e68f6f5c545d060b12368be5563cbb39064", + "size": 15181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ce06e68f6f5c545d060b12368be5563cbb39064" + }, + { + "path": "png/appwrite.png", + "mode": "100644", + "type": "blob", + "sha": "b43b13069779b42412f505bcaee39633bdc0ffd9", + "size": 14961, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b43b13069779b42412f505bcaee39633bdc0ffd9" + }, + { + "path": "png/ara-records-ansible.png", + "mode": "100644", + "type": "blob", + "sha": "6a096d9fe46de338e669f48fd7fff7ebd150c612", + "size": 39529, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a096d9fe46de338e669f48fd7fff7ebd150c612" + }, + { + "path": "png/arcane.png", + "mode": "100644", + "type": "blob", + "sha": "6a43ac5555c3eea9d140a9dbb6602bc6552d9799", + "size": 17916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a43ac5555c3eea9d140a9dbb6602bc6552d9799" + }, + { + "path": "png/arch-linux.png", + "mode": "100644", + "type": "blob", + "sha": "909f1b7591e10c7363d9dc6201146e099fb70cc9", + "size": 19186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/909f1b7591e10c7363d9dc6201146e099fb70cc9" + }, + { + "path": "png/archidekt.png", + "mode": "100644", + "type": "blob", + "sha": "71827b4998765136c3dbd3e9dfb7a20f814ea739", + "size": 12064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71827b4998765136c3dbd3e9dfb7a20f814ea739" + }, + { + "path": "png/archisteamfarm.png", + "mode": "100644", + "type": "blob", + "sha": "9fff4b0c3618ab97f5a56770cc42523059d7475f", + "size": 92052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9fff4b0c3618ab97f5a56770cc42523059d7475f" + }, + { + "path": "png/archivebox.png", + "mode": "100644", + "type": "blob", + "sha": "039a67b9dac9be1d65371b72413d2ca15d738dc5", + "size": 8062, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/039a67b9dac9be1d65371b72413d2ca15d738dc5" + }, + { + "path": "png/archiveteam-warrior-light.png", + "mode": "100644", + "type": "blob", + "sha": "6da58c599d339319f9a875042ed29c0cb1722667", + "size": 58070, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6da58c599d339319f9a875042ed29c0cb1722667" + }, + { + "path": "png/archiveteam-warrior.png", + "mode": "100644", + "type": "blob", + "sha": "5676471f6f5bdeb1ad879f77edad0455eb1a0d53", + "size": 98851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5676471f6f5bdeb1ad879f77edad0455eb1a0d53" + }, + { + "path": "png/arduino.png", + "mode": "100644", + "type": "blob", + "sha": "2f18e842ff83b186a8dd89f9e4478972a662e394", + "size": 18517, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f18e842ff83b186a8dd89f9e4478972a662e394" + }, + { + "path": "png/argo-cd.png", + "mode": "100644", + "type": "blob", + "sha": "71e9bfe942b91eadacf8fe279b394d61bfe4842e", + "size": 42962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71e9bfe942b91eadacf8fe279b394d61bfe4842e" + }, + { + "path": "png/ariang.png", + "mode": "100644", + "type": "blob", + "sha": "56ecb153812e35441cda6c05421a94b72da1de1c", + "size": 13030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56ecb153812e35441cda6c05421a94b72da1de1c" + }, + { + "path": "png/arm.png", + "mode": "100644", + "type": "blob", + "sha": "c4eb61aaf715d2780a426889b0e3d54ee549a579", + "size": 31252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4eb61aaf715d2780a426889b0e3d54ee549a579" + }, + { + "path": "png/arris-light.png", + "mode": "100644", + "type": "blob", + "sha": "56e42107902d9a24df4a5d67e38560bbc0fcbcec", + "size": 6288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56e42107902d9a24df4a5d67e38560bbc0fcbcec" + }, + { + "path": "png/arris.png", + "mode": "100644", + "type": "blob", + "sha": "559380630b12c9583cc762e57f382840607863c8", + "size": 6146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/559380630b12c9583cc762e57f382840607863c8" + }, + { + "path": "png/artifacthub.png", + "mode": "100644", + "type": "blob", + "sha": "b37655ed83b34d0d22de4ff41408285663127a2f", + "size": 19908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b37655ed83b34d0d22de4ff41408285663127a2f" + }, + { + "path": "png/artifactory.png", + "mode": "100644", + "type": "blob", + "sha": "74cdd6632de0f7efd3cbcda614823cd0d9561849", + "size": 16628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74cdd6632de0f7efd3cbcda614823cd0d9561849" + }, + { + "path": "png/aruba.png", + "mode": "100644", + "type": "blob", + "sha": "22be34e189389852344d2591b50bdf3fd44253a0", + "size": 15836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22be34e189389852344d2591b50bdf3fd44253a0" + }, + { + "path": "png/asana.png", + "mode": "100644", + "type": "blob", + "sha": "51c2acb902f1418e3c42ff428d294df9ee833462", + "size": 53831, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51c2acb902f1418e3c42ff428d294df9ee833462" + }, + { + "path": "png/asciinema.png", + "mode": "100644", + "type": "blob", + "sha": "b46b0de60fc8242971d9006eb7e086b8d9f32888", + "size": 8580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b46b0de60fc8242971d9006eb7e086b8d9f32888" + }, + { + "path": "png/asrock-rack-ipmi.png", + "mode": "100644", + "type": "blob", + "sha": "b2bfd8be73b9f789f6bcc9720f9dddf3d6de4a48", + "size": 49413, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2bfd8be73b9f789f6bcc9720f9dddf3d6de4a48" + }, + { + "path": "png/asrock-rack.png", + "mode": "100644", + "type": "blob", + "sha": "b2bfd8be73b9f789f6bcc9720f9dddf3d6de4a48", + "size": 49413, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2bfd8be73b9f789f6bcc9720f9dddf3d6de4a48" + }, + { + "path": "png/assetgrid.png", + "mode": "100644", + "type": "blob", + "sha": "5f33f1d1867a9508678905f138648f2c8881bf2f", + "size": 2239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f33f1d1867a9508678905f138648f2c8881bf2f" + }, + { + "path": "png/asterisk.png", + "mode": "100644", + "type": "blob", + "sha": "16344f235e89e041253dbd2fc2402eed08022b35", + "size": 5903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16344f235e89e041253dbd2fc2402eed08022b35" + }, + { + "path": "png/astral.png", + "mode": "100644", + "type": "blob", + "sha": "bdc26142bcc6bf2865d62e809fa72bdd424d947f", + "size": 32961, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdc26142bcc6bf2865d62e809fa72bdd424d947f" + }, + { + "path": "png/astuto-light.png", + "mode": "100644", + "type": "blob", + "sha": "6cfbf66c4a90c85783b843c2b7cb7db1706dc3a6", + "size": 25911, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cfbf66c4a90c85783b843c2b7cb7db1706dc3a6" + }, + { + "path": "png/astuto.png", + "mode": "100644", + "type": "blob", + "sha": "5ecfb8d915862e10e6383c6d8e0869ee6af927da", + "size": 20269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ecfb8d915862e10e6383c6d8e0869ee6af927da" + }, + { + "path": "png/asus-full.png", + "mode": "100644", + "type": "blob", + "sha": "c23c86670701511cb48946a1c7163d25abe4ab5c", + "size": 18509, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c23c86670701511cb48946a1c7163d25abe4ab5c" + }, + { + "path": "png/asus-rog.png", + "mode": "100644", + "type": "blob", + "sha": "4407914b5ee78e39c523cdf0a57c8fde7fce8980", + "size": 14712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4407914b5ee78e39c523cdf0a57c8fde7fce8980" + }, + { + "path": "png/asus-router.png", + "mode": "100644", + "type": "blob", + "sha": "4ea6fd1e155ab88bc22109f69d833ce8dec829d3", + "size": 18060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ea6fd1e155ab88bc22109f69d833ce8dec829d3" + }, + { + "path": "png/asus.png", + "mode": "100644", + "type": "blob", + "sha": "b4ff6367552172724c656db2561c4a571371f29f", + "size": 8235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4ff6367552172724c656db2561c4a571371f29f" + }, + { + "path": "png/asustor.png", + "mode": "100644", + "type": "blob", + "sha": "8bc07eae73170d7b25a61ad95f22f5cf24783d49", + "size": 13455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bc07eae73170d7b25a61ad95f22f5cf24783d49" + }, + { + "path": "png/at-t.png", + "mode": "100644", + "type": "blob", + "sha": "cf788736cab6f474d2fdf34ccc41062a35e39dd4", + "size": 46339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf788736cab6f474d2fdf34ccc41062a35e39dd4" + }, + { + "path": "png/atlassian-bamboo.png", + "mode": "100644", + "type": "blob", + "sha": "0fb958947d1bd9ad2d31d690efa70701b726b02e", + "size": 16618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fb958947d1bd9ad2d31d690efa70701b726b02e" + }, + { + "path": "png/atlassian-bitbucket.png", + "mode": "100644", + "type": "blob", + "sha": "83cce4f31cc8e36f84dafca5b0636792e31fb820", + "size": 24646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83cce4f31cc8e36f84dafca5b0636792e31fb820" + }, + { + "path": "png/atlassian-confluence.png", + "mode": "100644", + "type": "blob", + "sha": "4d1c3a01f703ea19adc27a5c0f9040c9174d2df1", + "size": 43269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d1c3a01f703ea19adc27a5c0f9040c9174d2df1" + }, + { + "path": "png/atlassian-jira.png", + "mode": "100644", + "type": "blob", + "sha": "0e482bf76f9a0db6c00432092fc9e02ccb2fdb91", + "size": 23139, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e482bf76f9a0db6c00432092fc9e02ccb2fdb91" + }, + { + "path": "png/atlassian-opsgenie.png", + "mode": "100644", + "type": "blob", + "sha": "f9c7933d11b35f224f9866fd0118b6912aaf1500", + "size": 22132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9c7933d11b35f224f9866fd0118b6912aaf1500" + }, + { + "path": "png/atlassian-trello.png", + "mode": "100644", + "type": "blob", + "sha": "fcdef0cecd2e8f5a7c6b5f939f302e64c3b78364", + "size": 7769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcdef0cecd2e8f5a7c6b5f939f302e64c3b78364" + }, + { + "path": "png/atlassian.png", + "mode": "100644", + "type": "blob", + "sha": "49662aef81114ff4490d638551e709f85fcbeb48", + "size": 22014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49662aef81114ff4490d638551e709f85fcbeb48" + }, + { + "path": "png/atuin-light.png", + "mode": "100644", + "type": "blob", + "sha": "4f3e59ad55e14bca05c7dd5043d39e9963c2aebd", + "size": 32438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f3e59ad55e14bca05c7dd5043d39e9963c2aebd" + }, + { + "path": "png/atuin.png", + "mode": "100644", + "type": "blob", + "sha": "1dfec78053ead2d7f9901d47b9466ce7382ac37f", + "size": 34628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dfec78053ead2d7f9901d47b9466ce7382ac37f" + }, + { + "path": "png/audacity.png", + "mode": "100644", + "type": "blob", + "sha": "2dd2ef34945c790ba195a3bd6b7891ae00966963", + "size": 38316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dd2ef34945c790ba195a3bd6b7891ae00966963" + }, + { + "path": "png/audiobookshelf.png", + "mode": "100644", + "type": "blob", + "sha": "73f11eddb44124f24254fcbb883a35233d6fa8de", + "size": 33163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73f11eddb44124f24254fcbb883a35233d6fa8de" + }, + { + "path": "png/aura.png", + "mode": "100644", + "type": "blob", + "sha": "46565806c1673e4d72b76fd89ea9ae92e429cddc", + "size": 10756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46565806c1673e4d72b76fd89ea9ae92e429cddc" + }, + { + "path": "png/auracast.png", + "mode": "100644", + "type": "blob", + "sha": "76686992d97f818cc045b8147a2cbe9b6e5b6717", + "size": 10852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76686992d97f818cc045b8147a2cbe9b6e5b6717" + }, + { + "path": "png/authelia.png", + "mode": "100644", + "type": "blob", + "sha": "134afbb1ca5400fe802a832c06c3aa6d45b28982", + "size": 42240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/134afbb1ca5400fe802a832c06c3aa6d45b28982" + }, + { + "path": "png/authentik.png", + "mode": "100644", + "type": "blob", + "sha": "5e0d4bc7db309ce022666579386d272b19aea041", + "size": 14200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e0d4bc7db309ce022666579386d272b19aea041" + }, + { + "path": "png/authman.png", + "mode": "100644", + "type": "blob", + "sha": "5fd78db6a0ee26724ae36c88dd1dcc95b68b32b2", + "size": 48046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fd78db6a0ee26724ae36c88dd1dcc95b68b32b2" + }, + { + "path": "png/auto-cad.png", + "mode": "100644", + "type": "blob", + "sha": "fb4931770282fd36ee7d646344bd95c6208fe50d", + "size": 11497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb4931770282fd36ee7d646344bd95c6208fe50d" + }, + { + "path": "png/auto-mcs.png", + "mode": "100644", + "type": "blob", + "sha": "db4b7f7d7dc5e81733e2e7ba3f7a6477e49337dd", + "size": 45982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db4b7f7d7dc5e81733e2e7ba3f7a6477e49337dd" + }, + { + "path": "png/autobangumi-dark.png", + "mode": "100644", + "type": "blob", + "sha": "dd3fc90fd9fe1495e58e8ec8d30e670ae4d695b5", + "size": 12859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd3fc90fd9fe1495e58e8ec8d30e670ae4d695b5" + }, + { + "path": "png/autobangumi.png", + "mode": "100644", + "type": "blob", + "sha": "61483af0f0ab85cc89b6831b91a29a75302678f3", + "size": 20398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61483af0f0ab85cc89b6831b91a29a75302678f3" + }, + { + "path": "png/autobrr.png", + "mode": "100644", + "type": "blob", + "sha": "2f8c2cbe800fa8014c35f9cc86dc1fe85cc489da", + "size": 35931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f8c2cbe800fa8014c35f9cc86dc1fe85cc489da" + }, + { + "path": "png/automad-light.png", + "mode": "100644", + "type": "blob", + "sha": "9d5237c39deec8e9fce178ffae21af61c02cdb3f", + "size": 15544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d5237c39deec8e9fce178ffae21af61c02cdb3f" + }, + { + "path": "png/automad.png", + "mode": "100644", + "type": "blob", + "sha": "1d2d7c5c12bc8316c4a1dff6cf08815e840894a8", + "size": 12236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d2d7c5c12bc8316c4a1dff6cf08815e840894a8" + }, + { + "path": "png/avg.png", + "mode": "100644", + "type": "blob", + "sha": "bf606bf39744d4ffad68d1ef73b735b8cb1ee110", + "size": 55551, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf606bf39744d4ffad68d1ef73b735b8cb1ee110" + }, + { + "path": "png/avigilon.png", + "mode": "100644", + "type": "blob", + "sha": "cd5dc0c35197487fd98828c6ec01d2610c28817e", + "size": 80251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd5dc0c35197487fd98828c6ec01d2610c28817e" + }, + { + "path": "png/avm-fritzbox-light.png", + "mode": "100644", + "type": "blob", + "sha": "4f888923407406289d2d0f6a9c5671216afec899", + "size": 55868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f888923407406289d2d0f6a9c5671216afec899" + }, + { + "path": "png/avm-fritzbox.png", + "mode": "100644", + "type": "blob", + "sha": "a1410fa1f7a9510db30dd16647e5a210199ddd8e", + "size": 54205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1410fa1f7a9510db30dd16647e5a210199ddd8e" + }, + { + "path": "png/aws-ecs.png", + "mode": "100644", + "type": "blob", + "sha": "ecc77b6960dfced04df8d3b1f640d2831e943c57", + "size": 13608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecc77b6960dfced04df8d3b1f640d2831e943c57" + }, + { + "path": "png/aws-light.png", + "mode": "100644", + "type": "blob", + "sha": "b091149ffa434a6aa05676d7f5df98be5cbc3c25", + "size": 33841, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b091149ffa434a6aa05676d7f5df98be5cbc3c25" + }, + { + "path": "png/aws.png", + "mode": "100644", + "type": "blob", + "sha": "11e81f160bf045cf3556c812202e04928eac8311", + "size": 31210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11e81f160bf045cf3556c812202e04928eac8311" + }, + { + "path": "png/awtrix.png", + "mode": "100644", + "type": "blob", + "sha": "2fd929e30d227f8f27ea14d11a3c51a0b9a22c6d", + "size": 56914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fd929e30d227f8f27ea14d11a3c51a0b9a22c6d" + }, + { + "path": "png/awwesome.png", + "mode": "100644", + "type": "blob", + "sha": "36f689a87c77f945e9d87d51a1baad3f1d791ea3", + "size": 29476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36f689a87c77f945e9d87d51a1baad3f1d791ea3" + }, + { + "path": "png/awx.png", + "mode": "100644", + "type": "blob", + "sha": "62ce439171cef738289ee94e8083276f1607f62b", + "size": 38655, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62ce439171cef738289ee94e8083276f1607f62b" + }, + { + "path": "png/axis.png", + "mode": "100644", + "type": "blob", + "sha": "f61a58bbe8ffe687da6a67442f19c39904bb98e8", + "size": 11722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f61a58bbe8ffe687da6a67442f19c39904bb98e8" + }, + { + "path": "png/aya.png", + "mode": "100644", + "type": "blob", + "sha": "4c243f31b69f2f30a49146f663c4d07905110ae0", + "size": 67907, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c243f31b69f2f30a49146f663c4d07905110ae0" + }, + { + "path": "png/azuracast.png", + "mode": "100644", + "type": "blob", + "sha": "f3c9536eb1c0e5c1a49c0ce1498be90cfb4a1e48", + "size": 22219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3c9536eb1c0e5c1a49c0ce1498be90cfb4a1e48" + }, + { + "path": "png/azure-container-instances.png", + "mode": "100644", + "type": "blob", + "sha": "5ef13243e0a4b62cf76959decb57395ae344e151", + "size": 16188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ef13243e0a4b62cf76959decb57395ae344e151" + }, + { + "path": "png/azure-container-service.png", + "mode": "100644", + "type": "blob", + "sha": "40d9a62b827a83a4c66467847d42f8a26cb24189", + "size": 25914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40d9a62b827a83a4c66467847d42f8a26cb24189" + }, + { + "path": "png/azure-devops.png", + "mode": "100644", + "type": "blob", + "sha": "376c9690711b3ca546a63438dc2b36fc62c54ca3", + "size": 13890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/376c9690711b3ca546a63438dc2b36fc62c54ca3" + }, + { + "path": "png/azure-dns.png", + "mode": "100644", + "type": "blob", + "sha": "c7ef82ace5a68ba4e7a19cf67da9421a3426ddc5", + "size": 89556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7ef82ace5a68ba4e7a19cf67da9421a3426ddc5" + }, + { + "path": "png/azure.png", + "mode": "100644", + "type": "blob", + "sha": "a4930695a65a61015f85b6e0b0ec9e6ef68429ba", + "size": 19594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4930695a65a61015f85b6e0b0ec9e6ef68429ba" + }, + { + "path": "png/bab-technologie-dark.png", + "mode": "100644", + "type": "blob", + "sha": "20c6fed7e742fc233505d7a7e1599ec66455729a", + "size": 10282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20c6fed7e742fc233505d7a7e1599ec66455729a" + }, + { + "path": "png/bab-technologie.png", + "mode": "100644", + "type": "blob", + "sha": "b5b485e89ac7813a32c9ccb2c0be808276862863", + "size": 10282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5b485e89ac7813a32c9ccb2c0be808276862863" + }, + { + "path": "png/babybuddy.png", + "mode": "100644", + "type": "blob", + "sha": "25189090717aaeef158e8d8bbecfca97e3fa4297", + "size": 20159, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25189090717aaeef158e8d8bbecfca97e3fa4297" + }, + { + "path": "png/backblaze.png", + "mode": "100644", + "type": "blob", + "sha": "ae4bec3419b4072094de17baeb546c137dca2e13", + "size": 22883, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae4bec3419b4072094de17baeb546c137dca2e13" + }, + { + "path": "png/backrest-light.png", + "mode": "100644", + "type": "blob", + "sha": "4a5a48e1b19f79a1734c04e452bc600a4b6205a7", + "size": 20381, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a5a48e1b19f79a1734c04e452bc600a4b6205a7" + }, + { + "path": "png/backrest.png", + "mode": "100644", + "type": "blob", + "sha": "734d3547a4faf71faf95db21984fc4b449e01839", + "size": 18028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/734d3547a4faf71faf95db21984fc4b449e01839" + }, + { + "path": "png/bacula.png", + "mode": "100644", + "type": "blob", + "sha": "cb6448462e4ef8e8c88b279450ab5c145264ad5b", + "size": 6491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb6448462e4ef8e8c88b279450ab5c145264ad5b" + }, + { + "path": "png/badge.png", + "mode": "100644", + "type": "blob", + "sha": "2a1bf01095f55c37218715a4d66435116576a161", + "size": 5541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a1bf01095f55c37218715a4d66435116576a161" + }, + { + "path": "png/baikal.png", + "mode": "100644", + "type": "blob", + "sha": "aef2b2f641f96844efae3251da946971d7ecb97a", + "size": 1906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aef2b2f641f96844efae3251da946971d7ecb97a" + }, + { + "path": "png/bale.png", + "mode": "100644", + "type": "blob", + "sha": "564efb4067f221539384ca470d6cb16687594e37", + "size": 20262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/564efb4067f221539384ca470d6cb16687594e37" + }, + { + "path": "png/balena-cloud.png", + "mode": "100644", + "type": "blob", + "sha": "b171306abb6c0b27f09b5a52a7221d9f8fcb67a6", + "size": 14194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b171306abb6c0b27f09b5a52a7221d9f8fcb67a6" + }, + { + "path": "png/balena-etcher.png", + "mode": "100644", + "type": "blob", + "sha": "6df936b5eb35293a9dcd841de20125cba84e3af6", + "size": 15025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6df936b5eb35293a9dcd841de20125cba84e3af6" + }, + { + "path": "png/ballerina.png", + "mode": "100644", + "type": "blob", + "sha": "e1e7ca6af76d1eadcf4ee200627e00381fea14da", + "size": 3703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1e7ca6af76d1eadcf4ee200627e00381fea14da" + }, + { + "path": "png/bandcamp.png", + "mode": "100644", + "type": "blob", + "sha": "506cd2d8fa9fb411e8627876783cdac953492565", + "size": 4838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/506cd2d8fa9fb411e8627876783cdac953492565" + }, + { + "path": "png/bar-assistant.png", + "mode": "100644", + "type": "blob", + "sha": "27b2f02e92a9299e5f1b640d0e70c809f5c927c3", + "size": 29988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27b2f02e92a9299e5f1b640d0e70c809f5c927c3" + }, + { + "path": "png/barcodebuddy.png", + "mode": "100644", + "type": "blob", + "sha": "b1e1e4ebe8e747934610e594ffee59df87317511", + "size": 12280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1e1e4ebe8e747934610e594ffee59df87317511" + }, + { + "path": "png/baserow.png", + "mode": "100644", + "type": "blob", + "sha": "1b9639a408fc16512b590d7e9213ae5214c115f7", + "size": 8160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b9639a408fc16512b590d7e9213ae5214c115f7" + }, + { + "path": "png/basilisk.png", + "mode": "100644", + "type": "blob", + "sha": "6112eaa443509742a8c1ce9d58c99c47cb52ecf0", + "size": 173434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6112eaa443509742a8c1ce9d58c99c47cb52ecf0" + }, + { + "path": "png/bastillion.png", + "mode": "100644", + "type": "blob", + "sha": "716dad1f5f58aa138b8fdc7461b6c0ee0d048754", + "size": 4189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/716dad1f5f58aa138b8fdc7461b6c0ee0d048754" + }, + { + "path": "png/batocera-linux.png", + "mode": "100644", + "type": "blob", + "sha": "df587d408ea014853cfaf3877fc1d901389e9770", + "size": 61646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df587d408ea014853cfaf3877fc1d901389e9770" + }, + { + "path": "png/bazarr-dark.png", + "mode": "100644", + "type": "blob", + "sha": "9da8b38986cd12a3d695161772f5f2f96b8cd728", + "size": 12643, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9da8b38986cd12a3d695161772f5f2f96b8cd728" + }, + { + "path": "png/bazarr.png", + "mode": "100644", + "type": "blob", + "sha": "9af5f977959c8f32e8b41509e5ee8f1b1b5d4483", + "size": 25361, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9af5f977959c8f32e8b41509e5ee8f1b1b5d4483" + }, + { + "path": "png/bazecor.png", + "mode": "100644", + "type": "blob", + "sha": "89ec902b4e41f7cb684ca03312a94a5dc7d31281", + "size": 31976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89ec902b4e41f7cb684ca03312a94a5dc7d31281" + }, + { + "path": "png/be-quiet.png", + "mode": "100644", + "type": "blob", + "sha": "50216fc0559b0ea57dc781f03fb2e59b60b43176", + "size": 25349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50216fc0559b0ea57dc781f03fb2e59b60b43176" + }, + { + "path": "png/beaver-habit-tracker-light.png", + "mode": "100644", + "type": "blob", + "sha": "ecc3745d367fca0a674e7b4aded02307fbab108e", + "size": 19874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecc3745d367fca0a674e7b4aded02307fbab108e" + }, + { + "path": "png/beaver-habit-tracker.png", + "mode": "100644", + "type": "blob", + "sha": "31a60dbef70fcc4c8baf5ecd1202cd0329fb9bd1", + "size": 14484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31a60dbef70fcc4c8baf5ecd1202cd0329fb9bd1" + }, + { + "path": "png/bechtle.png", + "mode": "100644", + "type": "blob", + "sha": "000e27a3caf17956575e23d3769dd59b024072f3", + "size": 15185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/000e27a3caf17956575e23d3769dd59b024072f3" + }, + { + "path": "png/beef-light.png", + "mode": "100644", + "type": "blob", + "sha": "60853c62e728d6d6c87df7033c0592775aed7e59", + "size": 53375, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60853c62e728d6d6c87df7033c0592775aed7e59" + }, + { + "path": "png/beef.png", + "mode": "100644", + "type": "blob", + "sha": "c18e97d7262c293451236c344c3ff4279a47d023", + "size": 48901, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c18e97d7262c293451236c344c3ff4279a47d023" + }, + { + "path": "png/beets.png", + "mode": "100644", + "type": "blob", + "sha": "ff009f92f3dad25e7385fdac3c6207ddb0e3dc6f", + "size": 118919, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff009f92f3dad25e7385fdac3c6207ddb0e3dc6f" + }, + { + "path": "png/benotes.png", + "mode": "100644", + "type": "blob", + "sha": "9212ce7e4bd85fc468473f1ce5b945bd8156abb6", + "size": 11393, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9212ce7e4bd85fc468473f1ce5b945bd8156abb6" + }, + { + "path": "png/bentopdf.png", + "mode": "100644", + "type": "blob", + "sha": "ee7fdee393c0db84eee76391e72150f170c50e3a", + "size": 10410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee7fdee393c0db84eee76391e72150f170c50e3a" + }, + { + "path": "png/beszel-light.png", + "mode": "100644", + "type": "blob", + "sha": "0b78d8a34f30ece4aa6a14746f870bebebb25e45", + "size": 30592, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b78d8a34f30ece4aa6a14746f870bebebb25e45" + }, + { + "path": "png/beszel.png", + "mode": "100644", + "type": "blob", + "sha": "0b78d8a34f30ece4aa6a14746f870bebebb25e45", + "size": 30592, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b78d8a34f30ece4aa6a14746f870bebebb25e45" + }, + { + "path": "png/betanin.png", + "mode": "100644", + "type": "blob", + "sha": "fd90115b0910641231b77b19124d447fbe5ca264", + "size": 1836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd90115b0910641231b77b19124d447fbe5ca264" + }, + { + "path": "png/bewcloud.png", + "mode": "100644", + "type": "blob", + "sha": "6d36b227d0d4940d16998f061fc98fe8359e83e1", + "size": 26005, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d36b227d0d4940d16998f061fc98fe8359e83e1" + }, + { + "path": "png/bible-gateway.png", + "mode": "100644", + "type": "blob", + "sha": "0cb9770d66de5a9853be62f10778e627e1de3d23", + "size": 66086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cb9770d66de5a9853be62f10778e627e1de3d23" + }, + { + "path": "png/bibliogram.png", + "mode": "100644", + "type": "blob", + "sha": "174ee1025d55a7b598b59655d51a95b958e96cc7", + "size": 46004, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/174ee1025d55a7b598b59655d51a95b958e96cc7" + }, + { + "path": "png/biblioreads-light.png", + "mode": "100644", + "type": "blob", + "sha": "7da99a5fb957c7e98091af176431888119a7a779", + "size": 19719, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7da99a5fb957c7e98091af176431888119a7a779" + }, + { + "path": "png/biblioreads.png", + "mode": "100644", + "type": "blob", + "sha": "f1cb5a996626961270998a99ebc938749101f558", + "size": 18392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1cb5a996626961270998a99ebc938749101f558" + }, + { + "path": "png/biedronka.png", + "mode": "100644", + "type": "blob", + "sha": "946e632ee3734a268030f556e5b9c760e585c3f9", + "size": 49926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/946e632ee3734a268030f556e5b9c760e585c3f9" + }, + { + "path": "png/bigcapital.png", + "mode": "100644", + "type": "blob", + "sha": "81ec351591265996b924a4eb829411ce1411c779", + "size": 9774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81ec351591265996b924a4eb829411ce1411c779" + }, + { + "path": "png/bilibili.png", + "mode": "100644", + "type": "blob", + "sha": "9dafafa39603e8c5b5fdb39c93134e93d52ea782", + "size": 23814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dafafa39603e8c5b5fdb39c93134e93d52ea782" + }, + { + "path": "png/bing.png", + "mode": "100644", + "type": "blob", + "sha": "03844e814261f01b5fb2166637658b4ec96fe5e2", + "size": 23809, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03844e814261f01b5fb2166637658b4ec96fe5e2" + }, + { + "path": "png/binner-dark.png", + "mode": "100644", + "type": "blob", + "sha": "02577300d2c2ea49bde06cd0cd2da677af48a65c", + "size": 9014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02577300d2c2ea49bde06cd0cd2da677af48a65c" + }, + { + "path": "png/binner.png", + "mode": "100644", + "type": "blob", + "sha": "a2942d682e676dd149f461e4f35c260365efef49", + "size": 11707, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2942d682e676dd149f461e4f35c260365efef49" + }, + { + "path": "png/birdnet.png", + "mode": "100644", + "type": "blob", + "sha": "f5d83ba9edfeeca98c5c1d3dbb39bbc05687cebe", + "size": 5413, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5d83ba9edfeeca98c5c1d3dbb39bbc05687cebe" + }, + { + "path": "png/bitbucket.png", + "mode": "100644", + "type": "blob", + "sha": "d74b35e4ce8772a67301fc3eb6837b2bbfb5af01", + "size": 26626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d74b35e4ce8772a67301fc3eb6837b2bbfb5af01" + }, + { + "path": "png/bitcoin.png", + "mode": "100644", + "type": "blob", + "sha": "13afdbbada66dcb55c2c19157a3f5910f765feeb", + "size": 23046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13afdbbada66dcb55c2c19157a3f5910f765feeb" + }, + { + "path": "png/bithumen.png", + "mode": "100644", + "type": "blob", + "sha": "26678e2aa7b2e9ad0b1277320bf18154ea734fc8", + "size": 1737, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26678e2aa7b2e9ad0b1277320bf18154ea734fc8" + }, + { + "path": "png/bitmagnet.png", + "mode": "100644", + "type": "blob", + "sha": "ea13655e1f3b56cc657f6c401c45564c072fddbb", + "size": 8434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea13655e1f3b56cc657f6c401c45564c072fddbb" + }, + { + "path": "png/bitwarden.png", + "mode": "100644", + "type": "blob", + "sha": "956d4d551fa23ca38d8d6733a4ef6960d2ff2581", + "size": 11969, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/956d4d551fa23ca38d8d6733a4ef6960d2ff2581" + }, + { + "path": "png/bitwig-studio-dark.png", + "mode": "100644", + "type": "blob", + "sha": "edeadfdf135de032916598c578c9728dca68ca4a", + "size": 19605, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edeadfdf135de032916598c578c9728dca68ca4a" + }, + { + "path": "png/bitwig-studio.png", + "mode": "100644", + "type": "blob", + "sha": "cdbb94e941f0b7e23872cb8fcd8b6da6a7859cef", + "size": 6159, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdbb94e941f0b7e23872cb8fcd8b6da6a7859cef" + }, + { + "path": "png/blocky.png", + "mode": "100644", + "type": "blob", + "sha": "c4cd62e4250ed0178b5fe5bb220973cce0fc3e68", + "size": 59772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4cd62e4250ed0178b5fe5bb220973cce0fc3e68" + }, + { + "path": "png/blogger.png", + "mode": "100644", + "type": "blob", + "sha": "5c3f1b932b63ec72bc76b79032d4ca177b8a5c78", + "size": 14232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c3f1b932b63ec72bc76b79032d4ca177b8a5c78" + }, + { + "path": "png/blue-iris.png", + "mode": "100644", + "type": "blob", + "sha": "83ed3cd2874ae7d60a8965c9b11087f164a3ae34", + "size": 183939, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83ed3cd2874ae7d60a8965c9b11087f164a3ae34" + }, + { + "path": "png/blue-letter-bible.png", + "mode": "100644", + "type": "blob", + "sha": "cc9c15a7e752120b6cffea4fb277d19b1c9f0dfb", + "size": 31599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc9c15a7e752120b6cffea4fb277d19b1c9f0dfb" + }, + { + "path": "png/bluesky.png", + "mode": "100644", + "type": "blob", + "sha": "77c11e63556b10615f90f95ee47cb6c0e53838db", + "size": 19274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77c11e63556b10615f90f95ee47cb6c0e53838db" + }, + { + "path": "png/bluetooth.png", + "mode": "100644", + "type": "blob", + "sha": "eaa5d4209b530ce57b33b55d085995cbb3ab21c9", + "size": 16150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaa5d4209b530ce57b33b55d085995cbb3ab21c9" + }, + { + "path": "png/bluewallet.png", + "mode": "100644", + "type": "blob", + "sha": "45b5df61478034272a3af43c000291ec54e2ef73", + "size": 12907, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45b5df61478034272a3af43c000291ec54e2ef73" + }, + { + "path": "png/bobcat-miner.png", + "mode": "100644", + "type": "blob", + "sha": "f4e832b68fca74a1ef5a214e19603d2e77208c87", + "size": 17168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4e832b68fca74a1ef5a214e19603d2e77208c87" + }, + { + "path": "png/boinc.png", + "mode": "100644", + "type": "blob", + "sha": "dcc4dd754c76d2b7dec8e6357aa4e5c8758f9524", + "size": 19064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcc4dd754c76d2b7dec8e6357aa4e5c8758f9524" + }, + { + "path": "png/book-lore.png", + "mode": "100644", + "type": "blob", + "sha": "bd752ffa4379a5341f9bf148226de41774135503", + "size": 8549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd752ffa4379a5341f9bf148226de41774135503" + }, + { + "path": "png/booklogr-light.png", + "mode": "100644", + "type": "blob", + "sha": "9932dab9a093d83cec1e50e2411570dc90ddf90b", + "size": 17708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9932dab9a093d83cec1e50e2411570dc90ddf90b" + }, + { + "path": "png/booklogr.png", + "mode": "100644", + "type": "blob", + "sha": "5fcdccab0ac0bb7395a6281ab5035b7af49863b6", + "size": 16661, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fcdccab0ac0bb7395a6281ab5035b7af49863b6" + }, + { + "path": "png/booksonic.png", + "mode": "100644", + "type": "blob", + "sha": "803a0708b064bb779289f73d9cbb33d7023beee4", + "size": 34867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/803a0708b064bb779289f73d9cbb33d7023beee4" + }, + { + "path": "png/bookstack.png", + "mode": "100644", + "type": "blob", + "sha": "ef31e5ba7c140a757f34438557570cda21ea9184", + "size": 42416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef31e5ba7c140a757f34438557570cda21ea9184" + }, + { + "path": "png/bootstrap.png", + "mode": "100644", + "type": "blob", + "sha": "89f2cd31d0014b29792187f64db74d54f7db588e", + "size": 35680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89f2cd31d0014b29792187f64db74d54f7db588e" + }, + { + "path": "png/borg.png", + "mode": "100644", + "type": "blob", + "sha": "d29ece2440314e1571b0dc3338522b193db94cc6", + "size": 4356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d29ece2440314e1571b0dc3338522b193db94cc6" + }, + { + "path": "png/borgmatic-light.png", + "mode": "100644", + "type": "blob", + "sha": "eaebfcc8dd45302a99a16bfe581a7f9459aeb8ce", + "size": 21468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaebfcc8dd45302a99a16bfe581a7f9459aeb8ce" + }, + { + "path": "png/borgmatic.png", + "mode": "100644", + "type": "blob", + "sha": "42e153d7fa290a6fc7c6c3fb7d67838202919410", + "size": 17746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42e153d7fa290a6fc7c6c3fb7d67838202919410" + }, + { + "path": "png/bottom-dark.png", + "mode": "100644", + "type": "blob", + "sha": "3960768d8c1bbd814b5fb1fccb571a5c513e04a4", + "size": 23074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3960768d8c1bbd814b5fb1fccb571a5c513e04a4" + }, + { + "path": "png/bottom.png", + "mode": "100644", + "type": "blob", + "sha": "594ca9210b31622b1508c0675e7f446e93d61bf3", + "size": 23558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/594ca9210b31622b1508c0675e7f446e93d61bf3" + }, + { + "path": "png/boundary.png", + "mode": "100644", + "type": "blob", + "sha": "cf1612e809c551ad99f2e7ea8dd0f1e4d6741f63", + "size": 10506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf1612e809c551ad99f2e7ea8dd0f1e4d6741f63" + }, + { + "path": "png/box.png", + "mode": "100644", + "type": "blob", + "sha": "47e754cf448b78fa240c37386bb71a85fcac13f1", + "size": 17941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47e754cf448b78fa240c37386bb71a85fcac13f1" + }, + { + "path": "png/boxarr.png", + "mode": "100644", + "type": "blob", + "sha": "88655a70fede48f226e0afcccb453c8eec496ce2", + "size": 196665, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88655a70fede48f226e0afcccb453c8eec496ce2" + }, + { + "path": "png/brave-dev.png", + "mode": "100644", + "type": "blob", + "sha": "93567df1491647335319a9dbfd3d094df4440164", + "size": 37826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93567df1491647335319a9dbfd3d094df4440164" + }, + { + "path": "png/brave.png", + "mode": "100644", + "type": "blob", + "sha": "1737074129ca96fd68c2132abf8dc00a4db916c5", + "size": 30468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1737074129ca96fd68c2132abf8dc00a4db916c5" + }, + { + "path": "png/brewpi.png", + "mode": "100644", + "type": "blob", + "sha": "f658d442d971c77e7eceb37f3de252fd82baaed3", + "size": 7904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f658d442d971c77e7eceb37f3de252fd82baaed3" + }, + { + "path": "png/brick-tracker.png", + "mode": "100644", + "type": "blob", + "sha": "4e9115f2ed480363ac56f7a724db7f134ec14adb", + "size": 12856, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e9115f2ed480363ac56f7a724db7f134ec14adb" + }, + { + "path": "png/bright-move.png", + "mode": "100644", + "type": "blob", + "sha": "dfad59ba51b6ddecfd9c5f3433519098a59fd5cd", + "size": 20142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfad59ba51b6ddecfd9c5f3433519098a59fd5cd" + }, + { + "path": "png/brillcam.png", + "mode": "100644", + "type": "blob", + "sha": "96b580c16d28813701f185c0e5a65dc38c1289fd", + "size": 10815, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96b580c16d28813701f185c0e5a65dc38c1289fd" + }, + { + "path": "png/broad-link.png", + "mode": "100644", + "type": "blob", + "sha": "d37f8f1376c13a286ac44960fc919d9e149fe8de", + "size": 18633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d37f8f1376c13a286ac44960fc919d9e149fe8de" + }, + { + "path": "png/broadcastchannel-light.png", + "mode": "100644", + "type": "blob", + "sha": "12cfe29244c21ae4fe6c1786dd3f9d56b861ea38", + "size": 16112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12cfe29244c21ae4fe6c1786dd3f9d56b861ea38" + }, + { + "path": "png/broadcastchannel.png", + "mode": "100644", + "type": "blob", + "sha": "f6272bada89dd70568e3b01322167f67b2eecc64", + "size": 16525, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6272bada89dd70568e3b01322167f67b2eecc64" + }, + { + "path": "png/brocade.png", + "mode": "100644", + "type": "blob", + "sha": "7a76d6baa4c59ce133cec41333f857dad2d2dad9", + "size": 22255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a76d6baa4c59ce133cec41333f857dad2d2dad9" + }, + { + "path": "png/brother.png", + "mode": "100644", + "type": "blob", + "sha": "062efd97680911d1e513e6613156851e64ec1001", + "size": 11792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/062efd97680911d1e513e6613156851e64ec1001" + }, + { + "path": "png/browserless-light.png", + "mode": "100644", + "type": "blob", + "sha": "2c8eeba6757e07295849c1a8d15651e996ab11f0", + "size": 8175, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c8eeba6757e07295849c1a8d15651e996ab11f0" + }, + { + "path": "png/browserless.png", + "mode": "100644", + "type": "blob", + "sha": "0c6255147dcf26322b6a0facac2437f3ae90dd2e", + "size": 7727, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c6255147dcf26322b6a0facac2437f3ae90dd2e" + }, + { + "path": "png/browsh.png", + "mode": "100644", + "type": "blob", + "sha": "320da50251fa76f10f4960a955e81fccc174ac9b", + "size": 3687, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/320da50251fa76f10f4960a955e81fccc174ac9b" + }, + { + "path": "png/btcpay-server.png", + "mode": "100644", + "type": "blob", + "sha": "214ae4027bb93c3e83f80d8e71bec6ea9c090209", + "size": 14379, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/214ae4027bb93c3e83f80d8e71bec6ea9c090209" + }, + { + "path": "png/buddy.png", + "mode": "100644", + "type": "blob", + "sha": "149efdc1105ba2574e73cd72e41fb173fb2c2dc0", + "size": 8532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/149efdc1105ba2574e73cd72e41fb173fb2c2dc0" + }, + { + "path": "png/budget-board.png", + "mode": "100644", + "type": "blob", + "sha": "21ccc8ae00196e344768da37cb1273b540953a24", + "size": 14059, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21ccc8ae00196e344768da37cb1273b540953a24" + }, + { + "path": "png/budget-zero.png", + "mode": "100644", + "type": "blob", + "sha": "6f54ceea42c8179983c8a390533c79b8480a4d4e", + "size": 21073, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f54ceea42c8179983c8a390533c79b8480a4d4e" + }, + { + "path": "png/budgetbee-light.png", + "mode": "100644", + "type": "blob", + "sha": "18ec42340c98364ce28c1ba071d1a408088cbae7", + "size": 31886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18ec42340c98364ce28c1ba071d1a408088cbae7" + }, + { + "path": "png/budgetbee.png", + "mode": "100644", + "type": "blob", + "sha": "5b2a4629dcf99f674a60018a99a334ebde8693a9", + "size": 29071, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b2a4629dcf99f674a60018a99a334ebde8693a9" + }, + { + "path": "png/budibase.png", + "mode": "100644", + "type": "blob", + "sha": "7279631c5136abcd38550313b81399f4a898c79d", + "size": 12244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7279631c5136abcd38550313b81399f4a898c79d" + }, + { + "path": "png/buffalo.png", + "mode": "100644", + "type": "blob", + "sha": "6b9c3378fa1a3a5fcdd83f405d7299cdd914746f", + "size": 7935, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b9c3378fa1a3a5fcdd83f405d7299cdd914746f" + }, + { + "path": "png/build-better-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ff9f303596b4465b9452c73f3e6a34ffdc3836f6", + "size": 10489, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff9f303596b4465b9452c73f3e6a34ffdc3836f6" + }, + { + "path": "png/build-better.png", + "mode": "100644", + "type": "blob", + "sha": "ce3eb48e7623fd7b00707e6ec4517c2a64349a86", + "size": 10489, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce3eb48e7623fd7b00707e6ec4517c2a64349a86" + }, + { + "path": "png/buildium.png", + "mode": "100644", + "type": "blob", + "sha": "91878f8e5cf67ec6246b965dd6768976c5f3c5bd", + "size": 3042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91878f8e5cf67ec6246b965dd6768976c5f3c5bd" + }, + { + "path": "png/bunkerweb.png", + "mode": "100644", + "type": "blob", + "sha": "134522ba271206f11716f8193e22ed164c9c49f6", + "size": 14491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/134522ba271206f11716f8193e22ed164c9c49f6" + }, + { + "path": "png/bunny.png", + "mode": "100644", + "type": "blob", + "sha": "e729e44961bc9587d0df917db2cb48a40071c896", + "size": 27699, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e729e44961bc9587d0df917db2cb48a40071c896" + }, + { + "path": "png/buxfer.png", + "mode": "100644", + "type": "blob", + "sha": "eea9d043e758148c820f21b13e4ea3e5bc2436ec", + "size": 32242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eea9d043e758148c820f21b13e4ea3e5bc2436ec" + }, + { + "path": "png/bytestash.png", + "mode": "100644", + "type": "blob", + "sha": "c456fa7734a78007696d6a4ac77d4266350ea24e", + "size": 20279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c456fa7734a78007696d6a4ac77d4266350ea24e" + }, + { + "path": "png/c.png", + "mode": "100644", + "type": "blob", + "sha": "e84cb09bae463ae0ef4e45585c77f07e7f9637ce", + "size": 23767, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e84cb09bae463ae0ef4e45585c77f07e7f9637ce" + }, + { + "path": "png/cabernet.png", + "mode": "100644", + "type": "blob", + "sha": "568e9a37197ec15514b59aa101900fc9813f6e69", + "size": 38985, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568e9a37197ec15514b59aa101900fc9813f6e69" + }, + { + "path": "png/cabot.png", + "mode": "100644", + "type": "blob", + "sha": "84fa20a33cf47f3ec4b8558173a74bf0219c4452", + "size": 10427, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84fa20a33cf47f3ec4b8558173a74bf0219c4452" + }, + { + "path": "png/cachyos-linux.png", + "mode": "100644", + "type": "blob", + "sha": "28a0630532572dee1770b4e606b20d0802c1c1ea", + "size": 36777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28a0630532572dee1770b4e606b20d0802c1c1ea" + }, + { + "path": "png/cacti.png", + "mode": "100644", + "type": "blob", + "sha": "4d6fd1813256a44b9db639b775a3bf542981ea30", + "size": 78159, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d6fd1813256a44b9db639b775a3bf542981ea30" + }, + { + "path": "png/caddy.png", + "mode": "100644", + "type": "blob", + "sha": "5982bbcf07613768323c2fdc57bd79c02d5e98de", + "size": 31928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5982bbcf07613768323c2fdc57bd79c02d5e98de" + }, + { + "path": "png/cadvisor.png", + "mode": "100644", + "type": "blob", + "sha": "425ce3c4010d888f1ef941afd746aa45cc0cec90", + "size": 13028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/425ce3c4010d888f1ef941afd746aa45cc0cec90" + }, + { + "path": "png/cal-com-light.png", + "mode": "100644", + "type": "blob", + "sha": "20463dcb3498bdb7145e7789368d731442331ea6", + "size": 14310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20463dcb3498bdb7145e7789368d731442331ea6" + }, + { + "path": "png/cal-com.png", + "mode": "100644", + "type": "blob", + "sha": "1759f44a9df3c16610a16fac1cd87c1345ecb9cc", + "size": 14793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1759f44a9df3c16610a16fac1cd87c1345ecb9cc" + }, + { + "path": "png/calckey.png", + "mode": "100644", + "type": "blob", + "sha": "7cbea9bcf6851f8ffe8d63d576e48d2bbc70e1e6", + "size": 7607, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cbea9bcf6851f8ffe8d63d576e48d2bbc70e1e6" + }, + { + "path": "png/caldera.png", + "mode": "100644", + "type": "blob", + "sha": "a4e06f529ee616634831af5ec6f977136c2d9c60", + "size": 6694, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4e06f529ee616634831af5ec6f977136c2d9c60" + }, + { + "path": "png/calibre-web-automated-book-downloader.png", + "mode": "100644", + "type": "blob", + "sha": "1e6d117b741db30ac7478b346c8332ee827b12e2", + "size": 36888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e6d117b741db30ac7478b346c8332ee827b12e2" + }, + { + "path": "png/calibre-web.png", + "mode": "100644", + "type": "blob", + "sha": "454b2b0e1f23a2af35f0abb06b3c57e20f3a83c0", + "size": 17349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/454b2b0e1f23a2af35f0abb06b3c57e20f3a83c0" + }, + { + "path": "png/calibre.png", + "mode": "100644", + "type": "blob", + "sha": "7dc20d22d36d53cdb988ebb21e8bc75b68e71a60", + "size": 37131, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7dc20d22d36d53cdb988ebb21e8bc75b68e71a60" + }, + { + "path": "png/camera-ui.png", + "mode": "100644", + "type": "blob", + "sha": "5f0c98e062f8dbfb5a25a71fad6fcfbfa6c97b79", + "size": 5227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f0c98e062f8dbfb5a25a71fad6fcfbfa6c97b79" + }, + { + "path": "png/canonical.png", + "mode": "100644", + "type": "blob", + "sha": "b0cf35ec045ad7644e8679cde3b703f7c9acb479", + "size": 27017, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0cf35ec045ad7644e8679cde3b703f7c9acb479" + }, + { + "path": "png/canvas-lms.png", + "mode": "100644", + "type": "blob", + "sha": "a87983c83009fa119b2345e37c02264c1f5b23fd", + "size": 10808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a87983c83009fa119b2345e37c02264c1f5b23fd" + }, + { + "path": "png/cap-cut-dark.png", + "mode": "100644", + "type": "blob", + "sha": "3eeaf39f6edbfa12004bbab5158787240c6411ad", + "size": 6271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3eeaf39f6edbfa12004bbab5158787240c6411ad" + }, + { + "path": "png/cap-cut.png", + "mode": "100644", + "type": "blob", + "sha": "8ddf889dc7d1b2e801c11f234c0605c9806a1787", + "size": 6271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ddf889dc7d1b2e801c11f234c0605c9806a1787" + }, + { + "path": "png/capacities-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4c6e260f55e5d7fa1e6659735a3eaa3d1efe106b", + "size": 9548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c6e260f55e5d7fa1e6659735a3eaa3d1efe106b" + }, + { + "path": "png/capacities.png", + "mode": "100644", + "type": "blob", + "sha": "e826c4cce5bd3d5d4a9769ca0e0b8c232eb28128", + "size": 9548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e826c4cce5bd3d5d4a9769ca0e0b8c232eb28128" + }, + { + "path": "png/caprover.png", + "mode": "100644", + "type": "blob", + "sha": "4a20dc1600c3ad5bd729e4f23d1fa7839c271475", + "size": 38564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a20dc1600c3ad5bd729e4f23d1fa7839c271475" + }, + { + "path": "png/cardigann-light.png", + "mode": "100644", + "type": "blob", + "sha": "9ca9ed1790fd72f3bfa16a42f8334f1ee6578000", + "size": 1011, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ca9ed1790fd72f3bfa16a42f8334f1ee6578000" + }, + { + "path": "png/cardigann.png", + "mode": "100644", + "type": "blob", + "sha": "07365d2c7f31fd6338258593b5064f15d7d5eba2", + "size": 1028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07365d2c7f31fd6338258593b5064f15d7d5eba2" + }, + { + "path": "png/carrefour.png", + "mode": "100644", + "type": "blob", + "sha": "087f5849dce1b945e01fae123f8a430403493e33", + "size": 34880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/087f5849dce1b945e01fae123f8a430403493e33" + }, + { + "path": "png/casaos.png", + "mode": "100644", + "type": "blob", + "sha": "dfd66e0e80dcb2370bc56ea8042daf58d00436d7", + "size": 26714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfd66e0e80dcb2370bc56ea8042daf58d00436d7" + }, + { + "path": "png/castopod.png", + "mode": "100644", + "type": "blob", + "sha": "3098595f1e80bb6aaa074ec296756947556f2339", + "size": 19895, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3098595f1e80bb6aaa074ec296756947556f2339" + }, + { + "path": "png/cc-light.png", + "mode": "100644", + "type": "blob", + "sha": "578873b7f088b14c2587bdee195e720674dbfa50", + "size": 16617, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/578873b7f088b14c2587bdee195e720674dbfa50" + }, + { + "path": "png/cc.png", + "mode": "100644", + "type": "blob", + "sha": "805f765c2f5c74dd402ed860c05bee7cf7b10e17", + "size": 14728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/805f765c2f5c74dd402ed860c05bee7cf7b10e17" + }, + { + "path": "png/centos.png", + "mode": "100644", + "type": "blob", + "sha": "60a373970c5ba48fb35969e02e4f597ea903fa74", + "size": 10903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a373970c5ba48fb35969e02e4f597ea903fa74" + }, + { + "path": "png/ceph.png", + "mode": "100644", + "type": "blob", + "sha": "0d0ce6896ff179d65b7993170abaac4c7855c691", + "size": 33229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d0ce6896ff179d65b7993170abaac4c7855c691" + }, + { + "path": "png/cert-manager.png", + "mode": "100644", + "type": "blob", + "sha": "c38aca3627f31f08c58369e85e2ad21c8abeef82", + "size": 48624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c38aca3627f31f08c58369e85e2ad21c8abeef82" + }, + { + "path": "png/cert-warden-light.png", + "mode": "100644", + "type": "blob", + "sha": "681665ccf2e9301bcd038e55c68a570cf62d049d", + "size": 27027, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/681665ccf2e9301bcd038e55c68a570cf62d049d" + }, + { + "path": "png/cert-warden.png", + "mode": "100644", + "type": "blob", + "sha": "45a06836437476cf8db3f24d86821d6c73d16175", + "size": 27980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45a06836437476cf8db3f24d86821d6c73d16175" + }, + { + "path": "png/cessna.png", + "mode": "100644", + "type": "blob", + "sha": "b468524494441329cb5c04ed963cd6ce1542b358", + "size": 16398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b468524494441329cb5c04ed963cd6ce1542b358" + }, + { + "path": "png/chainguard.png", + "mode": "100644", + "type": "blob", + "sha": "b81cfffd6d9b794e1bf5219a5e0d31f08c5dd95a", + "size": 33056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b81cfffd6d9b794e1bf5219a5e0d31f08c5dd95a" + }, + { + "path": "png/changedetection.png", + "mode": "100644", + "type": "blob", + "sha": "fbd01631cec5e87299a4d19ca0602ac18ba8b1eb", + "size": 33297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbd01631cec5e87299a4d19ca0602ac18ba8b1eb" + }, + { + "path": "png/channels-dvr.png", + "mode": "100644", + "type": "blob", + "sha": "1393f597b9ff6c9ea19bd5bf7f252e15469104e6", + "size": 6074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1393f597b9ff6c9ea19bd5bf7f252e15469104e6" + }, + { + "path": "png/chaptarr.png", + "mode": "100644", + "type": "blob", + "sha": "e254ed44e35dd6e7e689444d3ee63902e406e983", + "size": 30154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e254ed44e35dd6e7e689444d3ee63902e406e983" + }, + { + "path": "png/chart-db.png", + "mode": "100644", + "type": "blob", + "sha": "966cc0877c78e79f5e31fa4d7e8f468ee91cf718", + "size": 2058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/966cc0877c78e79f5e31fa4d7e8f468ee91cf718" + }, + { + "path": "png/chatbetter.png", + "mode": "100644", + "type": "blob", + "sha": "fe533a3dc8da2b5b018663b4e9d0a42082bb41d5", + "size": 57326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe533a3dc8da2b5b018663b4e9d0a42082bb41d5" + }, + { + "path": "png/chatgpt.png", + "mode": "100644", + "type": "blob", + "sha": "445a55e857206291e04bf6065fe886e26f601bbd", + "size": 21254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/445a55e857206291e04bf6065fe886e26f601bbd" + }, + { + "path": "png/chatpad-ai.png", + "mode": "100644", + "type": "blob", + "sha": "a4de4bc8c6f2ffb3e35b23df345028ca633b7745", + "size": 9058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4de4bc8c6f2ffb3e35b23df345028ca633b7745" + }, + { + "path": "png/chatwoot.png", + "mode": "100644", + "type": "blob", + "sha": "ecbce80344e7d2462d674ef6c2a6a23e200c5067", + "size": 12321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecbce80344e7d2462d674ef6c2a6a23e200c5067" + }, + { + "path": "png/check-cle.png", + "mode": "100644", + "type": "blob", + "sha": "27db1bbb275db953df6d34453ded8c186fec94cd", + "size": 10404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27db1bbb275db953df6d34453ded8c186fec94cd" + }, + { + "path": "png/checkmate.png", + "mode": "100644", + "type": "blob", + "sha": "2b72071a244ae74c813c65ca7e13f3ffe0748720", + "size": 17349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b72071a244ae74c813c65ca7e13f3ffe0748720" + }, + { + "path": "png/checkmk.png", + "mode": "100644", + "type": "blob", + "sha": "5d8b55be469482b4e0f7c8826ff5f718da4a6fcc", + "size": 14203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d8b55be469482b4e0f7c8826ff5f718da4a6fcc" + }, + { + "path": "png/cherry.png", + "mode": "100644", + "type": "blob", + "sha": "efeb2cf2bbc93a658337ff1a69f2b6e0c8e6c2e9", + "size": 44538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efeb2cf2bbc93a658337ff1a69f2b6e0c8e6c2e9" + }, + { + "path": "png/chess.png", + "mode": "100644", + "type": "blob", + "sha": "d79ca2b2d4ab7e5892b57b5ee334aa9396be8698", + "size": 10727, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d79ca2b2d4ab7e5892b57b5ee334aa9396be8698" + }, + { + "path": "png/chevereto.png", + "mode": "100644", + "type": "blob", + "sha": "609766e830ddb28ace4ed9416cb54d999ecaf057", + "size": 20436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/609766e830ddb28ace4ed9416cb54d999ecaf057" + }, + { + "path": "png/chhoto-url.png", + "mode": "100644", + "type": "blob", + "sha": "fff8300c3bb82af99672a15d89da7cf10b2fcf5a", + "size": 17762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fff8300c3bb82af99672a15d89da7cf10b2fcf5a" + }, + { + "path": "png/chibisafe.png", + "mode": "100644", + "type": "blob", + "sha": "42d2c4892c4038a870a4d305b7c52f0278ea2d62", + "size": 53373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42d2c4892c4038a870a4d305b7c52f0278ea2d62" + }, + { + "path": "png/chiefonboarding.png", + "mode": "100644", + "type": "blob", + "sha": "a1184ce6179cb8b2f335d5976f2c716702995661", + "size": 3692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1184ce6179cb8b2f335d5976f2c716702995661" + }, + { + "path": "png/chirpy.png", + "mode": "100644", + "type": "blob", + "sha": "cf782651f5af05f33bdae87cee02e68fba646ed7", + "size": 15197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf782651f5af05f33bdae87cee02e68fba646ed7" + }, + { + "path": "png/chowdown.png", + "mode": "100644", + "type": "blob", + "sha": "201c24bc4580d292c903634947abad7853323e61", + "size": 19194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/201c24bc4580d292c903634947abad7853323e61" + }, + { + "path": "png/chroma.png", + "mode": "100644", + "type": "blob", + "sha": "7f5c80460b1b764c00f1a16b1584292f8255d035", + "size": 16383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f5c80460b1b764c00f1a16b1584292f8255d035" + }, + { + "path": "png/chrome-beta.png", + "mode": "100644", + "type": "blob", + "sha": "d644d2c4db9dcba82786e99770e5f51cc15bb180", + "size": 51168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d644d2c4db9dcba82786e99770e5f51cc15bb180" + }, + { + "path": "png/chrome-canary.png", + "mode": "100644", + "type": "blob", + "sha": "0e172e4785ab1dcd55e6484febdb4007614f7b2b", + "size": 56218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e172e4785ab1dcd55e6484febdb4007614f7b2b" + }, + { + "path": "png/chrome-dev.png", + "mode": "100644", + "type": "blob", + "sha": "aa5a3d87b497a804d1c99317257c4a528080d17a", + "size": 47072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa5a3d87b497a804d1c99317257c4a528080d17a" + }, + { + "path": "png/chrome-devtools.png", + "mode": "100644", + "type": "blob", + "sha": "2cbadd7ea08f1554fd286137dcdcb6d4c40ffe0e", + "size": 1114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cbadd7ea08f1554fd286137dcdcb6d4c40ffe0e" + }, + { + "path": "png/chrome-remote-desktop.png", + "mode": "100644", + "type": "blob", + "sha": "a814a44fd0fac130cd57411c43eb17fa282ed403", + "size": 21025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a814a44fd0fac130cd57411c43eb17fa282ed403" + }, + { + "path": "png/chrome.png", + "mode": "100644", + "type": "blob", + "sha": "679bdd782f5bc9fb7974ad4593923a9085bd67d7", + "size": 62029, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/679bdd782f5bc9fb7974ad4593923a9085bd67d7" + }, + { + "path": "png/chromecast-light.png", + "mode": "100644", + "type": "blob", + "sha": "70acb744ed012d78a309782b20a9e292ad20efc9", + "size": 5069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70acb744ed012d78a309782b20a9e292ad20efc9" + }, + { + "path": "png/chromecast.png", + "mode": "100644", + "type": "blob", + "sha": "c7ea3bc7c8336be0b83392bb0135674cb1437d1c", + "size": 5069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7ea3bc7c8336be0b83392bb0135674cb1437d1c" + }, + { + "path": "png/chromium.png", + "mode": "100644", + "type": "blob", + "sha": "48365d1e406ca42010ce1018fcee9545143bcb3e", + "size": 27912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48365d1e406ca42010ce1018fcee9545143bcb3e" + }, + { + "path": "png/chronograf.png", + "mode": "100644", + "type": "blob", + "sha": "f046369bee426b09e99fe31845505522e765e3fc", + "size": 17291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f046369bee426b09e99fe31845505522e765e3fc" + }, + { + "path": "png/cilium-light.png", + "mode": "100644", + "type": "blob", + "sha": "b1f88e64c97190e3bafdf0755d6322d90eb1eeda", + "size": 32701, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1f88e64c97190e3bafdf0755d6322d90eb1eeda" + }, + { + "path": "png/cilium.png", + "mode": "100644", + "type": "blob", + "sha": "4550926e5ebc96e80535ac9f9e0604008ccc95c9", + "size": 37045, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4550926e5ebc96e80535ac9f9e0604008ccc95c9" + }, + { + "path": "png/cinny-light.png", + "mode": "100644", + "type": "blob", + "sha": "ce604b813375fd477c3927fc09ab1491e093c3af", + "size": 20127, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce604b813375fd477c3927fc09ab1491e093c3af" + }, + { + "path": "png/cinny.png", + "mode": "100644", + "type": "blob", + "sha": "0ebc8d7a88c3f0c94bdffe6cae99e91b7db9512a", + "size": 19071, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ebc8d7a88c3f0c94bdffe6cae99e91b7db9512a" + }, + { + "path": "png/ciphermail.png", + "mode": "100644", + "type": "blob", + "sha": "1b68fdc75754eed3ed9b5600dc2b617e346712c5", + "size": 9568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b68fdc75754eed3ed9b5600dc2b617e346712c5" + }, + { + "path": "png/cisco.png", + "mode": "100644", + "type": "blob", + "sha": "51bae6ce7c762104d96bf1298a5d16d5dda52b5e", + "size": 21486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51bae6ce7c762104d96bf1298a5d16d5dda52b5e" + }, + { + "path": "png/clam-av.png", + "mode": "100644", + "type": "blob", + "sha": "ef91828bae3ca1e4d03b53cbaac1ab709bbd845f", + "size": 55300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef91828bae3ca1e4d03b53cbaac1ab709bbd845f" + }, + { + "path": "png/clash.png", + "mode": "100644", + "type": "blob", + "sha": "f724da932661bff6cef750d01a6a5af171fdd24c", + "size": 13721, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f724da932661bff6cef750d01a6a5af171fdd24c" + }, + { + "path": "png/claude-ai-light.png", + "mode": "100644", + "type": "blob", + "sha": "9120ec6509945a7f78d10764968e9391413c7017", + "size": 14956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9120ec6509945a7f78d10764968e9391413c7017" + }, + { + "path": "png/claude-ai.png", + "mode": "100644", + "type": "blob", + "sha": "15a1a03e1e4fea8b197ae07e88c8975de0d5977d", + "size": 15458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15a1a03e1e4fea8b197ae07e88c8975de0d5977d" + }, + { + "path": "png/cleanuperr.png", + "mode": "100644", + "type": "blob", + "sha": "a87ae9ef924b45f7eeea849d74a48d6d68abd8e4", + "size": 29567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a87ae9ef924b45f7eeea849d74a48d6d68abd8e4" + }, + { + "path": "png/clickhouse.png", + "mode": "100644", + "type": "blob", + "sha": "ce5ecf398c9b32c7cc5c96ab0ccc12acd9400205", + "size": 2462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce5ecf398c9b32c7cc5c96ab0ccc12acd9400205" + }, + { + "path": "png/clickup.png", + "mode": "100644", + "type": "blob", + "sha": "a9bf2670a8a0e54c5dd1991e4996d719d4152f09", + "size": 15768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9bf2670a8a0e54c5dd1991e4996d719d4152f09" + }, + { + "path": "png/cloud66.png", + "mode": "100644", + "type": "blob", + "sha": "3a3592ca8e70f46e7dd66284cefb62526006e6eb", + "size": 38083, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a3592ca8e70f46e7dd66284cefb62526006e6eb" + }, + { + "path": "png/cloud9-light.png", + "mode": "100644", + "type": "blob", + "sha": "cbad05b5eec3bb086bb8886e1a2300ddd405b203", + "size": 32456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbad05b5eec3bb086bb8886e1a2300ddd405b203" + }, + { + "path": "png/cloud9.png", + "mode": "100644", + "type": "blob", + "sha": "30f11f37337e44f19743e8ffa3427e43bbd01bf3", + "size": 31679, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30f11f37337e44f19743e8ffa3427e43bbd01bf3" + }, + { + "path": "png/cloudbeaver.png", + "mode": "100644", + "type": "blob", + "sha": "a63be5295a6d706db2bfb794e537de2ea739e743", + "size": 45797, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a63be5295a6d706db2bfb794e537de2ea739e743" + }, + { + "path": "png/cloudcmd.png", + "mode": "100644", + "type": "blob", + "sha": "2c370ee294a6a3950fd40605d4cf375a9d4a42c4", + "size": 18861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c370ee294a6a3950fd40605d4cf375a9d4a42c4" + }, + { + "path": "png/cloudflare-pages.png", + "mode": "100644", + "type": "blob", + "sha": "2022336024138b8d9f21e74d29931879a68e33a7", + "size": 20198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2022336024138b8d9f21e74d29931879a68e33a7" + }, + { + "path": "png/cloudflare-zero-trust.png", + "mode": "100644", + "type": "blob", + "sha": "78c6b0155797e49ccf2aae8fa919f82beb8a87ae", + "size": 86709, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78c6b0155797e49ccf2aae8fa919f82beb8a87ae" + }, + { + "path": "png/cloudflare.png", + "mode": "100644", + "type": "blob", + "sha": "c05107ebc104a4c86b1df26461e4ba690fae81f2", + "size": 22958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c05107ebc104a4c86b1df26461e4ba690fae81f2" + }, + { + "path": "png/cloudpanel.png", + "mode": "100644", + "type": "blob", + "sha": "51df10a60abc7773528965f69671f0b94937b4a8", + "size": 26247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51df10a60abc7773528965f69671f0b94937b4a8" + }, + { + "path": "png/cloudreve.png", + "mode": "100644", + "type": "blob", + "sha": "ef44b4c01af356945223767468cc17cb702cde75", + "size": 22075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef44b4c01af356945223767468cc17cb702cde75" + }, + { + "path": "png/cloudstream.png", + "mode": "100644", + "type": "blob", + "sha": "bb4bd25cb979ec642d3c5f75d960b90655fbb594", + "size": 20262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb4bd25cb979ec642d3c5f75d960b90655fbb594" + }, + { + "path": "png/cobalt-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4c8621e3740eaa5067c77f614dbf25e82b5bcbf8", + "size": 2492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c8621e3740eaa5067c77f614dbf25e82b5bcbf8" + }, + { + "path": "png/cobalt.png", + "mode": "100644", + "type": "blob", + "sha": "f1c0b0155380cb998387737a0cfbddfeb69e29d7", + "size": 1843, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1c0b0155380cb998387737a0cfbddfeb69e29d7" + }, + { + "path": "png/cockpit-cms-light.png", + "mode": "100644", + "type": "blob", + "sha": "7626579681e689c7148388e425e57404e620f676", + "size": 18835, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7626579681e689c7148388e425e57404e620f676" + }, + { + "path": "png/cockpit-cms.png", + "mode": "100644", + "type": "blob", + "sha": "d94533d8fe443ab0e227dfa0bd820427e27311f4", + "size": 18098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d94533d8fe443ab0e227dfa0bd820427e27311f4" + }, + { + "path": "png/cockpit-light.png", + "mode": "100644", + "type": "blob", + "sha": "dd09e4bb8b6cd5e7a1526d5dd96e16d439f7d43a", + "size": 22107, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd09e4bb8b6cd5e7a1526d5dd96e16d439f7d43a" + }, + { + "path": "png/cockpit.png", + "mode": "100644", + "type": "blob", + "sha": "ccbe9725c8700ed8fd24da5e8d6395ed9a2301f6", + "size": 17927, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccbe9725c8700ed8fd24da5e8d6395ed9a2301f6" + }, + { + "path": "png/code-cademy-dark.png", + "mode": "100644", + "type": "blob", + "sha": "8394516eb8e308e90d247907ade5cc94d8ae5d26", + "size": 4855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8394516eb8e308e90d247907ade5cc94d8ae5d26" + }, + { + "path": "png/code-cademy.png", + "mode": "100644", + "type": "blob", + "sha": "0d78650595a4ef110f17084cb66b5474938bf561", + "size": 4855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d78650595a4ef110f17084cb66b5474938bf561" + }, + { + "path": "png/code-server.png", + "mode": "100644", + "type": "blob", + "sha": "28c87f4811ef27ebb2b918b8daf87eb6b4a1d00e", + "size": 55822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28c87f4811ef27ebb2b918b8daf87eb6b4a1d00e" + }, + { + "path": "png/code.png", + "mode": "100644", + "type": "blob", + "sha": "0ed147e9046547cc00d6fd708cf351961db9f5e4", + "size": 46504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ed147e9046547cc00d6fd708cf351961db9f5e4" + }, + { + "path": "png/codeberg.png", + "mode": "100644", + "type": "blob", + "sha": "47a7a38fff7f32a6b869ade5ff5c88dd59cf1128", + "size": 22683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47a7a38fff7f32a6b869ade5ff5c88dd59cf1128" + }, + { + "path": "png/codellm.png", + "mode": "100644", + "type": "blob", + "sha": "338e815bc4138bbc45c4149e109b74de34105317", + "size": 12445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/338e815bc4138bbc45c4149e109b74de34105317" + }, + { + "path": "png/coder-light.png", + "mode": "100644", + "type": "blob", + "sha": "a23505565c745eb9bf029aba3155e0b1dc5a87b4", + "size": 9237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a23505565c745eb9bf029aba3155e0b1dc5a87b4" + }, + { + "path": "png/coder.png", + "mode": "100644", + "type": "blob", + "sha": "76e50ae4788b4f54bbde304b511666bcab8bb7f2", + "size": 9237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76e50ae4788b4f54bbde304b511666bcab8bb7f2" + }, + { + "path": "png/codestats-light.png", + "mode": "100644", + "type": "blob", + "sha": "eee7172c725273826cf4e7f7af111cd49203fc4b", + "size": 25987, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eee7172c725273826cf4e7f7af111cd49203fc4b" + }, + { + "path": "png/codestats.png", + "mode": "100644", + "type": "blob", + "sha": "c1909201497fe9f5021ecd1253850603beeb57c5", + "size": 22740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1909201497fe9f5021ecd1253850603beeb57c5" + }, + { + "path": "png/codex-light.png", + "mode": "100644", + "type": "blob", + "sha": "d57679dbea0ce30d984dcc954da281489ec6c8c7", + "size": 66043, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d57679dbea0ce30d984dcc954da281489ec6c8c7" + }, + { + "path": "png/codex.png", + "mode": "100644", + "type": "blob", + "sha": "8ee25aa340e1fcd1548f234e4d9785d7bc95c2e4", + "size": 55182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ee25aa340e1fcd1548f234e4d9785d7bc95c2e4" + }, + { + "path": "png/codimd-light.png", + "mode": "100644", + "type": "blob", + "sha": "6978e2627054a67c6a43c10a26bdd565e5c6e1f9", + "size": 684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6978e2627054a67c6a43c10a26bdd565e5c6e1f9" + }, + { + "path": "png/codimd.png", + "mode": "100644", + "type": "blob", + "sha": "e96af701d586ead9d35efd2a0f988c14f806f368", + "size": 650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e96af701d586ead9d35efd2a0f988c14f806f368" + }, + { + "path": "png/collabora-online.png", + "mode": "100644", + "type": "blob", + "sha": "4806651c2ff633358d2ecb711ac559c5dae4c754", + "size": 33731, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4806651c2ff633358d2ecb711ac559c5dae4c754" + }, + { + "path": "png/comfy-ui.png", + "mode": "100644", + "type": "blob", + "sha": "483e4ffa626d99548f59360132f95c0508ae7983", + "size": 241145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/483e4ffa626d99548f59360132f95c0508ae7983" + }, + { + "path": "png/commafeed-light.png", + "mode": "100644", + "type": "blob", + "sha": "72206b3a7d9fe4593eda87736e0a8ab19c3b6185", + "size": 21116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72206b3a7d9fe4593eda87736e0a8ab19c3b6185" + }, + { + "path": "png/commafeed.png", + "mode": "100644", + "type": "blob", + "sha": "5b15c5e1d22f571f12d6b4c04c93aa424087a9c4", + "size": 17899, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b15c5e1d22f571f12d6b4c04c93aa424087a9c4" + }, + { + "path": "png/commento-light.png", + "mode": "100644", + "type": "blob", + "sha": "aaa6bbdbd6788cfbe178bed06afab2b5c52cab63", + "size": 23683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aaa6bbdbd6788cfbe178bed06afab2b5c52cab63" + }, + { + "path": "png/commento.png", + "mode": "100644", + "type": "blob", + "sha": "8de604736cfa3bcd685790dfe92a8d13d9fb4051", + "size": 27286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8de604736cfa3bcd685790dfe92a8d13d9fb4051" + }, + { + "path": "png/compreface.png", + "mode": "100644", + "type": "blob", + "sha": "0ccdd919088c31163c1ea3f2f4ea47d43088ee06", + "size": 26549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ccdd919088c31163c1ea3f2f4ea47d43088ee06" + }, + { + "path": "png/concourse.png", + "mode": "100644", + "type": "blob", + "sha": "87326aaedfd14746ae01d4eaef2b0157dbf3d2dc", + "size": 29198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87326aaedfd14746ae01d4eaef2b0157dbf3d2dc" + }, + { + "path": "png/confix.png", + "mode": "100644", + "type": "blob", + "sha": "de7e07c961c3d619759cc3913a0c780ae6f06c06", + "size": 17390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de7e07c961c3d619759cc3913a0c780ae6f06c06" + }, + { + "path": "png/confluence.png", + "mode": "100644", + "type": "blob", + "sha": "a4816c78a7fb768cbcf4bcab981e999a9af6e0f8", + "size": 36996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4816c78a7fb768cbcf4bcab981e999a9af6e0f8" + }, + { + "path": "png/consul.png", + "mode": "100644", + "type": "blob", + "sha": "727b95abdd838cfc552158687eca01eea8973b0f", + "size": 24219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/727b95abdd838cfc552158687eca01eea8973b0f" + }, + { + "path": "png/contabo.png", + "mode": "100644", + "type": "blob", + "sha": "4c60aba13a50c72e6a7f4526263dc4d31e782716", + "size": 24747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c60aba13a50c72e6a7f4526263dc4d31e782716" + }, + { + "path": "png/control-d-dark.png", + "mode": "100644", + "type": "blob", + "sha": "8529a1c7aba4857e59151f43b50bc72ba89f2555", + "size": 7192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8529a1c7aba4857e59151f43b50bc72ba89f2555" + }, + { + "path": "png/control-d.png", + "mode": "100644", + "type": "blob", + "sha": "68eb799f9a2c2ba2dd02e530623c165c3c259658", + "size": 7192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68eb799f9a2c2ba2dd02e530623c165c3c259658" + }, + { + "path": "png/converse-light.png", + "mode": "100644", + "type": "blob", + "sha": "4673367cd9b36ecdc013d93b7a0cbcf6f7d7c9fe", + "size": 18604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4673367cd9b36ecdc013d93b7a0cbcf6f7d7c9fe" + }, + { + "path": "png/converse.png", + "mode": "100644", + "type": "blob", + "sha": "debda82d8ff22c502f35061fd75949b501a3dd94", + "size": 15896, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/debda82d8ff22c502f35061fd75949b501a3dd94" + }, + { + "path": "png/convertx.png", + "mode": "100644", + "type": "blob", + "sha": "4504e1f4f8ffbce13cb3e989bfce085dcfa432a4", + "size": 12355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4504e1f4f8ffbce13cb3e989bfce085dcfa432a4" + }, + { + "path": "png/convex.png", + "mode": "100644", + "type": "blob", + "sha": "cf34877c6efb7ba2275fbc9cbeb5900905320aea", + "size": 18808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf34877c6efb7ba2275fbc9cbeb5900905320aea" + }, + { + "path": "png/cooler-control.png", + "mode": "100644", + "type": "blob", + "sha": "7c79cfff800f9b41157c014c06ff754de059449d", + "size": 16295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c79cfff800f9b41157c014c06ff754de059449d" + }, + { + "path": "png/coolify.png", + "mode": "100644", + "type": "blob", + "sha": "8a430aefd7a478d25d9400158b9be8ee0a2a0777", + "size": 2963, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a430aefd7a478d25d9400158b9be8ee0a2a0777" + }, + { + "path": "png/copyparty.png", + "mode": "100644", + "type": "blob", + "sha": "baf4da9f62af20f07eb3ef3a603c8115ad1bc093", + "size": 22739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/baf4da9f62af20f07eb3ef3a603c8115ad1bc093" + }, + { + "path": "png/copyq.png", + "mode": "100644", + "type": "blob", + "sha": "c64b5f639e0b4c27f96482c5022753c40c0fcbcd", + "size": 22297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c64b5f639e0b4c27f96482c5022753c40c0fcbcd" + }, + { + "path": "png/core-control.png", + "mode": "100644", + "type": "blob", + "sha": "81886d046c6d8287550dae9cb6d35c20db3941d7", + "size": 7669, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81886d046c6d8287550dae9cb6d35c20db3941d7" + }, + { + "path": "png/coredns.png", + "mode": "100644", + "type": "blob", + "sha": "aecc75501590f358ac2e9d2d2242cdd95ca51429", + "size": 33181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aecc75501590f358ac2e9d2d2242cdd95ca51429" + }, + { + "path": "png/coreos.png", + "mode": "100644", + "type": "blob", + "sha": "db8e2e90c7682d3e09edfd202b28881426312374", + "size": 22462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db8e2e90c7682d3e09edfd202b28881426312374" + }, + { + "path": "png/cosign.png", + "mode": "100644", + "type": "blob", + "sha": "ca3721bb69bbc413c1575c20d9714a44b43d65ac", + "size": 38924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca3721bb69bbc413c1575c20d9714a44b43d65ac" + }, + { + "path": "png/cosmos-cloud.png", + "mode": "100644", + "type": "blob", + "sha": "0c94f3a0109f7fd2729379bef51c392e43e0be63", + "size": 291792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c94f3a0109f7fd2729379bef51c392e43e0be63" + }, + { + "path": "png/costco.png", + "mode": "100644", + "type": "blob", + "sha": "20eceaa125f9f980b294202537a98d996edc8d54", + "size": 103483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20eceaa125f9f980b294202537a98d996edc8d54" + }, + { + "path": "png/couchdb.png", + "mode": "100644", + "type": "blob", + "sha": "ff217200ba00b3d829b6877ae7ace4a8935ac853", + "size": 19120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff217200ba00b3d829b6877ae7ace4a8935ac853" + }, + { + "path": "png/couchpotato.png", + "mode": "100644", + "type": "blob", + "sha": "8985fa09528dcf53f22fe3be48bcaff0072bdafe", + "size": 29108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8985fa09528dcf53f22fe3be48bcaff0072bdafe" + }, + { + "path": "png/counter-analytics.png", + "mode": "100644", + "type": "blob", + "sha": "b0e016933a5145ab5327fbd15769cbe479a1c9f4", + "size": 13046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0e016933a5145ab5327fbd15769cbe479a1c9f4" + }, + { + "path": "png/counter-strike-2.png", + "mode": "100644", + "type": "blob", + "sha": "8a6faff8200e3196f83b7bb10d436f32e264d1be", + "size": 6432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a6faff8200e3196f83b7bb10d436f32e264d1be" + }, + { + "path": "png/counter-strike-global-offensive.png", + "mode": "100644", + "type": "blob", + "sha": "c289e2a39751acecee63b8aa907b3da8d15dfd10", + "size": 243218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c289e2a39751acecee63b8aa907b3da8d15dfd10" + }, + { + "path": "png/coursera.png", + "mode": "100644", + "type": "blob", + "sha": "cd6878d8ea7252a79a1d65ed6b082010ceb7d559", + "size": 6460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd6878d8ea7252a79a1d65ed6b082010ceb7d559" + }, + { + "path": "png/cozy.png", + "mode": "100644", + "type": "blob", + "sha": "5af020769a9ef44770d57dc02ad99aea4a1ead82", + "size": 30962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5af020769a9ef44770d57dc02ad99aea4a1ead82" + }, + { + "path": "png/cpanel.png", + "mode": "100644", + "type": "blob", + "sha": "b961cd50f2bb4e7e5da931ec1b977f7532fa5577", + "size": 22438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b961cd50f2bb4e7e5da931ec1b977f7532fa5577" + }, + { + "path": "png/cpp.png", + "mode": "100644", + "type": "blob", + "sha": "6ff2e63ec8df17e378455c8f0c342e6f7c2892cf", + "size": 24383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ff2e63ec8df17e378455c8f0c342e6f7c2892cf" + }, + { + "path": "png/crafty-controller.png", + "mode": "100644", + "type": "blob", + "sha": "688a7a9d4f8719de14f1cbe862782c86d195865c", + "size": 13125, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/688a7a9d4f8719de14f1cbe862782c86d195865c" + }, + { + "path": "png/crater-invoice.png", + "mode": "100644", + "type": "blob", + "sha": "0a4525e62aa81979165ad3602109b8a707f98e68", + "size": 33454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a4525e62aa81979165ad3602109b8a707f98e68" + }, + { + "path": "png/crazydomains.png", + "mode": "100644", + "type": "blob", + "sha": "eb4c9c7675b9319f34f0e6041bc0beca9409ad2a", + "size": 8203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb4c9c7675b9319f34f0e6041bc0beca9409ad2a" + }, + { + "path": "png/cribl-light.png", + "mode": "100644", + "type": "blob", + "sha": "c1dc809e2decd96d984a530c2b6b8cbef9560d27", + "size": 7433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1dc809e2decd96d984a530c2b6b8cbef9560d27" + }, + { + "path": "png/cribl.png", + "mode": "100644", + "type": "blob", + "sha": "7cadb237777ff3029783cca4008cb755feb01578", + "size": 7705, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cadb237777ff3029783cca4008cb755feb01578" + }, + { + "path": "png/cron-master.png", + "mode": "100644", + "type": "blob", + "sha": "8b9bce4e5153e22642d707b758a5612db9ce2c96", + "size": 77083, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b9bce4e5153e22642d707b758a5612db9ce2c96" + }, + { + "path": "png/cronicle.png", + "mode": "100644", + "type": "blob", + "sha": "1413b237880fd992bb366d94d06c1352279d4383", + "size": 16610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1413b237880fd992bb366d94d06c1352279d4383" + }, + { + "path": "png/cross-seed-square.png", + "mode": "100644", + "type": "blob", + "sha": "de6d8ee44a611994534d657640da64a5884e4677", + "size": 41360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de6d8ee44a611994534d657640da64a5884e4677" + }, + { + "path": "png/cross-seed.png", + "mode": "100644", + "type": "blob", + "sha": "485d459dce9ea9a0be2baa97157bdbcf89d6d49a", + "size": 36681, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/485d459dce9ea9a0be2baa97157bdbcf89d6d49a" + }, + { + "path": "png/crowdin-dark.png", + "mode": "100644", + "type": "blob", + "sha": "0d2ce7577cce5516c3e7061b21c31a8f09e96aad", + "size": 16691, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d2ce7577cce5516c3e7061b21c31a8f09e96aad" + }, + { + "path": "png/crowdin.png", + "mode": "100644", + "type": "blob", + "sha": "ae2e3c86fa4e1a311722a7f0b908f545410f3784", + "size": 18169, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae2e3c86fa4e1a311722a7f0b908f545410f3784" + }, + { + "path": "png/crowdsec.png", + "mode": "100644", + "type": "blob", + "sha": "2e78972a29f9dc97ca3a2d1404bd5c68cf8d5209", + "size": 46572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e78972a29f9dc97ca3a2d1404bd5c68cf8d5209" + }, + { + "path": "png/crunchyroll.png", + "mode": "100644", + "type": "blob", + "sha": "8f7d213b7094ab1cd42b854afdd965a119828b74", + "size": 9636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f7d213b7094ab1cd42b854afdd965a119828b74" + }, + { + "path": "png/cryptomator.png", + "mode": "100644", + "type": "blob", + "sha": "3dc75a04cc63df2c8a5ccb19edbd755204f4a1fe", + "size": 45155, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3dc75a04cc63df2c8a5ccb19edbd755204f4a1fe" + }, + { + "path": "png/cryptpad.png", + "mode": "100644", + "type": "blob", + "sha": "3873955d30ccca54e4d29125714e728ea710ba55", + "size": 15479, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3873955d30ccca54e4d29125714e728ea710ba55" + }, + { + "path": "png/csharp.png", + "mode": "100644", + "type": "blob", + "sha": "b56f73eebfcb59366f34d8950c14b3a4fdafcbcc", + "size": 26525, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b56f73eebfcb59366f34d8950c14b3a4fdafcbcc" + }, + { + "path": "png/css-light.png", + "mode": "100644", + "type": "blob", + "sha": "c30698e13e6b45ce2c8f758fa015fe96847ed3a2", + "size": 11738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c30698e13e6b45ce2c8f758fa015fe96847ed3a2" + }, + { + "path": "png/css.png", + "mode": "100644", + "type": "blob", + "sha": "ba0d4c0de3b527026ff77c6297084c8a7acb4125", + "size": 11729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba0d4c0de3b527026ff77c6297084c8a7acb4125" + }, + { + "path": "png/ctfreak.png", + "mode": "100644", + "type": "blob", + "sha": "48cd0bd0f745ba6aeaffa7ea416c45094c0185aa", + "size": 10165, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48cd0bd0f745ba6aeaffa7ea416c45094c0185aa" + }, + { + "path": "png/cup.png", + "mode": "100644", + "type": "blob", + "sha": "bbebc34f46aca76d964befdc7ff1939c5ad87f5c", + "size": 17315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbebc34f46aca76d964befdc7ff1939c5ad87f5c" + }, + { + "path": "png/cups-light.png", + "mode": "100644", + "type": "blob", + "sha": "f1274c0f8c71127931e5161758938102805ee0fe", + "size": 12304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1274c0f8c71127931e5161758938102805ee0fe" + }, + { + "path": "png/cups.png", + "mode": "100644", + "type": "blob", + "sha": "cef656515e09b0e23ccdf32059c59fdf603e8665", + "size": 12304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cef656515e09b0e23ccdf32059c59fdf603e8665" + }, + { + "path": "png/cura.png", + "mode": "100644", + "type": "blob", + "sha": "fca7e48047da532a672f2b1f5f87f1568717d3b8", + "size": 11736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fca7e48047da532a672f2b1f5f87f1568717d3b8" + }, + { + "path": "png/cyber-power-full.png", + "mode": "100644", + "type": "blob", + "sha": "5a92b9ffcefa2601a0c0f0a378c2c7c193c3e050", + "size": 29111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a92b9ffcefa2601a0c0f0a378c2c7c193c3e050" + }, + { + "path": "png/cyberchef.png", + "mode": "100644", + "type": "blob", + "sha": "6d15a38399fb4d339bbec410c47b24c2492a6c37", + "size": 12675, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d15a38399fb4d339bbec410c47b24c2492a6c37" + }, + { + "path": "png/czkawka.png", + "mode": "100644", + "type": "blob", + "sha": "930517887bd93495a1b3ef886775d7a574446c57", + "size": 12500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/930517887bd93495a1b3ef886775d7a574446c57" + }, + { + "path": "png/d-link.png", + "mode": "100644", + "type": "blob", + "sha": "08ab9fac6f52344d15de46303f13a534fa3be8bf", + "size": 54434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08ab9fac6f52344d15de46303f13a534fa3be8bf" + }, + { + "path": "png/dagster-dark.png", + "mode": "100644", + "type": "blob", + "sha": "25e29e4d7e311496f1689a5e4f9b75db2b9bb149", + "size": 32460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25e29e4d7e311496f1689a5e4f9b75db2b9bb149" + }, + { + "path": "png/dagster-light.png", + "mode": "100644", + "type": "blob", + "sha": "27f757216ee3515c7b9ed96e8691ae6388e3d39a", + "size": 36247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27f757216ee3515c7b9ed96e8691ae6388e3d39a" + }, + { + "path": "png/dahua.png", + "mode": "100644", + "type": "blob", + "sha": "2c0dcbaf1506e55e779dc1143076f08d30a1c578", + "size": 25636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c0dcbaf1506e55e779dc1143076f08d30a1c578" + }, + { + "path": "png/dalibo.png", + "mode": "100644", + "type": "blob", + "sha": "830f93f2f4082b9bb828349532ff616f3d26b422", + "size": 20901, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/830f93f2f4082b9bb828349532ff616f3d26b422" + }, + { + "path": "png/daps.png", + "mode": "100644", + "type": "blob", + "sha": "776154aca43f833951fa34acc8727397bfcfb0a5", + "size": 23782, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/776154aca43f833951fa34acc8727397bfcfb0a5" + }, + { + "path": "png/dart.png", + "mode": "100644", + "type": "blob", + "sha": "f4fa56131dfd708d953efaa1bcf63d49c7295619", + "size": 12798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4fa56131dfd708d953efaa1bcf63d49c7295619" + }, + { + "path": "png/dashboard-icons-dark.png", + "mode": "100644", + "type": "blob", + "sha": "16945c04d1b5723de90ea2a05417caee1275d7eb", + "size": 16867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16945c04d1b5723de90ea2a05417caee1275d7eb" + }, + { + "path": "png/dashboard-icons.png", + "mode": "100644", + "type": "blob", + "sha": "879cd4de164ba154e991506ff682b745a8474a0c", + "size": 16652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/879cd4de164ba154e991506ff682b745a8474a0c" + }, + { + "path": "png/dashdot.png", + "mode": "100644", + "type": "blob", + "sha": "eb05984c64201f519f049d7317f1533745fbffcb", + "size": 71226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb05984c64201f519f049d7317f1533745fbffcb" + }, + { + "path": "png/dashwise.png", + "mode": "100644", + "type": "blob", + "sha": "1a783720c1bebd94d52dcac13ecb1972a8cc24f6", + "size": 21069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a783720c1bebd94d52dcac13ecb1972a8cc24f6" + }, + { + "path": "png/dashy.png", + "mode": "100644", + "type": "blob", + "sha": "0cf29cb123bb288f168410343cfc3c4eb62bcfec", + "size": 46005, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cf29cb123bb288f168410343cfc3c4eb62bcfec" + }, + { + "path": "png/datadog.png", + "mode": "100644", + "type": "blob", + "sha": "615ae6a9ad98127e81c5b97f3c0952af2e92329d", + "size": 33399, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/615ae6a9ad98127e81c5b97f3c0952af2e92329d" + }, + { + "path": "png/davical.png", + "mode": "100644", + "type": "blob", + "sha": "d663f9f544aad0dc48aaeb9d455539a246fe2b7c", + "size": 19101, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d663f9f544aad0dc48aaeb9d455539a246fe2b7c" + }, + { + "path": "png/davis.png", + "mode": "100644", + "type": "blob", + "sha": "e54e8f36e4c68391af26579bbc7eb20cd6c76a0a", + "size": 18843, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e54e8f36e4c68391af26579bbc7eb20cd6c76a0a" + }, + { + "path": "png/dawarich.png", + "mode": "100644", + "type": "blob", + "sha": "97694ef2674a88876905b386df4162e08a3da2e1", + "size": 40753, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97694ef2674a88876905b386df4162e08a3da2e1" + }, + { + "path": "png/dc-os.png", + "mode": "100644", + "type": "blob", + "sha": "c76f591c2a36179c960c2a50e4181b11270dbc6b", + "size": 22129, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c76f591c2a36179c960c2a50e4181b11270dbc6b" + }, + { + "path": "png/dd-wrt-light.png", + "mode": "100644", + "type": "blob", + "sha": "7604d54c9429c14a7ef6c91cbcd0ce557b550e24", + "size": 3555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7604d54c9429c14a7ef6c91cbcd0ce557b550e24" + }, + { + "path": "png/dd-wrt.png", + "mode": "100644", + "type": "blob", + "sha": "b705768a7b2b2d7b3a30a5d2e25e20e9aeb29d9f", + "size": 11797, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b705768a7b2b2d7b3a30a5d2e25e20e9aeb29d9f" + }, + { + "path": "png/ddclient.png", + "mode": "100644", + "type": "blob", + "sha": "cecdbfa56b02c72c6c90cfd849d3e8fb585d85b5", + "size": 47108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cecdbfa56b02c72c6c90cfd849d3e8fb585d85b5" + }, + { + "path": "png/ddns-updater.png", + "mode": "100644", + "type": "blob", + "sha": "eb40372028a1bd4054a8032571db7a266f968bf7", + "size": 48040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb40372028a1bd4054a8032571db7a266f968bf7" + }, + { + "path": "png/debian-linux.png", + "mode": "100644", + "type": "blob", + "sha": "6ede5d71c28c7d677d4d14109d66998eef4ad922", + "size": 27265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ede5d71c28c7d677d4d14109d66998eef4ad922" + }, + { + "path": "png/deemix.png", + "mode": "100644", + "type": "blob", + "sha": "05ac454aa691bb195426461d075e24b52a3ced59", + "size": 49653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05ac454aa691bb195426461d075e24b52a3ced59" + }, + { + "path": "png/deepl-dark.png", + "mode": "100644", + "type": "blob", + "sha": "2e872e9ad80817094776b1ea9663dcab086f8b4d", + "size": 9031, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e872e9ad80817094776b1ea9663dcab086f8b4d" + }, + { + "path": "png/deepl.png", + "mode": "100644", + "type": "blob", + "sha": "9eee5dfc2de3717296f2f2aa2fe53fcb46879462", + "size": 10536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eee5dfc2de3717296f2f2aa2fe53fcb46879462" + }, + { + "path": "png/deepseek.png", + "mode": "100644", + "type": "blob", + "sha": "271972595430b7c41fe89eee4b87ce63f2f0df28", + "size": 10875, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/271972595430b7c41fe89eee4b87ce63f2f0df28" + }, + { + "path": "png/deezer.png", + "mode": "100644", + "type": "blob", + "sha": "0a4487269e97b0537607b5af39d65d20b1674ab7", + "size": 21749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a4487269e97b0537607b5af39d65d20b1674ab7" + }, + { + "path": "png/defguard.png", + "mode": "100644", + "type": "blob", + "sha": "1e55b331745921e53e67cd9da585dce1e7dba01f", + "size": 15223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e55b331745921e53e67cd9da585dce1e7dba01f" + }, + { + "path": "png/dell.png", + "mode": "100644", + "type": "blob", + "sha": "95f670afe9fa36ca6c15378b4cc067f8bcf95c51", + "size": 25958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95f670afe9fa36ca6c15378b4cc067f8bcf95c51" + }, + { + "path": "png/deluge.png", + "mode": "100644", + "type": "blob", + "sha": "eeba59f6778e879371b186de6d8cdd30c4139a6a", + "size": 34912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeba59f6778e879371b186de6d8cdd30c4139a6a" + }, + { + "path": "png/deno-light.png", + "mode": "100644", + "type": "blob", + "sha": "dc52309535ebe051a8b230bd9d9ac0a17c0759ef", + "size": 27199, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc52309535ebe051a8b230bd9d9ac0a17c0759ef" + }, + { + "path": "png/deno.png", + "mode": "100644", + "type": "blob", + "sha": "2703fbc0ab7fe1181b360a8fdfb904cf14aed6c3", + "size": 25202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2703fbc0ab7fe1181b360a8fdfb904cf14aed6c3" + }, + { + "path": "png/denodo.png", + "mode": "100644", + "type": "blob", + "sha": "680e136583b4cf492037fbcf5c9b8a0d57db92cc", + "size": 9873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/680e136583b4cf492037fbcf5c9b8a0d57db92cc" + }, + { + "path": "png/denon-light.png", + "mode": "100644", + "type": "blob", + "sha": "c411b0da7448bacb33e672229dcb82cfd1ac9ea9", + "size": 41435, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c411b0da7448bacb33e672229dcb82cfd1ac9ea9" + }, + { + "path": "png/denon.png", + "mode": "100644", + "type": "blob", + "sha": "ea4cdea6c3d3a4740f8ba38038a90d90f29cce1b", + "size": 38769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea4cdea6c3d3a4740f8ba38038a90d90f29cce1b" + }, + { + "path": "png/deployarr.png", + "mode": "100644", + "type": "blob", + "sha": "582a08b695b682340fa317e14d87d48c6bfa30ce", + "size": 14787, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/582a08b695b682340fa317e14d87d48c6bfa30ce" + }, + { + "path": "png/develancacheui.png", + "mode": "100644", + "type": "blob", + "sha": "788063ab345674181a1817f9bdc21158defa022f", + "size": 3213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/788063ab345674181a1817f9bdc21158defa022f" + }, + { + "path": "png/devtooly-light.png", + "mode": "100644", + "type": "blob", + "sha": "3270c97ebf7688b9c70a141522d2899c28cde637", + "size": 13861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3270c97ebf7688b9c70a141522d2899c28cde637" + }, + { + "path": "png/devtooly.png", + "mode": "100644", + "type": "blob", + "sha": "fc223560a7939f320aa732a5842d14278b784989", + "size": 13407, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc223560a7939f320aa732a5842d14278b784989" + }, + { + "path": "png/dia.png", + "mode": "100644", + "type": "blob", + "sha": "0ddd28ce9c19865f3954259f3b0e3ff082aeff9e", + "size": 52281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ddd28ce9c19865f3954259f3b0e3ff082aeff9e" + }, + { + "path": "png/diagrams-net.png", + "mode": "100644", + "type": "blob", + "sha": "99714d5753a3c61d033f807b2be19c7a415d9f4d", + "size": 10519, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99714d5753a3c61d033f807b2be19c7a415d9f4d" + }, + { + "path": "png/diamond-aircraft.png", + "mode": "100644", + "type": "blob", + "sha": "07596e3b265e54a0849d726ad33bb36d30989f8a", + "size": 91601, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07596e3b265e54a0849d726ad33bb36d30989f8a" + }, + { + "path": "png/dietpi.png", + "mode": "100644", + "type": "blob", + "sha": "a0d5c56b471b70c3973f7ba8faec18b98dba9af8", + "size": 97385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0d5c56b471b70c3973f7ba8faec18b98dba9af8" + }, + { + "path": "png/digi-kam.png", + "mode": "100644", + "type": "blob", + "sha": "ed2de9fab1f89e44968823f40a2c3a9e467f55d5", + "size": 177360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed2de9fab1f89e44968823f40a2c3a9e467f55d5" + }, + { + "path": "png/digikey.png", + "mode": "100644", + "type": "blob", + "sha": "563f9acafe0c32b8aa748b0f770a02adda7d6455", + "size": 9992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/563f9acafe0c32b8aa748b0f770a02adda7d6455" + }, + { + "path": "png/digital-ocean.png", + "mode": "100644", + "type": "blob", + "sha": "0d51d281686113dd0e7951d8efd4f3e4c05996d5", + "size": 12900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d51d281686113dd0e7951d8efd4f3e4c05996d5" + }, + { + "path": "png/dilg.png", + "mode": "100644", + "type": "blob", + "sha": "037b8035cc5e47043c60254aa73c872e352109f5", + "size": 95142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/037b8035cc5e47043c60254aa73c872e352109f5" + }, + { + "path": "png/dillinger-light.png", + "mode": "100644", + "type": "blob", + "sha": "58854cf25986db65d4cad7c86f891e777a3cebbf", + "size": 9493, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58854cf25986db65d4cad7c86f891e777a3cebbf" + }, + { + "path": "png/dillinger.png", + "mode": "100644", + "type": "blob", + "sha": "2706f7d3ded6234e9a1cbe76c6c9a6daab9ecdaa", + "size": 8871, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2706f7d3ded6234e9a1cbe76c6c9a6daab9ecdaa" + }, + { + "path": "png/dim-light.png", + "mode": "100644", + "type": "blob", + "sha": "baf83e8cd07e920adf66ab0bf960e8923ef57c29", + "size": 6498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/baf83e8cd07e920adf66ab0bf960e8923ef57c29" + }, + { + "path": "png/dim.png", + "mode": "100644", + "type": "blob", + "sha": "6ca222dc693491f4f98908d61826729d36556b7e", + "size": 6522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ca222dc693491f4f98908d61826729d36556b7e" + }, + { + "path": "png/diners-club.png", + "mode": "100644", + "type": "blob", + "sha": "891833e49b0b40c39fbe27e8faed62a378a27d2c", + "size": 21288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/891833e49b0b40c39fbe27e8faed62a378a27d2c" + }, + { + "path": "png/directadmin.png", + "mode": "100644", + "type": "blob", + "sha": "76a8450663d4195761cd27ed1592d78171c72d40", + "size": 7674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76a8450663d4195761cd27ed1592d78171c72d40" + }, + { + "path": "png/directus.png", + "mode": "100644", + "type": "blob", + "sha": "bdedce6cd97ff3d8fcb20dc7442581913b9cbee3", + "size": 80451, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdedce6cd97ff3d8fcb20dc7442581913b9cbee3" + }, + { + "path": "png/discord.png", + "mode": "100644", + "type": "blob", + "sha": "a82dbc6456b497d13ce0c7536912bace1275fb27", + "size": 22514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a82dbc6456b497d13ce0c7536912bace1275fb27" + }, + { + "path": "png/discourse-light.png", + "mode": "100644", + "type": "blob", + "sha": "b63b6d0038ce7dbff4e3d777917335bda5123846", + "size": 28108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b63b6d0038ce7dbff4e3d777917335bda5123846" + }, + { + "path": "png/discourse.png", + "mode": "100644", + "type": "blob", + "sha": "f63708faace0c9c54591f04b7ed31307f07ceb16", + "size": 26897, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f63708faace0c9c54591f04b7ed31307f07ceb16" + }, + { + "path": "png/diskover.png", + "mode": "100644", + "type": "blob", + "sha": "6b1b112e73bc3b3bee68931c863cd2acb2f10887", + "size": 19886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b1b112e73bc3b3bee68931c863cd2acb2f10887" + }, + { + "path": "png/disney-plus.png", + "mode": "100644", + "type": "blob", + "sha": "aab4f4df58398cc8b24db67e7a4ed7d9eb9755d5", + "size": 27682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aab4f4df58398cc8b24db67e7a4ed7d9eb9755d5" + }, + { + "path": "png/dispatcharr.png", + "mode": "100644", + "type": "blob", + "sha": "3c78f7bb83d177432fb5ccb6b648e4600001580f", + "size": 15407, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c78f7bb83d177432fb5ccb6b648e4600001580f" + }, + { + "path": "png/distribution.png", + "mode": "100644", + "type": "blob", + "sha": "4b1fb74e76c35bf89b13ec59403331b813348d8f", + "size": 20097, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b1fb74e76c35bf89b13ec59403331b813348d8f" + }, + { + "path": "png/diun.png", + "mode": "100644", + "type": "blob", + "sha": "bd8197b9ee9708126a3fd4a1229f7ebff34aa370", + "size": 140890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd8197b9ee9708126a3fd4a1229f7ebff34aa370" + }, + { + "path": "png/dixa.png", + "mode": "100644", + "type": "blob", + "sha": "36368273eeb5f6be6f5faccae18f6ac6e2671893", + "size": 5907, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36368273eeb5f6be6f5faccae18f6ac6e2671893" + }, + { + "path": "png/diyhue.png", + "mode": "100644", + "type": "blob", + "sha": "f1b63669724f8476ac8e9e5fef87abe73fd7bab7", + "size": 22549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1b63669724f8476ac8e9e5fef87abe73fd7bab7" + }, + { + "path": "png/dlna.png", + "mode": "100644", + "type": "blob", + "sha": "fd9e6b9a8b8ffecf5480f2110626713fa62116dd", + "size": 24703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd9e6b9a8b8ffecf5480f2110626713fa62116dd" + }, + { + "path": "png/docassemble-light.png", + "mode": "100644", + "type": "blob", + "sha": "32601bf565e6dad5cde96082216017b2dfdb3878", + "size": 18102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32601bf565e6dad5cde96082216017b2dfdb3878" + }, + { + "path": "png/docassemble.png", + "mode": "100644", + "type": "blob", + "sha": "03a6af49ab112c281f942d1e35c2f3939ba00a59", + "size": 16226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03a6af49ab112c281f942d1e35c2f3939ba00a59" + }, + { + "path": "png/docker-amd.png", + "mode": "100644", + "type": "blob", + "sha": "7301bf4a8380e88129146bc6d11a028b2e459f6b", + "size": 19238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7301bf4a8380e88129146bc6d11a028b2e459f6b" + }, + { + "path": "png/docker-amvd.png", + "mode": "100644", + "type": "blob", + "sha": "693fdaad30e31c2013e4bcc60d0355b5bd27a271", + "size": 13508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/693fdaad30e31c2013e4bcc60d0355b5bd27a271" + }, + { + "path": "png/docker-compose.png", + "mode": "100644", + "type": "blob", + "sha": "26b7b6146c57cfa53a6dbe52b33e8abae5b7d330", + "size": 101734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26b7b6146c57cfa53a6dbe52b33e8abae5b7d330" + }, + { + "path": "png/docker-engine.png", + "mode": "100644", + "type": "blob", + "sha": "aeadd22947b794a222d24bb1f695d2a5f96cabcd", + "size": 13041, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aeadd22947b794a222d24bb1f695d2a5f96cabcd" + }, + { + "path": "png/docker-gc.png", + "mode": "100644", + "type": "blob", + "sha": "cd797cf54cd3a0db836c70cd89b184d6817bcc5e", + "size": 22197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd797cf54cd3a0db836c70cd89b184d6817bcc5e" + }, + { + "path": "png/docker-mailserver-light.png", + "mode": "100644", + "type": "blob", + "sha": "63e9d4d21faf3bb529cde4cded3c52d0f4554dc8", + "size": 31222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63e9d4d21faf3bb529cde4cded3c52d0f4554dc8" + }, + { + "path": "png/docker-mailserver.png", + "mode": "100644", + "type": "blob", + "sha": "79d7e09c3a4b1c49fa58763211c8d8fc4685908d", + "size": 34220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79d7e09c3a4b1c49fa58763211c8d8fc4685908d" + }, + { + "path": "png/docker-moby.png", + "mode": "100644", + "type": "blob", + "sha": "89f0dccf690e4d50950d20e03dbb83c5a97f036e", + "size": 30293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89f0dccf690e4d50950d20e03dbb83c5a97f036e" + }, + { + "path": "png/docker-volume-backup.png", + "mode": "100644", + "type": "blob", + "sha": "a65da668723cb199d232345318c5443cbc779208", + "size": 9039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a65da668723cb199d232345318c5443cbc779208" + }, + { + "path": "png/docker.png", + "mode": "100644", + "type": "blob", + "sha": "aeadd22947b794a222d24bb1f695d2a5f96cabcd", + "size": 13041, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aeadd22947b794a222d24bb1f695d2a5f96cabcd" + }, + { + "path": "png/dockge.png", + "mode": "100644", + "type": "blob", + "sha": "9f517afbb01c2a6652924ba4a5e3510acd59f29c", + "size": 28288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f517afbb01c2a6652924ba4a5e3510acd59f29c" + }, + { + "path": "png/docking-station.png", + "mode": "100644", + "type": "blob", + "sha": "f3ef853f86ab8b960e843a7b677fc85c012beedc", + "size": 16957, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3ef853f86ab8b960e843a7b677fc85c012beedc" + }, + { + "path": "png/dockpeek-dark.png", + "mode": "100644", + "type": "blob", + "sha": "7fa91cb674ced98bb9de9ad5ae5656c5460f6047", + "size": 15387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fa91cb674ced98bb9de9ad5ae5656c5460f6047" + }, + { + "path": "png/dockpeek.png", + "mode": "100644", + "type": "blob", + "sha": "51f7a2f7cdb87c1ba4757b65e58a8bd924806a25", + "size": 15463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51f7a2f7cdb87c1ba4757b65e58a8bd924806a25" + }, + { + "path": "png/dockstarter.png", + "mode": "100644", + "type": "blob", + "sha": "b81ad7569934ca7e87988c78a81381a230755364", + "size": 10714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b81ad7569934ca7e87988c78a81381a230755364" + }, + { + "path": "png/dockwatch.png", + "mode": "100644", + "type": "blob", + "sha": "e145190a1fca9fc19751f283e880cfd41c67d133", + "size": 252490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e145190a1fca9fc19751f283e880cfd41c67d133" + }, + { + "path": "png/docmost.png", + "mode": "100644", + "type": "blob", + "sha": "740e90d2b29f8e9588e9aab32a3842ecee8fa4f7", + "size": 9938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/740e90d2b29f8e9588e9aab32a3842ecee8fa4f7" + }, + { + "path": "png/docsify.png", + "mode": "100644", + "type": "blob", + "sha": "56430d3d407e749589a7f48c3262a131eda7725b", + "size": 29562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56430d3d407e749589a7f48c3262a131eda7725b" + }, + { + "path": "png/docspell.png", + "mode": "100644", + "type": "blob", + "sha": "2ae27db35748311d771913ca1e53e4a302f6751f", + "size": 28659, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ae27db35748311d771913ca1e53e4a302f6751f" + }, + { + "path": "png/documenso.png", + "mode": "100644", + "type": "blob", + "sha": "051f30a8a81f9fc129023cbf9b2ab9c0e39a8200", + "size": 34451, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/051f30a8a81f9fc129023cbf9b2ab9c0e39a8200" + }, + { + "path": "png/docusaurus.png", + "mode": "100644", + "type": "blob", + "sha": "3ec10876ad775df15b2ae4e74a9ccf970919fc36", + "size": 29653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ec10876ad775df15b2ae4e74a9ccf970919fc36" + }, + { + "path": "png/docuseal.png", + "mode": "100644", + "type": "blob", + "sha": "41cde2929b56567e61f8d9413a1497ef4f5fe4fa", + "size": 29268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41cde2929b56567e61f8d9413a1497ef4f5fe4fa" + }, + { + "path": "png/dogpile.png", + "mode": "100644", + "type": "blob", + "sha": "89cd04e1b642e9af005bf6b539aecaebfebb1614", + "size": 6602, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89cd04e1b642e9af005bf6b539aecaebfebb1614" + }, + { + "path": "png/dokemon.png", + "mode": "100644", + "type": "blob", + "sha": "ff8ea910b5e417cc2c7babe4d93d9ef7419694ee", + "size": 18440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff8ea910b5e417cc2c7babe4d93d9ef7419694ee" + }, + { + "path": "png/dokploy-dark.png", + "mode": "100644", + "type": "blob", + "sha": "a8d669061af40acbcff6ddc906dbbbd531ac5c24", + "size": 18024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8d669061af40acbcff6ddc906dbbbd531ac5c24" + }, + { + "path": "png/dokploy.png", + "mode": "100644", + "type": "blob", + "sha": "cde90706db7079651fb88d755b4410a56b9ae03a", + "size": 18024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cde90706db7079651fb88d755b4410a56b9ae03a" + }, + { + "path": "png/dokuwiki.png", + "mode": "100644", + "type": "blob", + "sha": "1d1f8cb7a08ed7455619994fa8b344a356f365d4", + "size": 106432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d1f8cb7a08ed7455619994fa8b344a356f365d4" + }, + { + "path": "png/dolibarr.png", + "mode": "100644", + "type": "blob", + "sha": "09858c14bf2aecc0b4c76714d04665d8048e362e", + "size": 2556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09858c14bf2aecc0b4c76714d04665d8048e362e" + }, + { + "path": "png/dolphin.png", + "mode": "100644", + "type": "blob", + "sha": "86fb9db2a09d37f53dfbae78e9037365140c864a", + "size": 23367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86fb9db2a09d37f53dfbae78e9037365140c864a" + }, + { + "path": "png/domainmod.png", + "mode": "100644", + "type": "blob", + "sha": "efb6866e375b0ff64860b846060ddacc12954681", + "size": 23425, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efb6866e375b0ff64860b846060ddacc12954681" + }, + { + "path": "png/domoticz.png", + "mode": "100644", + "type": "blob", + "sha": "d618b6e8227bb331a6413d9f42ee80171495cc4c", + "size": 8027, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d618b6e8227bb331a6413d9f42ee80171495cc4c" + }, + { + "path": "png/donetick.png", + "mode": "100644", + "type": "blob", + "sha": "01e2753ddd62ecb796d87353f97b2384a818b871", + "size": 23873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01e2753ddd62ecb796d87353f97b2384a818b871" + }, + { + "path": "png/doplarr.png", + "mode": "100644", + "type": "blob", + "sha": "e65e43fe0f964f15ee13e69fef973266fde3e0dd", + "size": 23139, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e65e43fe0f964f15ee13e69fef973266fde3e0dd" + }, + { + "path": "png/doppler.png", + "mode": "100644", + "type": "blob", + "sha": "58a8fc01a993430a4f4db7970a096c372e8a5ee0", + "size": 88388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58a8fc01a993430a4f4db7970a096c372e8a5ee0" + }, + { + "path": "png/dopplertask.png", + "mode": "100644", + "type": "blob", + "sha": "f0bb897e7bfdc84d5f7cf3236f5ad74e69034378", + "size": 6798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0bb897e7bfdc84d5f7cf3236f5ad74e69034378" + }, + { + "path": "png/double-commander.png", + "mode": "100644", + "type": "blob", + "sha": "55d4bfe39ae436202e40678f0fe338534ea7b43f", + "size": 29757, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55d4bfe39ae436202e40678f0fe338534ea7b43f" + }, + { + "path": "png/double-take-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4aaccb7b5e35c3091f83865ce748ab1d1b271fbc", + "size": 17335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4aaccb7b5e35c3091f83865ce748ab1d1b271fbc" + }, + { + "path": "png/double-take.png", + "mode": "100644", + "type": "blob", + "sha": "6750acb8d9e093f9ace5aa6b5f1af8ae5a63b697", + "size": 17491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6750acb8d9e093f9ace5aa6b5f1af8ae5a63b697" + }, + { + "path": "png/dovecot.png", + "mode": "100644", + "type": "blob", + "sha": "7821ecf89a75f3c1b1c1519e4492f5df2d65a0cf", + "size": 41997, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7821ecf89a75f3c1b1c1519e4492f5df2d65a0cf" + }, + { + "path": "png/dozzle.png", + "mode": "100644", + "type": "blob", + "sha": "3d19b08c9331b4494ce4809975003e28910b14e7", + "size": 44624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d19b08c9331b4494ce4809975003e28910b14e7" + }, + { + "path": "png/dragon-ruby.png", + "mode": "100644", + "type": "blob", + "sha": "d31e258580e2de4d4708f4cd063bc5fcb45acc4f", + "size": 39311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d31e258580e2de4d4708f4cd063bc5fcb45acc4f" + }, + { + "path": "png/draw-io.png", + "mode": "100644", + "type": "blob", + "sha": "d60f342f9b21a354a8ba6c590f657eb3581cc5ff", + "size": 11920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d60f342f9b21a354a8ba6c590f657eb3581cc5ff" + }, + { + "path": "png/draytek.png", + "mode": "100644", + "type": "blob", + "sha": "5819ad2d9f1c50009f3e76bbfabd61eef6d88da0", + "size": 64003, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5819ad2d9f1c50009f3e76bbfabd61eef6d88da0" + }, + { + "path": "png/dream-host-dark.png", + "mode": "100644", + "type": "blob", + "sha": "5ccc5b05fa013111bfeeba69e72eccb173f725e1", + "size": 12331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ccc5b05fa013111bfeeba69e72eccb173f725e1" + }, + { + "path": "png/dream-host.png", + "mode": "100644", + "type": "blob", + "sha": "e71a86e02ebf2e9a1ad21160ac1703d97f166dab", + "size": 14992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e71a86e02ebf2e9a1ad21160ac1703d97f166dab" + }, + { + "path": "png/drone.png", + "mode": "100644", + "type": "blob", + "sha": "e58078336fc5b78d86665b4a853d135501f5d156", + "size": 9788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e58078336fc5b78d86665b4a853d135501f5d156" + }, + { + "path": "png/drop.png", + "mode": "100644", + "type": "blob", + "sha": "0bcc7ba2b014a588470edadb64766470e33caffa", + "size": 7846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bcc7ba2b014a588470edadb64766470e33caffa" + }, + { + "path": "png/dropbox.png", + "mode": "100644", + "type": "blob", + "sha": "706397f45b26b5ab13d9582d49692b939d8b8ce3", + "size": 8234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/706397f45b26b5ab13d9582d49692b939d8b8ce3" + }, + { + "path": "png/dropout-light.png", + "mode": "100644", + "type": "blob", + "sha": "84c356e6aeccf07cf91ecf553a34d2ef7196f33b", + "size": 9742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84c356e6aeccf07cf91ecf553a34d2ef7196f33b" + }, + { + "path": "png/dropout.png", + "mode": "100644", + "type": "blob", + "sha": "5a0a68aab23852e9b2713e3d5fd324dc0e4495fc", + "size": 10798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a0a68aab23852e9b2713e3d5fd324dc0e4495fc" + }, + { + "path": "png/droppy-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ec7a4fe1166c97290d48fdba8f781d219baa0262", + "size": 4143, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec7a4fe1166c97290d48fdba8f781d219baa0262" + }, + { + "path": "png/droppy.png", + "mode": "100644", + "type": "blob", + "sha": "3871fefd22957014c0bf64898108ad9119d7a9a9", + "size": 4166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3871fefd22957014c0bf64898108ad9119d7a9a9" + }, + { + "path": "png/dub-light.png", + "mode": "100644", + "type": "blob", + "sha": "181e6e25ee4888ea760d6876662e03e1649da019", + "size": 13508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/181e6e25ee4888ea760d6876662e03e1649da019" + }, + { + "path": "png/dub.png", + "mode": "100644", + "type": "blob", + "sha": "1bc4433d895e5c8d46794e32052522563bdb6a56", + "size": 12560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bc4433d895e5c8d46794e32052522563bdb6a56" + }, + { + "path": "png/duckdns-light.png", + "mode": "100644", + "type": "blob", + "sha": "f8b1078ead16db6cae051bdb0bef69f07f1cf021", + "size": 22075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8b1078ead16db6cae051bdb0bef69f07f1cf021" + }, + { + "path": "png/duckdns.png", + "mode": "100644", + "type": "blob", + "sha": "8391a09c843f3e8d397db52e7470eb1006fd5499", + "size": 26051, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8391a09c843f3e8d397db52e7470eb1006fd5499" + }, + { + "path": "png/duckduckgo.png", + "mode": "100644", + "type": "blob", + "sha": "089314ad7b614b9fe63ff84d0f925fd5cb7c64c0", + "size": 50539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/089314ad7b614b9fe63ff84d0f925fd5cb7c64c0" + }, + { + "path": "png/dumbassets.png", + "mode": "100644", + "type": "blob", + "sha": "5354248bf2f3e01d4d812af3fd38f20c45e2cb9a", + "size": 18926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5354248bf2f3e01d4d812af3fd38f20c45e2cb9a" + }, + { + "path": "png/dumbpad.png", + "mode": "100644", + "type": "blob", + "sha": "711e5ad6ba8aa58e3458e127b695c04a36545d91", + "size": 17599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/711e5ad6ba8aa58e3458e127b695c04a36545d91" + }, + { + "path": "png/duo.png", + "mode": "100644", + "type": "blob", + "sha": "9b1aef5e7e341ce9830c70fc94fdd909cdda6f65", + "size": 24860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b1aef5e7e341ce9830c70fc94fdd909cdda6f65" + }, + { + "path": "png/duplicacy.png", + "mode": "100644", + "type": "blob", + "sha": "3b82da54c267b546a182fa61213f2f252ad2eea7", + "size": 53521, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b82da54c267b546a182fa61213f2f252ad2eea7" + }, + { + "path": "png/duplicati.png", + "mode": "100644", + "type": "blob", + "sha": "7ea230174c9faea8385c46cea48b238dee76364f", + "size": 9876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ea230174c9faea8385c46cea48b238dee76364f" + }, + { + "path": "png/dynmap.png", + "mode": "100644", + "type": "blob", + "sha": "4f09e54ca921f5bc5aed4e860446595f51be1e66", + "size": 297575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f09e54ca921f5bc5aed4e860446595f51be1e66" + }, + { + "path": "png/easy-gate-light.png", + "mode": "100644", + "type": "blob", + "sha": "ec76248bcc315246c539da321d49733df7ee993d", + "size": 17665, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec76248bcc315246c539da321d49733df7ee993d" + }, + { + "path": "png/easy-gate.png", + "mode": "100644", + "type": "blob", + "sha": "42faf52ea92db6416eb886c17a9944e4ee5adf44", + "size": 21138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42faf52ea92db6416eb886c17a9944e4ee5adf44" + }, + { + "path": "png/ebay.png", + "mode": "100644", + "type": "blob", + "sha": "ba435755e63e12616b35ac682a906bb0c3bed32d", + "size": 43771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba435755e63e12616b35ac682a906bb0c3bed32d" + }, + { + "path": "png/eblocker.png", + "mode": "100644", + "type": "blob", + "sha": "ed6ed3274ed3b335775a59f4c678cf9d4b5d997c", + "size": 15658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed6ed3274ed3b335775a59f4c678cf9d4b5d997c" + }, + { + "path": "png/edge-dev.png", + "mode": "100644", + "type": "blob", + "sha": "72c2c8161a7c515c06e3024cc6b2a6b9c9613119", + "size": 84260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72c2c8161a7c515c06e3024cc6b2a6b9c9613119" + }, + { + "path": "png/edge.png", + "mode": "100644", + "type": "blob", + "sha": "38fb979ca0a7adc19d82e69ce82fae2a5622117e", + "size": 97631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38fb979ca0a7adc19d82e69ce82fae2a5622117e" + }, + { + "path": "png/edgeos-light.png", + "mode": "100644", + "type": "blob", + "sha": "d78e871c5d9efd6435cff9dc3a8101ec09fad504", + "size": 17342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d78e871c5d9efd6435cff9dc3a8101ec09fad504" + }, + { + "path": "png/edgeos.png", + "mode": "100644", + "type": "blob", + "sha": "82abb47a054dc0f6e7eca543fb3241fd330b9025", + "size": 14449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82abb47a054dc0f6e7eca543fb3241fd330b9025" + }, + { + "path": "png/eitaa.png", + "mode": "100644", + "type": "blob", + "sha": "c0e0a486f02d94efd09866713a7122f1a44b5e88", + "size": 11331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0e0a486f02d94efd09866713a7122f1a44b5e88" + }, + { + "path": "png/elastic-beats.png", + "mode": "100644", + "type": "blob", + "sha": "ef58541e6b4ef3f685c2c2ac1421bc3bb085be20", + "size": 9620, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef58541e6b4ef3f685c2c2ac1421bc3bb085be20" + }, + { + "path": "png/elastic-kibana.png", + "mode": "100644", + "type": "blob", + "sha": "a5bd89ad7985a72dadbf87cd571e459122fc23a6", + "size": 12813, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5bd89ad7985a72dadbf87cd571e459122fc23a6" + }, + { + "path": "png/elastic-logstash.png", + "mode": "100644", + "type": "blob", + "sha": "a42eab76e471d0961988e0d9239325442cb916ef", + "size": 7397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a42eab76e471d0961988e0d9239325442cb916ef" + }, + { + "path": "png/elastic.png", + "mode": "100644", + "type": "blob", + "sha": "60a12b84b43ec60d271468fed6086932a50fb26d", + "size": 32697, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a12b84b43ec60d271468fed6086932a50fb26d" + }, + { + "path": "png/elasticsearch.png", + "mode": "100644", + "type": "blob", + "sha": "60a12b84b43ec60d271468fed6086932a50fb26d", + "size": 32697, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a12b84b43ec60d271468fed6086932a50fb26d" + }, + { + "path": "png/electron.png", + "mode": "100644", + "type": "blob", + "sha": "1880262f6d78e78d01ce3c21a9262869353f9649", + "size": 42367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1880262f6d78e78d01ce3c21a9262869353f9649" + }, + { + "path": "png/electronic-arts.png", + "mode": "100644", + "type": "blob", + "sha": "4aa127c9747e8332dc5436d1996f70921e1f39e6", + "size": 17409, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4aa127c9747e8332dc5436d1996f70921e1f39e6" + }, + { + "path": "png/electrum.png", + "mode": "100644", + "type": "blob", + "sha": "d8290e97d5705a88a3acf0074d486c7fc04f50c1", + "size": 35258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8290e97d5705a88a3acf0074d486c7fc04f50c1" + }, + { + "path": "png/element.png", + "mode": "100644", + "type": "blob", + "sha": "679e45044b15e97aa8cc282f27776ef10ff2f2b7", + "size": 22654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/679e45044b15e97aa8cc282f27776ef10ff2f2b7" + }, + { + "path": "png/eleventy-light.png", + "mode": "100644", + "type": "blob", + "sha": "350c89d5ffd38e0e2b9005066c875d90eb8e3a68", + "size": 13176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/350c89d5ffd38e0e2b9005066c875d90eb8e3a68" + }, + { + "path": "png/eleventy.png", + "mode": "100644", + "type": "blob", + "sha": "ce14524d02fb66e78b2e7679c93a023cb5431392", + "size": 17394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce14524d02fb66e78b2e7679c93a023cb5431392" + }, + { + "path": "png/elgato-wave-link.png", + "mode": "100644", + "type": "blob", + "sha": "9b2b8086cd540c45fce4729eb544de2c384db9c1", + "size": 30930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b2b8086cd540c45fce4729eb544de2c384db9c1" + }, + { + "path": "png/eliza-os.png", + "mode": "100644", + "type": "blob", + "sha": "9c7adbbb44eba3669073966b37f9bca3bbd3f57b", + "size": 19536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c7adbbb44eba3669073966b37f9bca3bbd3f57b" + }, + { + "path": "png/elysian.png", + "mode": "100644", + "type": "blob", + "sha": "9870898e1a2f76d3c79d904d0ba0a49501a0eeb1", + "size": 142063, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9870898e1a2f76d3c79d904d0ba0a49501a0eeb1" + }, + { + "path": "png/emacs.png", + "mode": "100644", + "type": "blob", + "sha": "f0f865956f6b2de84202f554dc8687e3fe65cbd4", + "size": 57176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0f865956f6b2de84202f554dc8687e3fe65cbd4" + }, + { + "path": "png/embraer.png", + "mode": "100644", + "type": "blob", + "sha": "f19f0739429f269760dbb4065841c183a19977cd", + "size": 17349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f19f0739429f269760dbb4065841c183a19977cd" + }, + { + "path": "png/emby.png", + "mode": "100644", + "type": "blob", + "sha": "ad7a8cd99141c44639ca29dfdd3b095efaacdb43", + "size": 9183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad7a8cd99141c44639ca29dfdd3b095efaacdb43" + }, + { + "path": "png/embystat.png", + "mode": "100644", + "type": "blob", + "sha": "1e7b9a97dfb25a45be56ad47fc52c0be7e2e0b75", + "size": 6217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e7b9a97dfb25a45be56ad47fc52c0be7e2e0b75" + }, + { + "path": "png/emq-light.png", + "mode": "100644", + "type": "blob", + "sha": "5a13757d34f1d5128c7184ce73c2a5c3c8c87460", + "size": 33717, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a13757d34f1d5128c7184ce73c2a5c3c8c87460" + }, + { + "path": "png/emq.png", + "mode": "100644", + "type": "blob", + "sha": "36fd33ba6360ac60178da17babb82ffabe2c2084", + "size": 30794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36fd33ba6360ac60178da17babb82ffabe2c2084" + }, + { + "path": "png/emqx.png", + "mode": "100644", + "type": "blob", + "sha": "bde2374c03637e4967d63f4689b35dfe696e01f6", + "size": 11945, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bde2374c03637e4967d63f4689b35dfe696e01f6" + }, + { + "path": "png/emsesp.png", + "mode": "100644", + "type": "blob", + "sha": "4c3fc21f0c7518f38ff0a1febdf7df25f28e27ec", + "size": 12675, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c3fc21f0c7518f38ff0a1febdf7df25f28e27ec" + }, + { + "path": "png/emulatorjs.png", + "mode": "100644", + "type": "blob", + "sha": "a676160518d30d7165b9876c8aa624a57cd585ee", + "size": 42756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a676160518d30d7165b9876c8aa624a57cd585ee" + }, + { + "path": "png/enbizcard.png", + "mode": "100644", + "type": "blob", + "sha": "6a12f790513cade8d919207ef107dc16825839ca", + "size": 18265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a12f790513cade8d919207ef107dc16825839ca" + }, + { + "path": "png/enclosed-light.png", + "mode": "100644", + "type": "blob", + "sha": "938c93cf689af06dd9c41516dbe1bf9e2154e38f", + "size": 11772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/938c93cf689af06dd9c41516dbe1bf9e2154e38f" + }, + { + "path": "png/enclosed.png", + "mode": "100644", + "type": "blob", + "sha": "5425aa3e30fff9c1ffaf63aac160846541a5f1c4", + "size": 12038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5425aa3e30fff9c1ffaf63aac160846541a5f1c4" + }, + { + "path": "png/endeavouros-linux.png", + "mode": "100644", + "type": "blob", + "sha": "1c6dc3d7274d96b284c7d8b24fb2cb460cf72e93", + "size": 16475, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c6dc3d7274d96b284c7d8b24fb2cb460cf72e93" + }, + { + "path": "png/endless-light.png", + "mode": "100644", + "type": "blob", + "sha": "947cf428f16610e25d9dd361a715c082095da2da", + "size": 24545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/947cf428f16610e25d9dd361a715c082095da2da" + }, + { + "path": "png/endless.png", + "mode": "100644", + "type": "blob", + "sha": "c386e864d927260dc0ff38a0e4b0021746844bdf", + "size": 20881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c386e864d927260dc0ff38a0e4b0021746844bdf" + }, + { + "path": "png/endurain.png", + "mode": "100644", + "type": "blob", + "sha": "7270ab145b79924773b9468565bee739689ae51c", + "size": 15676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7270ab145b79924773b9468565bee739689ae51c" + }, + { + "path": "png/enhance.png", + "mode": "100644", + "type": "blob", + "sha": "83dcb9a63868bf15d2a427aff2c82253e14b9dca", + "size": 7427, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83dcb9a63868bf15d2a427aff2c82253e14b9dca" + }, + { + "path": "png/enshrouded.png", + "mode": "100644", + "type": "blob", + "sha": "4c47d0f7614eac26e1e06eeeb9b0a5673e3178a3", + "size": 362846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c47d0f7614eac26e1e06eeeb9b0a5673e3178a3" + }, + { + "path": "png/ente-photos.png", + "mode": "100644", + "type": "blob", + "sha": "957b78a441f68c6b6891c245007305c7a4541c19", + "size": 28228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/957b78a441f68c6b6891c245007305c7a4541c19" + }, + { + "path": "png/entergy.png", + "mode": "100644", + "type": "blob", + "sha": "911b35f3f72ed9bedad3595a1a028b304f4f46a8", + "size": 18619, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/911b35f3f72ed9bedad3595a1a028b304f4f46a8" + }, + { + "path": "png/epic-games-light.png", + "mode": "100644", + "type": "blob", + "sha": "229f3da2339fd35fd42ca98d2177fcde2424574a", + "size": 16676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/229f3da2339fd35fd42ca98d2177fcde2424574a" + }, + { + "path": "png/epic-games.png", + "mode": "100644", + "type": "blob", + "sha": "de2d6ef7f1c43bbb9712a0b5ea5a69317649089d", + "size": 17688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de2d6ef7f1c43bbb9712a0b5ea5a69317649089d" + }, + { + "path": "png/epson-iprint.png", + "mode": "100644", + "type": "blob", + "sha": "1e1f050eb0a488cd78ff58f7fe12ae6243cec7d7", + "size": 61142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e1f050eb0a488cd78ff58f7fe12ae6243cec7d7" + }, + { + "path": "png/ersatztv.png", + "mode": "100644", + "type": "blob", + "sha": "e952230a12a14dfe96d23c236f328ba1d5a0d223", + "size": 2065, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e952230a12a14dfe96d23c236f328ba1d5a0d223" + }, + { + "path": "png/erste-george.png", + "mode": "100644", + "type": "blob", + "sha": "22345728e99b8f41bd6dea9b0308f5c68bfa4fb4", + "size": 15555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22345728e99b8f41bd6dea9b0308f5c68bfa4fb4" + }, + { + "path": "png/erste.png", + "mode": "100644", + "type": "blob", + "sha": "6d353be79172bb3fa0f7663e4213a7a0c35f455e", + "size": 29423, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d353be79172bb3fa0f7663e4213a7a0c35f455e" + }, + { + "path": "png/esphome-alt-light.png", + "mode": "100644", + "type": "blob", + "sha": "44765adf87722a84d8592b723584b132eea98bdb", + "size": 18583, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44765adf87722a84d8592b723584b132eea98bdb" + }, + { + "path": "png/esphome-alt.png", + "mode": "100644", + "type": "blob", + "sha": "ff109185a6585c70f52379f3a74dc173800cb066", + "size": 15755, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff109185a6585c70f52379f3a74dc173800cb066" + }, + { + "path": "png/esphome-light.png", + "mode": "100644", + "type": "blob", + "sha": "3b5f1c3f1113e57449828232243f5471e74c5101", + "size": 8411, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b5f1c3f1113e57449828232243f5471e74c5101" + }, + { + "path": "png/esphome.png", + "mode": "100644", + "type": "blob", + "sha": "fbf43c81b7d98dd87c9ecf1add474e548e5960fa", + "size": 8306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbf43c81b7d98dd87c9ecf1add474e548e5960fa" + }, + { + "path": "png/espocrm.png", + "mode": "100644", + "type": "blob", + "sha": "04fb51cd9f2b7a4f32c88e675197a57b86a24611", + "size": 13217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04fb51cd9f2b7a4f32c88e675197a57b86a24611" + }, + { + "path": "png/espressif.png", + "mode": "100644", + "type": "blob", + "sha": "25addfbea7a0ad4a675da46d26bf33fa70f20468", + "size": 39567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25addfbea7a0ad4a675da46d26bf33fa70f20468" + }, + { + "path": "png/etcd.png", + "mode": "100644", + "type": "blob", + "sha": "c6b8adfd5d9e991aac11e09f2ccdf81ca3a5d979", + "size": 24631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6b8adfd5d9e991aac11e09f2ccdf81ca3a5d979" + }, + { + "path": "png/etesync.png", + "mode": "100644", + "type": "blob", + "sha": "5e831476292d8c7cfdb44745c7c09437719dcce4", + "size": 22874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e831476292d8c7cfdb44745c7c09437719dcce4" + }, + { + "path": "png/ethereum.png", + "mode": "100644", + "type": "blob", + "sha": "504c0a87a9a744d0fa8f0d9c8fd45d835e26b073", + "size": 17051, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/504c0a87a9a744d0fa8f0d9c8fd45d835e26b073" + }, + { + "path": "png/etherpad.png", + "mode": "100644", + "type": "blob", + "sha": "dae7094320fe474e66d11ff9baf2dcdb8d5c8175", + "size": 16357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dae7094320fe474e66d11ff9baf2dcdb8d5c8175" + }, + { + "path": "png/evcc.png", + "mode": "100644", + "type": "blob", + "sha": "fbf2f9cc28b718e1531860d9357f48ceb509fd6b", + "size": 9871, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbf2f9cc28b718e1531860d9357f48ceb509fd6b" + }, + { + "path": "png/evebox.png", + "mode": "100644", + "type": "blob", + "sha": "e8e50bfd498cfecec8cd9c37fa885799c6b7046c", + "size": 3012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8e50bfd498cfecec8cd9c37fa885799c6b7046c" + }, + { + "path": "png/evernote.png", + "mode": "100644", + "type": "blob", + "sha": "f1ced038bb594321f7314c987921dd02f3c5efa7", + "size": 7203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1ced038bb594321f7314c987921dd02f3c5efa7" + }, + { + "path": "png/eweka.png", + "mode": "100644", + "type": "blob", + "sha": "ec49957c87e6181626d1af18ed357db6543e87dd", + "size": 15409, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec49957c87e6181626d1af18ed357db6543e87dd" + }, + { + "path": "png/excalidraw.png", + "mode": "100644", + "type": "blob", + "sha": "097e83401f91054c241e67584570d2da9db23e5c", + "size": 41890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/097e83401f91054c241e67584570d2da9db23e5c" + }, + { + "path": "png/exercism-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ff192a82237cab0cbc279d67272104fa138e7285", + "size": 8761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff192a82237cab0cbc279d67272104fa138e7285" + }, + { + "path": "png/exercism.png", + "mode": "100644", + "type": "blob", + "sha": "078188ce0bb5e65d6faa39f25365a837bb287de8", + "size": 8761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/078188ce0bb5e65d6faa39f25365a837bb287de8" + }, + { + "path": "png/expense-owl.png", + "mode": "100644", + "type": "blob", + "sha": "4028d780425d7434b96b9b69cfb36f2fdcd9d2d3", + "size": 295679, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4028d780425d7434b96b9b69cfb36f2fdcd9d2d3" + }, + { + "path": "png/ezbookkeeping.png", + "mode": "100644", + "type": "blob", + "sha": "b3a3b5bc6ffb961bf42cfc7d2d0acf73304f4751", + "size": 63637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3a3b5bc6ffb961bf42cfc7d2d0acf73304f4751" + }, + { + "path": "png/f-droid.png", + "mode": "100644", + "type": "blob", + "sha": "be4f0458591d7accb47fe1279a81b388f7198b89", + "size": 38926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be4f0458591d7accb47fe1279a81b388f7198b89" + }, + { + "path": "png/f1-dash.png", + "mode": "100644", + "type": "blob", + "sha": "501d34dda25ed0c0c801e5aa8dc3634cd2c48485", + "size": 26288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/501d34dda25ed0c0c801e5aa8dc3634cd2c48485" + }, + { + "path": "png/f5-networks.png", + "mode": "100644", + "type": "blob", + "sha": "894fd493aaf0a3b55b6512a8d742c8bac46d0cdb", + "size": 10623, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/894fd493aaf0a3b55b6512a8d742c8bac46d0cdb" + }, + { + "path": "png/facebook-messenger.png", + "mode": "100644", + "type": "blob", + "sha": "8d47f2494ec229aa666c545dfc0bcc522c5834f0", + "size": 70307, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d47f2494ec229aa666c545dfc0bcc522c5834f0" + }, + { + "path": "png/facebook.png", + "mode": "100644", + "type": "blob", + "sha": "0479c198923649e2fbb337c1886e3bb7a923e3ea", + "size": 15950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0479c198923649e2fbb337c1886e3bb7a923e3ea" + }, + { + "path": "png/falcon-christmas.png", + "mode": "100644", + "type": "blob", + "sha": "535875fbe73449cc97a3a33df2113f9d0d3c3cdb", + "size": 26011, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/535875fbe73449cc97a3a33df2113f9d0d3c3cdb" + }, + { + "path": "png/falcon-player-dark.png", + "mode": "100644", + "type": "blob", + "sha": "0d36628eea5f80c04e61bb9a82476de1dceb26c7", + "size": 13282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d36628eea5f80c04e61bb9a82476de1dceb26c7" + }, + { + "path": "png/falcon-player.png", + "mode": "100644", + "type": "blob", + "sha": "a91812bfd1d8b09902e96e6f40225803e0b15aed", + "size": 26971, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a91812bfd1d8b09902e96e6f40225803e0b15aed" + }, + { + "path": "png/fast-com-light.png", + "mode": "100644", + "type": "blob", + "sha": "57529c39aed566f3993075a6a347a37a605f03fd", + "size": 29009, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57529c39aed566f3993075a6a347a37a605f03fd" + }, + { + "path": "png/fast-com.png", + "mode": "100644", + "type": "blob", + "sha": "d3bb7f9f2f955f65a4a43b2345c7b4d7a4f97f16", + "size": 27992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3bb7f9f2f955f65a4a43b2345c7b4d7a4f97f16" + }, + { + "path": "png/fasten-health.png", + "mode": "100644", + "type": "blob", + "sha": "4b45c4b17c57f8a7673a76829e304c17a87b8680", + "size": 10810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b45c4b17c57f8a7673a76829e304c17a87b8680" + }, + { + "path": "png/fastmail.png", + "mode": "100644", + "type": "blob", + "sha": "82de1f335e2753dd27e5fc1641629f89bffef261", + "size": 23127, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82de1f335e2753dd27e5fc1641629f89bffef261" + }, + { + "path": "png/fedora-alt.png", + "mode": "100644", + "type": "blob", + "sha": "3e3fe256c47d335862fce3176253ebb77fabf757", + "size": 14898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e3fe256c47d335862fce3176253ebb77fabf757" + }, + { + "path": "png/fedora.png", + "mode": "100644", + "type": "blob", + "sha": "80de32b7f0a69186f83b45277eac411c148613ae", + "size": 20123, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80de32b7f0a69186f83b45277eac411c148613ae" + }, + { + "path": "png/feedbase-light.png", + "mode": "100644", + "type": "blob", + "sha": "acb298d02a5b211e741b2b3c87017b1fb16767aa", + "size": 7073, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acb298d02a5b211e741b2b3c87017b1fb16767aa" + }, + { + "path": "png/feedbase.png", + "mode": "100644", + "type": "blob", + "sha": "43c6e303707b1909e5fc99f51d562491bbe2b638", + "size": 6586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43c6e303707b1909e5fc99f51d562491bbe2b638" + }, + { + "path": "png/feedbin-light.png", + "mode": "100644", + "type": "blob", + "sha": "9a14ee4cb5fd66dc6107f8a3294c264324db0f73", + "size": 20884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a14ee4cb5fd66dc6107f8a3294c264324db0f73" + }, + { + "path": "png/feedbin.png", + "mode": "100644", + "type": "blob", + "sha": "145a4dc06efc33165c25bd9492d7f1a88b655025", + "size": 17784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/145a4dc06efc33165c25bd9492d7f1a88b655025" + }, + { + "path": "png/feedly.png", + "mode": "100644", + "type": "blob", + "sha": "3704083a2114d150f396ffb3c1f0c1127fd59037", + "size": 23769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3704083a2114d150f396ffb3c1f0c1127fd59037" + }, + { + "path": "png/feedlynx-light.png", + "mode": "100644", + "type": "blob", + "sha": "4945b7756eb34d78a15f421bd46dbce2c1e7f346", + "size": 38540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4945b7756eb34d78a15f421bd46dbce2c1e7f346" + }, + { + "path": "png/feedlynx.png", + "mode": "100644", + "type": "blob", + "sha": "e247eb304d3a5e69397b68feacc138d3c70a796d", + "size": 37696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e247eb304d3a5e69397b68feacc138d3c70a796d" + }, + { + "path": "png/feishin.png", + "mode": "100644", + "type": "blob", + "sha": "5fe967eb56a15b95cae17e16703e52c5805f7e7f", + "size": 30210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fe967eb56a15b95cae17e16703e52c5805f7e7f" + }, + { + "path": "png/fenrus-light.png", + "mode": "100644", + "type": "blob", + "sha": "313248c986b74284f66822f56f579d532f38d09a", + "size": 28896, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/313248c986b74284f66822f56f579d532f38d09a" + }, + { + "path": "png/fenrus.png", + "mode": "100644", + "type": "blob", + "sha": "8582cc699862c47e91a974e322d518b9b67d4782", + "size": 47575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8582cc699862c47e91a974e322d518b9b67d4782" + }, + { + "path": "png/ferdi.png", + "mode": "100644", + "type": "blob", + "sha": "a02364b12827b59b52ddb2eba10b58ecebca2167", + "size": 32051, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a02364b12827b59b52ddb2eba10b58ecebca2167" + }, + { + "path": "png/ferdium.png", + "mode": "100644", + "type": "blob", + "sha": "74be7207dce37d0963cebe26980273b17db5e012", + "size": 34425, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74be7207dce37d0963cebe26980273b17db5e012" + }, + { + "path": "png/fermentrack.png", + "mode": "100644", + "type": "blob", + "sha": "0d96770dd6c1ddc104542ae7c41181a728bea1dc", + "size": 3097, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d96770dd6c1ddc104542ae7c41181a728bea1dc" + }, + { + "path": "png/ferretdb.png", + "mode": "100644", + "type": "blob", + "sha": "1bcaad38a2f789d768fa17b1e8503d50f6b5c06d", + "size": 27238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bcaad38a2f789d768fa17b1e8503d50f6b5c06d" + }, + { + "path": "png/fibaro.png", + "mode": "100644", + "type": "blob", + "sha": "ce8027d65b8bbf42c9ec3ac1c88e8a04dfce86b2", + "size": 64181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce8027d65b8bbf42c9ec3ac1c88e8a04dfce86b2" + }, + { + "path": "png/fidelity.png", + "mode": "100644", + "type": "blob", + "sha": "343dab38043ee75690efc816705fd77f1b045312", + "size": 14389, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/343dab38043ee75690efc816705fd77f1b045312" + }, + { + "path": "png/fider.png", + "mode": "100644", + "type": "blob", + "sha": "645b9936c67d7e10862a43cca3891719cdacc6d7", + "size": 39433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/645b9936c67d7e10862a43cca3891719cdacc6d7" + }, + { + "path": "png/figma.png", + "mode": "100644", + "type": "blob", + "sha": "84116584bebd646a6d4ce1d10445c43015cb57dc", + "size": 9954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84116584bebd646a6d4ce1d10445c43015cb57dc" + }, + { + "path": "png/filebot.png", + "mode": "100644", + "type": "blob", + "sha": "79f4bc5a5368d418b6a432aeb9e615f37a340a57", + "size": 24346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79f4bc5a5368d418b6a432aeb9e615f37a340a57" + }, + { + "path": "png/filebrowser-quantum.png", + "mode": "100644", + "type": "blob", + "sha": "d3ea34cca8a9133971a8cb27a120ba6e85524253", + "size": 5476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3ea34cca8a9133971a8cb27a120ba6e85524253" + }, + { + "path": "png/filebrowser.png", + "mode": "100644", + "type": "blob", + "sha": "0899c43000da0d13b7d2760df48d00d265de974f", + "size": 25273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0899c43000da0d13b7d2760df48d00d265de974f" + }, + { + "path": "png/filecloud.png", + "mode": "100644", + "type": "blob", + "sha": "d0ea1b1b6bf0ccfacbcf8bb58345311218bcce6d", + "size": 19932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0ea1b1b6bf0ccfacbcf8bb58345311218bcce6d" + }, + { + "path": "png/fileflows.png", + "mode": "100644", + "type": "blob", + "sha": "632464a76b3c0f5f0ef3d0e10355fc105428bb33", + "size": 25149, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/632464a76b3c0f5f0ef3d0e10355fc105428bb33" + }, + { + "path": "png/filegator.png", + "mode": "100644", + "type": "blob", + "sha": "59b72e115030fb420003ec7de111e2bafba8bc35", + "size": 18499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59b72e115030fb420003ec7de111e2bafba8bc35" + }, + { + "path": "png/filepizza.png", + "mode": "100644", + "type": "blob", + "sha": "7fe6305dfe74f5191e7ae24ed774a0834a088f46", + "size": 159163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fe6305dfe74f5191e7ae24ed774a0834a088f46" + }, + { + "path": "png/filerun.png", + "mode": "100644", + "type": "blob", + "sha": "9014b2584a57ea5ec265f2f2c04d83cc04110eec", + "size": 13556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9014b2584a57ea5ec265f2f2c04d83cc04110eec" + }, + { + "path": "png/files-community.png", + "mode": "100644", + "type": "blob", + "sha": "602bd829a1ba9c56026621bd439c484e5aa0729f", + "size": 23551, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/602bd829a1ba9c56026621bd439c484e5aa0729f" + }, + { + "path": "png/files.png", + "mode": "100644", + "type": "blob", + "sha": "172bff2d4a1a43f75254e15710fee860d44d9242", + "size": 6151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/172bff2d4a1a43f75254e15710fee860d44d9242" + }, + { + "path": "png/filestash.png", + "mode": "100644", + "type": "blob", + "sha": "210691cddf058f0c82c177347cf8b10effb0e670", + "size": 28866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/210691cddf058f0c82c177347cf8b10effb0e670" + }, + { + "path": "png/filezilla.png", + "mode": "100644", + "type": "blob", + "sha": "329b81b7ef64a7a98ace3de3e5dfc300e86b583b", + "size": 22912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/329b81b7ef64a7a98ace3de3e5dfc300e86b583b" + }, + { + "path": "png/finamp.png", + "mode": "100644", + "type": "blob", + "sha": "56bb201db9eff96cf0bbc200c9ad61b09e608c58", + "size": 35189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56bb201db9eff96cf0bbc200c9ad61b09e608c58" + }, + { + "path": "png/findroid.png", + "mode": "100644", + "type": "blob", + "sha": "ee74986941e3d76f988c27d1e31fb13f6032661e", + "size": 81022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee74986941e3d76f988c27d1e31fb13f6032661e" + }, + { + "path": "png/fios-light.png", + "mode": "100644", + "type": "blob", + "sha": "1cae25cc24dc855e8f374d9dd9badd498eb7e434", + "size": 31384, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cae25cc24dc855e8f374d9dd9badd498eb7e434" + }, + { + "path": "png/fios.png", + "mode": "100644", + "type": "blob", + "sha": "9603f9a6b0fb6005c9541626ea20e871320f71e8", + "size": 39456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9603f9a6b0fb6005c9541626ea20e871320f71e8" + }, + { + "path": "png/firebase.png", + "mode": "100644", + "type": "blob", + "sha": "2dd8af6199d575cbc3f3f9ace3db12cca4cde467", + "size": 11859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dd8af6199d575cbc3f3f9ace3db12cca4cde467" + }, + { + "path": "png/firefly-iii.png", + "mode": "100644", + "type": "blob", + "sha": "9efbace0faa11b26d8e199e8b25ee1b05368a5dc", + "size": 20931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9efbace0faa11b26d8e199e8b25ee1b05368a5dc" + }, + { + "path": "png/firefly.png", + "mode": "100644", + "type": "blob", + "sha": "9efbace0faa11b26d8e199e8b25ee1b05368a5dc", + "size": 20931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9efbace0faa11b26d8e199e8b25ee1b05368a5dc" + }, + { + "path": "png/firefox-beta.png", + "mode": "100644", + "type": "blob", + "sha": "99b598ecfcbcab8c41f2b48d1de2167828ddae4b", + "size": 125396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99b598ecfcbcab8c41f2b48d1de2167828ddae4b" + }, + { + "path": "png/firefox-developer-edition.png", + "mode": "100644", + "type": "blob", + "sha": "b645353647beb1a81da02bf245bb387afa581cf1", + "size": 134675, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b645353647beb1a81da02bf245bb387afa581cf1" + }, + { + "path": "png/firefox-lite.png", + "mode": "100644", + "type": "blob", + "sha": "550bf84b826beb1b1a53351607d6554bbabd75f1", + "size": 123019, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/550bf84b826beb1b1a53351607d6554bbabd75f1" + }, + { + "path": "png/firefox-nightly.png", + "mode": "100644", + "type": "blob", + "sha": "4ecf6fd0d1b603f537828a2462a7ae8d7e2a361a", + "size": 125018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ecf6fd0d1b603f537828a2462a7ae8d7e2a361a" + }, + { + "path": "png/firefox-reality.png", + "mode": "100644", + "type": "blob", + "sha": "99be6cd3dc55f6c62e48972f1337c085a9d21cfc", + "size": 91654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99be6cd3dc55f6c62e48972f1337c085a9d21cfc" + }, + { + "path": "png/firefox-send.png", + "mode": "100644", + "type": "blob", + "sha": "cb56883b60d01dd3b8680ce9bf1803be9b8adb6b", + "size": 59913, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb56883b60d01dd3b8680ce9bf1803be9b8adb6b" + }, + { + "path": "png/firefox.png", + "mode": "100644", + "type": "blob", + "sha": "29c09ccf6ea9671c5185a2fc7ac08f0a5efc4304", + "size": 123798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29c09ccf6ea9671c5185a2fc7ac08f0a5efc4304" + }, + { + "path": "png/fireshare.png", + "mode": "100644", + "type": "blob", + "sha": "14a1438bf7e8fc4b63936d27c66ec68e2a4a4d81", + "size": 52652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14a1438bf7e8fc4b63936d27c66ec68e2a4a4d81" + }, + { + "path": "png/firewalla.png", + "mode": "100644", + "type": "blob", + "sha": "d8139aeb3e1d8b55aa438c9bcaab6f4ec58c1dbf", + "size": 21500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8139aeb3e1d8b55aa438c9bcaab6f4ec58c1dbf" + }, + { + "path": "png/fittrackee.png", + "mode": "100644", + "type": "blob", + "sha": "ce396687b93006be420262cb6384561f2fa746cd", + "size": 50202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce396687b93006be420262cb6384561f2fa746cd" + }, + { + "path": "png/fl-studio.png", + "mode": "100644", + "type": "blob", + "sha": "35cfacf6a35e2d76e12ee73d983fc55097563dfc", + "size": 151762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35cfacf6a35e2d76e12ee73d983fc55097563dfc" + }, + { + "path": "png/fladder.png", + "mode": "100644", + "type": "blob", + "sha": "6bfad095aab792257a0efad96e96e57590bc4653", + "size": 28218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bfad095aab792257a0efad96e96e57590bc4653" + }, + { + "path": "png/flame.png", + "mode": "100644", + "type": "blob", + "sha": "74b81b968d4ca7dd4c8b1fcd0ff490254bf683b4", + "size": 12072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74b81b968d4ca7dd4c8b1fcd0ff490254bf683b4" + }, + { + "path": "png/flaresolverr.png", + "mode": "100644", + "type": "blob", + "sha": "497a4ffcd02bf5584c4cf3c670ec4f1226b4b07c", + "size": 33382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/497a4ffcd02bf5584c4cf3c670ec4f1226b4b07c" + }, + { + "path": "png/flarum.png", + "mode": "100644", + "type": "blob", + "sha": "9f418ff8952fcf0b31d24dcef7b729b162ce2f5a", + "size": 5954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f418ff8952fcf0b31d24dcef7b729b162ce2f5a" + }, + { + "path": "png/flat-notes.png", + "mode": "100644", + "type": "blob", + "sha": "7f81fb801325b31294a20b155a19c0b1f884a924", + "size": 2338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f81fb801325b31294a20b155a19c0b1f884a924" + }, + { + "path": "png/flathub-dark.png", + "mode": "100644", + "type": "blob", + "sha": "a7eadaf82ada0570bac1486e4bdcbd9e38882eee", + "size": 6563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7eadaf82ada0570bac1486e4bdcbd9e38882eee" + }, + { + "path": "png/flathub.png", + "mode": "100644", + "type": "blob", + "sha": "08164b583dc0753bec3674065e31068cfdcdb07e", + "size": 6563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08164b583dc0753bec3674065e31068cfdcdb07e" + }, + { + "path": "png/flatnotes.png", + "mode": "100644", + "type": "blob", + "sha": "cbe6cb44705e4a44b9895265dfef36a52b7c6e64", + "size": 12110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbe6cb44705e4a44b9895265dfef36a52b7c6e64" + }, + { + "path": "png/flatpak.png", + "mode": "100644", + "type": "blob", + "sha": "9e42d7437b1f18551ee8e46d0da789c2e9888ea5", + "size": 16889, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e42d7437b1f18551ee8e46d0da789c2e9888ea5" + }, + { + "path": "png/fleetdm.png", + "mode": "100644", + "type": "blob", + "sha": "39289b559d1880fc72b1de9cd375b8a3dd50dac6", + "size": 13013, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39289b559d1880fc72b1de9cd375b8a3dd50dac6" + }, + { + "path": "png/flexget.png", + "mode": "100644", + "type": "blob", + "sha": "a3cbf52a01022908038c66d2254e25073bc1a680", + "size": 33264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3cbf52a01022908038c66d2254e25073bc1a680" + }, + { + "path": "png/flightaware.png", + "mode": "100644", + "type": "blob", + "sha": "f1e87c2476d09ddb1a4e0871fcee5b1e77c68272", + "size": 9472, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1e87c2476d09ddb1a4e0871fcee5b1e77c68272" + }, + { + "path": "png/flightradar24-light.png", + "mode": "100644", + "type": "blob", + "sha": "d26b7513ee420884182ace8264543cae580bfba5", + "size": 30992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d26b7513ee420884182ace8264543cae580bfba5" + }, + { + "path": "png/flightradar24.png", + "mode": "100644", + "type": "blob", + "sha": "afc0e2434a1ca71a0f3c79fe945e4670e0793863", + "size": 25424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afc0e2434a1ca71a0f3c79fe945e4670e0793863" + }, + { + "path": "png/floatplane.png", + "mode": "100644", + "type": "blob", + "sha": "625aef9fea25dfffdb388e4db11fb9c0dd06c5cd", + "size": 19244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/625aef9fea25dfffdb388e4db11fb9c0dd06c5cd" + }, + { + "path": "png/flogo.png", + "mode": "100644", + "type": "blob", + "sha": "399ceaf2800546d75cf1a6568120dacda500cfba", + "size": 11783, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/399ceaf2800546d75cf1a6568120dacda500cfba" + }, + { + "path": "png/flood.png", + "mode": "100644", + "type": "blob", + "sha": "8f5c84eb36dcef0462da2723d552f1d094eb9299", + "size": 21669, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f5c84eb36dcef0462da2723d552f1d094eb9299" + }, + { + "path": "png/floorp.png", + "mode": "100644", + "type": "blob", + "sha": "25e356ee2a6a41582c754fe086db8387fc2b7d80", + "size": 20836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25e356ee2a6a41582c754fe086db8387fc2b7d80" + }, + { + "path": "png/flowise.png", + "mode": "100644", + "type": "blob", + "sha": "c8e9c02ab7304f6f5e84071b6463a8968460807b", + "size": 9573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8e9c02ab7304f6f5e84071b6463a8968460807b" + }, + { + "path": "png/flowtunes.png", + "mode": "100644", + "type": "blob", + "sha": "1ea78dbdc1d18eeef1227d8538d01a51f4af6e07", + "size": 4051, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ea78dbdc1d18eeef1227d8538d01a51f4af6e07" + }, + { + "path": "png/fluent-reader.png", + "mode": "100644", + "type": "blob", + "sha": "20a8cc6100cfa50a6bef535ac343230804a3a4c4", + "size": 19840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20a8cc6100cfa50a6bef535ac343230804a3a4c4" + }, + { + "path": "png/fluffychat-dark.png", + "mode": "100644", + "type": "blob", + "sha": "3f3462ae64971fe5fb5aefe1b56ae4be35ce8b13", + "size": 26431, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f3462ae64971fe5fb5aefe1b56ae4be35ce8b13" + }, + { + "path": "png/fluffychat.png", + "mode": "100644", + "type": "blob", + "sha": "4c0cb3f8c7d92225d721c0f484e0709f793f79f7", + "size": 26830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c0cb3f8c7d92225d721c0f484e0709f793f79f7" + }, + { + "path": "png/fluidd.png", + "mode": "100644", + "type": "blob", + "sha": "761cacfde3bfd7f4990f10d595647c02bd4c1af9", + "size": 21838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/761cacfde3bfd7f4990f10d595647c02bd4c1af9" + }, + { + "path": "png/flux-cd.png", + "mode": "100644", + "type": "blob", + "sha": "3763847a16263c514f09d9952c4c13abbdc437b0", + "size": 24442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3763847a16263c514f09d9952c4c13abbdc437b0" + }, + { + "path": "png/fly-io.png", + "mode": "100644", + "type": "blob", + "sha": "8c18ad44b808287cb94bbbfa9203653d65719bc8", + "size": 60278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c18ad44b808287cb94bbbfa9203653d65719bc8" + }, + { + "path": "png/fmd.png", + "mode": "100644", + "type": "blob", + "sha": "b6cfcf5c297fbfb3da36b164dc256534c9a20309", + "size": 19538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6cfcf5c297fbfb3da36b164dc256534c9a20309" + }, + { + "path": "png/fnos.png", + "mode": "100644", + "type": "blob", + "sha": "d211d9b89f5acd39a3af39bfcf00cbc0350d2552", + "size": 6282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d211d9b89f5acd39a3af39bfcf00cbc0350d2552" + }, + { + "path": "png/focalboard.png", + "mode": "100644", + "type": "blob", + "sha": "03830a63e2755667cb04ec6caeb9e4678b0fa36e", + "size": 27857, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03830a63e2755667cb04ec6caeb9e4678b0fa36e" + }, + { + "path": "png/foldingathome.png", + "mode": "100644", + "type": "blob", + "sha": "e1e7e9f3ab13f4aebf2b092afc4dcc2ea4689f8d", + "size": 60931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1e7e9f3ab13f4aebf2b092afc4dcc2ea4689f8d" + }, + { + "path": "png/fontawesome.png", + "mode": "100644", + "type": "blob", + "sha": "fdda6fa98f5303f0761664c16b20fec6d0e069bd", + "size": 10255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdda6fa98f5303f0761664c16b20fec6d0e069bd" + }, + { + "path": "png/foreflight-dark.png", + "mode": "100644", + "type": "blob", + "sha": "3b843998150ace13f81ef93448a1d6f7f3131907", + "size": 28170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b843998150ace13f81ef93448a1d6f7f3131907" + }, + { + "path": "png/foreflight.png", + "mode": "100644", + "type": "blob", + "sha": "02f8e82cae82b735b0ab1550cb229e487c3020cf", + "size": 49724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02f8e82cae82b735b0ab1550cb229e487c3020cf" + }, + { + "path": "png/forgejo.png", + "mode": "100644", + "type": "blob", + "sha": "e5598b926c905ec0aa1d2351b1b8640c7cb8c7d6", + "size": 14651, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5598b926c905ec0aa1d2351b1b8640c7cb8c7d6" + }, + { + "path": "png/forte-light.png", + "mode": "100644", + "type": "blob", + "sha": "3ce32fdee4e9b7bb2f641896a83293df825f9a5d", + "size": 17881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ce32fdee4e9b7bb2f641896a83293df825f9a5d" + }, + { + "path": "png/forte.png", + "mode": "100644", + "type": "blob", + "sha": "b2d2ff807c6679018cce83a926371fbf6bed2e5d", + "size": 17019, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2d2ff807c6679018cce83a926371fbf6bed2e5d" + }, + { + "path": "png/fortinet.png", + "mode": "100644", + "type": "blob", + "sha": "6990a21fbc73fb5adcecbed578d4b5f6e32cc897", + "size": 8143, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6990a21fbc73fb5adcecbed578d4b5f6e32cc897" + }, + { + "path": "png/foscam.png", + "mode": "100644", + "type": "blob", + "sha": "1b68b0a961f738fff6f244b7327cfc868b989324", + "size": 13606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b68b0a961f738fff6f244b7327cfc868b989324" + }, + { + "path": "png/fossil.png", + "mode": "100644", + "type": "blob", + "sha": "95d0506ba45bc4b918fc0087b2fccb8180b3f1f1", + "size": 27383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95d0506ba45bc4b918fc0087b2fccb8180b3f1f1" + }, + { + "path": "png/foundry-vtt.png", + "mode": "100644", + "type": "blob", + "sha": "b4e8359cb9a01ea2c8457ae4707c8d77eae483ab", + "size": 100637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4e8359cb9a01ea2c8457ae4707c8d77eae483ab" + }, + { + "path": "png/franz.png", + "mode": "100644", + "type": "blob", + "sha": "58531294b208ba5d26324e931d1a29dfd4e7d468", + "size": 51442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58531294b208ba5d26324e931d1a29dfd4e7d468" + }, + { + "path": "png/free-dns.png", + "mode": "100644", + "type": "blob", + "sha": "529fa489f9112b1fbb26daa91f7a93e8eed7dfc9", + "size": 10489, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/529fa489f9112b1fbb26daa91f7a93e8eed7dfc9" + }, + { + "path": "png/free-sas.png", + "mode": "100644", + "type": "blob", + "sha": "c0c49ccd0b96e5ccf59c742088a0a1ddb096788b", + "size": 16115, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0c49ccd0b96e5ccf59c742088a0a1ddb096788b" + }, + { + "path": "png/freebox-delta.png", + "mode": "100644", + "type": "blob", + "sha": "f5fc9736d4b4bcaba477008870cee06dadcc26cd", + "size": 24877, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5fc9736d4b4bcaba477008870cee06dadcc26cd" + }, + { + "path": "png/freebox-pop.png", + "mode": "100644", + "type": "blob", + "sha": "b4d3baa6303cba561c8f1c17c25294ad32e1cee1", + "size": 70565, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4d3baa6303cba561c8f1c17c25294ad32e1cee1" + }, + { + "path": "png/freebox-revolution.png", + "mode": "100644", + "type": "blob", + "sha": "f915223adf55ec44a5c1e382a11dbbd71c6bbb3c", + "size": 61499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f915223adf55ec44a5c1e382a11dbbd71c6bbb3c" + }, + { + "path": "png/freedombox.png", + "mode": "100644", + "type": "blob", + "sha": "3fe57ad6693bcd4c32003433ad3132ac7c79e460", + "size": 56521, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fe57ad6693bcd4c32003433ad3132ac7c79e460" + }, + { + "path": "png/freeipa.png", + "mode": "100644", + "type": "blob", + "sha": "a92c13457dd4cfe320dd7ab919fc0d2f9c3e1c08", + "size": 17536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a92c13457dd4cfe320dd7ab919fc0d2f9c3e1c08" + }, + { + "path": "png/freenas.png", + "mode": "100644", + "type": "blob", + "sha": "1b93cc54ece6ac07d39ca267f586a606dc05496b", + "size": 32220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b93cc54ece6ac07d39ca267f586a606dc05496b" + }, + { + "path": "png/freenom.png", + "mode": "100644", + "type": "blob", + "sha": "94fdd0649d572737e89f4ce473bb3ec64d373c34", + "size": 21500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94fdd0649d572737e89f4ce473bb3ec64d373c34" + }, + { + "path": "png/freepbx.png", + "mode": "100644", + "type": "blob", + "sha": "6c9db087c4c9370e0011ffda193fcb6e62138bf4", + "size": 35020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c9db087c4c9370e0011ffda193fcb6e62138bf4" + }, + { + "path": "png/freescout.png", + "mode": "100644", + "type": "blob", + "sha": "27cb8bb52102f914b90bdd2ab2c4d88e40b2891e", + "size": 20709, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27cb8bb52102f914b90bdd2ab2c4d88e40b2891e" + }, + { + "path": "png/freshping-dark.png", + "mode": "100644", + "type": "blob", + "sha": "3eca8368b82d2df594a84bce386298c3ef4f40d1", + "size": 20368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3eca8368b82d2df594a84bce386298c3ef4f40d1" + }, + { + "path": "png/freshping.png", + "mode": "100644", + "type": "blob", + "sha": "62bdc4993c3c80cb7a5b40b03787d6390bf57d0b", + "size": 20566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62bdc4993c3c80cb7a5b40b03787d6390bf57d0b" + }, + { + "path": "png/freshrss.png", + "mode": "100644", + "type": "blob", + "sha": "21a85baf11ab008d4ab592347e92386c5a8d2919", + "size": 27016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21a85baf11ab008d4ab592347e92386c5a8d2919" + }, + { + "path": "png/friendica.png", + "mode": "100644", + "type": "blob", + "sha": "9e181e68d8895672b449fbcce46b3ef9debec887", + "size": 12516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e181e68d8895672b449fbcce46b3ef9debec887" + }, + { + "path": "png/frigate-light.png", + "mode": "100644", + "type": "blob", + "sha": "5c1a02532169496fb2f657cb185daa982f3ae72d", + "size": 10954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c1a02532169496fb2f657cb185daa982f3ae72d" + }, + { + "path": "png/frigate.png", + "mode": "100644", + "type": "blob", + "sha": "b25a87b8cfc2d9e4662631e8290323b6ea8e75e3", + "size": 9350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b25a87b8cfc2d9e4662631e8290323b6ea8e75e3" + }, + { + "path": "png/fritzbox-light.png", + "mode": "100644", + "type": "blob", + "sha": "4f888923407406289d2d0f6a9c5671216afec899", + "size": 55868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f888923407406289d2d0f6a9c5671216afec899" + }, + { + "path": "png/fritzbox.png", + "mode": "100644", + "type": "blob", + "sha": "a1410fa1f7a9510db30dd16647e5a210199ddd8e", + "size": 54205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1410fa1f7a9510db30dd16647e5a210199ddd8e" + }, + { + "path": "png/fronius.png", + "mode": "100644", + "type": "blob", + "sha": "76dfba41d9239014bff3930da2c871e5edd4fb76", + "size": 52628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76dfba41d9239014bff3930da2c871e5edd4fb76" + }, + { + "path": "png/frp.png", + "mode": "100644", + "type": "blob", + "sha": "13ad411530f52a28492a8371a656497ae4307334", + "size": 14462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13ad411530f52a28492a8371a656497ae4307334" + }, + { + "path": "png/fulcio.png", + "mode": "100644", + "type": "blob", + "sha": "aa5c51ceb5ed92033eab2dbb279f20f8a81cc97c", + "size": 41759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa5c51ceb5ed92033eab2dbb279f20f8a81cc97c" + }, + { + "path": "png/funkwhale-light.png", + "mode": "100644", + "type": "blob", + "sha": "31da34ff1fcefe8b300f50942686a2b2db2ba4a8", + "size": 27288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31da34ff1fcefe8b300f50942686a2b2db2ba4a8" + }, + { + "path": "png/funkwhale.png", + "mode": "100644", + "type": "blob", + "sha": "62568c4ce7e2d6f25e6da94ad4e817264c85151a", + "size": 28998, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62568c4ce7e2d6f25e6da94ad4e817264c85151a" + }, + { + "path": "png/fusionauth-light.png", + "mode": "100644", + "type": "blob", + "sha": "8f5b1a5e3469090152bcf09d1b144f89399708ac", + "size": 7355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f5b1a5e3469090152bcf09d1b144f89399708ac" + }, + { + "path": "png/fusionauth.png", + "mode": "100644", + "type": "blob", + "sha": "9cf78e6592691b1ae30a95b11230d7396868a574", + "size": 32497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cf78e6592691b1ae30a95b11230d7396868a574" + }, + { + "path": "png/fusionpbx.png", + "mode": "100644", + "type": "blob", + "sha": "74622dee73ba440440148f74115d36e969245b79", + "size": 33100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74622dee73ba440440148f74115d36e969245b79" + }, + { + "path": "png/gamevault.png", + "mode": "100644", + "type": "blob", + "sha": "a4c5b76437bb784eb27ff471c99c83a5f9379193", + "size": 67460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4c5b76437bb784eb27ff471c99c83a5f9379193" + }, + { + "path": "png/gameyfin-light.png", + "mode": "100644", + "type": "blob", + "sha": "5421a2a2e1e55e06fefdcc5801eab72a105603d1", + "size": 2272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5421a2a2e1e55e06fefdcc5801eab72a105603d1" + }, + { + "path": "png/gameyfin.png", + "mode": "100644", + "type": "blob", + "sha": "3f4030cd76ca993aba182cacce53826bffa2a03d", + "size": 2268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f4030cd76ca993aba182cacce53826bffa2a03d" + }, + { + "path": "png/gaps.png", + "mode": "100644", + "type": "blob", + "sha": "a16fcf56fd60a5b1a4316f40505aa22a56765ec4", + "size": 36927, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a16fcf56fd60a5b1a4316f40505aa22a56765ec4" + }, + { + "path": "png/garage.png", + "mode": "100644", + "type": "blob", + "sha": "7d89858373c997ee6112bc5481763a89e16ec8ac", + "size": 31551, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d89858373c997ee6112bc5481763a89e16ec8ac" + }, + { + "path": "png/garmin-connect.png", + "mode": "100644", + "type": "blob", + "sha": "d5906a02ede93070047bb0748034cb4af0fd2777", + "size": 49494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5906a02ede93070047bb0748034cb4af0fd2777" + }, + { + "path": "png/garuda-linux.png", + "mode": "100644", + "type": "blob", + "sha": "8d84afa6d2e5afd2c06d982e3e7ef19ad0db886d", + "size": 67972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d84afa6d2e5afd2c06d982e3e7ef19ad0db886d" + }, + { + "path": "png/gaseous.png", + "mode": "100644", + "type": "blob", + "sha": "e2c8b3e671db9c1063cfb72da7a442bb71928128", + "size": 20997, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2c8b3e671db9c1063cfb72da7a442bb71928128" + }, + { + "path": "png/gatsby.png", + "mode": "100644", + "type": "blob", + "sha": "b049bf3e9dfbb7952077220a3454d41d5a0075ea", + "size": 31639, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b049bf3e9dfbb7952077220a3454d41d5a0075ea" + }, + { + "path": "png/gatus.png", + "mode": "100644", + "type": "blob", + "sha": "d27668e4dc193cf2071befb5cccfcca06d57c2f9", + "size": 21036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d27668e4dc193cf2071befb5cccfcca06d57c2f9" + }, + { + "path": "png/gboard.png", + "mode": "100644", + "type": "blob", + "sha": "8473a8da1412556018fcb99c5087d2ebff484cf3", + "size": 19858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8473a8da1412556018fcb99c5087d2ebff484cf3" + }, + { + "path": "png/geckoview.png", + "mode": "100644", + "type": "blob", + "sha": "86f6a270d8ca1ad964f1adc62e98012a2d8933c5", + "size": 27349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86f6a270d8ca1ad964f1adc62e98012a2d8933c5" + }, + { + "path": "png/genius.png", + "mode": "100644", + "type": "blob", + "sha": "7aa23e0a8fae2f24af571e7559009f48c6ff8590", + "size": 23616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aa23e0a8fae2f24af571e7559009f48c6ff8590" + }, + { + "path": "png/gentoo-linux.png", + "mode": "100644", + "type": "blob", + "sha": "2b9ace7b05815e7567675800adc62beb8b7d8f8a", + "size": 63936, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b9ace7b05815e7567675800adc62beb8b7d8f8a" + }, + { + "path": "png/geo-guessr.png", + "mode": "100644", + "type": "blob", + "sha": "7cc4211418e28b59a03e7639bb32e7dd6f29e595", + "size": 15653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cc4211418e28b59a03e7639bb32e7dd6f29e595" + }, + { + "path": "png/gerbera.png", + "mode": "100644", + "type": "blob", + "sha": "1fddcc89b3e0a012f848f5215dc0d7b2a0853312", + "size": 69208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fddcc89b3e0a012f848f5215dc0d7b2a0853312" + }, + { + "path": "png/gerrit.png", + "mode": "100644", + "type": "blob", + "sha": "6e6056314525a8fed3fde0b5bdf986ce76437920", + "size": 4681, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e6056314525a8fed3fde0b5bdf986ce76437920" + }, + { + "path": "png/get-iplayer.png", + "mode": "100644", + "type": "blob", + "sha": "5d918a60793013b0c9e6bdd8b5b2ebf09bc43491", + "size": 15085, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d918a60793013b0c9e6bdd8b5b2ebf09bc43491" + }, + { + "path": "png/ghost-light.png", + "mode": "100644", + "type": "blob", + "sha": "9f7327cfade79857240169e8547bde2f3f0ea10a", + "size": 33258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f7327cfade79857240169e8547bde2f3f0ea10a" + }, + { + "path": "png/ghost.png", + "mode": "100644", + "type": "blob", + "sha": "00a6d1605682cb0bd9610c90c4b79c91363933d0", + "size": 33258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00a6d1605682cb0bd9610c90c4b79c91363933d0" + }, + { + "path": "png/ghostfolio.png", + "mode": "100644", + "type": "blob", + "sha": "af779f40fefde92658e24a136200b22c310ccff4", + "size": 14859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af779f40fefde92658e24a136200b22c310ccff4" + }, + { + "path": "png/ghostty.png", + "mode": "100644", + "type": "blob", + "sha": "935dbfb6fa1faf1466f779b7b9f216b257f7d145", + "size": 25565, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/935dbfb6fa1faf1466f779b7b9f216b257f7d145" + }, + { + "path": "png/gigaset.png", + "mode": "100644", + "type": "blob", + "sha": "a29a24d407fbb7cb90e39c74dca0cc052b33d777", + "size": 50289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a29a24d407fbb7cb90e39c74dca0cc052b33d777" + }, + { + "path": "png/gimp.png", + "mode": "100644", + "type": "blob", + "sha": "e944b36fee5b1a16afb23e1dc4f2ccf66c919db4", + "size": 38664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e944b36fee5b1a16afb23e1dc4f2ccf66c919db4" + }, + { + "path": "png/git.png", + "mode": "100644", + "type": "blob", + "sha": "2d64943a858adc919935d61619a769e213426e32", + "size": 12146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d64943a858adc919935d61619a769e213426e32" + }, + { + "path": "png/gitbook.png", + "mode": "100644", + "type": "blob", + "sha": "e73103561811a07b48cbe943c06937c5335b1ec9", + "size": 25729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e73103561811a07b48cbe943c06937c5335b1ec9" + }, + { + "path": "png/gitea.png", + "mode": "100644", + "type": "blob", + "sha": "8577c1fc2bf7264365ac9899661c4df2a00ca816", + "size": 34939, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8577c1fc2bf7264365ac9899661c4df2a00ca816" + }, + { + "path": "png/gitee.png", + "mode": "100644", + "type": "blob", + "sha": "e8e9226f0443b9c90ddf1610019caff67782b1bc", + "size": 26763, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8e9226f0443b9c90ddf1610019caff67782b1bc" + }, + { + "path": "png/github-light.png", + "mode": "100644", + "type": "blob", + "sha": "f3248e4faf99baca0e8a2db188f06fadcef9ccd6", + "size": 17188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3248e4faf99baca0e8a2db188f06fadcef9ccd6" + }, + { + "path": "png/github.png", + "mode": "100644", + "type": "blob", + "sha": "5cde542e5af3aa48fd053c57d0c2d1b30fcd628f", + "size": 21943, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cde542e5af3aa48fd053c57d0c2d1b30fcd628f" + }, + { + "path": "png/gitlab.png", + "mode": "100644", + "type": "blob", + "sha": "46cf37a44af15af8837c92082d37dee002ee31f6", + "size": 19980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46cf37a44af15af8837c92082d37dee002ee31f6" + }, + { + "path": "png/gitsign.png", + "mode": "100644", + "type": "blob", + "sha": "0e08af49d1d757bf27912a7852805a962ccdb074", + "size": 38264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e08af49d1d757bf27912a7852805a962ccdb074" + }, + { + "path": "png/gladys-assistant.png", + "mode": "100644", + "type": "blob", + "sha": "6aa9169ca22ad640e9e452bab0830da41a70d241", + "size": 56539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6aa9169ca22ad640e9e452bab0830da41a70d241" + }, + { + "path": "png/glance.png", + "mode": "100644", + "type": "blob", + "sha": "975a6a21dfab63a409f0dc6e725ba5e4ffbee0f1", + "size": 7997, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/975a6a21dfab63a409f0dc6e725ba5e4ffbee0f1" + }, + { + "path": "png/glances-light.png", + "mode": "100644", + "type": "blob", + "sha": "95034220cc944f399c6b43799b86a76d37a162e5", + "size": 22756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95034220cc944f399c6b43799b86a76d37a162e5" + }, + { + "path": "png/glances.png", + "mode": "100644", + "type": "blob", + "sha": "ea4633e887380e724f6e4faeaad494e6bc04ed77", + "size": 22881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea4633e887380e724f6e4faeaad494e6bc04ed77" + }, + { + "path": "png/glinet-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ab7222e7e39420de4c0202e5c229874b738c441c", + "size": 15030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab7222e7e39420de4c0202e5c229874b738c441c" + }, + { + "path": "png/glinet.png", + "mode": "100644", + "type": "blob", + "sha": "1198dd12fe4e41cfa2879adcb0ff8aa65f251ed2", + "size": 15030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1198dd12fe4e41cfa2879adcb0ff8aa65f251ed2" + }, + { + "path": "png/glitchtip.png", + "mode": "100644", + "type": "blob", + "sha": "ca14896f23ceaec6cb41f79bf43da428764aa765", + "size": 20318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca14896f23ceaec6cb41f79bf43da428764aa765" + }, + { + "path": "png/glpi.png", + "mode": "100644", + "type": "blob", + "sha": "b3b958af2eefc704457942b8a32923079ee65613", + "size": 40917, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3b958af2eefc704457942b8a32923079ee65613" + }, + { + "path": "png/gluetun.png", + "mode": "100644", + "type": "blob", + "sha": "d02cd311bf2add4c793b1a939ddb805c96fec90f", + "size": 41815, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d02cd311bf2add4c793b1a939ddb805c96fec90f" + }, + { + "path": "png/gmail.png", + "mode": "100644", + "type": "blob", + "sha": "4d2266012d004b3e201786e8ff3d9dd17525100f", + "size": 8633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d2266012d004b3e201786e8ff3d9dd17525100f" + }, + { + "path": "png/go.png", + "mode": "100644", + "type": "blob", + "sha": "2818f342dab72b7082f1b16a7a9710567b999767", + "size": 34347, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2818f342dab72b7082f1b16a7a9710567b999767" + }, + { + "path": "png/go2rtc.png", + "mode": "100644", + "type": "blob", + "sha": "a9a81a3c12463dc49045ced599fbd847edb396c2", + "size": 35192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9a81a3c12463dc49045ced599fbd847edb396c2" + }, + { + "path": "png/goaccess-light.png", + "mode": "100644", + "type": "blob", + "sha": "148031fbe4da5f7df6cf960e465796502ca1b8e9", + "size": 2607, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/148031fbe4da5f7df6cf960e465796502ca1b8e9" + }, + { + "path": "png/goaccess.png", + "mode": "100644", + "type": "blob", + "sha": "da4cf4aa99d65ab26d9a81081000082054ef206b", + "size": 2653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da4cf4aa99d65ab26d9a81081000082054ef206b" + }, + { + "path": "png/godaddy-alt.png", + "mode": "100644", + "type": "blob", + "sha": "8dfea2304db3ecc9ce6d4e054514f46687789e77", + "size": 84469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8dfea2304db3ecc9ce6d4e054514f46687789e77" + }, + { + "path": "png/godaddy.png", + "mode": "100644", + "type": "blob", + "sha": "ab1fe57b354f88c5db064b0a580398fed9b9856a", + "size": 31049, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab1fe57b354f88c5db064b0a580398fed9b9856a" + }, + { + "path": "png/godot.png", + "mode": "100644", + "type": "blob", + "sha": "0b2ce8c8f3d6d3c2ec5b95a577d6835d8c3b9c5f", + "size": 18540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b2ce8c8f3d6d3c2ec5b95a577d6835d8c3b9c5f" + }, + { + "path": "png/gogs.png", + "mode": "100644", + "type": "blob", + "sha": "2bde1cddd6463dff4f08c3ef1471da3779c38be1", + "size": 80034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bde1cddd6463dff4f08c3ef1471da3779c38be1" + }, + { + "path": "png/golink-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ab74f5cf90f0a09930e5f8de6369aed04ef5c8dc", + "size": 11196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab74f5cf90f0a09930e5f8de6369aed04ef5c8dc" + }, + { + "path": "png/golink.png", + "mode": "100644", + "type": "blob", + "sha": "88cd31e7c75f647d3e1d3a255204511e6931f995", + "size": 11196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88cd31e7c75f647d3e1d3a255204511e6931f995" + }, + { + "path": "png/gollum.png", + "mode": "100644", + "type": "blob", + "sha": "2c7236340263fd21dc0eeede4f2e7241110fb7c6", + "size": 223610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c7236340263fd21dc0eeede4f2e7241110fb7c6" + }, + { + "path": "png/gomft.png", + "mode": "100644", + "type": "blob", + "sha": "5ad27f091efb1c9835aa13f6a41030fef941e876", + "size": 38793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ad27f091efb1c9835aa13f6a41030fef941e876" + }, + { + "path": "png/gone-man-switch.png", + "mode": "100644", + "type": "blob", + "sha": "ffbcdec74c2e5c065b259f617b8f6868e6cde4c9", + "size": 5581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffbcdec74c2e5c065b259f617b8f6868e6cde4c9" + }, + { + "path": "png/gonic.png", + "mode": "100644", + "type": "blob", + "sha": "7d1c2cc6c69925d0670f51241f178501a5be1b94", + "size": 66487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d1c2cc6c69925d0670f51241f178501a5be1b94" + }, + { + "path": "png/goodreads.png", + "mode": "100644", + "type": "blob", + "sha": "f4ce97f29d17f2b4dd064e96b9e5ad907b066f15", + "size": 20227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4ce97f29d17f2b4dd064e96b9e5ad907b066f15" + }, + { + "path": "png/google-admin.png", + "mode": "100644", + "type": "blob", + "sha": "80ac91417cb6d7a629293ac4dc03458324d11684", + "size": 18614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80ac91417cb6d7a629293ac4dc03458324d11684" + }, + { + "path": "png/google-admob.png", + "mode": "100644", + "type": "blob", + "sha": "14d985ade5a7ab7b80e1a2fe831a6c24153fddf1", + "size": 20054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14d985ade5a7ab7b80e1a2fe831a6c24153fddf1" + }, + { + "path": "png/google-alerts.png", + "mode": "100644", + "type": "blob", + "sha": "c6d8d01d8fc7f3f07eafdbadc66ecdc494ab7f6d", + "size": 8830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6d8d01d8fc7f3f07eafdbadc66ecdc494ab7f6d" + }, + { + "path": "png/google-analytics.png", + "mode": "100644", + "type": "blob", + "sha": "629c5ea3511c6d40f0b7aaaf3cd2a1ff0b9833da", + "size": 10245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/629c5ea3511c6d40f0b7aaaf3cd2a1ff0b9833da" + }, + { + "path": "png/google-assistant.png", + "mode": "100644", + "type": "blob", + "sha": "2962774f64db1c63bedff199ad31f7cf880ec8e6", + "size": 16619, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2962774f64db1c63bedff199ad31f7cf880ec8e6" + }, + { + "path": "png/google-calendar.png", + "mode": "100644", + "type": "blob", + "sha": "b8bdce88567b33da1ac135f47edcf8f5093ad637", + "size": 10966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8bdce88567b33da1ac135f47edcf8f5093ad637" + }, + { + "path": "png/google-chat.png", + "mode": "100644", + "type": "blob", + "sha": "bcc6ed88ba4e160faffe4fd2b48c2ddf59fab22e", + "size": 6187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcc6ed88ba4e160faffe4fd2b48c2ddf59fab22e" + }, + { + "path": "png/google-chrome.png", + "mode": "100644", + "type": "blob", + "sha": "5db4026f788e040b8335672e066ff9ce16770b73", + "size": 38562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5db4026f788e040b8335672e066ff9ce16770b73" + }, + { + "path": "png/google-classroom.png", + "mode": "100644", + "type": "blob", + "sha": "3682e3be467e079c9f0f1fbb9addb8576fe18250", + "size": 25043, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3682e3be467e079c9f0f1fbb9addb8576fe18250" + }, + { + "path": "png/google-cloud-platform.png", + "mode": "100644", + "type": "blob", + "sha": "bc5e2c7caa3d5d7dec9c582c8f088e9deceb609c", + "size": 24838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc5e2c7caa3d5d7dec9c582c8f088e9deceb609c" + }, + { + "path": "png/google-cloud-print.png", + "mode": "100644", + "type": "blob", + "sha": "f13cc0f3fee0375706399a26c1c336ac3959c4e3", + "size": 44065, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f13cc0f3fee0375706399a26c1c336ac3959c4e3" + }, + { + "path": "png/google-colab.png", + "mode": "100644", + "type": "blob", + "sha": "846a81a894161e3edefaa6dd6a87db6aa41c1023", + "size": 25870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/846a81a894161e3edefaa6dd6a87db6aa41c1023" + }, + { + "path": "png/google-compute-engine.png", + "mode": "100644", + "type": "blob", + "sha": "f1637209ff560530c1048bf2c89032a5fcad2ca0", + "size": 23781, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1637209ff560530c1048bf2c89032a5fcad2ca0" + }, + { + "path": "png/google-contacts.png", + "mode": "100644", + "type": "blob", + "sha": "6d99dc8e1085dd4da1f2d3d3ddfca47e0a92fe30", + "size": 20240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d99dc8e1085dd4da1f2d3d3ddfca47e0a92fe30" + }, + { + "path": "png/google-docs.png", + "mode": "100644", + "type": "blob", + "sha": "107d67afcc2a5f005757e8efc0e18c64eadc2d36", + "size": 21879, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/107d67afcc2a5f005757e8efc0e18c64eadc2d36" + }, + { + "path": "png/google-domains.png", + "mode": "100644", + "type": "blob", + "sha": "80f15de4424918c8943b9cdf874fd12367ac5b2d", + "size": 19534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80f15de4424918c8943b9cdf874fd12367ac5b2d" + }, + { + "path": "png/google-drive.png", + "mode": "100644", + "type": "blob", + "sha": "1957c726b2b2ac6c3fdd9506737f6087a03beeff", + "size": 19487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1957c726b2b2ac6c3fdd9506737f6087a03beeff" + }, + { + "path": "png/google-earth.png", + "mode": "100644", + "type": "blob", + "sha": "cb70cf0fcbbf6fc50881cdc4bfa9c853cd8c2793", + "size": 38035, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb70cf0fcbbf6fc50881cdc4bfa9c853cd8c2793" + }, + { + "path": "png/google-fi.png", + "mode": "100644", + "type": "blob", + "sha": "db4bb3c0b01e3dd3d916e0eb4bfd9ed09449f019", + "size": 15428, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db4bb3c0b01e3dd3d916e0eb4bfd9ed09449f019" + }, + { + "path": "png/google-finance.png", + "mode": "100644", + "type": "blob", + "sha": "99f1fcc8af317b4681b0390c60f6ed5be1246932", + "size": 2108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99f1fcc8af317b4681b0390c60f6ed5be1246932" + }, + { + "path": "png/google-fit.png", + "mode": "100644", + "type": "blob", + "sha": "e7b408cc94b27004e3c3c78d5d235e941a4a6f29", + "size": 25110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7b408cc94b27004e3c3c78d5d235e941a4a6f29" + }, + { + "path": "png/google-fonts.png", + "mode": "100644", + "type": "blob", + "sha": "e2a88b7f75e79f5314f13134b7b635cec33b6f44", + "size": 23491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2a88b7f75e79f5314f13134b7b635cec33b6f44" + }, + { + "path": "png/google-forms.png", + "mode": "100644", + "type": "blob", + "sha": "13a9f99602905b2bf745f3f8eb5eab596406e42d", + "size": 24529, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13a9f99602905b2bf745f3f8eb5eab596406e42d" + }, + { + "path": "png/google-gemini.png", + "mode": "100644", + "type": "blob", + "sha": "0a625a2e61036a5deb404253b2c88cdc8a58ab2a", + "size": 26048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a625a2e61036a5deb404253b2c88cdc8a58ab2a" + }, + { + "path": "png/google-home.png", + "mode": "100644", + "type": "blob", + "sha": "0dbd2d7192b5c3ce60e1238fd27e2282a206eed2", + "size": 10738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0dbd2d7192b5c3ce60e1238fd27e2282a206eed2" + }, + { + "path": "png/google-jules.png", + "mode": "100644", + "type": "blob", + "sha": "c12e9bae8ba412947600d141abc4f226c77a3008", + "size": 6631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c12e9bae8ba412947600d141abc4f226c77a3008" + }, + { + "path": "png/google-keep.png", + "mode": "100644", + "type": "blob", + "sha": "95d175475f80d8a1c9168158f1313b052ff6841f", + "size": 6562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95d175475f80d8a1c9168158f1313b052ff6841f" + }, + { + "path": "png/google-lens.png", + "mode": "100644", + "type": "blob", + "sha": "d4e780c25ff9fd8e32c51e8402d86a22ca8fc920", + "size": 17666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d4e780c25ff9fd8e32c51e8402d86a22ca8fc920" + }, + { + "path": "png/google-maps.png", + "mode": "100644", + "type": "blob", + "sha": "f4fc834dcfe220ca3e106ae4b6b92681aa44a63a", + "size": 21736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4fc834dcfe220ca3e106ae4b6b92681aa44a63a" + }, + { + "path": "png/google-meet.png", + "mode": "100644", + "type": "blob", + "sha": "053ec93bbfb74683b9669d5f274d006ea9ebcf79", + "size": 10209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/053ec93bbfb74683b9669d5f274d006ea9ebcf79" + }, + { + "path": "png/google-messages.png", + "mode": "100644", + "type": "blob", + "sha": "bc911a5f5b79058760efcd7cbb99abdef0bb5335", + "size": 17786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc911a5f5b79058760efcd7cbb99abdef0bb5335" + }, + { + "path": "png/google-news.png", + "mode": "100644", + "type": "blob", + "sha": "a05a06a5c9af5068b039cd773bd7a675d32b2831", + "size": 34818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a05a06a5c9af5068b039cd773bd7a675d32b2831" + }, + { + "path": "png/google-one.png", + "mode": "100644", + "type": "blob", + "sha": "78ded6f0027d4bd2e9b438a47126e8340b695821", + "size": 10520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78ded6f0027d4bd2e9b438a47126e8340b695821" + }, + { + "path": "png/google-pay.png", + "mode": "100644", + "type": "blob", + "sha": "92f1f43499999504c73bda4d53d7fa28819a1938", + "size": 23714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92f1f43499999504c73bda4d53d7fa28819a1938" + }, + { + "path": "png/google-photos.png", + "mode": "100644", + "type": "blob", + "sha": "8b8c642a1f2306fc9f2ec8d88732f8d80eeaaa4b", + "size": 14668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b8c642a1f2306fc9f2ec8d88732f8d80eeaaa4b" + }, + { + "path": "png/google-play-books.png", + "mode": "100644", + "type": "blob", + "sha": "43d0fef7ede617f44a3efd56b286cc88c0f216b8", + "size": 11373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43d0fef7ede617f44a3efd56b286cc88c0f216b8" + }, + { + "path": "png/google-play-games.png", + "mode": "100644", + "type": "blob", + "sha": "87ac9f2d1a5ce546c30238fe1bef6509b4b5b174", + "size": 17914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87ac9f2d1a5ce546c30238fe1bef6509b4b5b174" + }, + { + "path": "png/google-play.png", + "mode": "100644", + "type": "blob", + "sha": "fbf3033894e20c909df8db5560d0a3e02057f564", + "size": 14668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbf3033894e20c909df8db5560d0a3e02057f564" + }, + { + "path": "png/google-podcasts.png", + "mode": "100644", + "type": "blob", + "sha": "d700460744bdb32714e842b5df0470d9dc4dd28f", + "size": 15265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d700460744bdb32714e842b5df0470d9dc4dd28f" + }, + { + "path": "png/google-scholar.png", + "mode": "100644", + "type": "blob", + "sha": "5ce7018f98701a55b2831051d9509d046af3ac0e", + "size": 16830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ce7018f98701a55b2831051d9509d046af3ac0e" + }, + { + "path": "png/google-search-console.png", + "mode": "100644", + "type": "blob", + "sha": "5df869b0c8ba5a8b4107dc975115e3ad930f3866", + "size": 11859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5df869b0c8ba5a8b4107dc975115e3ad930f3866" + }, + { + "path": "png/google-sheets.png", + "mode": "100644", + "type": "blob", + "sha": "20a0202f3e26128f6f5504d9ce855373df86bbb8", + "size": 22003, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20a0202f3e26128f6f5504d9ce855373df86bbb8" + }, + { + "path": "png/google-shopping.png", + "mode": "100644", + "type": "blob", + "sha": "9d9e34398b0f7f31ebd19a770a4a63a39d489c98", + "size": 18188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d9e34398b0f7f31ebd19a770a4a63a39d489c98" + }, + { + "path": "png/google-sites.png", + "mode": "100644", + "type": "blob", + "sha": "154d2eafcb82927232e2f21e8b44d521de48fb54", + "size": 3895, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/154d2eafcb82927232e2f21e8b44d521de48fb54" + }, + { + "path": "png/google-slides.png", + "mode": "100644", + "type": "blob", + "sha": "6b7a6e040100fe451c759503ec59135923a3f49b", + "size": 21867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b7a6e040100fe451c759503ec59135923a3f49b" + }, + { + "path": "png/google-street-view.png", + "mode": "100644", + "type": "blob", + "sha": "e20e8d90757eb7de55941be51ae8edb421c83eb5", + "size": 30116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e20e8d90757eb7de55941be51ae8edb421c83eb5" + }, + { + "path": "png/google-tag-manager.png", + "mode": "100644", + "type": "blob", + "sha": "cc5f060938be92036831cfd59fb0cb2525d751d7", + "size": 18650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc5f060938be92036831cfd59fb0cb2525d751d7" + }, + { + "path": "png/google-translate.png", + "mode": "100644", + "type": "blob", + "sha": "02126cff7ced03914612df8cbe002da4bd1663ee", + "size": 26085, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02126cff7ced03914612df8cbe002da4bd1663ee" + }, + { + "path": "png/google-tv.png", + "mode": "100644", + "type": "blob", + "sha": "04a2fab596493085ebc328e141aa10c783cb9f93", + "size": 10562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04a2fab596493085ebc328e141aa10c783cb9f93" + }, + { + "path": "png/google-voice.png", + "mode": "100644", + "type": "blob", + "sha": "1f53f7b3030c364f58ca229c0b649018905ca4c0", + "size": 20447, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f53f7b3030c364f58ca229c0b649018905ca4c0" + }, + { + "path": "png/google-wallet.png", + "mode": "100644", + "type": "blob", + "sha": "9855228958ea87e5135787a689a1d0af39cc6d42", + "size": 12864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9855228958ea87e5135787a689a1d0af39cc6d42" + }, + { + "path": "png/google-wifi.png", + "mode": "100644", + "type": "blob", + "sha": "9d99e2d091358ed047730ba78d1df4e8f6c31c90", + "size": 25438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d99e2d091358ed047730ba78d1df4e8f6c31c90" + }, + { + "path": "png/google.png", + "mode": "100644", + "type": "blob", + "sha": "bb914f7decb9f842667ab94f0734ad18b5d46e86", + "size": 20042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb914f7decb9f842667ab94f0734ad18b5d46e86" + }, + { + "path": "png/gopeed.png", + "mode": "100644", + "type": "blob", + "sha": "2091dff8aef128b437a7a658fe6bdcaf4ee2eb5c", + "size": 17925, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2091dff8aef128b437a7a658fe6bdcaf4ee2eb5c" + }, + { + "path": "png/gose.png", + "mode": "100644", + "type": "blob", + "sha": "6039bed2cd1dd0bfe6a63c491ced54dd282b6c92", + "size": 18693, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6039bed2cd1dd0bfe6a63c491ced54dd282b6c92" + }, + { + "path": "png/gotenberg.png", + "mode": "100644", + "type": "blob", + "sha": "2de183b43e009b32083596a7d8ff2a4e29134c2e", + "size": 191793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2de183b43e009b32083596a7d8ff2a4e29134c2e" + }, + { + "path": "png/gotify.png", + "mode": "100644", + "type": "blob", + "sha": "1ea510d6953dbf76c4891ac12d9cf7e92e645040", + "size": 76131, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ea510d6953dbf76c4891ac12d9cf7e92e645040" + }, + { + "path": "png/gotosocial.png", + "mode": "100644", + "type": "blob", + "sha": "0d3ad7c48cb86e98eb125b5672b7603e9305753a", + "size": 40341, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d3ad7c48cb86e98eb125b5672b7603e9305753a" + }, + { + "path": "png/gpt4free.png", + "mode": "100644", + "type": "blob", + "sha": "300fd039a0feb4f67b8fad6382e1520bfcaf5d45", + "size": 17080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/300fd039a0feb4f67b8fad6382e1520bfcaf5d45" + }, + { + "path": "png/grafana.png", + "mode": "100644", + "type": "blob", + "sha": "6f7d9a0c642b7e65380e7c9b7df7f1c1fe2de026", + "size": 26391, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f7d9a0c642b7e65380e7c9b7df7f1c1fe2de026" + }, + { + "path": "png/gramps-web.png", + "mode": "100644", + "type": "blob", + "sha": "a9b58f97a0f5783acc982b73ebff5fd421dadf7e", + "size": 8557, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9b58f97a0f5783acc982b73ebff5fd421dadf7e" + }, + { + "path": "png/gramps.png", + "mode": "100644", + "type": "blob", + "sha": "117503424f132ca2ca4dc48c92b4c1f69f6aeed4", + "size": 11427, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/117503424f132ca2ca4dc48c92b4c1f69f6aeed4" + }, + { + "path": "png/grandstream.png", + "mode": "100644", + "type": "blob", + "sha": "b34fd16190cc777a87fdf93c360c4eb54e6c35aa", + "size": 32799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b34fd16190cc777a87fdf93c360c4eb54e6c35aa" + }, + { + "path": "png/grav-light.png", + "mode": "100644", + "type": "blob", + "sha": "e28c5a78ed0900af243f34313142af5e0e3b14d0", + "size": 24645, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e28c5a78ed0900af243f34313142af5e0e3b14d0" + }, + { + "path": "png/grav.png", + "mode": "100644", + "type": "blob", + "sha": "277531a5b010230fa8b6de9dbdde46120082bfc6", + "size": 31529, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/277531a5b010230fa8b6de9dbdde46120082bfc6" + }, + { + "path": "png/gravity.png", + "mode": "100644", + "type": "blob", + "sha": "add0b6cf5e07a5f6dad15a5dc44fddb56078bfff", + "size": 10047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/add0b6cf5e07a5f6dad15a5dc44fddb56078bfff" + }, + { + "path": "png/graylog.png", + "mode": "100644", + "type": "blob", + "sha": "ad1a76de803339c0a56954a0b571daca9ad57b55", + "size": 28764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad1a76de803339c0a56954a0b571daca9ad57b55" + }, + { + "path": "png/greenbone-light.png", + "mode": "100644", + "type": "blob", + "sha": "da8f909f9350c2b7a16ca65058b7024d74e7cd84", + "size": 53330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da8f909f9350c2b7a16ca65058b7024d74e7cd84" + }, + { + "path": "png/greenbone.png", + "mode": "100644", + "type": "blob", + "sha": "f1dd9d21025a149f3940c6fdd1747445f44190f0", + "size": 53381, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1dd9d21025a149f3940c6fdd1747445f44190f0" + }, + { + "path": "png/greenlight.png", + "mode": "100644", + "type": "blob", + "sha": "2afd5811b42ac7eaee8bab57bc84f651d486799c", + "size": 76426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2afd5811b42ac7eaee8bab57bc84f651d486799c" + }, + { + "path": "png/grimoire.png", + "mode": "100644", + "type": "blob", + "sha": "db1b0b529611f96be68000180f3895d371191a5f", + "size": 58494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db1b0b529611f96be68000180f3895d371191a5f" + }, + { + "path": "png/grist.png", + "mode": "100644", + "type": "blob", + "sha": "b3bc0e56aaf043ebb047b7c0c78517d5cbfe746a", + "size": 16382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3bc0e56aaf043ebb047b7c0c78517d5cbfe746a" + }, + { + "path": "png/grocy.png", + "mode": "100644", + "type": "blob", + "sha": "a423195b895be5f5c2ced887ff7743cafe051e2f", + "size": 15162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a423195b895be5f5c2ced887ff7743cafe051e2f" + }, + { + "path": "png/grok-dark.png", + "mode": "100644", + "type": "blob", + "sha": "f9587421a3d4da28f4d273689078ba92a4b702cf", + "size": 8682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9587421a3d4da28f4d273689078ba92a4b702cf" + }, + { + "path": "png/grok.png", + "mode": "100644", + "type": "blob", + "sha": "ba7ac4270b2997113d3535f03d096d28c5ea80cf", + "size": 8682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba7ac4270b2997113d3535f03d096d28c5ea80cf" + }, + { + "path": "png/grype.png", + "mode": "100644", + "type": "blob", + "sha": "fc74e3da6e7969fe7ffe63c7414bac2ceb5df9b1", + "size": 27142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc74e3da6e7969fe7ffe63c7414bac2ceb5df9b1" + }, + { + "path": "png/guacamole-light.png", + "mode": "100644", + "type": "blob", + "sha": "218ef5be8e0f1a386e93347ffc1e902d35e9bee7", + "size": 41911, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/218ef5be8e0f1a386e93347ffc1e902d35e9bee7" + }, + { + "path": "png/guacamole.png", + "mode": "100644", + "type": "blob", + "sha": "e973984ff8225cc91dfa2c206cbe351562dfb181", + "size": 38720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e973984ff8225cc91dfa2c206cbe351562dfb181" + }, + { + "path": "png/habit-trove.png", + "mode": "100644", + "type": "blob", + "sha": "e04daa7aa08c636635beb0de27d7af7639b5e92e", + "size": 93048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e04daa7aa08c636635beb0de27d7af7639b5e92e" + }, + { + "path": "png/habitica-dark.png", + "mode": "100644", + "type": "blob", + "sha": "5acc62cee2934276446de106979094bab37bc23a", + "size": 8394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5acc62cee2934276446de106979094bab37bc23a" + }, + { + "path": "png/habitica.png", + "mode": "100644", + "type": "blob", + "sha": "4386efd205cb4ac301c0eeeb54644282fa8dc05a", + "size": 8394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4386efd205cb4ac301c0eeeb54644282fa8dc05a" + }, + { + "path": "png/hacker-news.png", + "mode": "100644", + "type": "blob", + "sha": "8af6ce4a583581904f29372cbc1f75f7c69c7801", + "size": 10588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8af6ce4a583581904f29372cbc1f75f7c69c7801" + }, + { + "path": "png/hammond-light.png", + "mode": "100644", + "type": "blob", + "sha": "fcb83cde90e628a91edd5ed4c008c971878c1d3e", + "size": 10982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcb83cde90e628a91edd5ed4c008c971878c1d3e" + }, + { + "path": "png/hammond.png", + "mode": "100644", + "type": "blob", + "sha": "3850443767cbc7b1fa75ed478a77ccc6a6e987c6", + "size": 11750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3850443767cbc7b1fa75ed478a77ccc6a6e987c6" + }, + { + "path": "png/handbrake.png", + "mode": "100644", + "type": "blob", + "sha": "a8aa62aa5a75328638c13023015f143aa76eb68f", + "size": 60510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8aa62aa5a75328638c13023015f143aa76eb68f" + }, + { + "path": "png/haproxy.png", + "mode": "100644", + "type": "blob", + "sha": "38fb705672554b56bd9eb6947f67aa7adf9724a2", + "size": 53287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38fb705672554b56bd9eb6947f67aa7adf9724a2" + }, + { + "path": "png/haptic-light.png", + "mode": "100644", + "type": "blob", + "sha": "e57d89b1901d18372a9541c67beeeb4b4b624483", + "size": 22665, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e57d89b1901d18372a9541c67beeeb4b4b624483" + }, + { + "path": "png/haptic.png", + "mode": "100644", + "type": "blob", + "sha": "d038ba58f853a171f409619e8e23ac8fe67632a0", + "size": 22606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d038ba58f853a171f409619e8e23ac8fe67632a0" + }, + { + "path": "png/harbor.png", + "mode": "100644", + "type": "blob", + "sha": "adfd9b9c3124161c1c2ac9bcb4836b86c636e7ca", + "size": 50352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adfd9b9c3124161c1c2ac9bcb4836b86c636e7ca" + }, + { + "path": "png/hard-forum.png", + "mode": "100644", + "type": "blob", + "sha": "0f4cef9879726ca25cb30e81cc47590a40295c54", + "size": 49481, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f4cef9879726ca25cb30e81cc47590a40295c54" + }, + { + "path": "png/harvester.png", + "mode": "100644", + "type": "blob", + "sha": "fc60e89f02b46b0db0b3e23710510b5959e82238", + "size": 28567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc60e89f02b46b0db0b3e23710510b5959e82238" + }, + { + "path": "png/hasheous.png", + "mode": "100644", + "type": "blob", + "sha": "c4d3e8835a54686183b53b86cd6539eec337538d", + "size": 148983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4d3e8835a54686183b53b86cd6539eec337538d" + }, + { + "path": "png/hashicorp-boundary.png", + "mode": "100644", + "type": "blob", + "sha": "beb59d2c62d886fb827c1c25032105a644e29514", + "size": 10673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/beb59d2c62d886fb827c1c25032105a644e29514" + }, + { + "path": "png/hashicorp-consul.png", + "mode": "100644", + "type": "blob", + "sha": "249ab61a6499f4b19a954031ee7b1942d5020d36", + "size": 24617, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/249ab61a6499f4b19a954031ee7b1942d5020d36" + }, + { + "path": "png/hashicorp-nomad.png", + "mode": "100644", + "type": "blob", + "sha": "d7f863e9b2f1563767db24928b18976a39ff57b5", + "size": 11476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7f863e9b2f1563767db24928b18976a39ff57b5" + }, + { + "path": "png/hashicorp-packer.png", + "mode": "100644", + "type": "blob", + "sha": "ff85568c3dc2faa7cabb22cdf92699fbbefd28a4", + "size": 9193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff85568c3dc2faa7cabb22cdf92699fbbefd28a4" + }, + { + "path": "png/hashicorp-terraform.png", + "mode": "100644", + "type": "blob", + "sha": "df25de5cf17d7a1d4c0d5de4259e18df690648ac", + "size": 11672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df25de5cf17d7a1d4c0d5de4259e18df690648ac" + }, + { + "path": "png/hashicorp-vagrant.png", + "mode": "100644", + "type": "blob", + "sha": "2628448d39eeeebf2ae9923e189d44fbf27ff02b", + "size": 14440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2628448d39eeeebf2ae9923e189d44fbf27ff02b" + }, + { + "path": "png/hashicorp-vault.png", + "mode": "100644", + "type": "blob", + "sha": "bb540fb5f5b880f1bdf4aedda1a7fdaaf1b807d9", + "size": 11453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb540fb5f5b880f1bdf4aedda1a7fdaaf1b807d9" + }, + { + "path": "png/hashicorp-waypoint.png", + "mode": "100644", + "type": "blob", + "sha": "2eb65f9c2e23092a8a33bcd0a07069d72e917be6", + "size": 27485, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eb65f9c2e23092a8a33bcd0a07069d72e917be6" + }, + { + "path": "png/hastypaste.png", + "mode": "100644", + "type": "blob", + "sha": "e05b169d3c6965bafa390f090c9ce6137c139fbd", + "size": 23291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e05b169d3c6965bafa390f090c9ce6137c139fbd" + }, + { + "path": "png/hasura.png", + "mode": "100644", + "type": "blob", + "sha": "c02499da187907ec826571a881e7f952459920e6", + "size": 26058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c02499da187907ec826571a881e7f952459920e6" + }, + { + "path": "png/hathway.png", + "mode": "100644", + "type": "blob", + "sha": "5dfd7e08608adff28753730c8dd5a23a75748f94", + "size": 62824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5dfd7e08608adff28753730c8dd5a23a75748f94" + }, + { + "path": "png/hatsh-light.png", + "mode": "100644", + "type": "blob", + "sha": "c22fae541eadae600418288b1d7f703fd9b6e431", + "size": 21276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c22fae541eadae600418288b1d7f703fd9b6e431" + }, + { + "path": "png/hatsh.png", + "mode": "100644", + "type": "blob", + "sha": "e306de8e7d4dfacd7a0940b73c8054fa96273994", + "size": 19443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e306de8e7d4dfacd7a0940b73c8054fa96273994" + }, + { + "path": "png/hbo-light.png", + "mode": "100644", + "type": "blob", + "sha": "9e79187ef3f585939d31bda1f3e040b4c6942e28", + "size": 24382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e79187ef3f585939d31bda1f3e040b4c6942e28" + }, + { + "path": "png/hbo.png", + "mode": "100644", + "type": "blob", + "sha": "84048ac2008a2b0da6b183ba8325538dba94d3fa", + "size": 22317, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84048ac2008a2b0da6b183ba8325538dba94d3fa" + }, + { + "path": "png/hdhomerun-light.png", + "mode": "100644", + "type": "blob", + "sha": "614f7215bfe971bc15d24bc88bb74eaa09f3865a", + "size": 12880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/614f7215bfe971bc15d24bc88bb74eaa09f3865a" + }, + { + "path": "png/hdhomerun.png", + "mode": "100644", + "type": "blob", + "sha": "1caf88caa08c3e35d64b188809a927612fae4d22", + "size": 11547, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1caf88caa08c3e35d64b188809a927612fae4d22" + }, + { + "path": "png/headlamp-dark.png", + "mode": "100644", + "type": "blob", + "sha": "5ea10c847acfea2c388072d6f1dd66a655d6505c", + "size": 10451, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ea10c847acfea2c388072d6f1dd66a655d6505c" + }, + { + "path": "png/headlamp.png", + "mode": "100644", + "type": "blob", + "sha": "0955854fff8a01217d800249dece01626cc1d55b", + "size": 9991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0955854fff8a01217d800249dece01626cc1d55b" + }, + { + "path": "png/headphones.png", + "mode": "100644", + "type": "blob", + "sha": "55e01b9dd4e4e99bb409843fa25ed04f5e0f43e5", + "size": 8819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55e01b9dd4e4e99bb409843fa25ed04f5e0f43e5" + }, + { + "path": "png/headscale.png", + "mode": "100644", + "type": "blob", + "sha": "04921a51f52f1787c00b7a88a4e12d9aca33e02e", + "size": 32707, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04921a51f52f1787c00b7a88a4e12d9aca33e02e" + }, + { + "path": "png/healthchecks.png", + "mode": "100644", + "type": "blob", + "sha": "729f90d8bfab048873731bc7de913b9d2b4287e2", + "size": 10304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/729f90d8bfab048873731bc7de913b9d2b4287e2" + }, + { + "path": "png/hedgedoc.png", + "mode": "100644", + "type": "blob", + "sha": "7629bd13295f680b2b8287d7cd75c0b2890108e6", + "size": 33138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7629bd13295f680b2b8287d7cd75c0b2890108e6" + }, + { + "path": "png/heimdall-light.png", + "mode": "100644", + "type": "blob", + "sha": "938d02fa46514346345cb808c202d3363d4c85e5", + "size": 23297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/938d02fa46514346345cb808c202d3363d4c85e5" + }, + { + "path": "png/heimdall.png", + "mode": "100644", + "type": "blob", + "sha": "22af1f7213c43adb393f48c270be06e91eb652ce", + "size": 20401, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22af1f7213c43adb393f48c270be06e91eb652ce" + }, + { + "path": "png/helium-token.png", + "mode": "100644", + "type": "blob", + "sha": "4b777457a0c105def735e3bd0a7307c24aa8fa97", + "size": 25981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b777457a0c105def735e3bd0a7307c24aa8fa97" + }, + { + "path": "png/helm.png", + "mode": "100644", + "type": "blob", + "sha": "504093fbb902c8428d604726db387ecd667ef4e0", + "size": 18956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/504093fbb902c8428d604726db387ecd667ef4e0" + }, + { + "path": "png/helper-scripts.png", + "mode": "100644", + "type": "blob", + "sha": "66c7cc009d8213517da3edd59768fbbf70793310", + "size": 64341, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66c7cc009d8213517da3edd59768fbbf70793310" + }, + { + "path": "png/hemmelig-light.png", + "mode": "100644", + "type": "blob", + "sha": "f725c66c18b0ee78129071d3def5add3e28af370", + "size": 29237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f725c66c18b0ee78129071d3def5add3e28af370" + }, + { + "path": "png/hemmelig.png", + "mode": "100644", + "type": "blob", + "sha": "13252c3ef955b204bea2bfb9ece3bdce138af7b0", + "size": 39437, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13252c3ef955b204bea2bfb9ece3bdce138af7b0" + }, + { + "path": "png/hetzner-h.png", + "mode": "100644", + "type": "blob", + "sha": "6680d3e8e63d8db8306b363a0ac06cd0cffe5ee0", + "size": 11321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6680d3e8e63d8db8306b363a0ac06cd0cffe5ee0" + }, + { + "path": "png/hetzner.png", + "mode": "100644", + "type": "blob", + "sha": "59536b4a32d0c862187753df7afddd1f1d5c9725", + "size": 16510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59536b4a32d0c862187753df7afddd1f1d5c9725" + }, + { + "path": "png/hexo.png", + "mode": "100644", + "type": "blob", + "sha": "ed921a9ddff2f2408da1f889ee38aa55751291ad", + "size": 11137, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed921a9ddff2f2408da1f889ee38aa55751291ad" + }, + { + "path": "png/hexos.png", + "mode": "100644", + "type": "blob", + "sha": "3c04aad6d781c97a84cc973483ed2d120ac02a97", + "size": 12609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c04aad6d781c97a84cc973483ed2d120ac02a97" + }, + { + "path": "png/heyform.png", + "mode": "100644", + "type": "blob", + "sha": "ea4db6deab79ac6c00d3878a7c067ee0f7cefa20", + "size": 13172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea4db6deab79ac6c00d3878a7c067ee0f7cefa20" + }, + { + "path": "png/hi-anime.png", + "mode": "100644", + "type": "blob", + "sha": "f183a51da1e1a0a6ff5b405c58cecfc86316f674", + "size": 7895, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f183a51da1e1a0a6ff5b405c58cecfc86316f674" + }, + { + "path": "png/hifiberry.png", + "mode": "100644", + "type": "blob", + "sha": "754fca1f2cc0035b2d0050350374f88a9e17ff2a", + "size": 22102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/754fca1f2cc0035b2d0050350374f88a9e17ff2a" + }, + { + "path": "png/hikvision.png", + "mode": "100644", + "type": "blob", + "sha": "93cc2bc701d143bc6ba50558e7f3a6be184f51c6", + "size": 44450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93cc2bc701d143bc6ba50558e7f3a6be184f51c6" + }, + { + "path": "png/hilook.png", + "mode": "100644", + "type": "blob", + "sha": "b915070bea33ed77ec45a0577ab9eb754338c74d", + "size": 47121, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b915070bea33ed77ec45a0577ab9eb754338c74d" + }, + { + "path": "png/hivedav.png", + "mode": "100644", + "type": "blob", + "sha": "d1619b42d52ec0452b9f50437bf86c4d7f7af400", + "size": 59542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1619b42d52ec0452b9f50437bf86c4d7f7af400" + }, + { + "path": "png/hl-audiomuse-ai.png", + "mode": "100644", + "type": "blob", + "sha": "87e9a34e1421c62bf79910351c4a64cf883a86d8", + "size": 270339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87e9a34e1421c62bf79910351c4a64cf883a86d8" + }, + { + "path": "png/hoarder-light.png", + "mode": "100644", + "type": "blob", + "sha": "371e3672b8ef27d2fb1c86b34783b56b3e3d9508", + "size": 6684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/371e3672b8ef27d2fb1c86b34783b56b3e3d9508" + }, + { + "path": "png/hoarder.png", + "mode": "100644", + "type": "blob", + "sha": "7435ad9038afc7ccb9678269b84aa51f12008e59", + "size": 6232, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7435ad9038afc7ccb9678269b84aa51f12008e59" + }, + { + "path": "png/hollo-light.png", + "mode": "100644", + "type": "blob", + "sha": "2dbe2eb896d784b24226f6652ad74fa30763fa29", + "size": 16975, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dbe2eb896d784b24226f6652ad74fa30763fa29" + }, + { + "path": "png/hollo.png", + "mode": "100644", + "type": "blob", + "sha": "e8fe74e8cb7f0c313862a55a4018b7393e26673e", + "size": 15097, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8fe74e8cb7f0c313862a55a4018b7393e26673e" + }, + { + "path": "png/homarr.png", + "mode": "100644", + "type": "blob", + "sha": "c3275d000496163e791c07c6687d9fcd39312fa4", + "size": 29739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3275d000496163e791c07c6687d9fcd39312fa4" + }, + { + "path": "png/home-assistant-alt.png", + "mode": "100644", + "type": "blob", + "sha": "3916faeefc4e7875138971f59b5a031ffc732bf8", + "size": 21317, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3916faeefc4e7875138971f59b5a031ffc732bf8" + }, + { + "path": "png/home-assistant.png", + "mode": "100644", + "type": "blob", + "sha": "5b9ec835d49114f981d7f1f469e73d5c1cd18186", + "size": 12821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b9ec835d49114f981d7f1f469e73d5c1cd18186" + }, + { + "path": "png/homebox.png", + "mode": "100644", + "type": "blob", + "sha": "f543798a683fbbf95af802f974b5ec040c908ea7", + "size": 19352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f543798a683fbbf95af802f974b5ec040c908ea7" + }, + { + "path": "png/homebridge.png", + "mode": "100644", + "type": "blob", + "sha": "6c03279fbbf530d8c838222c5a4c9773747d0b68", + "size": 48749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c03279fbbf530d8c838222c5a4c9773747d0b68" + }, + { + "path": "png/homelabids.png", + "mode": "100644", + "type": "blob", + "sha": "93e8b52195e4b3e908318717b5ba3770f2570496", + "size": 19245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93e8b52195e4b3e908318717b5ba3770f2570496" + }, + { + "path": "png/homepage.png", + "mode": "100644", + "type": "blob", + "sha": "0228d556db05781a694e4a68514e3d165ab725d3", + "size": 11930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0228d556db05781a694e4a68514e3d165ab725d3" + }, + { + "path": "png/homer.png", + "mode": "100644", + "type": "blob", + "sha": "0ccea4f69f4429aae7d2e6449155d8553acfa96d", + "size": 38793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ccea4f69f4429aae7d2e6449155d8553acfa96d" + }, + { + "path": "png/homeseer.png", + "mode": "100644", + "type": "blob", + "sha": "12b6af8ada0844c5539a7c726a14bcf856adf456", + "size": 32482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12b6af8ada0844c5539a7c726a14bcf856adf456" + }, + { + "path": "png/homey.png", + "mode": "100644", + "type": "blob", + "sha": "5237659176402f880365a0fdc0427837292d65ba", + "size": 111539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5237659176402f880365a0fdc0427837292d65ba" + }, + { + "path": "png/honda-jet.png", + "mode": "100644", + "type": "blob", + "sha": "664d8422a08b0756742121c4b3580e494a6c62eb", + "size": 16037, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/664d8422a08b0756742121c4b3580e494a6c62eb" + }, + { + "path": "png/honeygain.png", + "mode": "100644", + "type": "blob", + "sha": "f97135a3e2a030c7477f6cb6ef46eefba6b07118", + "size": 55239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f97135a3e2a030c7477f6cb6ef46eefba6b07118" + }, + { + "path": "png/hoobs.png", + "mode": "100644", + "type": "blob", + "sha": "98a96362fe78c0bba6c284917c83c2a46af7253c", + "size": 24948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98a96362fe78c0bba6c284917c83c2a46af7253c" + }, + { + "path": "png/hoppscotch.png", + "mode": "100644", + "type": "blob", + "sha": "635dfa65e7b44c31a75fa71f7f78be738f090355", + "size": 56595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/635dfa65e7b44c31a75fa71f7f78be738f090355" + }, + { + "path": "png/hortusfox.png", + "mode": "100644", + "type": "blob", + "sha": "b94053b181dafae2149a11a747ae253ae15e02fe", + "size": 27173, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b94053b181dafae2149a11a747ae253ae15e02fe" + }, + { + "path": "png/hostinger.png", + "mode": "100644", + "type": "blob", + "sha": "accfecbc14e18014fb300e23e19f8410eca77ff3", + "size": 5401, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/accfecbc14e18014fb300e23e19f8410eca77ff3" + }, + { + "path": "png/hotio.png", + "mode": "100644", + "type": "blob", + "sha": "eb82e5a90f50a696d5d1c584bbd7a5a0a437c609", + "size": 18699, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb82e5a90f50a696d5d1c584bbd7a5a0a437c609" + }, + { + "path": "png/hp.png", + "mode": "100644", + "type": "blob", + "sha": "04cd2dd0f967f42bb339ee72ddb1db8b22abcb1c", + "size": 26010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04cd2dd0f967f42bb339ee72ddb1db8b22abcb1c" + }, + { + "path": "png/html-light.png", + "mode": "100644", + "type": "blob", + "sha": "14099ba2b577af5c8ee4f3544a3cc34ff7ae393c", + "size": 12852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14099ba2b577af5c8ee4f3544a3cc34ff7ae393c" + }, + { + "path": "png/html.png", + "mode": "100644", + "type": "blob", + "sha": "993a71ccca12bee319fbdb62a5d6dd6c21122a29", + "size": 12757, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/993a71ccca12bee319fbdb62a5d6dd6c21122a29" + }, + { + "path": "png/huawei.png", + "mode": "100644", + "type": "blob", + "sha": "979731978e7c70b74d5ca15e5c6e4fb0af4cb50c", + "size": 35967, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/979731978e7c70b74d5ca15e5c6e4fb0af4cb50c" + }, + { + "path": "png/hubitat.png", + "mode": "100644", + "type": "blob", + "sha": "2ed0a6b03f819d76eb7b06abeb2c32c1f03f5e0e", + "size": 30747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ed0a6b03f819d76eb7b06abeb2c32c1f03f5e0e" + }, + { + "path": "png/hubzilla.png", + "mode": "100644", + "type": "blob", + "sha": "eec1698e050d11a026e9d94d178c4a60afbccd20", + "size": 15270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eec1698e050d11a026e9d94d178c4a60afbccd20" + }, + { + "path": "png/hugging-face.png", + "mode": "100644", + "type": "blob", + "sha": "a3803504b477fdb7d97bd2898370001f5ee12c0e", + "size": 52365, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3803504b477fdb7d97bd2898370001f5ee12c0e" + }, + { + "path": "png/huginn.png", + "mode": "100644", + "type": "blob", + "sha": "b8992ab36cbd52cf3307694da285f4cfdf67d7b5", + "size": 41577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8992ab36cbd52cf3307694da285f4cfdf67d7b5" + }, + { + "path": "png/hugo.png", + "mode": "100644", + "type": "blob", + "sha": "c4ff4c6af55b505ba1a3c4167b212830c43ea916", + "size": 15796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4ff4c6af55b505ba1a3c4167b212830c43ea916" + }, + { + "path": "png/hulu.png", + "mode": "100644", + "type": "blob", + "sha": "d019ad67c1d2916858235d9ee07058233dfd6fa1", + "size": 15122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d019ad67c1d2916858235d9ee07058233dfd6fa1" + }, + { + "path": "png/humhub.png", + "mode": "100644", + "type": "blob", + "sha": "8fd6732c5ae96158e4553443d23431fea18f0859", + "size": 15898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fd6732c5ae96158e4553443d23431fea18f0859" + }, + { + "path": "png/huntarr.png", + "mode": "100644", + "type": "blob", + "sha": "76bfbef7c247488fd276f1ed0bfe06d0c1387d6d", + "size": 189872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76bfbef7c247488fd276f1ed0bfe06d0c1387d6d" + }, + { + "path": "png/hydra.png", + "mode": "100644", + "type": "blob", + "sha": "0864bfc8e6ee3284fafe3d88704aabdd022f2c58", + "size": 46750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0864bfc8e6ee3284fafe3d88704aabdd022f2c58" + }, + { + "path": "png/hyperion.png", + "mode": "100644", + "type": "blob", + "sha": "da4714147af2f34327c8a5b398fce9151ef885d3", + "size": 58510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da4714147af2f34327c8a5b398fce9151ef885d3" + }, + { + "path": "png/hyperpipe-light.png", + "mode": "100644", + "type": "blob", + "sha": "2fb04a954e52ff01721b4980f62bd526285c5ba8", + "size": 14936, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fb04a954e52ff01721b4980f62bd526285c5ba8" + }, + { + "path": "png/hyperpipe.png", + "mode": "100644", + "type": "blob", + "sha": "d73d5f23c52b50b211c595e7b224bbf1161652c7", + "size": 16503, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d73d5f23c52b50b211c595e7b224bbf1161652c7" + }, + { + "path": "png/hyprland.png", + "mode": "100644", + "type": "blob", + "sha": "419dace6c204912414efd4ca581773b5832df1ce", + "size": 15930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/419dace6c204912414efd4ca581773b5832df1ce" + }, + { + "path": "png/i-librarian.png", + "mode": "100644", + "type": "blob", + "sha": "dc30aa0920e5b2998a1530350883ee4455726669", + "size": 7256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc30aa0920e5b2998a1530350883ee4455726669" + }, + { + "path": "png/i2p-light.png", + "mode": "100644", + "type": "blob", + "sha": "cbf3a9b8fbba693a5215d8ffecdd03150b5e3caa", + "size": 24895, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbf3a9b8fbba693a5215d8ffecdd03150b5e3caa" + }, + { + "path": "png/i2p.png", + "mode": "100644", + "type": "blob", + "sha": "cd56cba393b77ed90fad131f732c5c5be76b5176", + "size": 25311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd56cba393b77ed90fad131f732c5c5be76b5176" + }, + { + "path": "png/i2pd.png", + "mode": "100644", + "type": "blob", + "sha": "a42ec5706219c27446f5dc16d723ff9206c0df33", + "size": 81715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a42ec5706219c27446f5dc16d723ff9206c0df33" + }, + { + "path": "png/ical.png", + "mode": "100644", + "type": "blob", + "sha": "b04c592bdc2e5a065201635e9b6de8832f9524c0", + "size": 14507, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b04c592bdc2e5a065201635e9b6de8832f9524c0" + }, + { + "path": "png/icecast.png", + "mode": "100644", + "type": "blob", + "sha": "4a06548cb66198c384d69932ff275a2e03684ca7", + "size": 39259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a06548cb66198c384d69932ff275a2e03684ca7" + }, + { + "path": "png/icinga-full-light.png", + "mode": "100644", + "type": "blob", + "sha": "0f2df602ccbe2094e4a07e8d2825d07b94ecb181", + "size": 40937, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f2df602ccbe2094e4a07e8d2825d07b94ecb181" + }, + { + "path": "png/icinga-full.png", + "mode": "100644", + "type": "blob", + "sha": "14d8f4966feb1803bea14c0f7e8134dac1e4bbfc", + "size": 48713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14d8f4966feb1803bea14c0f7e8134dac1e4bbfc" + }, + { + "path": "png/icinga-light.png", + "mode": "100644", + "type": "blob", + "sha": "d372d9d77d35ab9de076b059c8599a56a0362b58", + "size": 13874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d372d9d77d35ab9de076b059c8599a56a0362b58" + }, + { + "path": "png/icinga.png", + "mode": "100644", + "type": "blob", + "sha": "624f95afad433295f2f047efe0b3329af2b703c7", + "size": 14600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/624f95afad433295f2f047efe0b3329af2b703c7" + }, + { + "path": "png/icloud.png", + "mode": "100644", + "type": "blob", + "sha": "47d2926a0bfbb3b677b3ac57b7dffd860bd6a978", + "size": 22161, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47d2926a0bfbb3b677b3ac57b7dffd860bd6a978" + }, + { + "path": "png/idealo.png", + "mode": "100644", + "type": "blob", + "sha": "a96a66aa20387ae22db2cb5509ba017578d0f30f", + "size": 287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a96a66aa20387ae22db2cb5509ba017578d0f30f" + }, + { + "path": "png/ideco.png", + "mode": "100644", + "type": "blob", + "sha": "d58b49f40d9f5e76ba8420e61e1e31902652a1a6", + "size": 3979, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d58b49f40d9f5e76ba8420e61e1e31902652a1a6" + }, + { + "path": "png/idrac.png", + "mode": "100644", + "type": "blob", + "sha": "95f670afe9fa36ca6c15378b4cc067f8bcf95c51", + "size": 25958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95f670afe9fa36ca6c15378b4cc067f8bcf95c51" + }, + { + "path": "png/idrive.png", + "mode": "100644", + "type": "blob", + "sha": "74cf7e5e3bc5186c8de1bf1193ca1abe11f09864", + "size": 37335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74cf7e5e3bc5186c8de1bf1193ca1abe11f09864" + }, + { + "path": "png/ihatemoney.png", + "mode": "100644", + "type": "blob", + "sha": "5659bbec6b8d4e5096d9195b40a306b23dcbd01d", + "size": 52373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5659bbec6b8d4e5096d9195b40a306b23dcbd01d" + }, + { + "path": "png/ikuai.png", + "mode": "100644", + "type": "blob", + "sha": "13a6464f60a9a04bd6d0f5f464d5f6b03d6d312f", + "size": 103455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13a6464f60a9a04bd6d0f5f464d5f6b03d6d312f" + }, + { + "path": "png/ilo.png", + "mode": "100644", + "type": "blob", + "sha": "04cd2dd0f967f42bb339ee72ddb1db8b22abcb1c", + "size": 26010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04cd2dd0f967f42bb339ee72ddb1db8b22abcb1c" + }, + { + "path": "png/image-maid.png", + "mode": "100644", + "type": "blob", + "sha": "6c6a4b2404e575ff00695b153267cc7d81073181", + "size": 32375, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c6a4b2404e575ff00695b153267cc7d81073181" + }, + { + "path": "png/immich-frame-light.png", + "mode": "100644", + "type": "blob", + "sha": "9b5db3148f9ad6af9a479c2fd38c654d06cbbcd5", + "size": 21563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b5db3148f9ad6af9a479c2fd38c654d06cbbcd5" + }, + { + "path": "png/immich-frame.png", + "mode": "100644", + "type": "blob", + "sha": "2fb017499a8741ca0dc849446c7a262d24577b45", + "size": 17355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fb017499a8741ca0dc849446c7a262d24577b45" + }, + { + "path": "png/immich-kiosk-light.png", + "mode": "100644", + "type": "blob", + "sha": "f1d7b991e3cc6029e73045d9bb5d2012cd07d63b", + "size": 52754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1d7b991e3cc6029e73045d9bb5d2012cd07d63b" + }, + { + "path": "png/immich-kiosk.png", + "mode": "100644", + "type": "blob", + "sha": "ecfe3e02c4179110ec695b36371bbeb4447ecaa3", + "size": 57130, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecfe3e02c4179110ec695b36371bbeb4447ecaa3" + }, + { + "path": "png/immich-power-tools.png", + "mode": "100644", + "type": "blob", + "sha": "36f77f1352dd9a67f888ffafdbbd7c4757a1da8d", + "size": 7116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36f77f1352dd9a67f888ffafdbbd7c4757a1da8d" + }, + { + "path": "png/immich-public-proxy.png", + "mode": "100644", + "type": "blob", + "sha": "2aa232ebcc4b8c93b54b96bce45d93f6cc6abac4", + "size": 28934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2aa232ebcc4b8c93b54b96bce45d93f6cc6abac4" + }, + { + "path": "png/immich.png", + "mode": "100644", + "type": "blob", + "sha": "9284ce5b7e3681b88e541722964329d0ea1efc76", + "size": 26240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9284ce5b7e3681b88e541722964329d0ea1efc76" + }, + { + "path": "png/incus.png", + "mode": "100644", + "type": "blob", + "sha": "43377088bb200e49f62707e9f1153d498f4a2b82", + "size": 48972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43377088bb200e49f62707e9f1153d498f4a2b82" + }, + { + "path": "png/infinite-craft.png", + "mode": "100644", + "type": "blob", + "sha": "4d3d4c6fb6d1aecf8647b44fcb35beea8b01e1ab", + "size": 5497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d3d4c6fb6d1aecf8647b44fcb35beea8b01e1ab" + }, + { + "path": "png/infisical.png", + "mode": "100644", + "type": "blob", + "sha": "f9c2a26bcdfd1a225f5291a07daa275215ace9fc", + "size": 8025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9c2a26bcdfd1a225f5291a07daa275215ace9fc" + }, + { + "path": "png/influxdb.png", + "mode": "100644", + "type": "blob", + "sha": "cea7e2191b81de21177181b1acd3398e1a896362", + "size": 35183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cea7e2191b81de21177181b1acd3398e1a896362" + }, + { + "path": "png/infoblox.png", + "mode": "100644", + "type": "blob", + "sha": "82ee24edded8c8aae8d7826f7d15cf02a61c4065", + "size": 25493, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82ee24edded8c8aae8d7826f7d15cf02a61c4065" + }, + { + "path": "png/infomaniak-k.png", + "mode": "100644", + "type": "blob", + "sha": "9470b3273f5a2986819f7a42fe837d13a778253b", + "size": 9267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9470b3273f5a2986819f7a42fe837d13a778253b" + }, + { + "path": "png/infomaniak-kdrive-dark.png", + "mode": "100644", + "type": "blob", + "sha": "b634b3ecb5e512484c6c8200bacee6fca528bda4", + "size": 54955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b634b3ecb5e512484c6c8200bacee6fca528bda4" + }, + { + "path": "png/infomaniak-kdrive-light.png", + "mode": "100644", + "type": "blob", + "sha": "eaa380884c8c2d941805e0d63fb268db97a31f55", + "size": 55288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaa380884c8c2d941805e0d63fb268db97a31f55" + }, + { + "path": "png/infomaniak-kmeet-dark.png", + "mode": "100644", + "type": "blob", + "sha": "1bb85ad3a6f167f27eb459f087d2852f056d0364", + "size": 38685, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bb85ad3a6f167f27eb459f087d2852f056d0364" + }, + { + "path": "png/infomaniak-kmeet-light.png", + "mode": "100644", + "type": "blob", + "sha": "3832b0e873c71f9d58d66f65d0750541a933ca9e", + "size": 40845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3832b0e873c71f9d58d66f65d0750541a933ca9e" + }, + { + "path": "png/infomaniak-swisstransfer-dark.png", + "mode": "100644", + "type": "blob", + "sha": "41e380485763ee3e01a9c105b906cb55d35cffe5", + "size": 74228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41e380485763ee3e01a9c105b906cb55d35cffe5" + }, + { + "path": "png/infomaniak-swisstransfer-light.png", + "mode": "100644", + "type": "blob", + "sha": "9e96a7bb462c2c3e077706f220f089a4c4ce196e", + "size": 56663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e96a7bb462c2c3e077706f220f089a4c4ce196e" + }, + { + "path": "png/inoreader.png", + "mode": "100644", + "type": "blob", + "sha": "57d9d6c58616eacedcf22c228ce3e2f65c65f361", + "size": 16425, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57d9d6c58616eacedcf22c228ce3e2f65c65f361" + }, + { + "path": "png/insanelymac.png", + "mode": "100644", + "type": "blob", + "sha": "71d9a0855d5368c53d548391d512222eade0bc5d", + "size": 27079, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71d9a0855d5368c53d548391d512222eade0bc5d" + }, + { + "path": "png/instagram.png", + "mode": "100644", + "type": "blob", + "sha": "8cf18cfa3038d13f850d5cceb1af485f976ccbe7", + "size": 102780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8cf18cfa3038d13f850d5cceb1af485f976ccbe7" + }, + { + "path": "png/intellij.png", + "mode": "100644", + "type": "blob", + "sha": "f3af1244be6936d08a109e5190fde0ed406d365e", + "size": 24240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3af1244be6936d08a109e5190fde0ed406d365e" + }, + { + "path": "png/inventree.png", + "mode": "100644", + "type": "blob", + "sha": "7522cab716797fa01603986aa5db8a8a603c9693", + "size": 33917, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7522cab716797fa01603986aa5db8a8a603c9693" + }, + { + "path": "png/invidious.png", + "mode": "100644", + "type": "blob", + "sha": "f08b5b67285d34d7a232fc21293c7c5668a88be6", + "size": 22088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f08b5b67285d34d7a232fc21293c7c5668a88be6" + }, + { + "path": "png/invisioncommunity.png", + "mode": "100644", + "type": "blob", + "sha": "526f21737757f91dce3aa0ebdb321700acb56c63", + "size": 9066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/526f21737757f91dce3aa0ebdb321700acb56c63" + }, + { + "path": "png/invoice-ninja-light.png", + "mode": "100644", + "type": "blob", + "sha": "55d5059fc4809c87ed5d667468c7d07d456e8c80", + "size": 23500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55d5059fc4809c87ed5d667468c7d07d456e8c80" + }, + { + "path": "png/invoice-ninja.png", + "mode": "100644", + "type": "blob", + "sha": "3cd47619fe0ce5f8674f5ea90ccfca78bb70a606", + "size": 17411, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cd47619fe0ce5f8674f5ea90ccfca78bb70a606" + }, + { + "path": "png/invoiceninja-light.png", + "mode": "100644", + "type": "blob", + "sha": "2462c8277baed1939b2e97d7b5929844231549b1", + "size": 9460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2462c8277baed1939b2e97d7b5929844231549b1" + }, + { + "path": "png/invoiceninja.png", + "mode": "100644", + "type": "blob", + "sha": "a0e3c0e59526b332e346add7b41127de2d83e4f4", + "size": 9460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0e3c0e59526b332e346add7b41127de2d83e4f4" + }, + { + "path": "png/invoke-ai.png", + "mode": "100644", + "type": "blob", + "sha": "0a1334d8d29f0b725d88c26de38a1c47d627800c", + "size": 8357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a1334d8d29f0b725d88c26de38a1c47d627800c" + }, + { + "path": "png/iobroker.png", + "mode": "100644", + "type": "blob", + "sha": "ee15daa256ad2071b39bf03efcd3522964102a9a", + "size": 20918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee15daa256ad2071b39bf03efcd3522964102a9a" + }, + { + "path": "png/ionos.png", + "mode": "100644", + "type": "blob", + "sha": "7754804ca1c185c9b875ff587e252b2b633adc50", + "size": 3229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7754804ca1c185c9b875ff587e252b2b633adc50" + }, + { + "path": "png/ipboard.png", + "mode": "100644", + "type": "blob", + "sha": "526f21737757f91dce3aa0ebdb321700acb56c63", + "size": 9066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/526f21737757f91dce3aa0ebdb321700acb56c63" + }, + { + "path": "png/ipcamtalk.png", + "mode": "100644", + "type": "blob", + "sha": "bea866c0639f5c1e0e50408bb707590d18b9f44a", + "size": 54933, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bea866c0639f5c1e0e50408bb707590d18b9f44a" + }, + { + "path": "png/ipfs-light.png", + "mode": "100644", + "type": "blob", + "sha": "49b16a79392b5b0d67aa54a2ebf22f79bf9e32a3", + "size": 27847, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49b16a79392b5b0d67aa54a2ebf22f79bf9e32a3" + }, + { + "path": "png/ipfs.png", + "mode": "100644", + "type": "blob", + "sha": "fa9ceecf57db9186239eeafa925e111e3c8a9b2e", + "size": 27926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa9ceecf57db9186239eeafa925e111e3c8a9b2e" + }, + { + "path": "png/irc.png", + "mode": "100644", + "type": "blob", + "sha": "517d61bd51e1cf02db02bd4e67b2d4bcf611b680", + "size": 40370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/517d61bd51e1cf02db02bd4e67b2d4bcf611b680" + }, + { + "path": "png/iredmail.png", + "mode": "100644", + "type": "blob", + "sha": "02c7cf93050dbc239907c405140a8517afae994d", + "size": 3125, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02c7cf93050dbc239907c405140a8517afae994d" + }, + { + "path": "png/ispconfig.png", + "mode": "100644", + "type": "blob", + "sha": "0c8848b4936b765961a1e1a6f800057db54b62c6", + "size": 9032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c8848b4936b765961a1e1a6f800057db54b62c6" + }, + { + "path": "png/ispy.png", + "mode": "100644", + "type": "blob", + "sha": "108a1fae45c3719efdd736f4b5ca0116fe0f270d", + "size": 43531, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/108a1fae45c3719efdd736f4b5ca0116fe0f270d" + }, + { + "path": "png/issabel-pbx-dark.png", + "mode": "100644", + "type": "blob", + "sha": "394bd7aca05506b854cba02fe5167b7faebef77a", + "size": 18457, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/394bd7aca05506b854cba02fe5167b7faebef77a" + }, + { + "path": "png/issabel-pbx-wordmark-dark.png", + "mode": "100644", + "type": "blob", + "sha": "6c724302d39a93c84481c17e9f5dc2660fb096fb", + "size": 40279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c724302d39a93c84481c17e9f5dc2660fb096fb" + }, + { + "path": "png/issabel-pbx-wordmark.png", + "mode": "100644", + "type": "blob", + "sha": "f5806e267f1482da9fb6b7a21695a5f5f80faf88", + "size": 38867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5806e267f1482da9fb6b7a21695a5f5f80faf88" + }, + { + "path": "png/issabel-pbx.png", + "mode": "100644", + "type": "blob", + "sha": "2ead571d6cb09dfa9dcd24060d686121008883fb", + "size": 17812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ead571d6cb09dfa9dcd24060d686121008883fb" + }, + { + "path": "png/it-tools-light.png", + "mode": "100644", + "type": "blob", + "sha": "2bc95a5e82a0f73fbaae7179016bd2c76b4f5ab7", + "size": 24550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bc95a5e82a0f73fbaae7179016bd2c76b4f5ab7" + }, + { + "path": "png/it-tools.png", + "mode": "100644", + "type": "blob", + "sha": "7579cd57b60d900daadac8a8cbf12510d1e34a26", + "size": 26075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7579cd57b60d900daadac8a8cbf12510d1e34a26" + }, + { + "path": "png/italki.png", + "mode": "100644", + "type": "blob", + "sha": "d7c48875a93f9c2594325f09d53ee5d1aea9fe4b", + "size": 24780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7c48875a93f9c2594325f09d53ee5d1aea9fe4b" + }, + { + "path": "png/itau.png", + "mode": "100644", + "type": "blob", + "sha": "a7ad6a61f23c0308ca96f070af396f95c89efba7", + "size": 9349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7ad6a61f23c0308ca96f070af396f95c89efba7" + }, + { + "path": "png/jackett-light.png", + "mode": "100644", + "type": "blob", + "sha": "12c482397e47b85658a4ed9c017376f9d4221e06", + "size": 12146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12c482397e47b85658a4ed9c017376f9d4221e06" + }, + { + "path": "png/jackett.png", + "mode": "100644", + "type": "blob", + "sha": "bcee12d9141c2648ad5f8701053070c00417c47c", + "size": 11367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcee12d9141c2648ad5f8701053070c00417c47c" + }, + { + "path": "png/jaeger.png", + "mode": "100644", + "type": "blob", + "sha": "f9576893c385f033f70e7394826557e97b470735", + "size": 44768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9576893c385f033f70e7394826557e97b470735" + }, + { + "path": "png/jamf.png", + "mode": "100644", + "type": "blob", + "sha": "479c76d7caaec9fd3705959e49e4eb1d72ee4c79", + "size": 4447, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/479c76d7caaec9fd3705959e49e4eb1d72ee4c79" + }, + { + "path": "png/jamstack.png", + "mode": "100644", + "type": "blob", + "sha": "9f076edefdbc6c63194a57623b3c84aad51bbfda", + "size": 14840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f076edefdbc6c63194a57623b3c84aad51bbfda" + }, + { + "path": "png/java.png", + "mode": "100644", + "type": "blob", + "sha": "d86930f9db7d23d8ca73ca55c26999f639504b2c", + "size": 24904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d86930f9db7d23d8ca73ca55c26999f639504b2c" + }, + { + "path": "png/javascript-light.png", + "mode": "100644", + "type": "blob", + "sha": "92455b60a93f3a9cb4e61c3ba934f52c679bd426", + "size": 10641, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92455b60a93f3a9cb4e61c3ba934f52c679bd426" + }, + { + "path": "png/javascript.png", + "mode": "100644", + "type": "blob", + "sha": "f86b29bdf73ef259ed1ee74409ff4943b7e5b346", + "size": 11454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f86b29bdf73ef259ed1ee74409ff4943b7e5b346" + }, + { + "path": "png/jdownloader.png", + "mode": "100644", + "type": "blob", + "sha": "88af0d844e334ad0bc6d7969d05d4aee35063c1c", + "size": 246804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88af0d844e334ad0bc6d7969d05d4aee35063c1c" + }, + { + "path": "png/jdownloader2.png", + "mode": "100644", + "type": "blob", + "sha": "88af0d844e334ad0bc6d7969d05d4aee35063c1c", + "size": 246804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88af0d844e334ad0bc6d7969d05d4aee35063c1c" + }, + { + "path": "png/jeedom.png", + "mode": "100644", + "type": "blob", + "sha": "b676781e88cab5d71fbbb3e3428df657ffe2ed1a", + "size": 23039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b676781e88cab5d71fbbb3e3428df657ffe2ed1a" + }, + { + "path": "png/jekyll.png", + "mode": "100644", + "type": "blob", + "sha": "414b040da53815b64094a4f53fe3f3fc82cc3cb3", + "size": 24011, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/414b040da53815b64094a4f53fe3f3fc82cc3cb3" + }, + { + "path": "png/jellyfin-vue.png", + "mode": "100644", + "type": "blob", + "sha": "00d3d9fd5942f56f80410bdba3ffd7aca791fd14", + "size": 36365, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00d3d9fd5942f56f80410bdba3ffd7aca791fd14" + }, + { + "path": "png/jellyfin.png", + "mode": "100644", + "type": "blob", + "sha": "c8c07ef9c8c1b315089e84935e7d0365a4b9af4c", + "size": 45631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8c07ef9c8c1b315089e84935e7d0365a4b9af4c" + }, + { + "path": "png/jellyseerr.png", + "mode": "100644", + "type": "blob", + "sha": "7668905a5cb52ffeee1405f3d0ff625fc9da0c2e", + "size": 61086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7668905a5cb52ffeee1405f3d0ff625fc9da0c2e" + }, + { + "path": "png/jellystat-dark.png", + "mode": "100644", + "type": "blob", + "sha": "139303ace5b46ad7da9d25980948570b5276fb76", + "size": 12306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/139303ace5b46ad7da9d25980948570b5276fb76" + }, + { + "path": "png/jellystat.png", + "mode": "100644", + "type": "blob", + "sha": "5cac18002ba3eda972fbf57295ab3620d7c7898c", + "size": 12378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cac18002ba3eda972fbf57295ab3620d7c7898c" + }, + { + "path": "png/jelu.png", + "mode": "100644", + "type": "blob", + "sha": "044e8be4a0c91b0817a1fb2babf001a86362a1db", + "size": 7605, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/044e8be4a0c91b0817a1fb2babf001a86362a1db" + }, + { + "path": "png/jenkins.png", + "mode": "100644", + "type": "blob", + "sha": "67b6cb0d7de58076f7f6e36239cc7b6c79bdb06f", + "size": 64571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67b6cb0d7de58076f7f6e36239cc7b6c79bdb06f" + }, + { + "path": "png/jetbrains-fleet.png", + "mode": "100644", + "type": "blob", + "sha": "1dc4b1d504df6c1d9116322cd46fadf48bf45127", + "size": 77185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dc4b1d504df6c1d9116322cd46fadf48bf45127" + }, + { + "path": "png/jetbrains-toolbox.png", + "mode": "100644", + "type": "blob", + "sha": "4740817a622225fa0b7a6cb65269d3a32ea8bbcc", + "size": 18780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4740817a622225fa0b7a6cb65269d3a32ea8bbcc" + }, + { + "path": "png/jetbrains-youtrack.png", + "mode": "100644", + "type": "blob", + "sha": "9aa59ac9c74426ff6f10f0dbac746527d474722a", + "size": 28792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9aa59ac9c74426ff6f10f0dbac746527d474722a" + }, + { + "path": "png/jetkvm-full.png", + "mode": "100644", + "type": "blob", + "sha": "0cb9d908bf34dd61666255fc56318462f8ee618d", + "size": 38809, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cb9d908bf34dd61666255fc56318462f8ee618d" + }, + { + "path": "png/jetkvm.png", + "mode": "100644", + "type": "blob", + "sha": "2803ddda2d2085643105386bace5c0b547f53e4e", + "size": 12732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2803ddda2d2085643105386bace5c0b547f53e4e" + }, + { + "path": "png/jfrog.png", + "mode": "100644", + "type": "blob", + "sha": "5c09977440d5c3634389e444d0dfe5d7467ec290", + "size": 40571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c09977440d5c3634389e444d0dfe5d7467ec290" + }, + { + "path": "png/jio.png", + "mode": "100644", + "type": "blob", + "sha": "64c2f52531cd9b6efaf2bd91ee8545a7568948b9", + "size": 18006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64c2f52531cd9b6efaf2bd91ee8545a7568948b9" + }, + { + "path": "png/jiohotstar.png", + "mode": "100644", + "type": "blob", + "sha": "da5d494cf0e8b8a30dcdf7e2e1dffb3df3743c00", + "size": 85609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da5d494cf0e8b8a30dcdf7e2e1dffb3df3743c00" + }, + { + "path": "png/jira.png", + "mode": "100644", + "type": "blob", + "sha": "51a167d0ce5dfd414a28f0c2d6cffecb420440c2", + "size": 21262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51a167d0ce5dfd414a28f0c2d6cffecb420440c2" + }, + { + "path": "png/jitsi-meet.png", + "mode": "100644", + "type": "blob", + "sha": "a999ed943455180b864127d4ade0d83f7b4dc1a8", + "size": 53591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a999ed943455180b864127d4ade0d83f7b4dc1a8" + }, + { + "path": "png/jitsi.png", + "mode": "100644", + "type": "blob", + "sha": "f8e7bdbf6d04b7112d91b9099300c94fdc71dd77", + "size": 55439, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8e7bdbf6d04b7112d91b9099300c94fdc71dd77" + }, + { + "path": "png/joal.png", + "mode": "100644", + "type": "blob", + "sha": "18bf76053da63fe64d019dcb8d61038d33339e41", + "size": 5509, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18bf76053da63fe64d019dcb8d61038d33339e41" + }, + { + "path": "png/joomla.png", + "mode": "100644", + "type": "blob", + "sha": "4d72487b62635c0dab92a09c95f574b7867f9303", + "size": 27305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d72487b62635c0dab92a09c95f574b7867f9303" + }, + { + "path": "png/joplin.png", + "mode": "100644", + "type": "blob", + "sha": "463fe366891dac59aa47c9485bc32e0a91f68ee3", + "size": 27391, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/463fe366891dac59aa47c9485bc32e0a91f68ee3" + }, + { + "path": "png/jotty.png", + "mode": "100644", + "type": "blob", + "sha": "ce2e95aa760dfc3242ff6622389cfd2435942649", + "size": 6719, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce2e95aa760dfc3242ff6622389cfd2435942649" + }, + { + "path": "png/jujutsu-vcs.png", + "mode": "100644", + "type": "blob", + "sha": "1c0dbd67961d20f7f5fa3ce230cf90c3a8b673fb", + "size": 38123, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c0dbd67961d20f7f5fa3ce230cf90c3a8b673fb" + }, + { + "path": "png/julia.png", + "mode": "100644", + "type": "blob", + "sha": "ca233b68f5ee07dece7c929c30b471014d365115", + "size": 17422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca233b68f5ee07dece7c929c30b471014d365115" + }, + { + "path": "png/jupyter.png", + "mode": "100644", + "type": "blob", + "sha": "d67f8e4461491a34a89dc6944bfe694cdd480c57", + "size": 25151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d67f8e4461491a34a89dc6944bfe694cdd480c57" + }, + { + "path": "png/jwt-io-light.png", + "mode": "100644", + "type": "blob", + "sha": "a117619fe546422be4a62bb7071b23aec77b8385", + "size": 17865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a117619fe546422be4a62bb7071b23aec77b8385" + }, + { + "path": "png/jwt-io.png", + "mode": "100644", + "type": "blob", + "sha": "ca1cd1d58fd42003e2f14645c819ee5184b04388", + "size": 19000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca1cd1d58fd42003e2f14645c819ee5184b04388" + }, + { + "path": "png/k-speeder.png", + "mode": "100644", + "type": "blob", + "sha": "a7eb1999c06896cb96ec4c76a90d2d7fd6463dcf", + "size": 82448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7eb1999c06896cb96ec4c76a90d2d7fd6463dcf" + }, + { + "path": "png/kagi.png", + "mode": "100644", + "type": "blob", + "sha": "1148605f2ba6305d940af6ccd1c82b2afd8fe19c", + "size": 16433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1148605f2ba6305d940af6ccd1c82b2afd8fe19c" + }, + { + "path": "png/kaizoku.png", + "mode": "100644", + "type": "blob", + "sha": "dc1770ca7b974d557966bf0ad6d22e9b27e4f247", + "size": 52060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc1770ca7b974d557966bf0ad6d22e9b27e4f247" + }, + { + "path": "png/kali-linux.png", + "mode": "100644", + "type": "blob", + "sha": "a06ab98a48db181b72a99a7c2c8778041de4f1a9", + "size": 43623, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a06ab98a48db181b72a99a7c2c8778041de4f1a9" + }, + { + "path": "png/kamatera.png", + "mode": "100644", + "type": "blob", + "sha": "85180a8bcf99f9a38ff722d017045a3aa8cae6c4", + "size": 41728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85180a8bcf99f9a38ff722d017045a3aa8cae6c4" + }, + { + "path": "png/kanboard-light.png", + "mode": "100644", + "type": "blob", + "sha": "e12345ab48a7ed5b626762279e8454a04073b4e5", + "size": 17688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e12345ab48a7ed5b626762279e8454a04073b4e5" + }, + { + "path": "png/kanboard.png", + "mode": "100644", + "type": "blob", + "sha": "2817f3fd6c7378c0e27cb07a94537b4e35a0058a", + "size": 18247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2817f3fd6c7378c0e27cb07a94537b4e35a0058a" + }, + { + "path": "png/kanidm.png", + "mode": "100644", + "type": "blob", + "sha": "0be7bcddb42b246f01dad1f1009a7fb2df4dcb82", + "size": 83324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0be7bcddb42b246f01dad1f1009a7fb2df4dcb82" + }, + { + "path": "png/kapacitor.png", + "mode": "100644", + "type": "blob", + "sha": "c1e97001379e7d1b9c39056292ab02a5779196b9", + "size": 37977, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1e97001379e7d1b9c39056292ab02a5779196b9" + }, + { + "path": "png/kapowarr.png", + "mode": "100644", + "type": "blob", + "sha": "a3e42fb59d28e99168201a4d787e7fb38977d65a", + "size": 81942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3e42fb59d28e99168201a4d787e7fb38977d65a" + }, + { + "path": "png/karakeep-dark.png", + "mode": "100644", + "type": "blob", + "sha": "fef746672157cf46c0f4aa069b28afdc8c4ed467", + "size": 3919, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fef746672157cf46c0f4aa069b28afdc8c4ed467" + }, + { + "path": "png/karakeep.png", + "mode": "100644", + "type": "blob", + "sha": "f73a20947129225f90bd4f4ba2203fdd89d4b333", + "size": 3919, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f73a20947129225f90bd4f4ba2203fdd89d4b333" + }, + { + "path": "png/karaoke-eternal.png", + "mode": "100644", + "type": "blob", + "sha": "6c2fd432e5ba10dbda295a2682f76dcc76f0e767", + "size": 44712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c2fd432e5ba10dbda295a2682f76dcc76f0e767" + }, + { + "path": "png/kasm-workspaces.png", + "mode": "100644", + "type": "blob", + "sha": "dfc007089228236530b6559c628aa7532c6267b4", + "size": 17844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfc007089228236530b6559c628aa7532c6267b4" + }, + { + "path": "png/kasm.png", + "mode": "100644", + "type": "blob", + "sha": "dfc007089228236530b6559c628aa7532c6267b4", + "size": 17844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfc007089228236530b6559c628aa7532c6267b4" + }, + { + "path": "png/kasten-k10.png", + "mode": "100644", + "type": "blob", + "sha": "40bc7e0e3010a083a966f9612f29d7885bb5b08e", + "size": 12239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40bc7e0e3010a083a966f9612f29d7885bb5b08e" + }, + { + "path": "png/kaufland.png", + "mode": "100644", + "type": "blob", + "sha": "5fbcef91b89a0c3f18f6862d6dac723b3d9738d2", + "size": 9717, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fbcef91b89a0c3f18f6862d6dac723b3d9738d2" + }, + { + "path": "png/kavita.png", + "mode": "100644", + "type": "blob", + "sha": "ef8a34cb9ab87099da1151e6cb93438a74365754", + "size": 17611, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef8a34cb9ab87099da1151e6cb93438a74365754" + }, + { + "path": "png/kbin.png", + "mode": "100644", + "type": "blob", + "sha": "16d41e371344c0dbc0593f00b75949971b79af78", + "size": 42262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16d41e371344c0dbc0593f00b75949971b79af78" + }, + { + "path": "png/keenetic-alt.png", + "mode": "100644", + "type": "blob", + "sha": "b8606e2d809afd43cc3558e31c7b406c76f11f59", + "size": 17269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8606e2d809afd43cc3558e31c7b406c76f11f59" + }, + { + "path": "png/keenetic-new.png", + "mode": "100644", + "type": "blob", + "sha": "62957147579bd138dbf6107e90d35915f8959c31", + "size": 21457, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62957147579bd138dbf6107e90d35915f8959c31" + }, + { + "path": "png/keenetic.png", + "mode": "100644", + "type": "blob", + "sha": "9e1809f0cf5c57c05bd4c9a0572262e25900331f", + "size": 52728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e1809f0cf5c57c05bd4c9a0572262e25900331f" + }, + { + "path": "png/keepassxc.png", + "mode": "100644", + "type": "blob", + "sha": "dd2e950756a56a76cdc75502811fe2547ffdb427", + "size": 81855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd2e950756a56a76cdc75502811fe2547ffdb427" + }, + { + "path": "png/keila.png", + "mode": "100644", + "type": "blob", + "sha": "1c1f39e1d34bfb051f94190e2ef8c318469d335d", + "size": 19773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c1f39e1d34bfb051f94190e2ef8c318469d335d" + }, + { + "path": "png/kerberos.png", + "mode": "100644", + "type": "blob", + "sha": "a86b9516576265bc0074341f83a68578ea1d5fb5", + "size": 59397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a86b9516576265bc0074341f83a68578ea1d5fb5" + }, + { + "path": "png/kestra.png", + "mode": "100644", + "type": "blob", + "sha": "60f4540ffd15e2d49db4854bf7e5da9e35805f28", + "size": 15361, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60f4540ffd15e2d49db4854bf7e5da9e35805f28" + }, + { + "path": "png/keycloak.png", + "mode": "100644", + "type": "blob", + "sha": "dbd6b4ea2936ad08090e6fa9cea41272eba6eca4", + "size": 35350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbd6b4ea2936ad08090e6fa9cea41272eba6eca4" + }, + { + "path": "png/keyoxide-alt.png", + "mode": "100644", + "type": "blob", + "sha": "9db35ea21d99efedf51740afa0aadf361f762f25", + "size": 21870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9db35ea21d99efedf51740afa0aadf361f762f25" + }, + { + "path": "png/keyoxide.png", + "mode": "100644", + "type": "blob", + "sha": "37127f7724f11caf882a735eb524ae3622d9c194", + "size": 21920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37127f7724f11caf882a735eb524ae3622d9c194" + }, + { + "path": "png/kibana.png", + "mode": "100644", + "type": "blob", + "sha": "a5bd89ad7985a72dadbf87cd571e459122fc23a6", + "size": 12813, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5bd89ad7985a72dadbf87cd571e459122fc23a6" + }, + { + "path": "png/kick-light.png", + "mode": "100644", + "type": "blob", + "sha": "9489818b0dff8e5e9ee723f9135398213719e0c9", + "size": 2250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9489818b0dff8e5e9ee723f9135398213719e0c9" + }, + { + "path": "png/kick.png", + "mode": "100644", + "type": "blob", + "sha": "c4adab4c865ecfbd95b03973138041a401344cc5", + "size": 1968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4adab4c865ecfbd95b03973138041a401344cc5" + }, + { + "path": "png/kimai.png", + "mode": "100644", + "type": "blob", + "sha": "7ff0766030e5100e5a1105b8ed7ec601d112f25f", + "size": 69771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ff0766030e5100e5a1105b8ed7ec601d112f25f" + }, + { + "path": "png/kimi-ai.png", + "mode": "100644", + "type": "blob", + "sha": "13cc2868884a50600233f8293f125a47d2fd3f62", + "size": 8132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13cc2868884a50600233f8293f125a47d2fd3f62" + }, + { + "path": "png/kinto.png", + "mode": "100644", + "type": "blob", + "sha": "6c58858e2ac8b38c29428be11e3c5a03ae9dddc4", + "size": 46542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c58858e2ac8b38c29428be11e3c5a03ae9dddc4" + }, + { + "path": "png/kitana.png", + "mode": "100644", + "type": "blob", + "sha": "56675efd7a8e7cc9c8182786351bf03fff447e64", + "size": 20345, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56675efd7a8e7cc9c8182786351bf03fff447e64" + }, + { + "path": "png/kitchenowl.png", + "mode": "100644", + "type": "blob", + "sha": "bf6374a2d4ce762aa6e3c5c9232391cdfb80278b", + "size": 33611, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf6374a2d4ce762aa6e3c5c9232391cdfb80278b" + }, + { + "path": "png/kiwix-light.png", + "mode": "100644", + "type": "blob", + "sha": "4722bbcb3e45905234b4d368df056c778409a55d", + "size": 20924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4722bbcb3e45905234b4d368df056c778409a55d" + }, + { + "path": "png/kiwix.png", + "mode": "100644", + "type": "blob", + "sha": "cca4e2c6eb12b65eb1f400db2b5569c91f81c0fb", + "size": 21828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cca4e2c6eb12b65eb1f400db2b5569c91f81c0fb" + }, + { + "path": "png/kleinanzeigen.png", + "mode": "100644", + "type": "blob", + "sha": "8452aea0e1ac2d9508ffed4c07d6a58033863391", + "size": 8441, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8452aea0e1ac2d9508ffed4c07d6a58033863391" + }, + { + "path": "png/kleopatra.png", + "mode": "100644", + "type": "blob", + "sha": "fa2680f9765755eacdb69e4c4df534c05ef8827e", + "size": 36480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa2680f9765755eacdb69e4c4df534c05ef8827e" + }, + { + "path": "png/klipper.png", + "mode": "100644", + "type": "blob", + "sha": "34b6806a0d669b47b96ac28d108afc02bb0c93c2", + "size": 34641, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34b6806a0d669b47b96ac28d108afc02bb0c93c2" + }, + { + "path": "png/knx.png", + "mode": "100644", + "type": "blob", + "sha": "5d66733ea799c762edb6c37bfe4ed4e30bdfefbc", + "size": 28309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d66733ea799c762edb6c37bfe4ed4e30bdfefbc" + }, + { + "path": "png/ko-fi.png", + "mode": "100644", + "type": "blob", + "sha": "157e39051f9978e007f6786aaa9c8d49154e70be", + "size": 24929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/157e39051f9978e007f6786aaa9c8d49154e70be" + }, + { + "path": "png/ko-insight.png", + "mode": "100644", + "type": "blob", + "sha": "517e96ff3a5993c1a8935ff968b6406e67288606", + "size": 21974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/517e96ff3a5993c1a8935ff968b6406e67288606" + }, + { + "path": "png/koboldcpp.png", + "mode": "100644", + "type": "blob", + "sha": "a56d863f20df01bf8415a372ffa8d93951e8dc48", + "size": 126315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a56d863f20df01bf8415a372ffa8d93951e8dc48" + }, + { + "path": "png/kodi.png", + "mode": "100644", + "type": "blob", + "sha": "f69b05e9576e08c981c1ff86d2249a99b58902ce", + "size": 12451, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f69b05e9576e08c981c1ff86d2249a99b58902ce" + }, + { + "path": "png/koel.png", + "mode": "100644", + "type": "blob", + "sha": "c48bb6d2452aff1436315119b9428d3f280fcca2", + "size": 25867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c48bb6d2452aff1436315119b9428d3f280fcca2" + }, + { + "path": "png/koillection-light.png", + "mode": "100644", + "type": "blob", + "sha": "735a8570d822cb0a2c68c88c2305982f03647ac7", + "size": 27432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/735a8570d822cb0a2c68c88c2305982f03647ac7" + }, + { + "path": "png/koillection.png", + "mode": "100644", + "type": "blob", + "sha": "6bd7e820bf2175481a1dd795b8b0492c98fc089d", + "size": 29918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bd7e820bf2175481a1dd795b8b0492c98fc089d" + }, + { + "path": "png/koito.png", + "mode": "100644", + "type": "blob", + "sha": "d101c5f09212816b99ae9ba2b3ca757aa54ee6aa", + "size": 19874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d101c5f09212816b99ae9ba2b3ca757aa54ee6aa" + }, + { + "path": "png/kokoro-web.png", + "mode": "100644", + "type": "blob", + "sha": "69f4c021a0964f9617967703078e0bd0b62094a2", + "size": 237419, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69f4c021a0964f9617967703078e0bd0b62094a2" + }, + { + "path": "png/kometa.png", + "mode": "100644", + "type": "blob", + "sha": "7991b8740d5f924ee7e4d2c53c01eb2be8bd62d3", + "size": 19532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7991b8740d5f924ee7e4d2c53c01eb2be8bd62d3" + }, + { + "path": "png/komga.png", + "mode": "100644", + "type": "blob", + "sha": "b9d31dbd9b77bffa747e1f9d940e81c1c9846785", + "size": 45737, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9d31dbd9b77bffa747e1f9d940e81c1c9846785" + }, + { + "path": "png/komodo.png", + "mode": "100644", + "type": "blob", + "sha": "1ce29994406240baa3bbce721eee82eaab201edc", + "size": 131874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ce29994406240baa3bbce721eee82eaab201edc" + }, + { + "path": "png/kontoj.png", + "mode": "100644", + "type": "blob", + "sha": "343ee03402de20a01dda5b6bf40ed5bc307f04c3", + "size": 13215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/343ee03402de20a01dda5b6bf40ed5bc307f04c3" + }, + { + "path": "png/kook.png", + "mode": "100644", + "type": "blob", + "sha": "efc862687b7a6386dda7c06c139bcfaeb8e0c5f8", + "size": 17785, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efc862687b7a6386dda7c06c139bcfaeb8e0c5f8" + }, + { + "path": "png/kopia.png", + "mode": "100644", + "type": "blob", + "sha": "cdaa08e8f91b9f9f44625c67ab74c6aa886900a3", + "size": 19043, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdaa08e8f91b9f9f44625c67ab74c6aa886900a3" + }, + { + "path": "png/kotlin.png", + "mode": "100644", + "type": "blob", + "sha": "cc7b41d17626976ff6a1149eae800e9f93e772b6", + "size": 22086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc7b41d17626976ff6a1149eae800e9f93e772b6" + }, + { + "path": "png/kpn.png", + "mode": "100644", + "type": "blob", + "sha": "30712aad3b8948b80c1d39607cf645b4c3abf17c", + "size": 41315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30712aad3b8948b80c1d39607cf645b4c3abf17c" + }, + { + "path": "png/krakend.png", + "mode": "100644", + "type": "blob", + "sha": "b099903e545304278006634daeb876768045760d", + "size": 52477, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b099903e545304278006634daeb876768045760d" + }, + { + "path": "png/krusader.png", + "mode": "100644", + "type": "blob", + "sha": "7eb291ab22eb63ca7daa69fed259ef315d9b3e87", + "size": 24868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7eb291ab22eb63ca7daa69fed259ef315d9b3e87" + }, + { + "path": "png/ksuite.png", + "mode": "100644", + "type": "blob", + "sha": "4dcd31fd2d992cf16e072d6592db5b3c8f5114b5", + "size": 22665, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4dcd31fd2d992cf16e072d6592db5b3c8f5114b5" + }, + { + "path": "png/kubecraft.png", + "mode": "100644", + "type": "blob", + "sha": "92947cfd8ef1a47860a4cc2f409d1e376c7327a4", + "size": 49422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92947cfd8ef1a47860a4cc2f409d1e376c7327a4" + }, + { + "path": "png/kubernetes-dashboard.png", + "mode": "100644", + "type": "blob", + "sha": "7e0985c55b6285a99afddda08c290213a2340917", + "size": 35288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e0985c55b6285a99afddda08c290213a2340917" + }, + { + "path": "png/kubernetes.png", + "mode": "100644", + "type": "blob", + "sha": "7e0985c55b6285a99afddda08c290213a2340917", + "size": 35288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e0985c55b6285a99afddda08c290213a2340917" + }, + { + "path": "png/kubuntu-linux.png", + "mode": "100644", + "type": "blob", + "sha": "66eff95f7268d94cd5ca156960d7949385c43ff8", + "size": 10700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66eff95f7268d94cd5ca156960d7949385c43ff8" + }, + { + "path": "png/kutt.png", + "mode": "100644", + "type": "blob", + "sha": "178c9c3ef997f7ddf01ab8da046c05c6b8c98552", + "size": 32264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/178c9c3ef997f7ddf01ab8da046c05c6b8c98552" + }, + { + "path": "png/kyoo.png", + "mode": "100644", + "type": "blob", + "sha": "6c5cb3bd806f499fedf5270e9858dbaefb6e265f", + "size": 27475, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c5cb3bd806f499fedf5270e9858dbaefb6e265f" + }, + { + "path": "png/lancache.png", + "mode": "100644", + "type": "blob", + "sha": "8d8b6fa29571e2e4b4b1104da0a3fc3eef96d7b6", + "size": 4588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d8b6fa29571e2e4b4b1104da0a3fc3eef96d7b6" + }, + { + "path": "png/lancommander-light.png", + "mode": "100644", + "type": "blob", + "sha": "b122606e580acca9d66a6563ba84870ce246b96d", + "size": 3440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b122606e580acca9d66a6563ba84870ce246b96d" + }, + { + "path": "png/lancommander.png", + "mode": "100644", + "type": "blob", + "sha": "4522bfc644e1845e17199093645b3416a976ec07", + "size": 3713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4522bfc644e1845e17199093645b3416a976ec07" + }, + { + "path": "png/lanraragi.png", + "mode": "100644", + "type": "blob", + "sha": "141e82dce896cdb707ee4b476835956187523211", + "size": 117461, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/141e82dce896cdb707ee4b476835956187523211" + }, + { + "path": "png/laravel.png", + "mode": "100644", + "type": "blob", + "sha": "696e2596aee5391c5760ede3d8faa3d33037acb9", + "size": 18056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/696e2596aee5391c5760ede3d8faa3d33037acb9" + }, + { + "path": "png/lark.png", + "mode": "100644", + "type": "blob", + "sha": "82a9739aa3b387cd4b875ccd89dbbda27d8ae4e8", + "size": 21166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82a9739aa3b387cd4b875ccd89dbbda27d8ae4e8" + }, + { + "path": "png/lastpass.png", + "mode": "100644", + "type": "blob", + "sha": "410b48a1556a809adc3074b7fafc27a7820f66d2", + "size": 9462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/410b48a1556a809adc3074b7fafc27a7820f66d2" + }, + { + "path": "png/lazylibrarian.png", + "mode": "100644", + "type": "blob", + "sha": "e504fa1bebb635c6d5f09e070ac5750d7c1a74b4", + "size": 12544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e504fa1bebb635c6d5f09e070ac5750d7c1a74b4" + }, + { + "path": "png/ldap-account-manager.png", + "mode": "100644", + "type": "blob", + "sha": "eba364aa9a28eeb3c03564500aeb77a9d95eba50", + "size": 34619, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eba364aa9a28eeb3c03564500aeb77a9d95eba50" + }, + { + "path": "png/leanote.png", + "mode": "100644", + "type": "blob", + "sha": "089fa4b2d1792e6086487ecba668cf188de8b781", + "size": 19216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/089fa4b2d1792e6086487ecba668cf188de8b781" + }, + { + "path": "png/leantime.png", + "mode": "100644", + "type": "blob", + "sha": "f4b3e145da237125438eed890795cae218f1756c", + "size": 17032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4b3e145da237125438eed890795cae218f1756c" + }, + { + "path": "png/leargas-security.png", + "mode": "100644", + "type": "blob", + "sha": "816203a2f2c92d13cb630c6989c86755dfcf229c", + "size": 88433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/816203a2f2c92d13cb630c6989c86755dfcf229c" + }, + { + "path": "png/leetcode-dark.png", + "mode": "100644", + "type": "blob", + "sha": "a19e0ea5dd1da9a207a7977a76c888586f9c43f7", + "size": 12249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a19e0ea5dd1da9a207a7977a76c888586f9c43f7" + }, + { + "path": "png/leetcode.png", + "mode": "100644", + "type": "blob", + "sha": "22f444b143144a176123c8a856847c8f8deb8388", + "size": 13142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22f444b143144a176123c8a856847c8f8deb8388" + }, + { + "path": "png/lemmy-light.png", + "mode": "100644", + "type": "blob", + "sha": "751436413353a2aa0282c70e38d9745bcc7fa7cd", + "size": 60346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/751436413353a2aa0282c70e38d9745bcc7fa7cd" + }, + { + "path": "png/lemmy.png", + "mode": "100644", + "type": "blob", + "sha": "1e001324c7636730864c999edb6fb5ce00b0b319", + "size": 73473, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e001324c7636730864c999edb6fb5ce00b0b319" + }, + { + "path": "png/lemonldap-ng.png", + "mode": "100644", + "type": "blob", + "sha": "2fdca100be3dae44687423bc2194437f7eff7877", + "size": 40056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fdca100be3dae44687423bc2194437f7eff7877" + }, + { + "path": "png/lets-encrypt.png", + "mode": "100644", + "type": "blob", + "sha": "ad106b002be827b9f6b46f586b9ba21397f741af", + "size": 13148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad106b002be827b9f6b46f586b9ba21397f741af" + }, + { + "path": "png/lexmark.png", + "mode": "100644", + "type": "blob", + "sha": "955c19c6eec65832b64f265956ae2d1fd46d68e2", + "size": 5416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/955c19c6eec65832b64f265956ae2d1fd46d68e2" + }, + { + "path": "png/libation.png", + "mode": "100644", + "type": "blob", + "sha": "f2aff2987b954b1d63e2a0b35a265956ede171e6", + "size": 8807, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2aff2987b954b1d63e2a0b35a265956ede171e6" + }, + { + "path": "png/librechat.png", + "mode": "100644", + "type": "blob", + "sha": "248b7a79fab31fded724039fbd900012f500070f", + "size": 35085, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/248b7a79fab31fded724039fbd900012f500070f" + }, + { + "path": "png/libreddit-light.png", + "mode": "100644", + "type": "blob", + "sha": "4e11d9de949bd2fa2b8172103a7838ff282dbf09", + "size": 5575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e11d9de949bd2fa2b8172103a7838ff282dbf09" + }, + { + "path": "png/libreddit.png", + "mode": "100644", + "type": "blob", + "sha": "015ecd483e34a4fb4e3465f883c389218491042f", + "size": 5662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/015ecd483e34a4fb4e3465f883c389218491042f" + }, + { + "path": "png/libremdb.png", + "mode": "100644", + "type": "blob", + "sha": "3c0c26735a4cab8eadea229cbcf4565d95e29d0e", + "size": 7534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c0c26735a4cab8eadea229cbcf4565d95e29d0e" + }, + { + "path": "png/librenms.png", + "mode": "100644", + "type": "blob", + "sha": "7414e03f039a78b80a41a54ce98e8e39eb23ddcf", + "size": 22827, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7414e03f039a78b80a41a54ce98e8e39eb23ddcf" + }, + { + "path": "png/libreoffice-light.png", + "mode": "100644", + "type": "blob", + "sha": "7f21bbc770d823458a794d7cbf556d73cd50a169", + "size": 5616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f21bbc770d823458a794d7cbf556d73cd50a169" + }, + { + "path": "png/libreoffice.png", + "mode": "100644", + "type": "blob", + "sha": "f7f01c49c2473550241396ada07cb1269a84f2c4", + "size": 4906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7f01c49c2473550241396ada07cb1269a84f2c4" + }, + { + "path": "png/librephotos-light.png", + "mode": "100644", + "type": "blob", + "sha": "7ac29585f1fad43dde9183704c771fdea04a91f3", + "size": 3531, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ac29585f1fad43dde9183704c771fdea04a91f3" + }, + { + "path": "png/librephotos.png", + "mode": "100644", + "type": "blob", + "sha": "9fd33d927142be6c7dda7b0814d4e353e3b8b045", + "size": 3947, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9fd33d927142be6c7dda7b0814d4e353e3b8b045" + }, + { + "path": "png/librespeed-light.png", + "mode": "100644", + "type": "blob", + "sha": "a1700b328a7b9c4703c56909171f17d4fe91217b", + "size": 42231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1700b328a7b9c4703c56909171f17d4fe91217b" + }, + { + "path": "png/librespeed.png", + "mode": "100644", + "type": "blob", + "sha": "b62161cde0f25da9b76f8c995759be09bda1ed03", + "size": 42677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b62161cde0f25da9b76f8c995759be09bda1ed03" + }, + { + "path": "png/librewolf.png", + "mode": "100644", + "type": "blob", + "sha": "ced8fc4edc4381b743ea3c68d31180f076a02388", + "size": 27502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ced8fc4edc4381b743ea3c68d31180f076a02388" + }, + { + "path": "png/librex.png", + "mode": "100644", + "type": "blob", + "sha": "353843c1bb6dc0dc139907dcb88145e50f4dba94", + "size": 1148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/353843c1bb6dc0dc139907dcb88145e50f4dba94" + }, + { + "path": "png/librey.png", + "mode": "100644", + "type": "blob", + "sha": "2dc5c2b30f8849488c3abb336badd38dc5435573", + "size": 859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dc5c2b30f8849488c3abb336badd38dc5435573" + }, + { + "path": "png/librum.png", + "mode": "100644", + "type": "blob", + "sha": "485e7bebdb286f146ba2d4cf1a1ebe1dcc978673", + "size": 6874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/485e7bebdb286f146ba2d4cf1a1ebe1dcc978673" + }, + { + "path": "png/lichess-dark.png", + "mode": "100644", + "type": "blob", + "sha": "314c20f0b5b39609c39cd81b75e7da888ac0f324", + "size": 9873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/314c20f0b5b39609c39cd81b75e7da888ac0f324" + }, + { + "path": "png/lichess.png", + "mode": "100644", + "type": "blob", + "sha": "e4ed720ffb8ca094f02451bd314dabca99684409", + "size": 9873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4ed720ffb8ca094f02451bd314dabca99684409" + }, + { + "path": "png/lidarr.png", + "mode": "100644", + "type": "blob", + "sha": "b21129b28b4ca708ab3b7d984b229841757e4c48", + "size": 72205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b21129b28b4ca708ab3b7d984b229841757e4c48" + }, + { + "path": "png/lidl.png", + "mode": "100644", + "type": "blob", + "sha": "d465df3799eb3958353d8151eb497f5216806d7e", + "size": 29197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d465df3799eb3958353d8151eb497f5216806d7e" + }, + { + "path": "png/lightning-terminal.png", + "mode": "100644", + "type": "blob", + "sha": "bbb794f377410809a41ee70196fda7293ba9e59a", + "size": 27648, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbb794f377410809a41ee70196fda7293ba9e59a" + }, + { + "path": "png/lighttpd.png", + "mode": "100644", + "type": "blob", + "sha": "5e1fb598bc5db975878bb2c46e0005cf4fe0dd61", + "size": 23914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e1fb598bc5db975878bb2c46e0005cf4fe0dd61" + }, + { + "path": "png/limesurvey.png", + "mode": "100644", + "type": "blob", + "sha": "f7cc76238f03fd07984dd3e3ec466f38d9caef72", + "size": 25624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7cc76238f03fd07984dd3e3ec466f38d9caef72" + }, + { + "path": "png/linear-dark.png", + "mode": "100644", + "type": "blob", + "sha": "1d0d979a9f58e2779ab359bf96c0b1418d406c94", + "size": 5635, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d0d979a9f58e2779ab359bf96c0b1418d406c94" + }, + { + "path": "png/linear.png", + "mode": "100644", + "type": "blob", + "sha": "27891cf497ceeea68adf42e0d6a52acd24e7a81f", + "size": 5635, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27891cf497ceeea68adf42e0d6a52acd24e7a81f" + }, + { + "path": "png/linguacafe.png", + "mode": "100644", + "type": "blob", + "sha": "217983f2e806fe0d28704c119af52fe873e15b50", + "size": 9364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/217983f2e806fe0d28704c119af52fe873e15b50" + }, + { + "path": "png/linkace.png", + "mode": "100644", + "type": "blob", + "sha": "db64db012ee4cf37e318312864b235af8776a7ca", + "size": 16656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db64db012ee4cf37e318312864b235af8776a7ca" + }, + { + "path": "png/linkding.png", + "mode": "100644", + "type": "blob", + "sha": "f1e3e1e50f35bf4903cec9bf59d6bb53f0236283", + "size": 28114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1e3e1e50f35bf4903cec9bf59d6bb53f0236283" + }, + { + "path": "png/linkedin.png", + "mode": "100644", + "type": "blob", + "sha": "45ac979c6c48a701bf6802638d8be92a681b8c8c", + "size": 10348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45ac979c6c48a701bf6802638d8be92a681b8c8c" + }, + { + "path": "png/linkstack.png", + "mode": "100644", + "type": "blob", + "sha": "b068b3c541e77d37410edd3bde27c1fb5f8b3e7a", + "size": 49711, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b068b3c541e77d37410edd3bde27c1fb5f8b3e7a" + }, + { + "path": "png/linksys.png", + "mode": "100644", + "type": "blob", + "sha": "1430b128a83f01d3782e03952e90f47cc0dd8395", + "size": 705, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1430b128a83f01d3782e03952e90f47cc0dd8395" + }, + { + "path": "png/linkwarden.png", + "mode": "100644", + "type": "blob", + "sha": "a40400b7663552c776cb141f1f25abcd6baaf91e", + "size": 191265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a40400b7663552c776cb141f1f25abcd6baaf91e" + }, + { + "path": "png/linode.png", + "mode": "100644", + "type": "blob", + "sha": "e52af4373f8d16450e7f2f1798006ab19dcc8f16", + "size": 26350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e52af4373f8d16450e7f2f1798006ab19dcc8f16" + }, + { + "path": "png/linux-mint.png", + "mode": "100644", + "type": "blob", + "sha": "9fc2983dcc2f22ab228e29b89d9aa2124010a3af", + "size": 25156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9fc2983dcc2f22ab228e29b89d9aa2124010a3af" + }, + { + "path": "png/linux.png", + "mode": "100644", + "type": "blob", + "sha": "5dc05bade517b5ac08b376c467bedde99ef7b746", + "size": 47010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5dc05bade517b5ac08b376c467bedde99ef7b746" + }, + { + "path": "png/linuxdo.png", + "mode": "100644", + "type": "blob", + "sha": "be91ebd33862e72d8dc4c193f56038e49d805221", + "size": 13718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be91ebd33862e72d8dc4c193f56038e49d805221" + }, + { + "path": "png/linuxgsm.png", + "mode": "100644", + "type": "blob", + "sha": "10993cdef05a11970293927cb28da68f3867aa70", + "size": 21285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10993cdef05a11970293927cb28da68f3867aa70" + }, + { + "path": "png/linuxserver-io.png", + "mode": "100644", + "type": "blob", + "sha": "6ee70efb32d7d0a6d1295e58d85c2758fc20ebbb", + "size": 65824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ee70efb32d7d0a6d1295e58d85c2758fc20ebbb" + }, + { + "path": "png/liremdb.png", + "mode": "100644", + "type": "blob", + "sha": "09775b8e068788d5d8a654ba7cd6d120136cf1c6", + "size": 21842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09775b8e068788d5d8a654ba7cd6d120136cf1c6" + }, + { + "path": "png/listenbrainz.png", + "mode": "100644", + "type": "blob", + "sha": "30cf352235a70d3397f8173cf87fecc09155a634", + "size": 28515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30cf352235a70d3397f8173cf87fecc09155a634" + }, + { + "path": "png/listmonk.png", + "mode": "100644", + "type": "blob", + "sha": "b102373210240b9fb4f8067c67d5408c8fa5631f", + "size": 17412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b102373210240b9fb4f8067c67d5408c8fa5631f" + }, + { + "path": "png/lite-speed.png", + "mode": "100644", + "type": "blob", + "sha": "5c6e48b32749c3a85f5d40f7c56dc133b355a84e", + "size": 22615, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c6e48b32749c3a85f5d40f7c56dc133b355a84e" + }, + { + "path": "png/littlelink-custom.png", + "mode": "100644", + "type": "blob", + "sha": "6fc02df7bd8933f7f958877e51c589785680c8c0", + "size": 42941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fc02df7bd8933f7f958877e51c589785680c8c0" + }, + { + "path": "png/livebook.png", + "mode": "100644", + "type": "blob", + "sha": "9445c098d88b3862aaf0adf88c77454059c97bf6", + "size": 17632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9445c098d88b3862aaf0adf88c77454059c97bf6" + }, + { + "path": "png/lldap-dark.png", + "mode": "100644", + "type": "blob", + "sha": "c3368e6380040beb68d20b4c71e92d1e35bacd43", + "size": 10862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3368e6380040beb68d20b4c71e92d1e35bacd43" + }, + { + "path": "png/lldap.png", + "mode": "100644", + "type": "blob", + "sha": "d3d3e9ecf0847a3cb75d951e0d4e52389f76988e", + "size": 10862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3d3e9ecf0847a3cb75d951e0d4e52389f76988e" + }, + { + "path": "png/lms-mixtape.png", + "mode": "100644", + "type": "blob", + "sha": "7e7e305374b5e3afd77ef5567670d954baffd596", + "size": 16146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e7e305374b5e3afd77ef5567670d954baffd596" + }, + { + "path": "png/lnbits.png", + "mode": "100644", + "type": "blob", + "sha": "cb97cb916d7357533de0e90ef50d0aab158c84e8", + "size": 14685, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb97cb916d7357533de0e90ef50d0aab158c84e8" + }, + { + "path": "png/lobe-chat.png", + "mode": "100644", + "type": "blob", + "sha": "59b71cd5231372113933896824789a9336eb463d", + "size": 26573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59b71cd5231372113933896824789a9336eb463d" + }, + { + "path": "png/local-content-share.png", + "mode": "100644", + "type": "blob", + "sha": "71c72ed763a98aef9a2e7884778c07f16584a650", + "size": 49367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71c72ed763a98aef9a2e7884778c07f16584a650" + }, + { + "path": "png/local-xpose.png", + "mode": "100644", + "type": "blob", + "sha": "33016464e99e7c3a43b894ef116f4d5e833edca8", + "size": 26428, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33016464e99e7c3a43b894ef116f4d5e833edca8" + }, + { + "path": "png/locals-light.png", + "mode": "100644", + "type": "blob", + "sha": "90efc5e8083dd31ba05831387f9f106c546348c0", + "size": 17578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90efc5e8083dd31ba05831387f9f106c546348c0" + }, + { + "path": "png/locals.png", + "mode": "100644", + "type": "blob", + "sha": "9a948b96a4f8369d35d0d337a28b353e975d8f6f", + "size": 16193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a948b96a4f8369d35d0d337a28b353e975d8f6f" + }, + { + "path": "png/lodestone.png", + "mode": "100644", + "type": "blob", + "sha": "f5a0e74f3265509fb004e6db620feb765e9a83c7", + "size": 160970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5a0e74f3265509fb004e6db620feb765e9a83c7" + }, + { + "path": "png/logitech-gaming.png", + "mode": "100644", + "type": "blob", + "sha": "e3f3a3a041e7df0caf2d7cb01decc509be34df34", + "size": 11525, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3f3a3a041e7df0caf2d7cb01decc509be34df34" + }, + { + "path": "png/logitech-legacy.png", + "mode": "100644", + "type": "blob", + "sha": "db1e990caee758c452cd909d1d16dc6353fcb8d5", + "size": 23899, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db1e990caee758c452cd909d1d16dc6353fcb8d5" + }, + { + "path": "png/logitech-light.png", + "mode": "100644", + "type": "blob", + "sha": "e3e31beb7c78a5e57a01945fcc454563f4dcee37", + "size": 20227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3e31beb7c78a5e57a01945fcc454563f4dcee37" + }, + { + "path": "png/logitech.png", + "mode": "100644", + "type": "blob", + "sha": "239e9a6d13099199efb3decf2e6e97ab6d969396", + "size": 18103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/239e9a6d13099199efb3decf2e6e97ab6d969396" + }, + { + "path": "png/logseq.png", + "mode": "100644", + "type": "blob", + "sha": "7450c352be6e233d61cd81e98b20677d8d8b02e8", + "size": 19923, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7450c352be6e233d61cd81e98b20677d8d8b02e8" + }, + { + "path": "png/logstash.png", + "mode": "100644", + "type": "blob", + "sha": "a42eab76e471d0961988e0d9239325442cb916ef", + "size": 7397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a42eab76e471d0961988e0d9239325442cb916ef" + }, + { + "path": "png/logto.png", + "mode": "100644", + "type": "blob", + "sha": "4fa07f71e57cee698ce7305d1622a106274f44b8", + "size": 23802, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fa07f71e57cee698ce7305d1622a106274f44b8" + }, + { + "path": "png/loki.png", + "mode": "100644", + "type": "blob", + "sha": "4eb3ebdb4755c7d09ba0ebcd3a7bb108797c5d61", + "size": 33688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4eb3ebdb4755c7d09ba0ebcd3a7bb108797c5d61" + }, + { + "path": "png/longhorn.png", + "mode": "100644", + "type": "blob", + "sha": "df3a876998c5d0de7cdf51cce251349544b2d74f", + "size": 16365, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df3a876998c5d0de7cdf51cce251349544b2d74f" + }, + { + "path": "png/lostack.png", + "mode": "100644", + "type": "blob", + "sha": "162dac8b56b202f9bb45bef9714c1c2f2ae5cda8", + "size": 30781, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/162dac8b56b202f9bb45bef9714c1c2f2ae5cda8" + }, + { + "path": "png/loxone-full.png", + "mode": "100644", + "type": "blob", + "sha": "3bd0448b275579a6349ddd3523e1557ea6a8c834", + "size": 22613, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bd0448b275579a6349ddd3523e1557ea6a8c834" + }, + { + "path": "png/loxone.png", + "mode": "100644", + "type": "blob", + "sha": "d816221298fd03e5f58bac301363f97203d8fdae", + "size": 4058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d816221298fd03e5f58bac301363f97203d8fdae" + }, + { + "path": "png/lsio.png", + "mode": "100644", + "type": "blob", + "sha": "fae551e9a06be005d1c71129ff51a9db01729e07", + "size": 48366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fae551e9a06be005d1c71129ff51a9db01729e07" + }, + { + "path": "png/lua.png", + "mode": "100644", + "type": "blob", + "sha": "3fba9455e10cc759765ef25974ee19433dc796e9", + "size": 29512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fba9455e10cc759765ef25974ee19433dc796e9" + }, + { + "path": "png/lubelogger.png", + "mode": "100644", + "type": "blob", + "sha": "d9210f49f1c4c4fb286b5bdabd20ec300ca5fc74", + "size": 7962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9210f49f1c4c4fb286b5bdabd20ec300ca5fc74" + }, + { + "path": "png/lubuntu-linux.png", + "mode": "100644", + "type": "blob", + "sha": "1be9587d44d6c6db6db4b6c17d325dc2378b9987", + "size": 10657, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1be9587d44d6c6db6db4b6c17d325dc2378b9987" + }, + { + "path": "png/ludus-dark.png", + "mode": "100644", + "type": "blob", + "sha": "99441a83339ce32daa2205d612a364f0950f438b", + "size": 18403, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99441a83339ce32daa2205d612a364f0950f438b" + }, + { + "path": "png/ludus.png", + "mode": "100644", + "type": "blob", + "sha": "2116c7ffcf7320b26d69625da2d84c213c78a3a3", + "size": 18297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2116c7ffcf7320b26d69625da2d84c213c78a3a3" + }, + { + "path": "png/lunalytics.png", + "mode": "100644", + "type": "blob", + "sha": "78faea3f0aba01cfa1f0433e51211db72b9f64b4", + "size": 28168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78faea3f0aba01cfa1f0433e51211db72b9f64b4" + }, + { + "path": "png/lunasea.png", + "mode": "100644", + "type": "blob", + "sha": "982f7011d37ab45f981252687be5ea9d1e572d21", + "size": 29092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/982f7011d37ab45f981252687be5ea9d1e572d21" + }, + { + "path": "png/luxriot.png", + "mode": "100644", + "type": "blob", + "sha": "4566d5c52be179c4ca40fe84d8d20086909604cd", + "size": 14210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4566d5c52be179c4ca40fe84d8d20086909604cd" + }, + { + "path": "png/lychee.png", + "mode": "100644", + "type": "blob", + "sha": "aab2206e669317be96d01a5c82a6b44b789fbd66", + "size": 269171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aab2206e669317be96d01a5c82a6b44b789fbd66" + }, + { + "path": "png/lynx-light.png", + "mode": "100644", + "type": "blob", + "sha": "7af2b061ff6539e21621ca7faf148eed03bd538a", + "size": 36957, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7af2b061ff6539e21621ca7faf148eed03bd538a" + }, + { + "path": "png/lynx.png", + "mode": "100644", + "type": "blob", + "sha": "ebc6dc193ba25b8418b2daff2f623bd9119d69d1", + "size": 40894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebc6dc193ba25b8418b2daff2f623bd9119d69d1" + }, + { + "path": "png/lyrion-dark.png", + "mode": "100644", + "type": "blob", + "sha": "9c7538cf6a121912f11df6b8044c054865558a83", + "size": 6928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c7538cf6a121912f11df6b8044c054865558a83" + }, + { + "path": "png/lyrion.png", + "mode": "100644", + "type": "blob", + "sha": "ba0afc6392214dd247b5c1046760deaf90216d16", + "size": 8965, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba0afc6392214dd247b5c1046760deaf90216d16" + }, + { + "path": "png/macmon.png", + "mode": "100644", + "type": "blob", + "sha": "f8568208983a368f7b8a28edf7d79a3d4ca31c85", + "size": 8385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8568208983a368f7b8a28edf7d79a3d4ca31c85" + }, + { + "path": "png/mail-in-a-box.png", + "mode": "100644", + "type": "blob", + "sha": "7427482fc282e1d1ba70b029646f2709cc4d288a", + "size": 35742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7427482fc282e1d1ba70b029646f2709cc4d288a" + }, + { + "path": "png/mailchimp-light.png", + "mode": "100644", + "type": "blob", + "sha": "28fa039986ab67092cf8d837ecc8ef0eccc0bff0", + "size": 36951, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28fa039986ab67092cf8d837ecc8ef0eccc0bff0" + }, + { + "path": "png/mailchimp.png", + "mode": "100644", + "type": "blob", + "sha": "6a67bcb625bdd3879a8d7419b75b11066134c889", + "size": 38231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a67bcb625bdd3879a8d7419b75b11066134c889" + }, + { + "path": "png/mailcow.png", + "mode": "100644", + "type": "blob", + "sha": "262c6d5f94d2ea8b12573b9bb3c89191171cb522", + "size": 44894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/262c6d5f94d2ea8b12573b9bb3c89191171cb522" + }, + { + "path": "png/mailcowsogo.png", + "mode": "100644", + "type": "blob", + "sha": "01096789e4181b4964c04657169d439836852071", + "size": 25480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01096789e4181b4964c04657169d439836852071" + }, + { + "path": "png/mailfence.png", + "mode": "100644", + "type": "blob", + "sha": "787e5d6ea912df0b3819bc11e9635d8079ae4b09", + "size": 28047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/787e5d6ea912df0b3819bc11e9635d8079ae4b09" + }, + { + "path": "png/mailgun.png", + "mode": "100644", + "type": "blob", + "sha": "5b98d514f1b571eb34689a7c98478a97a42177a7", + "size": 32199, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b98d514f1b571eb34689a7c98478a97a42177a7" + }, + { + "path": "png/mailhog.png", + "mode": "100644", + "type": "blob", + "sha": "7c0624665b71ad02d0793178af9716ec6bcf9ca2", + "size": 7749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c0624665b71ad02d0793178af9716ec6bcf9ca2" + }, + { + "path": "png/mailjet.png", + "mode": "100644", + "type": "blob", + "sha": "a6102e1ec77405a3b13eae7fe7699c087b1107b8", + "size": 19966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6102e1ec77405a3b13eae7fe7699c087b1107b8" + }, + { + "path": "png/mailpit.png", + "mode": "100644", + "type": "blob", + "sha": "f8b8433c834772700d5e975145860a0e815a87aa", + "size": 15761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8b8433c834772700d5e975145860a0e815a87aa" + }, + { + "path": "png/mailu.png", + "mode": "100644", + "type": "blob", + "sha": "2f667eff89dc9a42c04383c417acbf9298dc7432", + "size": 13166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f667eff89dc9a42c04383c417acbf9298dc7432" + }, + { + "path": "png/mainsail.png", + "mode": "100644", + "type": "blob", + "sha": "93c3d9ae0c93a81e0eee1f9207bd47e87ebb7872", + "size": 21008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93c3d9ae0c93a81e0eee1f9207bd47e87ebb7872" + }, + { + "path": "png/maintainerr.png", + "mode": "100644", + "type": "blob", + "sha": "dc54da09b9979a1058bb72269dd3fcb8a931b6ef", + "size": 26928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc54da09b9979a1058bb72269dd3fcb8a931b6ef" + }, + { + "path": "png/mak.png", + "mode": "100644", + "type": "blob", + "sha": "fd43faf233b312072238d9cd1279649a698af796", + "size": 7999, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd43faf233b312072238d9cd1279649a698af796" + }, + { + "path": "png/makemkv.png", + "mode": "100644", + "type": "blob", + "sha": "d4ac2b4f7920065c1ddafb6827c36818167a3b53", + "size": 74073, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d4ac2b4f7920065c1ddafb6827c36818167a3b53" + }, + { + "path": "png/maker-world-dark.png", + "mode": "100644", + "type": "blob", + "sha": "234d74cb76e2719cdc3184314e1807878ef62518", + "size": 5891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/234d74cb76e2719cdc3184314e1807878ef62518" + }, + { + "path": "png/maker-world.png", + "mode": "100644", + "type": "blob", + "sha": "bdb5ecbda67349ffa256ba1ef54a37b0e42e4354", + "size": 5891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdb5ecbda67349ffa256ba1ef54a37b0e42e4354" + }, + { + "path": "png/maloja.png", + "mode": "100644", + "type": "blob", + "sha": "07e7ff188a53fb39fe738463f7048d089c9fd907", + "size": 10986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07e7ff188a53fb39fe738463f7048d089c9fd907" + }, + { + "path": "png/manga-dex.png", + "mode": "100644", + "type": "blob", + "sha": "3085fcc68c9b2eaa07b841cce1f0e9bf0ffa667b", + "size": 18507, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3085fcc68c9b2eaa07b841cce1f0e9bf0ffa667b" + }, + { + "path": "png/mango.png", + "mode": "100644", + "type": "blob", + "sha": "c8dcbd4c5c5d7e5c17f4620a79ba306db9caac93", + "size": 6852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8dcbd4c5c5d7e5c17f4620a79ba306db9caac93" + }, + { + "path": "png/manjaro-linux.png", + "mode": "100644", + "type": "blob", + "sha": "3b7e46ed2f75a5422ad9e7aa2f9d3cc2b790db6d", + "size": 2268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b7e46ed2f75a5422ad9e7aa2f9d3cc2b790db6d" + }, + { + "path": "png/mantisbt.png", + "mode": "100644", + "type": "blob", + "sha": "f5f6ac22c03a893085c06dcd2095b70c12132e95", + "size": 10108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5f6ac22c03a893085c06dcd2095b70c12132e95" + }, + { + "path": "png/many-notes.png", + "mode": "100644", + "type": "blob", + "sha": "c8a3537a9bc232ea46abe0f79c0b2e8ea68fdbb1", + "size": 9621, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8a3537a9bc232ea46abe0f79c0b2e8ea68fdbb1" + }, + { + "path": "png/manyfold.png", + "mode": "100644", + "type": "blob", + "sha": "e8c377c1a3d4bb437ca84a031773dd8fea75b2e2", + "size": 116841, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8c377c1a3d4bb437ca84a031773dd8fea75b2e2" + }, + { + "path": "png/maptiler.png", + "mode": "100644", + "type": "blob", + "sha": "e09fb383fb6fa2784df2fb264895121987ac4050", + "size": 13603, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e09fb383fb6fa2784df2fb264895121987ac4050" + }, + { + "path": "png/marginalia.png", + "mode": "100644", + "type": "blob", + "sha": "adffebc3744480efcaa9cbdf3d88ca05de3917ad", + "size": 13465, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adffebc3744480efcaa9cbdf3d88ca05de3917ad" + }, + { + "path": "png/mariadb.png", + "mode": "100644", + "type": "blob", + "sha": "6a6e5e222f5bd695f4a3ef006f5472604f20bc9e", + "size": 35281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a6e5e222f5bd695f4a3ef006f5472604f20bc9e" + }, + { + "path": "png/marimo.png", + "mode": "100644", + "type": "blob", + "sha": "c591ea0a842849658dadbced4b02d07bd61e682a", + "size": 25290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c591ea0a842849658dadbced4b02d07bd61e682a" + }, + { + "path": "png/marktplaats.png", + "mode": "100644", + "type": "blob", + "sha": "b715cf65934ad1946a67e021885e4b365b67cd49", + "size": 14201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b715cf65934ad1946a67e021885e4b365b67cd49" + }, + { + "path": "png/marzban.png", + "mode": "100644", + "type": "blob", + "sha": "b8b9c13547e83b212cd64fa5e750a050acb36281", + "size": 33931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8b9c13547e83b212cd64fa5e750a050acb36281" + }, + { + "path": "png/mastodon.png", + "mode": "100644", + "type": "blob", + "sha": "e8e7ebe63438a9f293a188f9126598c8071c7531", + "size": 18880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8e7ebe63438a9f293a188f9126598c8071c7531" + }, + { + "path": "png/matomo.png", + "mode": "100644", + "type": "blob", + "sha": "dee27c00f748fcdf98313ef95c25708187ef7eaa", + "size": 23848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dee27c00f748fcdf98313ef95c25708187ef7eaa" + }, + { + "path": "png/matrix-light.png", + "mode": "100644", + "type": "blob", + "sha": "fe6e254854c7805bbbcb0b7302a171cddd4bce00", + "size": 5623, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe6e254854c7805bbbcb0b7302a171cddd4bce00" + }, + { + "path": "png/matrix-synapse-light.png", + "mode": "100644", + "type": "blob", + "sha": "1f4e7132b4d676d0f40abc895f0e0348916aa910", + "size": 3007, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f4e7132b4d676d0f40abc895f0e0348916aa910" + }, + { + "path": "png/matrix-synapse.png", + "mode": "100644", + "type": "blob", + "sha": "3debee850507a3d16f762a709d9935a5ac6aa3af", + "size": 2959, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3debee850507a3d16f762a709d9935a5ac6aa3af" + }, + { + "path": "png/matrix.png", + "mode": "100644", + "type": "blob", + "sha": "5672be67a3ef6fefcea225f68dbf26c4da4505d1", + "size": 6348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5672be67a3ef6fefcea225f68dbf26c4da4505d1" + }, + { + "path": "png/matter-light.png", + "mode": "100644", + "type": "blob", + "sha": "3bdf11b044a2cbbc1e6b6d99678dde3d7f6f5306", + "size": 16429, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bdf11b044a2cbbc1e6b6d99678dde3d7f6f5306" + }, + { + "path": "png/matter.png", + "mode": "100644", + "type": "blob", + "sha": "fb2990d74ee1190dede5bf821564d6b929346c1f", + "size": 21116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb2990d74ee1190dede5bf821564d6b929346c1f" + }, + { + "path": "png/matterbridge.png", + "mode": "100644", + "type": "blob", + "sha": "b7e94a9a24cb9eb267c5f04094f130ffb5c12961", + "size": 42819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7e94a9a24cb9eb267c5f04094f130ffb5c12961" + }, + { + "path": "png/mattermost.png", + "mode": "100644", + "type": "blob", + "sha": "070c44d0aaf37cffe6700154a52f4b9c6c9202b7", + "size": 24159, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/070c44d0aaf37cffe6700154a52f4b9c6c9202b7" + }, + { + "path": "png/mautic.png", + "mode": "100644", + "type": "blob", + "sha": "39f2136a4cc9121e03c6f7879ca889e37404450c", + "size": 29765, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39f2136a4cc9121e03c6f7879ca889e37404450c" + }, + { + "path": "png/max.png", + "mode": "100644", + "type": "blob", + "sha": "50817f289db3b37e2b3626e4c18e2de2438450e7", + "size": 46794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50817f289db3b37e2b3626e4c18e2de2438450e7" + }, + { + "path": "png/mayan-edms-light.png", + "mode": "100644", + "type": "blob", + "sha": "19cb0726965ccb764131f3b916a77e375a8ecf0d", + "size": 13437, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19cb0726965ccb764131f3b916a77e375a8ecf0d" + }, + { + "path": "png/mayan-edms.png", + "mode": "100644", + "type": "blob", + "sha": "b9275fd3a7a05095077036b336f882ad16326307", + "size": 12602, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9275fd3a7a05095077036b336f882ad16326307" + }, + { + "path": "png/maybe.png", + "mode": "100644", + "type": "blob", + "sha": "224aec73e4e19b487a167b61c57ae8bba5e39c52", + "size": 22927, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/224aec73e4e19b487a167b61c57ae8bba5e39c52" + }, + { + "path": "png/mazanoke.png", + "mode": "100644", + "type": "blob", + "sha": "8412c96d4e60039fe8aa0bb159bf7a43d01b6b0a", + "size": 55981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8412c96d4e60039fe8aa0bb159bf7a43d01b6b0a" + }, + { + "path": "png/mbin.png", + "mode": "100644", + "type": "blob", + "sha": "b1d50303ef40f961fb87bb111a16d50e866d6d87", + "size": 32198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1d50303ef40f961fb87bb111a16d50e866d6d87" + }, + { + "path": "png/mcmyadmin.png", + "mode": "100644", + "type": "blob", + "sha": "16c8fab41fb593897317a14382baa2f9bf0555b5", + "size": 7810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16c8fab41fb593897317a14382baa2f9bf0555b5" + }, + { + "path": "png/mealie.png", + "mode": "100644", + "type": "blob", + "sha": "458d2ac7fe499e866545b81db535c6454f119649", + "size": 20383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/458d2ac7fe499e866545b81db535c6454f119649" + }, + { + "path": "png/medama.png", + "mode": "100644", + "type": "blob", + "sha": "25a2f423374e286b2cbf5308977140674db5401a", + "size": 22535, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25a2f423374e286b2cbf5308977140674db5401a" + }, + { + "path": "png/media-manager.png", + "mode": "100644", + "type": "blob", + "sha": "a5ee7ba9e6b02bdbc2195b869b0f0c00fcc24070", + "size": 12722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5ee7ba9e6b02bdbc2195b869b0f0c00fcc24070" + }, + { + "path": "png/mediathekview.png", + "mode": "100644", + "type": "blob", + "sha": "f370cc2c806d9a8699d67ff72f663987925c8bfd", + "size": 39955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f370cc2c806d9a8699d67ff72f663987925c8bfd" + }, + { + "path": "png/mediawiki.png", + "mode": "100644", + "type": "blob", + "sha": "a20894c0807e4a64200566f535e37d3b69304a8b", + "size": 59425, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a20894c0807e4a64200566f535e37d3b69304a8b" + }, + { + "path": "png/medium-dark.png", + "mode": "100644", + "type": "blob", + "sha": "83105ec508274d8b67d7efac85c4043f8fdf5e88", + "size": 18629, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83105ec508274d8b67d7efac85c4043f8fdf5e88" + }, + { + "path": "png/medium-light.png", + "mode": "100644", + "type": "blob", + "sha": "7d56491d3bf79ebfcc5d762b2021feed4a31d9f9", + "size": 20533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d56491d3bf79ebfcc5d762b2021feed4a31d9f9" + }, + { + "path": "png/mediux.png", + "mode": "100644", + "type": "blob", + "sha": "6444f7bdde138512b195008e5204e007d696583c", + "size": 16431, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6444f7bdde138512b195008e5204e007d696583c" + }, + { + "path": "png/medusa-light.png", + "mode": "100644", + "type": "blob", + "sha": "87719f08cc1accc6428df85dfa087a17699d7cd8", + "size": 13271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87719f08cc1accc6428df85dfa087a17699d7cd8" + }, + { + "path": "png/medusa.png", + "mode": "100644", + "type": "blob", + "sha": "b9ec12e51db9bbe4a7cb3cc2a163422178df237e", + "size": 16062, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9ec12e51db9bbe4a7cb3cc2a163422178df237e" + }, + { + "path": "png/mega-nz-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ca74bd03d985328f6f54d0f0612a3abb88900dc0", + "size": 14550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca74bd03d985328f6f54d0f0612a3abb88900dc0" + }, + { + "path": "png/mega-nz.png", + "mode": "100644", + "type": "blob", + "sha": "003793e5a2165d3432ffe2868ca7b6e18bae28c7", + "size": 15331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/003793e5a2165d3432ffe2868ca7b6e18bae28c7" + }, + { + "path": "png/meilisearch.png", + "mode": "100644", + "type": "blob", + "sha": "85f4964acab183a39396027b1d6ade2c90a495a1", + "size": 48084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85f4964acab183a39396027b1d6ade2c90a495a1" + }, + { + "path": "png/mem-ai.png", + "mode": "100644", + "type": "blob", + "sha": "cef231e5544db8d6510eea1487d9b2bde3645937", + "size": 112799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cef231e5544db8d6510eea1487d9b2bde3645937" + }, + { + "path": "png/memories-light.png", + "mode": "100644", + "type": "blob", + "sha": "742c9cd360e3df02b3ee4b0cb7b1dd350c960b31", + "size": 28887, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/742c9cd360e3df02b3ee4b0cb7b1dd350c960b31" + }, + { + "path": "png/memories.png", + "mode": "100644", + "type": "blob", + "sha": "9eb5d8606a7455d0d7df2239c5ad9332714548de", + "size": 26005, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eb5d8606a7455d0d7df2239c5ad9332714548de" + }, + { + "path": "png/memos.png", + "mode": "100644", + "type": "blob", + "sha": "a48b62142adfec64ef6e559814df05bfa8a7db4e", + "size": 266114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a48b62142adfec64ef6e559814df05bfa8a7db4e" + }, + { + "path": "png/mempool.png", + "mode": "100644", + "type": "blob", + "sha": "8006602143f4fa78e0fe647e98099dcc9f4d0333", + "size": 7184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8006602143f4fa78e0fe647e98099dcc9f4d0333" + }, + { + "path": "png/meraki.png", + "mode": "100644", + "type": "blob", + "sha": "ff88f0a16698283d65f3dd411a9f8cdb6b9f652c", + "size": 33140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff88f0a16698283d65f3dd411a9f8cdb6b9f652c" + }, + { + "path": "png/mercusys.png", + "mode": "100644", + "type": "blob", + "sha": "bf08832928109c6c454b393f2ae218c23fb4e608", + "size": 88162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf08832928109c6c454b393f2ae218c23fb4e608" + }, + { + "path": "png/mergeable-dark.png", + "mode": "100644", + "type": "blob", + "sha": "774b7abe0be68ac949b962461f17bc2c8565702d", + "size": 19964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/774b7abe0be68ac949b962461f17bc2c8565702d" + }, + { + "path": "png/mergeable.png", + "mode": "100644", + "type": "blob", + "sha": "bac91de7c8fd12160169c7bff5f42ea00b2f04fa", + "size": 21282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bac91de7c8fd12160169c7bff5f42ea00b2f04fa" + }, + { + "path": "png/meshcentral.png", + "mode": "100644", + "type": "blob", + "sha": "88825b974c462cfb76c444c011fe66c4795b1c7f", + "size": 66066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88825b974c462cfb76c444c011fe66c4795b1c7f" + }, + { + "path": "png/meshping-light.png", + "mode": "100644", + "type": "blob", + "sha": "1e958100ea9d9764d447d2f9e2c22af78a260fa2", + "size": 22238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e958100ea9d9764d447d2f9e2c22af78a260fa2" + }, + { + "path": "png/meshping.png", + "mode": "100644", + "type": "blob", + "sha": "2026a5ef539e35e772ff0a07ad5957c6b581e568", + "size": 19433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2026a5ef539e35e772ff0a07ad5957c6b581e568" + }, + { + "path": "png/meshtastic.png", + "mode": "100644", + "type": "blob", + "sha": "8f79e671cab0ea7cc8f789a867550cf3b3e64d9c", + "size": 18129, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f79e671cab0ea7cc8f789a867550cf3b3e64d9c" + }, + { + "path": "png/meta.png", + "mode": "100644", + "type": "blob", + "sha": "2fe1aa1b32e2bec891cb2768d619a4a14e051419", + "size": 33761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fe1aa1b32e2bec891cb2768d619a4a14e051419" + }, + { + "path": "png/metabase.png", + "mode": "100644", + "type": "blob", + "sha": "3f3496b91af4bfb0bba2ba4269e96205e244e1b3", + "size": 29433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f3496b91af4bfb0bba2ba4269e96205e244e1b3" + }, + { + "path": "png/metabrainz.png", + "mode": "100644", + "type": "blob", + "sha": "1861c74a48ea46da8509d735a4ea310b69e70540", + "size": 36306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1861c74a48ea46da8509d735a4ea310b69e70540" + }, + { + "path": "png/metallb.png", + "mode": "100644", + "type": "blob", + "sha": "5111695781bc1fd0434fa0186ea8c6996878c457", + "size": 11134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5111695781bc1fd0434fa0186ea8c6996878c457" + }, + { + "path": "png/metube.png", + "mode": "100644", + "type": "blob", + "sha": "3060e083d880ea515adad447a6e5ac7ced6b1f54", + "size": 15103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3060e083d880ea515adad447a6e5ac7ced6b1f54" + }, + { + "path": "png/microbin.png", + "mode": "100644", + "type": "blob", + "sha": "af4d18fdc99769128c7a47a51e7580298cda70cc", + "size": 23057, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af4d18fdc99769128c7a47a51e7580298cda70cc" + }, + { + "path": "png/microsoft-365-admin-center.png", + "mode": "100644", + "type": "blob", + "sha": "406ac3270cd6c30215e7b12aa1335f4af3ad0c42", + "size": 20312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/406ac3270cd6c30215e7b12aa1335f4af3ad0c42" + }, + { + "path": "png/microsoft-365.png", + "mode": "100644", + "type": "blob", + "sha": "5798067f9a5ab30256437e3f814ecb9cf38f47ff", + "size": 78368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5798067f9a5ab30256437e3f814ecb9cf38f47ff" + }, + { + "path": "png/microsoft-access.png", + "mode": "100644", + "type": "blob", + "sha": "748df0d078a668bb1bbaa1e8b3979ca2c4fde0e4", + "size": 24194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/748df0d078a668bb1bbaa1e8b3979ca2c4fde0e4" + }, + { + "path": "png/microsoft-azure.png", + "mode": "100644", + "type": "blob", + "sha": "8ba8b030a7a5acb6641af0bd0edfbf397d5d934b", + "size": 34023, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ba8b030a7a5acb6641af0bd0edfbf397d5d934b" + }, + { + "path": "png/microsoft-bing.png", + "mode": "100644", + "type": "blob", + "sha": "19288ee2307bf48af0f18783a1abaee6e17c21ff", + "size": 24639, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19288ee2307bf48af0f18783a1abaee6e17c21ff" + }, + { + "path": "png/microsoft-copilot.png", + "mode": "100644", + "type": "blob", + "sha": "4343d2cdc294404aa829499e6d14f9776c430136", + "size": 75894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4343d2cdc294404aa829499e6d14f9776c430136" + }, + { + "path": "png/microsoft-defender.png", + "mode": "100644", + "type": "blob", + "sha": "3d5f41c43ada05125d672849b3967e5415a84570", + "size": 16364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d5f41c43ada05125d672849b3967e5415a84570" + }, + { + "path": "png/microsoft-edge.png", + "mode": "100644", + "type": "blob", + "sha": "f8ef8678360723a01b1e5eb7149ed2dfca710ca6", + "size": 90449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8ef8678360723a01b1e5eb7149ed2dfca710ca6" + }, + { + "path": "png/microsoft-excel.png", + "mode": "100644", + "type": "blob", + "sha": "a3f906b1a88a907ca909e790eb67c664696688fd", + "size": 19078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3f906b1a88a907ca909e790eb67c664696688fd" + }, + { + "path": "png/microsoft-exchange.png", + "mode": "100644", + "type": "blob", + "sha": "607d437035a741df2c2dc4e3901d20339f5d41dd", + "size": 10749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/607d437035a741df2c2dc4e3901d20339f5d41dd" + }, + { + "path": "png/microsoft-intune.png", + "mode": "100644", + "type": "blob", + "sha": "9eec192fcecf4e495d80186510a6954e7a1a15f6", + "size": 54511, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eec192fcecf4e495d80186510a6954e7a1a15f6" + }, + { + "path": "png/microsoft-office.png", + "mode": "100644", + "type": "blob", + "sha": "8c0309d269cc98f35125b7f4298e2e8a449d417d", + "size": 25092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c0309d269cc98f35125b7f4298e2e8a449d417d" + }, + { + "path": "png/microsoft-onedrive.png", + "mode": "100644", + "type": "blob", + "sha": "cc40cca14a75f77d23b020dd86891b9dc665b932", + "size": 23789, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc40cca14a75f77d23b020dd86891b9dc665b932" + }, + { + "path": "png/microsoft-onenote.png", + "mode": "100644", + "type": "blob", + "sha": "85da274ef0f515eb5b5a879a4eec661aeeddcbe0", + "size": 17578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85da274ef0f515eb5b5a879a4eec661aeeddcbe0" + }, + { + "path": "png/microsoft-outlook.png", + "mode": "100644", + "type": "blob", + "sha": "7d3ce26434367cf5c604d8898d14455f166566cb", + "size": 25662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d3ce26434367cf5c604d8898d14455f166566cb" + }, + { + "path": "png/microsoft-power-automate.png", + "mode": "100644", + "type": "blob", + "sha": "8c5d7a7b1fcbe357417ea7d867f12e7f85db7fe2", + "size": 40631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c5d7a7b1fcbe357417ea7d867f12e7f85db7fe2" + }, + { + "path": "png/microsoft-powerpoint.png", + "mode": "100644", + "type": "blob", + "sha": "c5d9b7452f48a1cf3126a4e4eb1467412c213cb8", + "size": 23100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5d9b7452f48a1cf3126a4e4eb1467412c213cb8" + }, + { + "path": "png/microsoft-remote-desktop.png", + "mode": "100644", + "type": "blob", + "sha": "7806b7b4b7912ecea463dddd67cfd087cce33eca", + "size": 54837, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7806b7b4b7912ecea463dddd67cfd087cce33eca" + }, + { + "path": "png/microsoft-sharepoint.png", + "mode": "100644", + "type": "blob", + "sha": "6d4a8916baf1b642e1f007f2ae043381c3b23019", + "size": 28038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d4a8916baf1b642e1f007f2ae043381c3b23019" + }, + { + "path": "png/microsoft-sql-server-light.png", + "mode": "100644", + "type": "blob", + "sha": "176b721cb300927a2b486548a932b7b8cc9979da", + "size": 61145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/176b721cb300927a2b486548a932b7b8cc9979da" + }, + { + "path": "png/microsoft-sql-server.png", + "mode": "100644", + "type": "blob", + "sha": "5488b6f06e33ad792867565b0b425db2d26a76dc", + "size": 67599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5488b6f06e33ad792867565b0b425db2d26a76dc" + }, + { + "path": "png/microsoft-teams.png", + "mode": "100644", + "type": "blob", + "sha": "8ee9e11ba1ee3948a36331d0c408e2358caf59c0", + "size": 24352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ee9e11ba1ee3948a36331d0c408e2358caf59c0" + }, + { + "path": "png/microsoft-to-do.png", + "mode": "100644", + "type": "blob", + "sha": "746b22a3474de26a71be76f413dcbc66d9181a2d", + "size": 17594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/746b22a3474de26a71be76f413dcbc66d9181a2d" + }, + { + "path": "png/microsoft-windows.png", + "mode": "100644", + "type": "blob", + "sha": "78d65586b76f8579839b49a3e062931f309c5365", + "size": 2251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78d65586b76f8579839b49a3e062931f309c5365" + }, + { + "path": "png/microsoft-word.png", + "mode": "100644", + "type": "blob", + "sha": "e925765ecbedd53865e91e654a8d5e6f77f4dec1", + "size": 20387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e925765ecbedd53865e91e654a8d5e6f77f4dec1" + }, + { + "path": "png/microsoft.png", + "mode": "100644", + "type": "blob", + "sha": "7c07ab3d8f63622289e222f35439fe6ab3171c5b", + "size": 2189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c07ab3d8f63622289e222f35439fe6ab3171c5b" + }, + { + "path": "png/midjourney-light.png", + "mode": "100644", + "type": "blob", + "sha": "94159e8507ca4fa5be040016351b499138e4f020", + "size": 16140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94159e8507ca4fa5be040016351b499138e4f020" + }, + { + "path": "png/midjourney.png", + "mode": "100644", + "type": "blob", + "sha": "ca6c7cdff8efdc90c097c5fc24f58a8ae83cc91f", + "size": 42141, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca6c7cdff8efdc90c097c5fc24f58a8ae83cc91f" + }, + { + "path": "png/mikrotik-light.png", + "mode": "100644", + "type": "blob", + "sha": "43ec7b34c569d530e014a4032cbd5e39bf5ee608", + "size": 18905, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43ec7b34c569d530e014a4032cbd5e39bf5ee608" + }, + { + "path": "png/mikrotik.png", + "mode": "100644", + "type": "blob", + "sha": "5479a0bac8100f75fd4447f9e95b63d7b8b8cc1d", + "size": 19788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5479a0bac8100f75fd4447f9e95b63d7b8b8cc1d" + }, + { + "path": "png/minecraft.png", + "mode": "100644", + "type": "blob", + "sha": "188eac69a2457514aaa865eb7f4aad2129175743", + "size": 94387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/188eac69a2457514aaa865eb7f4aad2129175743" + }, + { + "path": "png/mineos.png", + "mode": "100644", + "type": "blob", + "sha": "e6d343d86a97b77e8582701dc83200fc963f97b5", + "size": 17025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6d343d86a97b77e8582701dc83200fc963f97b5" + }, + { + "path": "png/miniflux-light.png", + "mode": "100644", + "type": "blob", + "sha": "dfb05dc82c65d2460e7bbae4a9e7e31b041587da", + "size": 11560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfb05dc82c65d2460e7bbae4a9e7e31b041587da" + }, + { + "path": "png/miniflux.png", + "mode": "100644", + "type": "blob", + "sha": "4af00d9a103cd725c1ea6fa901d5f93f4dc29a65", + "size": 10578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4af00d9a103cd725c1ea6fa901d5f93f4dc29a65" + }, + { + "path": "png/minimserver.png", + "mode": "100644", + "type": "blob", + "sha": "c9b72c17f513dc34c070d213218c63f9021d64f3", + "size": 4105, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9b72c17f513dc34c070d213218c63f9021d64f3" + }, + { + "path": "png/minio-light.png", + "mode": "100644", + "type": "blob", + "sha": "216aecc8ec9c6f52f47b69cd7af4dc8c9f3f61e2", + "size": 12776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/216aecc8ec9c6f52f47b69cd7af4dc8c9f3f61e2" + }, + { + "path": "png/minio.png", + "mode": "100644", + "type": "blob", + "sha": "1be735c9328cede229bd17878ce5299b387a519f", + "size": 12186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1be735c9328cede229bd17878ce5299b387a519f" + }, + { + "path": "png/miro.png", + "mode": "100644", + "type": "blob", + "sha": "71147d8fa70a2216a9430c3e8475bafc4d4a0176", + "size": 15874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71147d8fa70a2216a9430c3e8475bafc4d4a0176" + }, + { + "path": "png/misp.png", + "mode": "100644", + "type": "blob", + "sha": "551527ed27b9d284a55b1ba8b55e5244f58f3427", + "size": 6519, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/551527ed27b9d284a55b1ba8b55e5244f58f3427" + }, + { + "path": "png/misskey-light.png", + "mode": "100644", + "type": "blob", + "sha": "98f672840c860807d58bc68fadde91afa574b65b", + "size": 16673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98f672840c860807d58bc68fadde91afa574b65b" + }, + { + "path": "png/misskey.png", + "mode": "100644", + "type": "blob", + "sha": "1096c13a8088c704a533f5338521de5a7d589c91", + "size": 14756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1096c13a8088c704a533f5338521de5a7d589c91" + }, + { + "path": "png/mistral-ai.png", + "mode": "100644", + "type": "blob", + "sha": "5994f8fe901fc67997d46fcaea1c4798f5efce59", + "size": 5966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5994f8fe901fc67997d46fcaea1c4798f5efce59" + }, + { + "path": "png/mitra.png", + "mode": "100644", + "type": "blob", + "sha": "e8cc3571221d052270609f4b7745b7dbdfa27a15", + "size": 36014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8cc3571221d052270609f4b7745b7dbdfa27a15" + }, + { + "path": "png/mixpost.png", + "mode": "100644", + "type": "blob", + "sha": "6827fdc63102f5aa9121fb8b3cb185dd78cbba6a", + "size": 11414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6827fdc63102f5aa9121fb8b3cb185dd78cbba6a" + }, + { + "path": "png/mkdocs-light.png", + "mode": "100644", + "type": "blob", + "sha": "498a5fe1850ec737d9c05e8f966d7b988d1e38e1", + "size": 5983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/498a5fe1850ec737d9c05e8f966d7b988d1e38e1" + }, + { + "path": "png/mkdocs.png", + "mode": "100644", + "type": "blob", + "sha": "bf93a82a825e8ac3eb0617b6d016501e74bc607b", + "size": 7930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf93a82a825e8ac3eb0617b6d016501e74bc607b" + }, + { + "path": "png/mkvtoolnix.png", + "mode": "100644", + "type": "blob", + "sha": "07c88ed3dfa66caac09266a2af57853434d75079", + "size": 36988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07c88ed3dfa66caac09266a2af57853434d75079" + }, + { + "path": "png/ml-flow-wordmark-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4737a2a87e569e8361fc7ab06fe08cb638c17bbb", + "size": 31185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4737a2a87e569e8361fc7ab06fe08cb638c17bbb" + }, + { + "path": "png/ml-flow-wordmark.png", + "mode": "100644", + "type": "blob", + "sha": "97fa28e28a018f23d60d4fb9f1191613d9f298e8", + "size": 32083, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97fa28e28a018f23d60d4fb9f1191613d9f298e8" + }, + { + "path": "png/mobaxterm.png", + "mode": "100644", + "type": "blob", + "sha": "6b664d90a18bf37fb4163457f899a714c8ea313d", + "size": 68644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b664d90a18bf37fb4163457f899a714c8ea313d" + }, + { + "path": "png/mobilizon.png", + "mode": "100644", + "type": "blob", + "sha": "930091e39f2dc2772ef2c0015e380ea1a190e2d0", + "size": 16725, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/930091e39f2dc2772ef2c0015e380ea1a190e2d0" + }, + { + "path": "png/mobotix-light.png", + "mode": "100644", + "type": "blob", + "sha": "87d35c0f184927da6237c990c7bf51855c124d79", + "size": 33947, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87d35c0f184927da6237c990c7bf51855c124d79" + }, + { + "path": "png/mobotix.png", + "mode": "100644", + "type": "blob", + "sha": "1f0d64eb17896364582430b10df9421e4e089caf", + "size": 32551, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f0d64eb17896364582430b10df9421e4e089caf" + }, + { + "path": "png/mochahost.png", + "mode": "100644", + "type": "blob", + "sha": "98142fed2f32f32e9834e51e1a66f860da4b213a", + "size": 79670, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98142fed2f32f32e9834e51e1a66f860da4b213a" + }, + { + "path": "png/modrinth.png", + "mode": "100644", + "type": "blob", + "sha": "40a4c53c66d6c3c69b44b7b43f881944284befbc", + "size": 37987, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40a4c53c66d6c3c69b44b7b43f881944284befbc" + }, + { + "path": "png/mojeek.png", + "mode": "100644", + "type": "blob", + "sha": "fb153512b547fdeeb413fde9f252217102763bc9", + "size": 26247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb153512b547fdeeb413fde9f252217102763bc9" + }, + { + "path": "png/molecule.png", + "mode": "100644", + "type": "blob", + "sha": "552c165ce9181c92b6b4bd07fb6f7fccef1d9604", + "size": 17825, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/552c165ce9181c92b6b4bd07fb6f7fccef1d9604" + }, + { + "path": "png/monero.png", + "mode": "100644", + "type": "blob", + "sha": "7e041763b7cbcb75f2f730cde6dcb3e91c566006", + "size": 17658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e041763b7cbcb75f2f730cde6dcb3e91c566006" + }, + { + "path": "png/mongodb.png", + "mode": "100644", + "type": "blob", + "sha": "ea57719246117b25c363ef5bcd09b79eeb5bb70e", + "size": 12092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea57719246117b25c363ef5bcd09b79eeb5bb70e" + }, + { + "path": "png/monica-light.png", + "mode": "100644", + "type": "blob", + "sha": "5f3c93dfb3ef5c098f8b26455a76276edb2666cd", + "size": 31119, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f3c93dfb3ef5c098f8b26455a76276edb2666cd" + }, + { + "path": "png/monica.png", + "mode": "100644", + "type": "blob", + "sha": "2a693143d7f947fa0bc9812dd469d893c3cced9e", + "size": 35811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a693143d7f947fa0bc9812dd469d893c3cced9e" + }, + { + "path": "png/monit.png", + "mode": "100644", + "type": "blob", + "sha": "1aa76585032c651176ebd03a57c3c7c9fd4bf660", + "size": 22829, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1aa76585032c651176ebd03a57c3c7c9fd4bf660" + }, + { + "path": "png/monkeytype.png", + "mode": "100644", + "type": "blob", + "sha": "5691006509c39db8a33990366f568e39875c28cd", + "size": 17759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5691006509c39db8a33990366f568e39875c28cd" + }, + { + "path": "png/moode-audio.png", + "mode": "100644", + "type": "blob", + "sha": "71be351f31ccc8fd434de199f5f64150d77496a3", + "size": 25944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71be351f31ccc8fd434de199f5f64150d77496a3" + }, + { + "path": "png/moodist-dark.png", + "mode": "100644", + "type": "blob", + "sha": "e75e0755a7dd41c78bbfe0a0908c0925baaf29da", + "size": 31297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e75e0755a7dd41c78bbfe0a0908c0925baaf29da" + }, + { + "path": "png/moodist.png", + "mode": "100644", + "type": "blob", + "sha": "343158ed9c39bf9f4ef78b6524de2936aca57136", + "size": 31899, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/343158ed9c39bf9f4ef78b6524de2936aca57136" + }, + { + "path": "png/moodle-light.png", + "mode": "100644", + "type": "blob", + "sha": "331464012cfee2a61a2be9bc47adf9a710916dab", + "size": 15866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/331464012cfee2a61a2be9bc47adf9a710916dab" + }, + { + "path": "png/moodle.png", + "mode": "100644", + "type": "blob", + "sha": "6d46492fbbc0ed55afb49b818db9ef31bb9d78ec", + "size": 17556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d46492fbbc0ed55afb49b818db9ef31bb9d78ec" + }, + { + "path": "png/morphos.png", + "mode": "100644", + "type": "blob", + "sha": "48aafea4e9565a4da1bca7ded07bcdb906abb840", + "size": 38708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48aafea4e9565a4da1bca7ded07bcdb906abb840" + }, + { + "path": "png/morss.png", + "mode": "100644", + "type": "blob", + "sha": "9503d47d1cfc013561ddfe11fbb846cbf4fa873f", + "size": 309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9503d47d1cfc013561ddfe11fbb846cbf4fa873f" + }, + { + "path": "png/mosquitto.png", + "mode": "100644", + "type": "blob", + "sha": "207feb77ffac83cf08446323dd6be9824a65c0ba", + "size": 46943, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/207feb77ffac83cf08446323dd6be9824a65c0ba" + }, + { + "path": "png/motioneye-dark.png", + "mode": "100644", + "type": "blob", + "sha": "18234608d1d2f539d295feb9eea49c43dfc193ca", + "size": 25598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18234608d1d2f539d295feb9eea49c43dfc193ca" + }, + { + "path": "png/motioneye.png", + "mode": "100644", + "type": "blob", + "sha": "16cba0525bc93da51e6aaa9efda8e05919bbfa7d", + "size": 30054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16cba0525bc93da51e6aaa9efda8e05919bbfa7d" + }, + { + "path": "png/mousehole-dark.png", + "mode": "100644", + "type": "blob", + "sha": "b1aff494bc8c8b41323a0bceb31c76549e9698e4", + "size": 6916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1aff494bc8c8b41323a0bceb31c76549e9698e4" + }, + { + "path": "png/mousehole.png", + "mode": "100644", + "type": "blob", + "sha": "b377b75af30d9afafa0b7b57c1d2812edf67fa67", + "size": 6916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b377b75af30d9afafa0b7b57c1d2812edf67fa67" + }, + { + "path": "png/movie-pilot.png", + "mode": "100644", + "type": "blob", + "sha": "d2cf9d1d6ba7dabed705fc5147371e68a8b7b1ad", + "size": 21373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2cf9d1d6ba7dabed705fc5147371e68a8b7b1ad" + }, + { + "path": "png/mpm.png", + "mode": "100644", + "type": "blob", + "sha": "87d8568546a8686eacb02d459ad8d5a0ad2a4485", + "size": 51584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87d8568546a8686eacb02d459ad8d5a0ad2a4485" + }, + { + "path": "png/mqtt.png", + "mode": "100644", + "type": "blob", + "sha": "846b8f24352301552701af384f0e18a6ea9506c1", + "size": 21732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/846b8f24352301552701af384f0e18a6ea9506c1" + }, + { + "path": "png/mstream.png", + "mode": "100644", + "type": "blob", + "sha": "90263b09691f23608b0f4b6be4d3b320387b32ab", + "size": 6480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90263b09691f23608b0f4b6be4d3b320387b32ab" + }, + { + "path": "png/mtlynch-picoshare.png", + "mode": "100644", + "type": "blob", + "sha": "d3ecf62b343a242fc75bac497ba3cc04bb40fe1b", + "size": 7060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3ecf62b343a242fc75bac497ba3cc04bb40fe1b" + }, + { + "path": "png/mullvad-browser.png", + "mode": "100644", + "type": "blob", + "sha": "88759bd17ff96b3f21e1386546a8a7daa60a490b", + "size": 26272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88759bd17ff96b3f21e1386546a8a7daa60a490b" + }, + { + "path": "png/mullvad-vpn.png", + "mode": "100644", + "type": "blob", + "sha": "e4a11094ce0301a19bfc9a1dbd8e39d3d25c337c", + "size": 32513, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4a11094ce0301a19bfc9a1dbd8e39d3d25c337c" + }, + { + "path": "png/mullvad.png", + "mode": "100644", + "type": "blob", + "sha": "c9f36fbef1b2275cec7e04bd9c6a04f71e5fa3f2", + "size": 32500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9f36fbef1b2275cec7e04bd9c6a04f71e5fa3f2" + }, + { + "path": "png/multi-scrobbler.png", + "mode": "100644", + "type": "blob", + "sha": "080798a572f31dd21a701adfe7b250eff6be0030", + "size": 14149, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/080798a572f31dd21a701adfe7b250eff6be0030" + }, + { + "path": "png/mumble-light.png", + "mode": "100644", + "type": "blob", + "sha": "f0b8ca0b6777ce99c4bb652b98f3ccb3898b2183", + "size": 11354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0b8ca0b6777ce99c4bb652b98f3ccb3898b2183" + }, + { + "path": "png/mumble.png", + "mode": "100644", + "type": "blob", + "sha": "36d6d2cf6eafff7612f784ef4cce5e1e1657902c", + "size": 27088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36d6d2cf6eafff7612f784ef4cce5e1e1657902c" + }, + { + "path": "png/musescore.png", + "mode": "100644", + "type": "blob", + "sha": "b140e4797baf22fff18d51d77c24ffeecec89d31", + "size": 13391, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b140e4797baf22fff18d51d77c24ffeecec89d31" + }, + { + "path": "png/music-assistant-light.png", + "mode": "100644", + "type": "blob", + "sha": "44e883c6f8e7677abd247b39f68a62867eef6364", + "size": 15827, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44e883c6f8e7677abd247b39f68a62867eef6364" + }, + { + "path": "png/music-assistant.png", + "mode": "100644", + "type": "blob", + "sha": "8b5d4e6182cfed61ef028e4de1ff3e523f4dc2da", + "size": 15035, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b5d4e6182cfed61ef028e4de1ff3e523f4dc2da" + }, + { + "path": "png/musicbrainz.png", + "mode": "100644", + "type": "blob", + "sha": "9dbac05a3380a3d5eeee8e8cc0da39f54bb6530e", + "size": 38836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dbac05a3380a3d5eeee8e8cc0da39f54bb6530e" + }, + { + "path": "png/my-guitar-tabs.png", + "mode": "100644", + "type": "blob", + "sha": "beadc43ad35fd1096af863e261049ae78913b739", + "size": 165351, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/beadc43ad35fd1096af863e261049ae78913b739" + }, + { + "path": "png/myheats-light.png", + "mode": "100644", + "type": "blob", + "sha": "7f817fd8ee0b7421f2b5047b519fde38baa03088", + "size": 43193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f817fd8ee0b7421f2b5047b519fde38baa03088" + }, + { + "path": "png/myheats.png", + "mode": "100644", + "type": "blob", + "sha": "4068ff68d6452d45785cce4fa6567ad377cbcae3", + "size": 43050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4068ff68d6452d45785cce4fa6567ad377cbcae3" + }, + { + "path": "png/mylar.png", + "mode": "100644", + "type": "blob", + "sha": "c89a180c29dbb4d2d2bcac6392f423bd1be139aa", + "size": 34183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c89a180c29dbb4d2d2bcac6392f423bd1be139aa" + }, + { + "path": "png/mympd.png", + "mode": "100644", + "type": "blob", + "sha": "24600f0f92135de35304958ce6ff7bc61deb619f", + "size": 13355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24600f0f92135de35304958ce6ff7bc61deb619f" + }, + { + "path": "png/myspeed.png", + "mode": "100644", + "type": "blob", + "sha": "af38e74b4595a58a65b29114a07b18724bbd27b4", + "size": 31889, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af38e74b4595a58a65b29114a07b18724bbd27b4" + }, + { + "path": "png/mysql.png", + "mode": "100644", + "type": "blob", + "sha": "a2a18933909f1f7c9a9e1e20fb9a2429e7df230c", + "size": 24545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2a18933909f1f7c9a9e1e20fb9a2429e7df230c" + }, + { + "path": "png/mysterium.png", + "mode": "100644", + "type": "blob", + "sha": "73d79d138d973dad36753cd5ab864d7a73803a7a", + "size": 57450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73d79d138d973dad36753cd5ab864d7a73803a7a" + }, + { + "path": "png/n8n.png", + "mode": "100644", + "type": "blob", + "sha": "280ae978fd4654db87f65303c278cd36f1689e26", + "size": 34961, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/280ae978fd4654db87f65303c278cd36f1689e26" + }, + { + "path": "png/nagios.png", + "mode": "100644", + "type": "blob", + "sha": "e4f98fb78f6873e05fd526b6bfb5e67a423e9c4f", + "size": 17348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4f98fb78f6873e05fd526b6bfb5e67a423e9c4f" + }, + { + "path": "png/name-silo.png", + "mode": "100644", + "type": "blob", + "sha": "5a51f9e05f3182225a2364204ce125088d2437ad", + "size": 6190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a51f9e05f3182225a2364204ce125088d2437ad" + }, + { + "path": "png/namecheap.png", + "mode": "100644", + "type": "blob", + "sha": "67db4ed5b3185dc1af462910ec1384ca85151dc1", + "size": 68855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67db4ed5b3185dc1af462910ec1384ca85151dc1" + }, + { + "path": "png/nasa.png", + "mode": "100644", + "type": "blob", + "sha": "f4204ded79a50b57fdd80e35027e332ac4f07fbd", + "size": 55657, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4204ded79a50b57fdd80e35027e332ac4f07fbd" + }, + { + "path": "png/nastool.png", + "mode": "100644", + "type": "blob", + "sha": "8813da66fd62bdcf15f74d5915d2441194b0595e", + "size": 50182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8813da66fd62bdcf15f74d5915d2441194b0595e" + }, + { + "path": "png/natwest.png", + "mode": "100644", + "type": "blob", + "sha": "fcbd11afefd8b1d1970e8e124a0bb934cf6670b9", + "size": 31461, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcbd11afefd8b1d1970e8e124a0bb934cf6670b9" + }, + { + "path": "png/nautical-backup.png", + "mode": "100644", + "type": "blob", + "sha": "6d7b4899b5c5468c375fe297fefe8a02464498f1", + "size": 213546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d7b4899b5c5468c375fe297fefe8a02464498f1" + }, + { + "path": "png/navidrome-light.png", + "mode": "100644", + "type": "blob", + "sha": "6998aa013934d8618fce988f037081058e0be8d1", + "size": 39397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6998aa013934d8618fce988f037081058e0be8d1" + }, + { + "path": "png/navidrome.png", + "mode": "100644", + "type": "blob", + "sha": "0c4ebd638e3e55bd115538b2a554af25fe1705f2", + "size": 38647, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c4ebd638e3e55bd115538b2a554af25fe1705f2" + }, + { + "path": "png/ncore.png", + "mode": "100644", + "type": "blob", + "sha": "dea792e4ae71f422ef08cc1cfcd10499504ebedd", + "size": 15316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dea792e4ae71f422ef08cc1cfcd10499504ebedd" + }, + { + "path": "png/neko-light.png", + "mode": "100644", + "type": "blob", + "sha": "247eacd4e889081932ddb81810a9756523046e22", + "size": 23283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/247eacd4e889081932ddb81810a9756523046e22" + }, + { + "path": "png/neko.png", + "mode": "100644", + "type": "blob", + "sha": "b7bc0d1ff39374b837b46771110761d902c500cf", + "size": 19964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7bc0d1ff39374b837b46771110761d902c500cf" + }, + { + "path": "png/neo4j.png", + "mode": "100644", + "type": "blob", + "sha": "64306756398a423a521531365dbf0d6e57c8a5b3", + "size": 35908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64306756398a423a521531365dbf0d6e57c8a5b3" + }, + { + "path": "png/neocities.png", + "mode": "100644", + "type": "blob", + "sha": "947ebcb16fb9a66ce314c628a72f8da00f5c6ed9", + "size": 95768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/947ebcb16fb9a66ce314c628a72f8da00f5c6ed9" + }, + { + "path": "png/neodb.png", + "mode": "100644", + "type": "blob", + "sha": "0c22733cd88e765cdc81fe20e1ae07577b6bb969", + "size": 16800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c22733cd88e765cdc81fe20e1ae07577b6bb969" + }, + { + "path": "png/neon-tech.png", + "mode": "100644", + "type": "blob", + "sha": "f7c4a9550936950423701556fac37c6abc7ad31c", + "size": 24286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7c4a9550936950423701556fac37c6abc7ad31c" + }, + { + "path": "png/neonlink.png", + "mode": "100644", + "type": "blob", + "sha": "5112ffcdeb146e4bb0b06625009a76f3ea34abfb", + "size": 3919, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5112ffcdeb146e4bb0b06625009a76f3ea34abfb" + }, + { + "path": "png/netalertx-light.png", + "mode": "100644", + "type": "blob", + "sha": "54ddb199864ff3d1c7466f0dab77d70de4197f27", + "size": 16910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54ddb199864ff3d1c7466f0dab77d70de4197f27" + }, + { + "path": "png/netalertx.png", + "mode": "100644", + "type": "blob", + "sha": "ca83bab1ab7f0e0123f29f2f1902811bcb782b22", + "size": 18644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca83bab1ab7f0e0123f29f2f1902811bcb782b22" + }, + { + "path": "png/netapp-light.png", + "mode": "100644", + "type": "blob", + "sha": "cfdfdc244c04467dce7f021f1c3b18073a0a0c32", + "size": 2524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfdfdc244c04467dce7f021f1c3b18073a0a0c32" + }, + { + "path": "png/netapp.png", + "mode": "100644", + "type": "blob", + "sha": "4b8232fe17b100090142f297c501ef16018ab7c8", + "size": 2520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b8232fe17b100090142f297c501ef16018ab7c8" + }, + { + "path": "png/netatmo.png", + "mode": "100644", + "type": "blob", + "sha": "b8a12fcabd31b65cad71de3b459667b9f2d09649", + "size": 48318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8a12fcabd31b65cad71de3b459667b9f2d09649" + }, + { + "path": "png/netbird.png", + "mode": "100644", + "type": "blob", + "sha": "901d176ffab88e891a61b0e1f3052e19f4803a38", + "size": 20728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/901d176ffab88e891a61b0e1f3052e19f4803a38" + }, + { + "path": "png/netboot.png", + "mode": "100644", + "type": "blob", + "sha": "698d450963a4fba447ebb4e13cafeb0bede3ce1a", + "size": 23548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/698d450963a4fba447ebb4e13cafeb0bede3ce1a" + }, + { + "path": "png/netbootxyz.png", + "mode": "100644", + "type": "blob", + "sha": "46dca8104db785609a499273d12593deb96841c0", + "size": 10900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46dca8104db785609a499273d12593deb96841c0" + }, + { + "path": "png/netbox-dark.png", + "mode": "100644", + "type": "blob", + "sha": "5533c75c5b0c3e713fff4ef7a57499b99e985afe", + "size": 14271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5533c75c5b0c3e713fff4ef7a57499b99e985afe" + }, + { + "path": "png/netbox-full-dark.png", + "mode": "100644", + "type": "blob", + "sha": "062ce5236176b598a30f8fa0c084a8fb274ff7ac", + "size": 43618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/062ce5236176b598a30f8fa0c084a8fb274ff7ac" + }, + { + "path": "png/netbox-full.png", + "mode": "100644", + "type": "blob", + "sha": "a3a296d6e0dd540775c508d6b9915df4684bbfc2", + "size": 42524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3a296d6e0dd540775c508d6b9915df4684bbfc2" + }, + { + "path": "png/netbox.png", + "mode": "100644", + "type": "blob", + "sha": "2819f8db4f51d876bd600926f190e872185fe1a0", + "size": 13298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2819f8db4f51d876bd600926f190e872185fe1a0" + }, + { + "path": "png/netcam-studio.png", + "mode": "100644", + "type": "blob", + "sha": "96fc7958262e9dd01093550fc5f6e855306e9a00", + "size": 102471, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96fc7958262e9dd01093550fc5f6e855306e9a00" + }, + { + "path": "png/netdata.png", + "mode": "100644", + "type": "blob", + "sha": "5f2404f431c5d7ba74b4ba213cd4b1f0236b4e97", + "size": 12010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f2404f431c5d7ba74b4ba213cd4b1f0236b4e97" + }, + { + "path": "png/netflix.png", + "mode": "100644", + "type": "blob", + "sha": "140f340ecd35491ac122808224b6a7e04f9afd96", + "size": 10112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/140f340ecd35491ac122808224b6a7e04f9afd96" + }, + { + "path": "png/netgear-light.png", + "mode": "100644", + "type": "blob", + "sha": "51e27a251f99d2f7e22e325ac8766b5bb88c105c", + "size": 11084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51e27a251f99d2f7e22e325ac8766b5bb88c105c" + }, + { + "path": "png/netgear-orbi.png", + "mode": "100644", + "type": "blob", + "sha": "f5cf205d10c9d0e759335b9a49c50f5a1c8c6173", + "size": 6630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5cf205d10c9d0e759335b9a49c50f5a1c8c6173" + }, + { + "path": "png/netgear.png", + "mode": "100644", + "type": "blob", + "sha": "4540f1152e9e222c1a425a609095d47b3081d362", + "size": 11889, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4540f1152e9e222c1a425a609095d47b3081d362" + }, + { + "path": "png/netlify.png", + "mode": "100644", + "type": "blob", + "sha": "0b582f98d1a479e7187ee4a7f4bf7a6cb6fed08d", + "size": 45109, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b582f98d1a479e7187ee4a7f4bf7a6cb6fed08d" + }, + { + "path": "png/netmaker.png", + "mode": "100644", + "type": "blob", + "sha": "d94560321076f6bdf5cb6f5e158bdab7204e91f0", + "size": 5183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d94560321076f6bdf5cb6f5e158bdab7204e91f0" + }, + { + "path": "png/netsurf-light.png", + "mode": "100644", + "type": "blob", + "sha": "1dc74d2aad17e3607c45ba300b581fcb0b1f2d85", + "size": 60078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dc74d2aad17e3607c45ba300b581fcb0b1f2d85" + }, + { + "path": "png/netsurf.png", + "mode": "100644", + "type": "blob", + "sha": "48efd85e70e113c7cd20fed8a8ad29cb3d7f2c18", + "size": 58924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48efd85e70e113c7cd20fed8a8ad29cb3d7f2c18" + }, + { + "path": "png/netvisor.png", + "mode": "100644", + "type": "blob", + "sha": "9efa6a7f78c38025636fd467296be1b6c6952302", + "size": 10887, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9efa6a7f78c38025636fd467296be1b6c6952302" + }, + { + "path": "png/network-ups-tools.png", + "mode": "100644", + "type": "blob", + "sha": "41d3a064c83bf5bc597e30cc2f1024b90f14b4ff", + "size": 104938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41d3a064c83bf5bc597e30cc2f1024b90f14b4ff" + }, + { + "path": "png/network-weathermap.png", + "mode": "100644", + "type": "blob", + "sha": "f08474ac4c010ad946ac23331df5946dea2149df", + "size": 17539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f08474ac4c010ad946ac23331df5946dea2149df" + }, + { + "path": "png/networking-toolbox-dark.png", + "mode": "100644", + "type": "blob", + "sha": "66858f7908c1d95ad2a096cedf372cb37fe9123e", + "size": 16504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66858f7908c1d95ad2a096cedf372cb37fe9123e" + }, + { + "path": "png/networking-toolbox.png", + "mode": "100644", + "type": "blob", + "sha": "6ec2580ce0e83ed34887bd85e9d4557826391d0c", + "size": 15094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ec2580ce0e83ed34887bd85e9d4557826391d0c" + }, + { + "path": "png/newegg.png", + "mode": "100644", + "type": "blob", + "sha": "98c59a5a974ad767096b3f46db526469d8e5de33", + "size": 112220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98c59a5a974ad767096b3f46db526469d8e5de33" + }, + { + "path": "png/newsblur.png", + "mode": "100644", + "type": "blob", + "sha": "2e0a1c76047dba4aa1be3104ac3cba7f211dfb42", + "size": 52692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e0a1c76047dba4aa1be3104ac3cba7f211dfb42" + }, + { + "path": "png/newshosting-dark.png", + "mode": "100644", + "type": "blob", + "sha": "ef02dc94809c92c16bbe1c60d1d302d559e64d88", + "size": 26404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef02dc94809c92c16bbe1c60d1d302d559e64d88" + }, + { + "path": "png/newshosting.png", + "mode": "100644", + "type": "blob", + "sha": "11d6aa37aa085a0f00506740a8ceb7b92286b2cc", + "size": 11875, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11d6aa37aa085a0f00506740a8ceb7b92286b2cc" + }, + { + "path": "png/nextcloud-blue.png", + "mode": "100644", + "type": "blob", + "sha": "d4ff9dafeac6ea1cb4593e3be7a08393a8482d27", + "size": 18100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d4ff9dafeac6ea1cb4593e3be7a08393a8482d27" + }, + { + "path": "png/nextcloud-calendar.png", + "mode": "100644", + "type": "blob", + "sha": "47fbd272db78c5495e87fa95e43fa1a393c11e1f", + "size": 13582, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47fbd272db78c5495e87fa95e43fa1a393c11e1f" + }, + { + "path": "png/nextcloud-contacts.png", + "mode": "100644", + "type": "blob", + "sha": "302b4205d45fb25f02ac7154591ab91a06498c4d", + "size": 18024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/302b4205d45fb25f02ac7154591ab91a06498c4d" + }, + { + "path": "png/nextcloud-cookbook.png", + "mode": "100644", + "type": "blob", + "sha": "ac66519776d79cecc52306cc23a7def60164280d", + "size": 11520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac66519776d79cecc52306cc23a7def60164280d" + }, + { + "path": "png/nextcloud-cospend.png", + "mode": "100644", + "type": "blob", + "sha": "7478a7fc1ceb8240cd335bb9be07b9fcfaae0b4c", + "size": 19419, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7478a7fc1ceb8240cd335bb9be07b9fcfaae0b4c" + }, + { + "path": "png/nextcloud-deck.png", + "mode": "100644", + "type": "blob", + "sha": "3806359a03fe80a469b03111852ef009b2d6fd46", + "size": 9287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3806359a03fe80a469b03111852ef009b2d6fd46" + }, + { + "path": "png/nextcloud-files.png", + "mode": "100644", + "type": "blob", + "sha": "63f48e53425309c4a9f2a79ae01578feab6e6071", + "size": 8263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63f48e53425309c4a9f2a79ae01578feab6e6071" + }, + { + "path": "png/nextcloud-ncdownloader.png", + "mode": "100644", + "type": "blob", + "sha": "5a8c7e263b2a2d8305032b40ebccedfdfc3acca8", + "size": 12432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a8c7e263b2a2d8305032b40ebccedfdfc3acca8" + }, + { + "path": "png/nextcloud-news.png", + "mode": "100644", + "type": "blob", + "sha": "d9090a347015bc89a35485d97a8f0d662a3cd0c1", + "size": 5455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9090a347015bc89a35485d97a8f0d662a3cd0c1" + }, + { + "path": "png/nextcloud-notes.png", + "mode": "100644", + "type": "blob", + "sha": "b7311ccddfde96f2aeca82a8f846c0bb151b6828", + "size": 10430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7311ccddfde96f2aeca82a8f846c0bb151b6828" + }, + { + "path": "png/nextcloud-photos.png", + "mode": "100644", + "type": "blob", + "sha": "5555d7e30f72fe6f77117755237432dfc472901a", + "size": 9920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5555d7e30f72fe6f77117755237432dfc472901a" + }, + { + "path": "png/nextcloud-social.png", + "mode": "100644", + "type": "blob", + "sha": "ce7036b2464cca1b0b76835b917237f83dcdbef7", + "size": 14109, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce7036b2464cca1b0b76835b917237f83dcdbef7" + }, + { + "path": "png/nextcloud-tables.png", + "mode": "100644", + "type": "blob", + "sha": "e452025d2a811f16298a9a26ca9065a7ca5b6a11", + "size": 4029, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e452025d2a811f16298a9a26ca9065a7ca5b6a11" + }, + { + "path": "png/nextcloud-talk.png", + "mode": "100644", + "type": "blob", + "sha": "8456e27c33482b3cfade96fb35c430a5547c88a9", + "size": 21083, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8456e27c33482b3cfade96fb35c430a5547c88a9" + }, + { + "path": "png/nextcloud-tasks.png", + "mode": "100644", + "type": "blob", + "sha": "4c1021d7664e5d2c244b229f14c3da65a61aa0ce", + "size": 16890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c1021d7664e5d2c244b229f14c3da65a61aa0ce" + }, + { + "path": "png/nextcloud-timemanager.png", + "mode": "100644", + "type": "blob", + "sha": "fb67ec21877827851029b7fa3d8847408e751f69", + "size": 24110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb67ec21877827851029b7fa3d8847408e751f69" + }, + { + "path": "png/nextcloud-white.png", + "mode": "100644", + "type": "blob", + "sha": "d402a3c67cac34f4659b9a09329dd28504de6720", + "size": 18710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d402a3c67cac34f4659b9a09329dd28504de6720" + }, + { + "path": "png/nextcloud.png", + "mode": "100644", + "type": "blob", + "sha": "709875211652f880033526963bb8e453f560f793", + "size": 37178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/709875211652f880033526963bb8e453f560f793" + }, + { + "path": "png/nextcloudpi.png", + "mode": "100644", + "type": "blob", + "sha": "11e464a4062fec3c633b883af4ec3b28be31499e", + "size": 38381, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11e464a4062fec3c633b883af4ec3b28be31499e" + }, + { + "path": "png/nextdns.png", + "mode": "100644", + "type": "blob", + "sha": "c2029d56c62f4ad2fe40de666af0b650e84983eb", + "size": 13504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2029d56c62f4ad2fe40de666af0b650e84983eb" + }, + { + "path": "png/nexterm.png", + "mode": "100644", + "type": "blob", + "sha": "0974d0ded3244d7772e505f161599af6f25bc5d4", + "size": 14561, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0974d0ded3244d7772e505f161599af6f25bc5d4" + }, + { + "path": "png/nextjs-light.png", + "mode": "100644", + "type": "blob", + "sha": "b6435db355fbb4f819d74a1bf952857d8d55a5e3", + "size": 19606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6435db355fbb4f819d74a1bf952857d8d55a5e3" + }, + { + "path": "png/nextjs.png", + "mode": "100644", + "type": "blob", + "sha": "4b5b3964a86ed2b42d965af74e27d18967637ac0", + "size": 17960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b5b3964a86ed2b42d965af74e27d18967637ac0" + }, + { + "path": "png/nextpvr.png", + "mode": "100644", + "type": "blob", + "sha": "7afc497a2666f524b9f6b3309755d6f26f58bf48", + "size": 289415, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7afc497a2666f524b9f6b3309755d6f26f58bf48" + }, + { + "path": "png/nexus-dark.png", + "mode": "100644", + "type": "blob", + "sha": "d71271b7f520d0fb919a795d024a0960617291dc", + "size": 14045, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d71271b7f520d0fb919a795d024a0960617291dc" + }, + { + "path": "png/nexus.png", + "mode": "100644", + "type": "blob", + "sha": "232ee9cd28a2ae8a6ff22a95ed45989cac11cdba", + "size": 14238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/232ee9cd28a2ae8a6ff22a95ed45989cac11cdba" + }, + { + "path": "png/nezha.png", + "mode": "100644", + "type": "blob", + "sha": "0d023a4f42660c8c5693a7083b0abd93dfd0f29f", + "size": 52827, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d023a4f42660c8c5693a7083b0abd93dfd0f29f" + }, + { + "path": "png/nginx-proxy-manager.png", + "mode": "100644", + "type": "blob", + "sha": "355a58613b0204412f92b0a69137c20036ddef57", + "size": 48840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/355a58613b0204412f92b0a69137c20036ddef57" + }, + { + "path": "png/nginx.png", + "mode": "100644", + "type": "blob", + "sha": "376014232dcf99d814e273057db54adb1c3bcde3", + "size": 16549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/376014232dcf99d814e273057db54adb1c3bcde3" + }, + { + "path": "png/nicotine-plus.png", + "mode": "100644", + "type": "blob", + "sha": "f3e6bd34f41f12fbbf55db606f59d00e25f3b902", + "size": 7124, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3e6bd34f41f12fbbf55db606f59d00e25f3b902" + }, + { + "path": "png/nightscout-light.png", + "mode": "100644", + "type": "blob", + "sha": "9c64dca260e30c771c5f569423839ef2098c12f1", + "size": 26999, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c64dca260e30c771c5f569423839ef2098c12f1" + }, + { + "path": "png/nightscout.png", + "mode": "100644", + "type": "blob", + "sha": "1c459cc74864a7de481353f315ce98da25872444", + "size": 21925, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c459cc74864a7de481353f315ce98da25872444" + }, + { + "path": "png/nintendo-switch.png", + "mode": "100644", + "type": "blob", + "sha": "fa8e12c8b0807734788325881c956c1feccd8499", + "size": 18714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa8e12c8b0807734788325881c956c1feccd8499" + }, + { + "path": "png/nitter.png", + "mode": "100644", + "type": "blob", + "sha": "bdbcc3ffd1639775fdb684d465d521720eb711f0", + "size": 14945, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdbcc3ffd1639775fdb684d465d521720eb711f0" + }, + { + "path": "png/nixos.png", + "mode": "100644", + "type": "blob", + "sha": "c343051f5dd556363f4dd67e9fdabecc17045a71", + "size": 28968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c343051f5dd556363f4dd67e9fdabecc17045a71" + }, + { + "path": "png/no-ip.png", + "mode": "100644", + "type": "blob", + "sha": "1fdebbc517b3b0ae9ba905ff8d3e2a22c2498ede", + "size": 9890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fdebbc517b3b0ae9ba905ff8d3e2a22c2498ede" + }, + { + "path": "png/nocobase-light.png", + "mode": "100644", + "type": "blob", + "sha": "00ce9c5f4db6790ebada1de09f36e3439415d573", + "size": 6714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00ce9c5f4db6790ebada1de09f36e3439415d573" + }, + { + "path": "png/nocobase.png", + "mode": "100644", + "type": "blob", + "sha": "7649fe1d5023fb0d9cd7e6295be9c83b68e26c2e", + "size": 6714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7649fe1d5023fb0d9cd7e6295be9c83b68e26c2e" + }, + { + "path": "png/nocodb.png", + "mode": "100644", + "type": "blob", + "sha": "342279e390c0a99a990ec75ca13925a47208100d", + "size": 19462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/342279e390c0a99a990ec75ca13925a47208100d" + }, + { + "path": "png/node-red.png", + "mode": "100644", + "type": "blob", + "sha": "b78c9cd41621ec733d35e1d5783dbf67bed0fcab", + "size": 17514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b78c9cd41621ec733d35e1d5783dbf67bed0fcab" + }, + { + "path": "png/nodebb.png", + "mode": "100644", + "type": "blob", + "sha": "a6b75ae56a688d0cf3decfd717a6070fce45c8e0", + "size": 35729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6b75ae56a688d0cf3decfd717a6070fce45c8e0" + }, + { + "path": "png/nodejs-alt.png", + "mode": "100644", + "type": "blob", + "sha": "cd88b82f91abeb0a2a2407135ecb332bda97410d", + "size": 24649, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd88b82f91abeb0a2a2407135ecb332bda97410d" + }, + { + "path": "png/nodejs.png", + "mode": "100644", + "type": "blob", + "sha": "f19e44c8e2ec7561210c400ea014db713b8ef48b", + "size": 26192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f19e44c8e2ec7561210c400ea014db713b8ef48b" + }, + { + "path": "png/noisedash.png", + "mode": "100644", + "type": "blob", + "sha": "73de55d16a9586af12c838226f8ae7dbe587107b", + "size": 13170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73de55d16a9586af12c838226f8ae7dbe587107b" + }, + { + "path": "png/nomad.png", + "mode": "100644", + "type": "blob", + "sha": "02f3b299578d8facd5e92c86e658d232175b330f", + "size": 16622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02f3b299578d8facd5e92c86e658d232175b330f" + }, + { + "path": "png/nomie.png", + "mode": "100644", + "type": "blob", + "sha": "e2b35d376baa5a83385a901308b48c0d5fde7825", + "size": 31622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2b35d376baa5a83385a901308b48c0d5fde7825" + }, + { + "path": "png/nordvpn.png", + "mode": "100644", + "type": "blob", + "sha": "89e44bcc3cdfc0904c4368943e83ebc89bd9e3a9", + "size": 15752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89e44bcc3cdfc0904c4368943e83ebc89bd9e3a9" + }, + { + "path": "png/note-mark.png", + "mode": "100644", + "type": "blob", + "sha": "13199b05609baea0f98a9d6907bd23c6ccf394b1", + "size": 36873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13199b05609baea0f98a9d6907bd23c6ccf394b1" + }, + { + "path": "png/notebook-lm-dark.png", + "mode": "100644", + "type": "blob", + "sha": "eff74a9f7d7820835169ad75bb9a5f00d800a319", + "size": 10801, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eff74a9f7d7820835169ad75bb9a5f00d800a319" + }, + { + "path": "png/notebook-lm.png", + "mode": "100644", + "type": "blob", + "sha": "95820b77ed40aa48dfb417adae53d832f2c61eec", + "size": 10801, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95820b77ed40aa48dfb417adae53d832f2c61eec" + }, + { + "path": "png/notesnook-light.png", + "mode": "100644", + "type": "blob", + "sha": "b3a716af6fee4c01d588b53e26d8796fcb85e205", + "size": 7889, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3a716af6fee4c01d588b53e26d8796fcb85e205" + }, + { + "path": "png/notesnook.png", + "mode": "100644", + "type": "blob", + "sha": "2dc1de9ccff37a63407ca2d2c9f862e16ef2f380", + "size": 17172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dc1de9ccff37a63407ca2d2c9f862e16ef2f380" + }, + { + "path": "png/notifiarr.png", + "mode": "100644", + "type": "blob", + "sha": "68f5abbda1e171f80a53446a76d422173cb55af2", + "size": 50819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68f5abbda1e171f80a53446a76d422173cb55af2" + }, + { + "path": "png/notion-calendar.png", + "mode": "100644", + "type": "blob", + "sha": "de3051d04e09904537484729af8611e0bfb718b1", + "size": 9906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de3051d04e09904537484729af8611e0bfb718b1" + }, + { + "path": "png/notion-light.png", + "mode": "100644", + "type": "blob", + "sha": "a252c34742dd32e17223264103d998bf4f3f12fe", + "size": 19930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a252c34742dd32e17223264103d998bf4f3f12fe" + }, + { + "path": "png/notion-mail.png", + "mode": "100644", + "type": "blob", + "sha": "33ea9c27906a9fcdaa635dbbe201a3229bb578aa", + "size": 10424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33ea9c27906a9fcdaa635dbbe201a3229bb578aa" + }, + { + "path": "png/notion.png", + "mode": "100644", + "type": "blob", + "sha": "ced2626d14c1ad3251e9ff5c0b418586db1cab4b", + "size": 19684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ced2626d14c1ad3251e9ff5c0b418586db1cab4b" + }, + { + "path": "png/nowshowing.png", + "mode": "100644", + "type": "blob", + "sha": "40dcfba45399d174fe5cc9144799c92d282ed364", + "size": 26196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40dcfba45399d174fe5cc9144799c92d282ed364" + }, + { + "path": "png/npm.png", + "mode": "100644", + "type": "blob", + "sha": "f4f5396d77aeac4e9ba1427c288f7983dbf38327", + "size": 1773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4f5396d77aeac4e9ba1427c288f7983dbf38327" + }, + { + "path": "png/ntfy.png", + "mode": "100644", + "type": "blob", + "sha": "62f522826c6488070c62a63a6ab1dc0e74744c71", + "size": 29873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62f522826c6488070c62a63a6ab1dc0e74744c71" + }, + { + "path": "png/ntop.png", + "mode": "100644", + "type": "blob", + "sha": "6bcc2899a9d12716bb3a4654d12dc5f1f4093428", + "size": 9677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bcc2899a9d12716bb3a4654d12dc5f1f4093428" + }, + { + "path": "png/ntopng.png", + "mode": "100644", + "type": "blob", + "sha": "86cae857b9389fcdb2c756e7fdfe8adf2d14df58", + "size": 25400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86cae857b9389fcdb2c756e7fdfe8adf2d14df58" + }, + { + "path": "png/nu-nl.png", + "mode": "100644", + "type": "blob", + "sha": "6a256ddb9ed511c5c4e28d29f233d896b1ec9cde", + "size": 21734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a256ddb9ed511c5c4e28d29f233d896b1ec9cde" + }, + { + "path": "png/nut-webgui.png", + "mode": "100644", + "type": "blob", + "sha": "d530e4affad5278152d3770219b7c3ba2aac660b", + "size": 37138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d530e4affad5278152d3770219b7c3ba2aac660b" + }, + { + "path": "png/nut.png", + "mode": "100644", + "type": "blob", + "sha": "f0ef53cc30b2425ddea3f346e1b93e69fd666eea", + "size": 104387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0ef53cc30b2425ddea3f346e1b93e69fd666eea" + }, + { + "path": "png/nutanix.png", + "mode": "100644", + "type": "blob", + "sha": "03728401264f623daecdad5d3d6c4a46c1dc2438", + "size": 18263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03728401264f623daecdad5d3d6c4a46c1dc2438" + }, + { + "path": "png/nvidia.png", + "mode": "100644", + "type": "blob", + "sha": "00efea0d63efe739ad692118c5e548923c6cfa37", + "size": 30600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00efea0d63efe739ad692118c5e548923c6cfa37" + }, + { + "path": "png/nxfilter.png", + "mode": "100644", + "type": "blob", + "sha": "756d719d34ba78a98bf96065839668a7644230d1", + "size": 1021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/756d719d34ba78a98bf96065839668a7644230d1" + }, + { + "path": "png/nxlog.png", + "mode": "100644", + "type": "blob", + "sha": "a1919c9d1b210e12ed11ea0284950a1cc4aafcf5", + "size": 14676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1919c9d1b210e12ed11ea0284950a1cc4aafcf5" + }, + { + "path": "png/nzbgeek.png", + "mode": "100644", + "type": "blob", + "sha": "47ac920e72d4ea4e80daea3251d8a6cf24144474", + "size": 40635, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47ac920e72d4ea4e80daea3251d8a6cf24144474" + }, + { + "path": "png/nzbget.png", + "mode": "100644", + "type": "blob", + "sha": "a941bdcef6378b708974d868c0a43c66b59dc9b4", + "size": 28601, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a941bdcef6378b708974d868c0a43c66b59dc9b4" + }, + { + "path": "png/nzbhydra.png", + "mode": "100644", + "type": "blob", + "sha": "b6b64d0ec4b0517080b814437625b84682438513", + "size": 37106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6b64d0ec4b0517080b814437625b84682438513" + }, + { + "path": "png/nzbhydra2-light.png", + "mode": "100644", + "type": "blob", + "sha": "ad58087a2231490712320c81fafb5f4be1567c76", + "size": 45161, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad58087a2231490712320c81fafb5f4be1567c76" + }, + { + "path": "png/nzbhydra2.png", + "mode": "100644", + "type": "blob", + "sha": "0177fe0e91594ce750b74d439194afdb702621bc", + "size": 44410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0177fe0e91594ce750b74d439194afdb702621bc" + }, + { + "path": "png/oauth2-proxy.png", + "mode": "100644", + "type": "blob", + "sha": "f2549ea687011be162ab057f310449f226bd8a0a", + "size": 19104, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2549ea687011be162ab057f310449f226bd8a0a" + }, + { + "path": "png/obico.png", + "mode": "100644", + "type": "blob", + "sha": "4b621b6c4a1d8ffe7cb847693b2d459356d1c6cd", + "size": 18961, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b621b6c4a1d8ffe7cb847693b2d459356d1c6cd" + }, + { + "path": "png/obitalk.png", + "mode": "100644", + "type": "blob", + "sha": "f28b22c967f9acce7da1f7b5132efd713fe97d71", + "size": 10516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f28b22c967f9acce7da1f7b5132efd713fe97d71" + }, + { + "path": "png/observium.png", + "mode": "100644", + "type": "blob", + "sha": "70655ed217519be5cc932f22c2f2abac3947ca4b", + "size": 226984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70655ed217519be5cc932f22c2f2abac3947ca4b" + }, + { + "path": "png/observo-ai.png", + "mode": "100644", + "type": "blob", + "sha": "5472e4fc416f320fe43666f0f0b5af08bafa231c", + "size": 4400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5472e4fc416f320fe43666f0f0b5af08bafa231c" + }, + { + "path": "png/obsidian.png", + "mode": "100644", + "type": "blob", + "sha": "b57c173d37607907e6af348bc8c60a67f1c64677", + "size": 34539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b57c173d37607907e6af348bc8c60a67f1c64677" + }, + { + "path": "png/obtainium.png", + "mode": "100644", + "type": "blob", + "sha": "2148061970cf372ac61e4c16917aae992e29ec5a", + "size": 52618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2148061970cf372ac61e4c16917aae992e29ec5a" + }, + { + "path": "png/octoeverywhere.png", + "mode": "100644", + "type": "blob", + "sha": "717cdecc3ee3ec6168a9b81480811ce98a010302", + "size": 27361, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/717cdecc3ee3ec6168a9b81480811ce98a010302" + }, + { + "path": "png/octoprint.png", + "mode": "100644", + "type": "blob", + "sha": "1eca9649005de5c7139fe1b9571ae82aa9386f00", + "size": 17499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1eca9649005de5c7139fe1b9571ae82aa9386f00" + }, + { + "path": "png/ocular.png", + "mode": "100644", + "type": "blob", + "sha": "97d075119b199f42263d09e3b345d11be0edbeb6", + "size": 17165, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97d075119b199f42263d09e3b345d11be0edbeb6" + }, + { + "path": "png/oculus-light.png", + "mode": "100644", + "type": "blob", + "sha": "f5c75230e72b19d3ba79cc449b4009a69307b9cc", + "size": 15162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5c75230e72b19d3ba79cc449b4009a69307b9cc" + }, + { + "path": "png/oculus.png", + "mode": "100644", + "type": "blob", + "sha": "999134c9bd94e76ef857dabd7a45624eab08888c", + "size": 14099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/999134c9bd94e76ef857dabd7a45624eab08888c" + }, + { + "path": "png/odoo.png", + "mode": "100644", + "type": "blob", + "sha": "c79ff8b058dcb32612c1bf3adeb783558b92764c", + "size": 55206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c79ff8b058dcb32612c1bf3adeb783558b92764c" + }, + { + "path": "png/odysee-full-dark.png", + "mode": "100644", + "type": "blob", + "sha": "dff370570905735c946b841086ba9943905dfc65", + "size": 79575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dff370570905735c946b841086ba9943905dfc65" + }, + { + "path": "png/odysee-full-light.png", + "mode": "100644", + "type": "blob", + "sha": "e754c072a386b339e60fdea568902d0a260de07e", + "size": 83037, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e754c072a386b339e60fdea568902d0a260de07e" + }, + { + "path": "png/odysee.png", + "mode": "100644", + "type": "blob", + "sha": "8b258cf2b6e7bb8d3e28cdc012c1cd253b7151a2", + "size": 47019, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b258cf2b6e7bb8d3e28cdc012c1cd253b7151a2" + }, + { + "path": "png/office-365.png", + "mode": "100644", + "type": "blob", + "sha": "f3c41e4e7daa5a319a164c63e9817e8bc69ef3c6", + "size": 7638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3c41e4e7daa5a319a164c63e9817e8bc69ef3c6" + }, + { + "path": "png/oh-my-posh-dark.png", + "mode": "100644", + "type": "blob", + "sha": "9bade3136f4821d07fc2d82931f15c5bbb4dd631", + "size": 4261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bade3136f4821d07fc2d82931f15c5bbb4dd631" + }, + { + "path": "png/oh-my-posh.png", + "mode": "100644", + "type": "blob", + "sha": "7747205c1e12d9d695b0a878dfc061b75f309abb", + "size": 4261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7747205c1e12d9d695b0a878dfc061b75f309abb" + }, + { + "path": "png/olivetin-light.png", + "mode": "100644", + "type": "blob", + "sha": "f9bb981d085326717a161ec374607225cfeb6f45", + "size": 19553, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9bb981d085326717a161ec374607225cfeb6f45" + }, + { + "path": "png/olivetin.png", + "mode": "100644", + "type": "blob", + "sha": "f367100aaa2590c5cd2ae78031181ab721761495", + "size": 20012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f367100aaa2590c5cd2ae78031181ab721761495" + }, + { + "path": "png/ollama-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4230836ce2624e85b72d2b07f3a8447e50a40c1e", + "size": 10935, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4230836ce2624e85b72d2b07f3a8447e50a40c1e" + }, + { + "path": "png/ollama.png", + "mode": "100644", + "type": "blob", + "sha": "0fe677087df4bca890fc0953208944ddae273b58", + "size": 10935, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fe677087df4bca890fc0953208944ddae273b58" + }, + { + "path": "png/omada.png", + "mode": "100644", + "type": "blob", + "sha": "8dff2587ec8126f84cf82ecf0590d91fe8372726", + "size": 21614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8dff2587ec8126f84cf82ecf0590d91fe8372726" + }, + { + "path": "png/ombi.png", + "mode": "100644", + "type": "blob", + "sha": "1585e3c5268f94e883088deefb36afe0eab23ed6", + "size": 26649, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1585e3c5268f94e883088deefb36afe0eab23ed6" + }, + { + "path": "png/omni-tools-full.png", + "mode": "100644", + "type": "blob", + "sha": "f9e68c1b2d6e5baa99fe42ff14139b06a47e6405", + "size": 60929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9e68c1b2d6e5baa99fe42ff14139b06a47e6405" + }, + { + "path": "png/omni-tools.png", + "mode": "100644", + "type": "blob", + "sha": "a506362f06a6c4348c0d526f3e43cc9011125f6f", + "size": 42299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a506362f06a6c4348c0d526f3e43cc9011125f6f" + }, + { + "path": "png/omnic-forge-dark.png", + "mode": "100644", + "type": "blob", + "sha": "7587bf3f8be92a83939e04bb876dd5e959bda018", + "size": 13977, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7587bf3f8be92a83939e04bb876dd5e959bda018" + }, + { + "path": "png/omnic-forge.png", + "mode": "100644", + "type": "blob", + "sha": "8db5b418b6bb499524f509177c69e867066c30e0", + "size": 13557, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8db5b418b6bb499524f509177c69e867066c30e0" + }, + { + "path": "png/omnidb.png", + "mode": "100644", + "type": "blob", + "sha": "475d4cce08a8835e4343f9c7838fd7dc3d8452b5", + "size": 40983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/475d4cce08a8835e4343f9c7838fd7dc3d8452b5" + }, + { + "path": "png/omnivore.png", + "mode": "100644", + "type": "blob", + "sha": "2479c4c312e9cb15f7124f841facbee5015e048c", + "size": 29285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2479c4c312e9cb15f7124f841facbee5015e048c" + }, + { + "path": "png/onedev-light.png", + "mode": "100644", + "type": "blob", + "sha": "bc2dca57c17c9aa7a8e9abbefa2e95a2e1835592", + "size": 23704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc2dca57c17c9aa7a8e9abbefa2e95a2e1835592" + }, + { + "path": "png/onedev.png", + "mode": "100644", + "type": "blob", + "sha": "104920016ce1c88a4530a7328fffa689dee16c1a", + "size": 20248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/104920016ce1c88a4530a7328fffa689dee16c1a" + }, + { + "path": "png/oneuptime-light.png", + "mode": "100644", + "type": "blob", + "sha": "dafd311d2176fdc3850891a51a49faa3cd393708", + "size": 14926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dafd311d2176fdc3850891a51a49faa3cd393708" + }, + { + "path": "png/oneuptime.png", + "mode": "100644", + "type": "blob", + "sha": "0b2979d09cc295b4c815d3c1010a40f1ab77fe41", + "size": 17496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b2979d09cc295b4c815d3c1010a40f1ab77fe41" + }, + { + "path": "png/onlyfans-dark.png", + "mode": "100644", + "type": "blob", + "sha": "e4e847fde429c81419ac31b0567a9e8ad943a029", + "size": 8887, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4e847fde429c81419ac31b0567a9e8ad943a029" + }, + { + "path": "png/onlyfans.png", + "mode": "100644", + "type": "blob", + "sha": "6609bdd1f2f95f0e6dc821c91f7c655beaa7ef93", + "size": 16644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6609bdd1f2f95f0e6dc821c91f7c655beaa7ef93" + }, + { + "path": "png/onlyoffice.png", + "mode": "100644", + "type": "blob", + "sha": "2d61316bee3aa7a7a633e8d2b582dde7e0096008", + "size": 24913, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d61316bee3aa7a7a633e8d2b582dde7e0096008" + }, + { + "path": "png/onshape-dark.png", + "mode": "100644", + "type": "blob", + "sha": "dfe70a0d2437402cf93a53f0bc52a73a969bf422", + "size": 11927, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfe70a0d2437402cf93a53f0bc52a73a969bf422" + }, + { + "path": "png/onshape.png", + "mode": "100644", + "type": "blob", + "sha": "cf5035106b6c3f94824f20ac88d6f3442e59f9ab", + "size": 12701, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf5035106b6c3f94824f20ac88d6f3442e59f9ab" + }, + { + "path": "png/ookla-speedtest.png", + "mode": "100644", + "type": "blob", + "sha": "49c6bcbd5c7269610d9534e59fbe89045e0c1d11", + "size": 25379, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49c6bcbd5c7269610d9534e59fbe89045e0c1d11" + }, + { + "path": "png/open-classrooms.png", + "mode": "100644", + "type": "blob", + "sha": "e15eb334652e2314abb908fa71dd0594f102cc0b", + "size": 61499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e15eb334652e2314abb908fa71dd0594f102cc0b" + }, + { + "path": "png/open-cloud-dark.png", + "mode": "100644", + "type": "blob", + "sha": "8654842a536dcaf26f970dff07c0419cd05e85b6", + "size": 5146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8654842a536dcaf26f970dff07c0419cd05e85b6" + }, + { + "path": "png/open-cloud.png", + "mode": "100644", + "type": "blob", + "sha": "cd7621802c8439ba471bb3efa010a056c2bf3bb1", + "size": 5146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd7621802c8439ba471bb3efa010a056c2bf3bb1" + }, + { + "path": "png/open-observe.png", + "mode": "100644", + "type": "blob", + "sha": "600338b7d2ba0e0f20b340b4518a9ff40a78f0c0", + "size": 31169, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/600338b7d2ba0e0f20b340b4518a9ff40a78f0c0" + }, + { + "path": "png/open-regex.png", + "mode": "100644", + "type": "blob", + "sha": "54ae9ea7adf0be14665b71f8faa0898424015d79", + "size": 54051, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54ae9ea7adf0be14665b71f8faa0898424015d79" + }, + { + "path": "png/open-resume.png", + "mode": "100644", + "type": "blob", + "sha": "1f4b417fd4bea5f5f724cfc64b69c2fcddc1542f", + "size": 31206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f4b417fd4bea5f5f724cfc64b69c2fcddc1542f" + }, + { + "path": "png/open-router-dark.png", + "mode": "100644", + "type": "blob", + "sha": "b09a290c17672206876664031c602b4427c25ffe", + "size": 6748, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b09a290c17672206876664031c602b4427c25ffe" + }, + { + "path": "png/open-router.png", + "mode": "100644", + "type": "blob", + "sha": "61bf41907ab7292e9141054d8c2ff3d907dd9770", + "size": 8204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61bf41907ab7292e9141054d8c2ff3d907dd9770" + }, + { + "path": "png/open-source-initiative.png", + "mode": "100644", + "type": "blob", + "sha": "92a35e1626cd1b86942ed02921cd3f241738c345", + "size": 30329, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92a35e1626cd1b86942ed02921cd3f241738c345" + }, + { + "path": "png/open-wb.png", + "mode": "100644", + "type": "blob", + "sha": "e1c7588332dfc9546323ba68524153ca605a66d5", + "size": 15209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1c7588332dfc9546323ba68524153ca605a66d5" + }, + { + "path": "png/open-webui-light.png", + "mode": "100644", + "type": "blob", + "sha": "e5a308aa1c710dda543ae8cd154f3035bceef753", + "size": 8113, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5a308aa1c710dda543ae8cd154f3035bceef753" + }, + { + "path": "png/open-webui.png", + "mode": "100644", + "type": "blob", + "sha": "504fce447c4304df029788f50a00b38fd0a7c853", + "size": 8230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/504fce447c4304df029788f50a00b38fd0a7c853" + }, + { + "path": "png/openai-light.png", + "mode": "100644", + "type": "blob", + "sha": "f498858734e0be04d91f17bf9b9ce9304b7d43a1", + "size": 29312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f498858734e0be04d91f17bf9b9ce9304b7d43a1" + }, + { + "path": "png/openai.png", + "mode": "100644", + "type": "blob", + "sha": "4b7fb0e6d1277eea19954afb8413d683f2c82155", + "size": 24170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b7fb0e6d1277eea19954afb8413d683f2c82155" + }, + { + "path": "png/openaudible.png", + "mode": "100644", + "type": "blob", + "sha": "ce6fd1e6343ac53fc97cafdb225c9003e2404042", + "size": 17891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce6fd1e6343ac53fc97cafdb225c9003e2404042" + }, + { + "path": "png/openchangelog-light.png", + "mode": "100644", + "type": "blob", + "sha": "545261902de01658dd33bfa8471f6280621f7dd7", + "size": 19938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/545261902de01658dd33bfa8471f6280621f7dd7" + }, + { + "path": "png/openchangelog.png", + "mode": "100644", + "type": "blob", + "sha": "99e1f83079922d99a54dfe9f0ab8227803539ee3", + "size": 16392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99e1f83079922d99a54dfe9f0ab8227803539ee3" + }, + { + "path": "png/opencode-dark.png", + "mode": "100644", + "type": "blob", + "sha": "cc5539999792821159a63f21797c71ed3efd2955", + "size": 2920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc5539999792821159a63f21797c71ed3efd2955" + }, + { + "path": "png/opencode.png", + "mode": "100644", + "type": "blob", + "sha": "3e6a5258374a2763d50e39f6a53eec30743cedd9", + "size": 2920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e6a5258374a2763d50e39f6a53eec30743cedd9" + }, + { + "path": "png/opencost.png", + "mode": "100644", + "type": "blob", + "sha": "2937a4d4dbd3237b1234385a779a5460b87ebbf7", + "size": 25726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2937a4d4dbd3237b1234385a779a5460b87ebbf7" + }, + { + "path": "png/openeats-light.png", + "mode": "100644", + "type": "blob", + "sha": "9c4d41d5d523ffffb118edf96cba386ada53551d", + "size": 24117, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c4d41d5d523ffffb118edf96cba386ada53551d" + }, + { + "path": "png/openeats.png", + "mode": "100644", + "type": "blob", + "sha": "39e6fbae9f637c81c2d2c069a3af6cb7c48dab4c", + "size": 27156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39e6fbae9f637c81c2d2c069a3af6cb7c48dab4c" + }, + { + "path": "png/openemr-light.png", + "mode": "100644", + "type": "blob", + "sha": "cff78c3ca2b8dd24ac29d2fc9ee2c2b6390c5de5", + "size": 20374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cff78c3ca2b8dd24ac29d2fc9ee2c2b6390c5de5" + }, + { + "path": "png/openemr.png", + "mode": "100644", + "type": "blob", + "sha": "196f66c9f62fbf89807051c019ee06f7e1e28178", + "size": 16999, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/196f66c9f62fbf89807051c019ee06f7e1e28178" + }, + { + "path": "png/opengarage.png", + "mode": "100644", + "type": "blob", + "sha": "d232357768176d9eadb78ba0e19f7332b412c0b0", + "size": 22236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d232357768176d9eadb78ba0e19f7332b412c0b0" + }, + { + "path": "png/opengist-light.png", + "mode": "100644", + "type": "blob", + "sha": "3206e72e11a6d7cc5f972f6d020d75181177430f", + "size": 12319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3206e72e11a6d7cc5f972f6d020d75181177430f" + }, + { + "path": "png/opengist.png", + "mode": "100644", + "type": "blob", + "sha": "94d3c1ecb480cef7e7dc1a8252e1dd4e6f3c9473", + "size": 12270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94d3c1ecb480cef7e7dc1a8252e1dd4e6f3c9473" + }, + { + "path": "png/openhab.png", + "mode": "100644", + "type": "blob", + "sha": "415e70ea4972704d4ea8d80a2668a9513b081c9a", + "size": 23942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/415e70ea4972704d4ea8d80a2668a9513b081c9a" + }, + { + "path": "png/openldap.png", + "mode": "100644", + "type": "blob", + "sha": "114f93078c35a4ab10189f36d644024354ca1cac", + "size": 41462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/114f93078c35a4ab10189f36d644024354ca1cac" + }, + { + "path": "png/openlist.png", + "mode": "100644", + "type": "blob", + "sha": "d8497431b88deb6ad89442aa1fde5a581dbe2119", + "size": 17738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8497431b88deb6ad89442aa1fde5a581dbe2119" + }, + { + "path": "png/openmaptiles.png", + "mode": "100644", + "type": "blob", + "sha": "b85fd6c42154852d242eeb230e9ecf330503c26d", + "size": 104322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b85fd6c42154852d242eeb230e9ecf330503c26d" + }, + { + "path": "png/openmediavault.png", + "mode": "100644", + "type": "blob", + "sha": "82311ed8f643dde4224e5333bdf0c33de1063e9c", + "size": 9974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82311ed8f643dde4224e5333bdf0c33de1063e9c" + }, + { + "path": "png/openoffice.png", + "mode": "100644", + "type": "blob", + "sha": "e9a80f854766f8ecac9d26d9f110211e23a85771", + "size": 23879, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9a80f854766f8ecac9d26d9f110211e23a85771" + }, + { + "path": "png/openpanel-light.png", + "mode": "100644", + "type": "blob", + "sha": "04eb0877e5559ef59b6ae3477c920493d225ed5b", + "size": 12278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04eb0877e5559ef59b6ae3477c920493d225ed5b" + }, + { + "path": "png/openpanel.png", + "mode": "100644", + "type": "blob", + "sha": "7a091acec3872b27327bbc98ed6b9e24e416b1f0", + "size": 10938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a091acec3872b27327bbc98ed6b9e24e416b1f0" + }, + { + "path": "png/openproject.png", + "mode": "100644", + "type": "blob", + "sha": "3fe146aced2cb59eba9551d048f157f488f2ca43", + "size": 14809, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fe146aced2cb59eba9551d048f157f488f2ca43" + }, + { + "path": "png/openreads.png", + "mode": "100644", + "type": "blob", + "sha": "bc912c8babb1dd6ce67b24a208cd52d385ac44c6", + "size": 14058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc912c8babb1dd6ce67b24a208cd52d385ac44c6" + }, + { + "path": "png/opensearch.png", + "mode": "100644", + "type": "blob", + "sha": "b3fed15b7331b10b180ea39a4d82f3aa16af353e", + "size": 20477, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3fed15b7331b10b180ea39a4d82f3aa16af353e" + }, + { + "path": "png/openshift-dark.png", + "mode": "100644", + "type": "blob", + "sha": "129e9d01f8b44ee19376fd5fd646851dddeb8ce9", + "size": 12784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/129e9d01f8b44ee19376fd5fd646851dddeb8ce9" + }, + { + "path": "png/openshift.png", + "mode": "100644", + "type": "blob", + "sha": "34f95ea92b82a6b077299dd19cd99bfb730de099", + "size": 11038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34f95ea92b82a6b077299dd19cd99bfb730de099" + }, + { + "path": "png/openspeedtest.png", + "mode": "100644", + "type": "blob", + "sha": "ad70922f47239f02845b3000e33ff94a55bb90b0", + "size": 36541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad70922f47239f02845b3000e33ff94a55bb90b0" + }, + { + "path": "png/opensprinkler.png", + "mode": "100644", + "type": "blob", + "sha": "551ab229de69bfa40395e626ab0a6b289e2f3a15", + "size": 19725, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/551ab229de69bfa40395e626ab0a6b289e2f3a15" + }, + { + "path": "png/openstack.png", + "mode": "100644", + "type": "blob", + "sha": "b15b9dd160095e124b0ac0f6fd1ed238e7101156", + "size": 8877, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b15b9dd160095e124b0ac0f6fd1ed238e7101156" + }, + { + "path": "png/openstreetmap.png", + "mode": "100644", + "type": "blob", + "sha": "5c564571d86b90cb08bf5d1106116b74ac82c3be", + "size": 150036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c564571d86b90cb08bf5d1106116b74ac82c3be" + }, + { + "path": "png/opensuse.png", + "mode": "100644", + "type": "blob", + "sha": "2b97714359c553ea5ed403cd64cc93d05e4cb974", + "size": 23745, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b97714359c553ea5ed403cd64cc93d05e4cb974" + }, + { + "path": "png/opentalk.png", + "mode": "100644", + "type": "blob", + "sha": "2b213b247f5b986261aa1ac566c7349dbfb1e8d3", + "size": 24911, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b213b247f5b986261aa1ac566c7349dbfb1e8d3" + }, + { + "path": "png/opentofu.png", + "mode": "100644", + "type": "blob", + "sha": "9329677114de88afae15186336580bc21297ff16", + "size": 24654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9329677114de88afae15186336580bc21297ff16" + }, + { + "path": "png/openvas.png", + "mode": "100644", + "type": "blob", + "sha": "f1dd9d21025a149f3940c6fdd1747445f44190f0", + "size": 53381, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1dd9d21025a149f3940c6fdd1747445f44190f0" + }, + { + "path": "png/openvpn.png", + "mode": "100644", + "type": "blob", + "sha": "8debdb1b76c4fbea619d1168566d0cb2d8543b57", + "size": 22378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8debdb1b76c4fbea619d1168566d0cb2d8543b57" + }, + { + "path": "png/openwebrx-plus-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4ab437a3b952da5e2bf85609523e1555f0181972", + "size": 18331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ab437a3b952da5e2bf85609523e1555f0181972" + }, + { + "path": "png/openwebrx-plus.png", + "mode": "100644", + "type": "blob", + "sha": "afda3f9522f3b83afcf3e16bfd4e2fd30160c988", + "size": 18054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afda3f9522f3b83afcf3e16bfd4e2fd30160c988" + }, + { + "path": "png/openwrt.png", + "mode": "100644", + "type": "blob", + "sha": "afae2518251c7b9e42a0cba9ccdd4c11bd815d94", + "size": 23956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afae2518251c7b9e42a0cba9ccdd4c11bd815d94" + }, + { + "path": "png/openziti.png", + "mode": "100644", + "type": "blob", + "sha": "b730dbe2e46330900a52a627584b5f2ab8aab956", + "size": 43545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b730dbe2e46330900a52a627584b5f2ab8aab956" + }, + { + "path": "png/opera-beta.png", + "mode": "100644", + "type": "blob", + "sha": "76e6d690d4ee9d367cc04c6d216ba4b26d6b137d", + "size": 97655, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76e6d690d4ee9d367cc04c6d216ba4b26d6b137d" + }, + { + "path": "png/opera-developer.png", + "mode": "100644", + "type": "blob", + "sha": "e40b9847e7dc4924a69c220a2b875bb1ee9b29b3", + "size": 102703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e40b9847e7dc4924a69c220a2b875bb1ee9b29b3" + }, + { + "path": "png/opera-mini-beta.png", + "mode": "100644", + "type": "blob", + "sha": "c78f0c374946df61d07c9a9cd8b811e26b8398bd", + "size": 98225, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c78f0c374946df61d07c9a9cd8b811e26b8398bd" + }, + { + "path": "png/opera-mini.png", + "mode": "100644", + "type": "blob", + "sha": "11a9bda25bb9c80a55aff7ff929eaa80cc251389", + "size": 74732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11a9bda25bb9c80a55aff7ff929eaa80cc251389" + }, + { + "path": "png/opera-neon.png", + "mode": "100644", + "type": "blob", + "sha": "ee8a1474088df59ac20821366c07e2d61ae87535", + "size": 55575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee8a1474088df59ac20821366c07e2d61ae87535" + }, + { + "path": "png/opera-touch.png", + "mode": "100644", + "type": "blob", + "sha": "ad2545c3bbb792d95ba21c739313b1a6ae8702c6", + "size": 24814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad2545c3bbb792d95ba21c739313b1a6ae8702c6" + }, + { + "path": "png/opera.png", + "mode": "100644", + "type": "blob", + "sha": "7b6b017eeeb38896db7bf0442363cdd937a4eac7", + "size": 19260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b6b017eeeb38896db7bf0442363cdd937a4eac7" + }, + { + "path": "png/opnform.png", + "mode": "100644", + "type": "blob", + "sha": "4333a8ee854d4f1b6e22db302e13c3df3d416a26", + "size": 19021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4333a8ee854d4f1b6e22db302e13c3df3d416a26" + }, + { + "path": "png/opnsense.png", + "mode": "100644", + "type": "blob", + "sha": "fa036a090a6b05732d82014e6618c36337f725e8", + "size": 2291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa036a090a6b05732d82014e6618c36337f725e8" + }, + { + "path": "png/oracle-cloud.png", + "mode": "100644", + "type": "blob", + "sha": "9cac576c16b409a7055da1bd2cfd1009dc02529f", + "size": 20824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cac576c16b409a7055da1bd2cfd1009dc02529f" + }, + { + "path": "png/oracle.png", + "mode": "100644", + "type": "blob", + "sha": "9cac576c16b409a7055da1bd2cfd1009dc02529f", + "size": 20824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cac576c16b409a7055da1bd2cfd1009dc02529f" + }, + { + "path": "png/orange.png", + "mode": "100644", + "type": "blob", + "sha": "098d6d235012d6c052fd64800ecbb1975f64b23d", + "size": 11754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/098d6d235012d6c052fd64800ecbb1975f64b23d" + }, + { + "path": "png/orb.png", + "mode": "100644", + "type": "blob", + "sha": "6e8e3019f5a77a7d334bc52e5e2e2b235a31ca72", + "size": 26018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e8e3019f5a77a7d334bc52e5e2e2b235a31ca72" + }, + { + "path": "png/orcaslicer.png", + "mode": "100644", + "type": "blob", + "sha": "b13581101412e5356e0d904f438e18766b9c1d82", + "size": 10046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b13581101412e5356e0d904f438e18766b9c1d82" + }, + { + "path": "png/oreilly-dark.png", + "mode": "100644", + "type": "blob", + "sha": "96b60163a1cce717b7485d1839e46837ee701258", + "size": 23020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96b60163a1cce717b7485d1839e46837ee701258" + }, + { + "path": "png/oreilly.png", + "mode": "100644", + "type": "blob", + "sha": "7f693d749d8e0883ed13f889fed595d1bbbb96c4", + "size": 23034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f693d749d8e0883ed13f889fed595d1bbbb96c4" + }, + { + "path": "png/organizr.png", + "mode": "100644", + "type": "blob", + "sha": "08268724cad858676d54c40df2189bc31734214e", + "size": 16510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08268724cad858676d54c40df2189bc31734214e" + }, + { + "path": "png/origin.png", + "mode": "100644", + "type": "blob", + "sha": "30b5dcd2f56ed7b0d14a06c5075847f30b295121", + "size": 15463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30b5dcd2f56ed7b0d14a06c5075847f30b295121" + }, + { + "path": "png/oscarr-light.png", + "mode": "100644", + "type": "blob", + "sha": "a46556b518de9b928a3a65de17dc10500aeb5561", + "size": 21435, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a46556b518de9b928a3a65de17dc10500aeb5561" + }, + { + "path": "png/oscarr.png", + "mode": "100644", + "type": "blob", + "sha": "2865ca75bc579cfeaa86d165ee2dcc1b58485d89", + "size": 18681, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2865ca75bc579cfeaa86d165ee2dcc1b58485d89" + }, + { + "path": "png/osticket.png", + "mode": "100644", + "type": "blob", + "sha": "22615cc466ec71ed9ef6c1e870f77873bf5602d2", + "size": 23540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22615cc466ec71ed9ef6c1e870f77873bf5602d2" + }, + { + "path": "png/osu.png", + "mode": "100644", + "type": "blob", + "sha": "b5384ca77bd141bbfe2a6b30dca042b82ae31a15", + "size": 35610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5384ca77bd141bbfe2a6b30dca042b82ae31a15" + }, + { + "path": "png/otter-wiki-dark.png", + "mode": "100644", + "type": "blob", + "sha": "89b8a383da7ebcf01b3b0909f9304ea872d89335", + "size": 11921, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89b8a383da7ebcf01b3b0909f9304ea872d89335" + }, + { + "path": "png/otter-wiki.png", + "mode": "100644", + "type": "blob", + "sha": "262b6eed6bb2a62b459f445c6082149f03f59155", + "size": 11921, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/262b6eed6bb2a62b459f445c6082149f03f59155" + }, + { + "path": "png/our-shopping-list.png", + "mode": "100644", + "type": "blob", + "sha": "a1817bfa2cfff9a942d67e003fcc2339e0e16988", + "size": 22768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1817bfa2cfff9a942d67e003fcc2339e0e16988" + }, + { + "path": "png/outline-light.png", + "mode": "100644", + "type": "blob", + "sha": "06b20df9a06df097bf2c81d7f3c3785944d3bc28", + "size": 6726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06b20df9a06df097bf2c81d7f3c3785944d3bc28" + }, + { + "path": "png/outline.png", + "mode": "100644", + "type": "blob", + "sha": "4e494a3da46df465836f638bfaadd3fe5e599e72", + "size": 17935, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e494a3da46df465836f638bfaadd3fe5e599e72" + }, + { + "path": "png/overclockers.png", + "mode": "100644", + "type": "blob", + "sha": "d68b6749eaf92bf9b45afa06190e0c1f80a9996e", + "size": 5512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d68b6749eaf92bf9b45afa06190e0c1f80a9996e" + }, + { + "path": "png/overleaf.png", + "mode": "100644", + "type": "blob", + "sha": "d0ef9c3e2a5cd908dbb8057d371fab7f269bb9a8", + "size": 23653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0ef9c3e2a5cd908dbb8057d371fab7f269bb9a8" + }, + { + "path": "png/overseerr.png", + "mode": "100644", + "type": "blob", + "sha": "36dddc817b89cbbd730253cd379800934120b50c", + "size": 36588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36dddc817b89cbbd730253cd379800934120b50c" + }, + { + "path": "png/ovh.png", + "mode": "100644", + "type": "blob", + "sha": "ea057d0a7a37eddd90b1c94b3ec010da00badf61", + "size": 22858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea057d0a7a37eddd90b1c94b3ec010da00badf61" + }, + { + "path": "png/ovirt-light.png", + "mode": "100644", + "type": "blob", + "sha": "fc6827ba3d3374ca3d942de2f19abed8a7f5a81e", + "size": 30482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc6827ba3d3374ca3d942de2f19abed8a7f5a81e" + }, + { + "path": "png/ovirt.png", + "mode": "100644", + "type": "blob", + "sha": "8e28fd97528ddc37264240408abb7f108156207f", + "size": 30312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e28fd97528ddc37264240408abb7f108156207f" + }, + { + "path": "png/owasp-zap.png", + "mode": "100644", + "type": "blob", + "sha": "a21f563676eb8c19e8cfb8588d0fd80f9cc97ed0", + "size": 28622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a21f563676eb8c19e8cfb8588d0fd80f9cc97ed0" + }, + { + "path": "png/owncast.png", + "mode": "100644", + "type": "blob", + "sha": "2b13bf3ad440a730f1ede00b546326fab85fa428", + "size": 28557, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b13bf3ad440a730f1ede00b546326fab85fa428" + }, + { + "path": "png/owncloud.png", + "mode": "100644", + "type": "blob", + "sha": "c201462a45108d3448f8a58bbc5c35b7082ff1bb", + "size": 41623, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c201462a45108d3448f8a58bbc5c35b7082ff1bb" + }, + { + "path": "png/ownphotos-light.png", + "mode": "100644", + "type": "blob", + "sha": "3ef10f9119cc33da8f712c665e2e6e1ab402e38c", + "size": 8878, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ef10f9119cc33da8f712c665e2e6e1ab402e38c" + }, + { + "path": "png/ownphotos.png", + "mode": "100644", + "type": "blob", + "sha": "c35eeb425724bdc154c1c98433765348b2ca2429", + "size": 8080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c35eeb425724bdc154c1c98433765348b2ca2429" + }, + { + "path": "png/owntone.png", + "mode": "100644", + "type": "blob", + "sha": "878738e341bfcf7ae699673c7834fc812c11ed1d", + "size": 30138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/878738e341bfcf7ae699673c7834fc812c11ed1d" + }, + { + "path": "png/owntracks.png", + "mode": "100644", + "type": "blob", + "sha": "f6e9beb1bd7fddd63bd6d92c39b8908e3e7b7b79", + "size": 16141, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6e9beb1bd7fddd63bd6d92c39b8908e3e7b7b79" + }, + { + "path": "png/oxker-light.png", + "mode": "100644", + "type": "blob", + "sha": "3a1be7fab100650ae0fb75a86fdb751f2b8d1f28", + "size": 23658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a1be7fab100650ae0fb75a86fdb751f2b8d1f28" + }, + { + "path": "png/oxker.png", + "mode": "100644", + "type": "blob", + "sha": "a547c157d32103b1f6dacef678b48e4a6695c8c2", + "size": 42642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a547c157d32103b1f6dacef678b48e4a6695c8c2" + }, + { + "path": "png/p-cal.png", + "mode": "100644", + "type": "blob", + "sha": "0dca93aefd677644c24946125ac761358cc5d3db", + "size": 21386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0dca93aefd677644c24946125ac761358cc5d3db" + }, + { + "path": "png/p1ib.png", + "mode": "100644", + "type": "blob", + "sha": "ae0f3d6bb04b3ff842a6c88eaf6184264d12df69", + "size": 12737, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae0f3d6bb04b3ff842a6c88eaf6184264d12df69" + }, + { + "path": "png/packetfence-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4b1f51fb7632f9732f0f51d9e21f3fc28c5fb434", + "size": 10469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b1f51fb7632f9732f0f51d9e21f3fc28c5fb434" + }, + { + "path": "png/packetfence-full-dark.png", + "mode": "100644", + "type": "blob", + "sha": "bbcb3473dad0b6022d512f346da17cad13516630", + "size": 27020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbcb3473dad0b6022d512f346da17cad13516630" + }, + { + "path": "png/packetfence-full.png", + "mode": "100644", + "type": "blob", + "sha": "609f1a73fa66d0ae93207a05831bbe60c94a5c95", + "size": 27020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/609f1a73fa66d0ae93207a05831bbe60c94a5c95" + }, + { + "path": "png/packetfence.png", + "mode": "100644", + "type": "blob", + "sha": "9ce944252ba43009fb0704cca36fdc56414677a6", + "size": 10469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ce944252ba43009fb0704cca36fdc56414677a6" + }, + { + "path": "png/pagerduty.png", + "mode": "100644", + "type": "blob", + "sha": "532f612eabaafb5d8dbf03f0a90279b5e260df92", + "size": 10336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/532f612eabaafb5d8dbf03f0a90279b5e260df92" + }, + { + "path": "png/pairdrop.png", + "mode": "100644", + "type": "blob", + "sha": "2f90a4a833bca6f9397b1f37dcf9ab5098aa01a6", + "size": 44854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f90a4a833bca6f9397b1f37dcf9ab5098aa01a6" + }, + { + "path": "png/palemoon.png", + "mode": "100644", + "type": "blob", + "sha": "7049c9e3ece31ff1b2a92c977679ff87aee49704", + "size": 19574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7049c9e3ece31ff1b2a92c977679ff87aee49704" + }, + { + "path": "png/palmr.png", + "mode": "100644", + "type": "blob", + "sha": "2e3764215061feca3077446de1b7f693fdd7286d", + "size": 128574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e3764215061feca3077446de1b7f693fdd7286d" + }, + { + "path": "png/palo-alto.png", + "mode": "100644", + "type": "blob", + "sha": "02c8beda40c9e1d4111b79b0366fe792a2fadee4", + "size": 16400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02c8beda40c9e1d4111b79b0366fe792a2fadee4" + }, + { + "path": "png/pangolin.png", + "mode": "100644", + "type": "blob", + "sha": "4ef517fcb5a2172aa50e57317c288d75b7cd4370", + "size": 8984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ef517fcb5a2172aa50e57317c288d75b7cd4370" + }, + { + "path": "png/paperless-ng.png", + "mode": "100644", + "type": "blob", + "sha": "5c6287b5e44f9db40a98b40b760c25241ca719a9", + "size": 21234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c6287b5e44f9db40a98b40b760c25241ca719a9" + }, + { + "path": "png/paperless-ngx.png", + "mode": "100644", + "type": "blob", + "sha": "73cb9bf30ed8b8e947e6a8938bec31b4f5a83c0b", + "size": 17783, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73cb9bf30ed8b8e947e6a8938bec31b4f5a83c0b" + }, + { + "path": "png/paperless.png", + "mode": "100644", + "type": "blob", + "sha": "a4acbf55355e466128b6ddaa366f89cc3b53ffeb", + "size": 17777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4acbf55355e466128b6ddaa366f89cc3b53ffeb" + }, + { + "path": "png/papermark-light.png", + "mode": "100644", + "type": "blob", + "sha": "20584a44d42a66b39ecb50f56fb4e72602aa9d91", + "size": 15943, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20584a44d42a66b39ecb50f56fb4e72602aa9d91" + }, + { + "path": "png/papermark.png", + "mode": "100644", + "type": "blob", + "sha": "19c72b4daf7b11e0b9e1558e0dbeff259a2a992a", + "size": 15497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19c72b4daf7b11e0b9e1558e0dbeff259a2a992a" + }, + { + "path": "png/papermerge-light.png", + "mode": "100644", + "type": "blob", + "sha": "4a75bff9f50c8d105c086a92f32850aa7b27e440", + "size": 25450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a75bff9f50c8d105c086a92f32850aa7b27e440" + }, + { + "path": "png/papermerge.png", + "mode": "100644", + "type": "blob", + "sha": "482ccc307b2c53458c13ee3ed2cfdaf73f9d8025", + "size": 25860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/482ccc307b2c53458c13ee3ed2cfdaf73f9d8025" + }, + { + "path": "png/papra.png", + "mode": "100644", + "type": "blob", + "sha": "fa3ab3aaa8597b8d51790163d15ae0b423c51f3b", + "size": 4744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa3ab3aaa8597b8d51790163d15ae0b423c51f3b" + }, + { + "path": "png/parseable.png", + "mode": "100644", + "type": "blob", + "sha": "5cd50047701f8f2461644de41a14a4021b683507", + "size": 19270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cd50047701f8f2461644de41a14a4021b683507" + }, + { + "path": "png/part-db-light.png", + "mode": "100644", + "type": "blob", + "sha": "8d8f3b89e8a52b69fc8593032d11f24d20aa8ace", + "size": 9350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d8f3b89e8a52b69fc8593032d11f24d20aa8ace" + }, + { + "path": "png/part-db.png", + "mode": "100644", + "type": "blob", + "sha": "e15922731f676b6d01f75eb90d0903f930b52482", + "size": 8876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e15922731f676b6d01f75eb90d0903f930b52482" + }, + { + "path": "png/partkeepr.png", + "mode": "100644", + "type": "blob", + "sha": "f417d08f00a0ebaa98aee42360f539a76c04f948", + "size": 20266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f417d08f00a0ebaa98aee42360f539a76c04f948" + }, + { + "path": "png/passbolt.png", + "mode": "100644", + "type": "blob", + "sha": "9ade3fc62caa20da22b8220fb10a00166cad0a50", + "size": 14278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ade3fc62caa20da22b8220fb10a00166cad0a50" + }, + { + "path": "png/passwordpusher-light.png", + "mode": "100644", + "type": "blob", + "sha": "4c0975451312d440514dcf5b0013052412c943b0", + "size": 10181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c0975451312d440514dcf5b0013052412c943b0" + }, + { + "path": "png/passwordpusher.png", + "mode": "100644", + "type": "blob", + "sha": "eddc1014c27d0cd1c281c2bf1ea3b8aeb0f3d2bf", + "size": 8929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eddc1014c27d0cd1c281c2bf1ea3b8aeb0f3d2bf" + }, + { + "path": "png/passwork.png", + "mode": "100644", + "type": "blob", + "sha": "cc641c756f2ebb14fe8b484eee6eeab11891e2f6", + "size": 13596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc641c756f2ebb14fe8b484eee6eeab11891e2f6" + }, + { + "path": "png/pastatool-light.png", + "mode": "100644", + "type": "blob", + "sha": "49b16c0e6e35b6880896a3f1435953a78a472da4", + "size": 6782, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49b16c0e6e35b6880896a3f1435953a78a472da4" + }, + { + "path": "png/pastatool.png", + "mode": "100644", + "type": "blob", + "sha": "ccc1db24c0e2e729205699fa73abc3fa8c5c33c8", + "size": 6129, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccc1db24c0e2e729205699fa73abc3fa8c5c33c8" + }, + { + "path": "png/pastebin-dark.png", + "mode": "100644", + "type": "blob", + "sha": "2fe64a653809fa3df17b45f4a6df33a1456ed2b5", + "size": 55307, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fe64a653809fa3df17b45f4a6df33a1456ed2b5" + }, + { + "path": "png/pastebin.png", + "mode": "100644", + "type": "blob", + "sha": "e7a28bbe84ecd9b1c4beaf30b3699508fea03712", + "size": 60308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7a28bbe84ecd9b1c4beaf30b3699508fea03712" + }, + { + "path": "png/pastey.png", + "mode": "100644", + "type": "blob", + "sha": "95b77195374e5948cb8ce960c155a7ec8ceb9a42", + "size": 1620, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95b77195374e5948cb8ce960c155a7ec8ceb9a42" + }, + { + "path": "png/patchmon.png", + "mode": "100644", + "type": "blob", + "sha": "75d48d44687212e028350ab90696e5dd2a4c72ed", + "size": 11151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75d48d44687212e028350ab90696e5dd2a4c72ed" + }, + { + "path": "png/patreon-light.png", + "mode": "100644", + "type": "blob", + "sha": "12dcc472000fd1ddfa9b52b0385dce8a066d57b0", + "size": 10099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12dcc472000fd1ddfa9b52b0385dce8a066d57b0" + }, + { + "path": "png/patreon.png", + "mode": "100644", + "type": "blob", + "sha": "24f7665286e119195b15e1dc33aec8c34d0a5239", + "size": 9358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24f7665286e119195b15e1dc33aec8c34d0a5239" + }, + { + "path": "png/payload-light.png", + "mode": "100644", + "type": "blob", + "sha": "e9d142823fc40c6db3b383287f0bce65f92db79a", + "size": 17495, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9d142823fc40c6db3b383287f0bce65f92db79a" + }, + { + "path": "png/payload.png", + "mode": "100644", + "type": "blob", + "sha": "a7c0913b700d8648c02ae3ddcfc4608b8aecd63a", + "size": 16444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7c0913b700d8648c02ae3ddcfc4608b8aecd63a" + }, + { + "path": "png/paymenter.png", + "mode": "100644", + "type": "blob", + "sha": "e5570084f456280acccc14fbd3bc19631b767e6a", + "size": 11536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5570084f456280acccc14fbd3bc19631b767e6a" + }, + { + "path": "png/paypal.png", + "mode": "100644", + "type": "blob", + "sha": "de9a94ecddc997fb0f014ba6f3131e787914aef7", + "size": 15520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de9a94ecddc997fb0f014ba6f3131e787914aef7" + }, + { + "path": "png/pdfding-light.png", + "mode": "100644", + "type": "blob", + "sha": "77c6a3aba5a5e48265a34318724203ed88532d3a", + "size": 8420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77c6a3aba5a5e48265a34318724203ed88532d3a" + }, + { + "path": "png/pdfding.png", + "mode": "100644", + "type": "blob", + "sha": "7d42a2bad7962e66304398a25c124a44f05777b0", + "size": 7805, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d42a2bad7962e66304398a25c124a44f05777b0" + }, + { + "path": "png/peacock-light.png", + "mode": "100644", + "type": "blob", + "sha": "b6e938a5a7bcd671e7f7ac4f5af6a8f31c177443", + "size": 16444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6e938a5a7bcd671e7f7ac4f5af6a8f31c177443" + }, + { + "path": "png/peacock.png", + "mode": "100644", + "type": "blob", + "sha": "9e24a5416b8309c0ab28bde85ba42a3806f8532e", + "size": 15883, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e24a5416b8309c0ab28bde85ba42a3806f8532e" + }, + { + "path": "png/peanut-light.png", + "mode": "100644", + "type": "blob", + "sha": "d72a7cd5f35162cc1209ec78541c553e01bb3234", + "size": 53700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d72a7cd5f35162cc1209ec78541c553e01bb3234" + }, + { + "path": "png/peanut.png", + "mode": "100644", + "type": "blob", + "sha": "6c4e00113aaff0700ee7ef1c89ec746cf7733047", + "size": 57965, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c4e00113aaff0700ee7ef1c89ec746cf7733047" + }, + { + "path": "png/peertube.png", + "mode": "100644", + "type": "blob", + "sha": "d30d30babbdf02a36d2f4ca148d2f184e97de483", + "size": 6642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d30d30babbdf02a36d2f4ca148d2f184e97de483" + }, + { + "path": "png/pelican-panel.png", + "mode": "100644", + "type": "blob", + "sha": "fe0956e296d73e77e288b13c5fdebfed6e4d5d55", + "size": 51452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe0956e296d73e77e288b13c5fdebfed6e4d5d55" + }, + { + "path": "png/penpot-light.png", + "mode": "100644", + "type": "blob", + "sha": "247a09e6729f596db957f9530eb11020b9e2ba02", + "size": 12339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/247a09e6729f596db957f9530eb11020b9e2ba02" + }, + { + "path": "png/penpot.png", + "mode": "100644", + "type": "blob", + "sha": "715c3e940736ab1a59471aafc590f94912382698", + "size": 10265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/715c3e940736ab1a59471aafc590f94912382698" + }, + { + "path": "png/peppermint.png", + "mode": "100644", + "type": "blob", + "sha": "2e6297cff9fb1d6f87517c9037369f0ea8d1c892", + "size": 22699, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e6297cff9fb1d6f87517c9037369f0ea8d1c892" + }, + { + "path": "png/pepperminty-wiki.png", + "mode": "100644", + "type": "blob", + "sha": "e0b50e0ef5bfbda80f5e5cf0e614ac8f538f9dc7", + "size": 75376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0b50e0ef5bfbda80f5e5cf0e614ac8f538f9dc7" + }, + { + "path": "png/perlite.png", + "mode": "100644", + "type": "blob", + "sha": "66a05ab8b8d873e2dfc6442ba8c0598155080729", + "size": 50377, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66a05ab8b8d873e2dfc6442ba8c0598155080729" + }, + { + "path": "png/perplexity-book-dark.png", + "mode": "100644", + "type": "blob", + "sha": "a36aff5346b97be8c22bbb3f02524db8f57df908", + "size": 19362, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a36aff5346b97be8c22bbb3f02524db8f57df908" + }, + { + "path": "png/perplexity-book-light.png", + "mode": "100644", + "type": "blob", + "sha": "9cd4bfea04d0fd29b5c27a994a828a666e064bd0", + "size": 19519, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cd4bfea04d0fd29b5c27a994a828a666e064bd0" + }, + { + "path": "png/perplexity-dark.png", + "mode": "100644", + "type": "blob", + "sha": "19fe78b632c493fe7cecbc26fc48deef16d9ccc2", + "size": 69527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19fe78b632c493fe7cecbc26fc48deef16d9ccc2" + }, + { + "path": "png/perplexity-light.png", + "mode": "100644", + "type": "blob", + "sha": "23a1ac8570ea4b6a1ad5b11348b1fce0b34b0b46", + "size": 73320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23a1ac8570ea4b6a1ad5b11348b1fce0b34b0b46" + }, + { + "path": "png/petio.png", + "mode": "100644", + "type": "blob", + "sha": "50fca22c4582cefda79998af0a7b5296e2414d5c", + "size": 4283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50fca22c4582cefda79998af0a7b5296e2414d5c" + }, + { + "path": "png/pfsense-light.png", + "mode": "100644", + "type": "blob", + "sha": "a0cd9188cb78d2c7179d78775e52061edc1d0533", + "size": 19734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0cd9188cb78d2c7179d78775e52061edc1d0533" + }, + { + "path": "png/pfsense.png", + "mode": "100644", + "type": "blob", + "sha": "7ccc5707e9c46421dc3f3dc0dcfc8b794fb65cdd", + "size": 19993, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ccc5707e9c46421dc3f3dc0dcfc8b794fb65cdd" + }, + { + "path": "png/pg-back-web.png", + "mode": "100644", + "type": "blob", + "sha": "324e36f4f6b9cf13ec226d50ebfa268f8649cc59", + "size": 54245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/324e36f4f6b9cf13ec226d50ebfa268f8649cc59" + }, + { + "path": "png/pgadmin.png", + "mode": "100644", + "type": "blob", + "sha": "73a78f1b34e7cb6ac79267b985a6d295ba2d9058", + "size": 46074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73a78f1b34e7cb6ac79267b985a6d295ba2d9058" + }, + { + "path": "png/pgbackweb-dark.png", + "mode": "100644", + "type": "blob", + "sha": "1275422223466cfb9b8f0d69364f062ed3796e6f", + "size": 30545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1275422223466cfb9b8f0d69364f062ed3796e6f" + }, + { + "path": "png/pgbackweb-light.png", + "mode": "100644", + "type": "blob", + "sha": "f8470b71c18b8547a34ba1c97f483c78f470c75a", + "size": 36212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8470b71c18b8547a34ba1c97f483c78f470c75a" + }, + { + "path": "png/phanpy.png", + "mode": "100644", + "type": "blob", + "sha": "fbb2c9c724601829b1e0540a6d2ccd2b2da8884d", + "size": 24187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbb2c9c724601829b1e0540a6d2ccd2b2da8884d" + }, + { + "path": "png/phantombot.png", + "mode": "100644", + "type": "blob", + "sha": "157b31ac82ee31abce9ce6783737072707d606d0", + "size": 21552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/157b31ac82ee31abce9ce6783737072707d606d0" + }, + { + "path": "png/phase-dark.png", + "mode": "100644", + "type": "blob", + "sha": "769af7f9c71676871ab445a67329b05df578115d", + "size": 7839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/769af7f9c71676871ab445a67329b05df578115d" + }, + { + "path": "png/phase.png", + "mode": "100644", + "type": "blob", + "sha": "31f0465face6e2958cd3fb7e6e3833c5d01a0d38", + "size": 7839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31f0465face6e2958cd3fb7e6e3833c5d01a0d38" + }, + { + "path": "png/phoneinfoga-light.png", + "mode": "100644", + "type": "blob", + "sha": "8cb6eea12f76ce41b59e30da672d3adaba60b53a", + "size": 32734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8cb6eea12f76ce41b59e30da672d3adaba60b53a" + }, + { + "path": "png/phoneinfoga.png", + "mode": "100644", + "type": "blob", + "sha": "9b195427a5085e849861ee934c6debf071030416", + "size": 27258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b195427a5085e849861ee934c6debf071030416" + }, + { + "path": "png/phorge-light.png", + "mode": "100644", + "type": "blob", + "sha": "fc033c06de055a73e509a495069dd8b0657a085b", + "size": 14777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc033c06de055a73e509a495069dd8b0657a085b" + }, + { + "path": "png/phorge.png", + "mode": "100644", + "type": "blob", + "sha": "317065ceb18249eaf02300d5c670a81fddf2eeea", + "size": 13211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/317065ceb18249eaf02300d5c670a81fddf2eeea" + }, + { + "path": "png/phoscon-light.png", + "mode": "100644", + "type": "blob", + "sha": "8cdd8d7b3d5223bbdbf3ee30b11eec89ee04562f", + "size": 14071, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8cdd8d7b3d5223bbdbf3ee30b11eec89ee04562f" + }, + { + "path": "png/phoscon.png", + "mode": "100644", + "type": "blob", + "sha": "ae83c37380b2b84abe117ff96f68efc5dd0bfb3c", + "size": 12375, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae83c37380b2b84abe117ff96f68efc5dd0bfb3c" + }, + { + "path": "png/photonix-light.png", + "mode": "100644", + "type": "blob", + "sha": "ee72d3dd999a81cd1c2f520518f2465ac965f3a9", + "size": 16083, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee72d3dd999a81cd1c2f520518f2465ac965f3a9" + }, + { + "path": "png/photonix.png", + "mode": "100644", + "type": "blob", + "sha": "325c553379077f438d7f4e2c9e286fab279c1450", + "size": 15577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/325c553379077f438d7f4e2c9e286fab279c1450" + }, + { + "path": "png/photopea.png", + "mode": "100644", + "type": "blob", + "sha": "accc929a4abaacd227889e2b48e76819b9e8af9d", + "size": 20280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/accc929a4abaacd227889e2b48e76819b9e8af9d" + }, + { + "path": "png/photoprism-light.png", + "mode": "100644", + "type": "blob", + "sha": "7a40a646739bcb4135a9658446df23d085aa5906", + "size": 35244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a40a646739bcb4135a9658446df23d085aa5906" + }, + { + "path": "png/photoprism.png", + "mode": "100644", + "type": "blob", + "sha": "e58d4e74ec55279e0929092b86afffea42bf73fa", + "size": 42503, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e58d4e74ec55279e0929092b86afffea42bf73fa" + }, + { + "path": "png/photostructure-dark.png", + "mode": "100644", + "type": "blob", + "sha": "1ae650662ff8ac1e188c88f82387daadc45254e2", + "size": 61526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ae650662ff8ac1e188c88f82387daadc45254e2" + }, + { + "path": "png/photostructure.png", + "mode": "100644", + "type": "blob", + "sha": "fe373486720bd38196c1a928b1e152e0653ab229", + "size": 60847, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe373486720bd38196c1a928b1e152e0653ab229" + }, + { + "path": "png/photoview.png", + "mode": "100644", + "type": "blob", + "sha": "7fdeb762d53eff8d2df72eb4a15d2e6fe74dbd27", + "size": 38062, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fdeb762d53eff8d2df72eb4a15d2e6fe74dbd27" + }, + { + "path": "png/php-light.png", + "mode": "100644", + "type": "blob", + "sha": "982d4c3733aa3ae4a2d5dff6ab4ea38c958eb4b1", + "size": 41986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/982d4c3733aa3ae4a2d5dff6ab4ea38c958eb4b1" + }, + { + "path": "png/php.png", + "mode": "100644", + "type": "blob", + "sha": "582f6faef3d6c0335716605f4f5f3e2f746e1490", + "size": 58896, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/582f6faef3d6c0335716605f4f5f3e2f746e1490" + }, + { + "path": "png/phpipam.png", + "mode": "100644", + "type": "blob", + "sha": "38bf098fdd6fbb6abefe1f34ff6e91a9d903e08b", + "size": 37708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38bf098fdd6fbb6abefe1f34ff6e91a9d903e08b" + }, + { + "path": "png/phpldapadmin.png", + "mode": "100644", + "type": "blob", + "sha": "ab2bcc5b321f79cac2c2fcfe26559b8c179387a1", + "size": 50988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab2bcc5b321f79cac2c2fcfe26559b8c179387a1" + }, + { + "path": "png/phpmyadmin.png", + "mode": "100644", + "type": "blob", + "sha": "02b9b60ea07cf0c689491c248375312f45b0c95f", + "size": 72320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02b9b60ea07cf0c689491c248375312f45b0c95f" + }, + { + "path": "png/pi-alert.png", + "mode": "100644", + "type": "blob", + "sha": "f1ea11b8e8cc892dc974991dd5a00dc32579b8b3", + "size": 29381, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1ea11b8e8cc892dc974991dd5a00dc32579b8b3" + }, + { + "path": "png/pi-hole-unbound.png", + "mode": "100644", + "type": "blob", + "sha": "4f2c7b616e96f36c777749ea35452f45fb5cffdc", + "size": 36277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f2c7b616e96f36c777749ea35452f45fb5cffdc" + }, + { + "path": "png/pi-hole.png", + "mode": "100644", + "type": "blob", + "sha": "b4abd973dedb2584a3e1729aab72ae02f6aa3335", + "size": 22642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4abd973dedb2584a3e1729aab72ae02f6aa3335" + }, + { + "path": "png/pia.png", + "mode": "100644", + "type": "blob", + "sha": "2c98adf75843a3bb90652b5b84531d44502a86a5", + "size": 24735, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c98adf75843a3bb90652b5b84531d44502a86a5" + }, + { + "path": "png/piaware.png", + "mode": "100644", + "type": "blob", + "sha": "f1e87c2476d09ddb1a4e0871fcee5b1e77c68272", + "size": 9472, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1e87c2476d09ddb1a4e0871fcee5b1e77c68272" + }, + { + "path": "png/picsur-light.png", + "mode": "100644", + "type": "blob", + "sha": "9f7989affd072bd74f69352aa766a08ee2d8cbcc", + "size": 7854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f7989affd072bd74f69352aa766a08ee2d8cbcc" + }, + { + "path": "png/picsur.png", + "mode": "100644", + "type": "blob", + "sha": "7d0de59364df02a9f7c577d15424d0a5ca13e77e", + "size": 7536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d0de59364df02a9f7c577d15424d0a5ca13e77e" + }, + { + "path": "png/pigallery2-dark.png", + "mode": "100644", + "type": "blob", + "sha": "291b676f8c5053c7a43b5b78be5e77ddc0fe5bdd", + "size": 11992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/291b676f8c5053c7a43b5b78be5e77ddc0fe5bdd" + }, + { + "path": "png/pigallery2.png", + "mode": "100644", + "type": "blob", + "sha": "bc58fb49269b1c642b5ba5b63ba19a511f4e7e77", + "size": 11992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc58fb49269b1c642b5ba5b63ba19a511f4e7e77" + }, + { + "path": "png/pikapods.png", + "mode": "100644", + "type": "blob", + "sha": "7efba7054356fc6272113d931209f26b973683a3", + "size": 30907, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7efba7054356fc6272113d931209f26b973683a3" + }, + { + "path": "png/pikvm-light.png", + "mode": "100644", + "type": "blob", + "sha": "74ba0102dc820d28970a464b59d65de5e1d49069", + "size": 8368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74ba0102dc820d28970a464b59d65de5e1d49069" + }, + { + "path": "png/pikvm.png", + "mode": "100644", + "type": "blob", + "sha": "143fe88ad7edb3d71af3b4544b92c8ad6ab8d4a6", + "size": 8368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/143fe88ad7edb3d71af3b4544b92c8ad6ab8d4a6" + }, + { + "path": "png/pinchflat.png", + "mode": "100644", + "type": "blob", + "sha": "1efcc8b3316aab32d2239ba2110f40262af09afb", + "size": 66054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1efcc8b3316aab32d2239ba2110f40262af09afb" + }, + { + "path": "png/pinepods.png", + "mode": "100644", + "type": "blob", + "sha": "3c93489e96862823c75cf6df656ba53e18065bfd", + "size": 24720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c93489e96862823c75cf6df656ba53e18065bfd" + }, + { + "path": "png/pingdom-light.png", + "mode": "100644", + "type": "blob", + "sha": "eb14a47a3030c8f237c2f2161b2c1c123bff43bd", + "size": 11774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb14a47a3030c8f237c2f2161b2c1c123bff43bd" + }, + { + "path": "png/pingdom.png", + "mode": "100644", + "type": "blob", + "sha": "75e1e998873f9c221653a89c472aa7db8952e45f", + "size": 12650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75e1e998873f9c221653a89c472aa7db8952e45f" + }, + { + "path": "png/pingvin-dark.png", + "mode": "100644", + "type": "blob", + "sha": "07bace6c67247cdad6328c6c4c6ee83b6fa8232b", + "size": 21672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07bace6c67247cdad6328c6c4c6ee83b6fa8232b" + }, + { + "path": "png/pingvin-share-dark.png", + "mode": "100644", + "type": "blob", + "sha": "07bace6c67247cdad6328c6c4c6ee83b6fa8232b", + "size": 21672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07bace6c67247cdad6328c6c4c6ee83b6fa8232b" + }, + { + "path": "png/pingvin-share.png", + "mode": "100644", + "type": "blob", + "sha": "45560585a75b809807c3e29b7c1277407dd78a9b", + "size": 21289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45560585a75b809807c3e29b7c1277407dd78a9b" + }, + { + "path": "png/pingvin.png", + "mode": "100644", + "type": "blob", + "sha": "ab1b6debc19e4731b6206380fdbc0afd3e23453e", + "size": 21259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab1b6debc19e4731b6206380fdbc0afd3e23453e" + }, + { + "path": "png/pinkary.png", + "mode": "100644", + "type": "blob", + "sha": "1549ad071a437fff3293f585e7750da208c75aff", + "size": 22220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1549ad071a437fff3293f585e7750da208c75aff" + }, + { + "path": "png/pinry.png", + "mode": "100644", + "type": "blob", + "sha": "adbcc28599b5749d8cb77b91d7483d13365b337b", + "size": 3388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adbcc28599b5749d8cb77b91d7483d13365b337b" + }, + { + "path": "png/pinterest.png", + "mode": "100644", + "type": "blob", + "sha": "6889f180597a882b98d7954c835696bcb1892822", + "size": 30900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6889f180597a882b98d7954c835696bcb1892822" + }, + { + "path": "png/pioneer-light.png", + "mode": "100644", + "type": "blob", + "sha": "69b92f381e1bc51e5357ce757fbe8a52f9512882", + "size": 20321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69b92f381e1bc51e5357ce757fbe8a52f9512882" + }, + { + "path": "png/pioneer.png", + "mode": "100644", + "type": "blob", + "sha": "bd4cb4149bde7b39d57b95f70d0250060f480e19", + "size": 24647, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd4cb4149bde7b39d57b95f70d0250060f480e19" + }, + { + "path": "png/piped.png", + "mode": "100644", + "type": "blob", + "sha": "8f203eb68971a18895da9e75535fe9f80041de2d", + "size": 29804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f203eb68971a18895da9e75535fe9f80041de2d" + }, + { + "path": "png/pirate-proxy.png", + "mode": "100644", + "type": "blob", + "sha": "157730ea3b7350cace2a5f4673a03b40655a5b79", + "size": 112789, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/157730ea3b7350cace2a5f4673a03b40655a5b79" + }, + { + "path": "png/pivpn.png", + "mode": "100644", + "type": "blob", + "sha": "b52d602ad15e3adc601101b0ca135dbe2731790e", + "size": 55717, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b52d602ad15e3adc601101b0ca135dbe2731790e" + }, + { + "path": "png/piwigo.png", + "mode": "100644", + "type": "blob", + "sha": "94183e65e994e8bb8198af3419a4980cbd19209d", + "size": 21110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94183e65e994e8bb8198af3419a4980cbd19209d" + }, + { + "path": "png/pixelfed.png", + "mode": "100644", + "type": "blob", + "sha": "4135a7bb5a13675cf9bf21c84d54134d2b9c7a19", + "size": 71421, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4135a7bb5a13675cf9bf21c84d54134d2b9c7a19" + }, + { + "path": "png/plane.png", + "mode": "100644", + "type": "blob", + "sha": "c730bee9b8002b7aab315f6062344717bac41352", + "size": 2357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c730bee9b8002b7aab315f6062344717bac41352" + }, + { + "path": "png/planka-dark.png", + "mode": "100644", + "type": "blob", + "sha": "c6ea0d932b4e03a8b8d43b42cd03090885e015c6", + "size": 15359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6ea0d932b4e03a8b8d43b42cd03090885e015c6" + }, + { + "path": "png/planka.png", + "mode": "100644", + "type": "blob", + "sha": "ce9b626a5bb8b6334fc79a763bff8d572b6fd9b5", + "size": 15750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce9b626a5bb8b6334fc79a763bff8d572b6fd9b5" + }, + { + "path": "png/plant-it.png", + "mode": "100644", + "type": "blob", + "sha": "943bb3f7c047fe388827cc662afaedc07224fdf9", + "size": 62057, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/943bb3f7c047fe388827cc662afaedc07224fdf9" + }, + { + "path": "png/plantuml.png", + "mode": "100644", + "type": "blob", + "sha": "3e3d17ddf93a060de6578ae5f88eaae2449abdb7", + "size": 25178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e3d17ddf93a060de6578ae5f88eaae2449abdb7" + }, + { + "path": "png/platzi.png", + "mode": "100644", + "type": "blob", + "sha": "8a5a4d18d2c15310e5f67a99e4c0f0c96195fc60", + "size": 3793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a5a4d18d2c15310e5f67a99e4c0f0c96195fc60" + }, + { + "path": "png/plausible.png", + "mode": "100644", + "type": "blob", + "sha": "ac3722548ac18ff8bdf80758333ec5699636637c", + "size": 39274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac3722548ac18ff8bdf80758333ec5699636637c" + }, + { + "path": "png/playstation.png", + "mode": "100644", + "type": "blob", + "sha": "d1c47a616a09cd30d74b7846233acc00d7a61911", + "size": 22858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1c47a616a09cd30d74b7846233acc00d7a61911" + }, + { + "path": "png/pleroma.png", + "mode": "100644", + "type": "blob", + "sha": "a6f578574f38bad36b25a34f975830d9146caa0c", + "size": 3220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6f578574f38bad36b25a34f975830d9146caa0c" + }, + { + "path": "png/plesk.png", + "mode": "100644", + "type": "blob", + "sha": "e21aaa7bd7d9bb41c0b26285f91be2bdface034a", + "size": 28585, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e21aaa7bd7d9bb41c0b26285f91be2bdface034a" + }, + { + "path": "png/plex-alt-light.png", + "mode": "100644", + "type": "blob", + "sha": "b3220db1472e4aea5e3b576acd699624c2173737", + "size": 35853, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3220db1472e4aea5e3b576acd699624c2173737" + }, + { + "path": "png/plex-alt.png", + "mode": "100644", + "type": "blob", + "sha": "59c106f3f6759d5e62c102a1097ffea1066520f1", + "size": 28956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59c106f3f6759d5e62c102a1097ffea1066520f1" + }, + { + "path": "png/plex-light.png", + "mode": "100644", + "type": "blob", + "sha": "fa7b32946a73dad4ac619e948c5cdd8c9d90beca", + "size": 13006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa7b32946a73dad4ac619e948c5cdd8c9d90beca" + }, + { + "path": "png/plex-meta-manager-light.png", + "mode": "100644", + "type": "blob", + "sha": "68d06f0a812777d4de92ae1d1971be11b0256609", + "size": 6910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68d06f0a812777d4de92ae1d1971be11b0256609" + }, + { + "path": "png/plex-meta-manager.png", + "mode": "100644", + "type": "blob", + "sha": "9e1823d358aa16716e408ff6e787558016423418", + "size": 15487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e1823d358aa16716e408ff6e787558016423418" + }, + { + "path": "png/plex-rewind.png", + "mode": "100644", + "type": "blob", + "sha": "21a09b9afd8d1e5574b3cae6f9bc35ee75a36e45", + "size": 29151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21a09b9afd8d1e5574b3cae6f9bc35ee75a36e45" + }, + { + "path": "png/plex.png", + "mode": "100644", + "type": "blob", + "sha": "d1c4398c66d48e11737bf37fd03c9f405b431337", + "size": 13441, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1c4398c66d48e11737bf37fd03c9f405b431337" + }, + { + "path": "png/plexdrive.png", + "mode": "100644", + "type": "blob", + "sha": "de2033738a688baf42bcd0c7049e327d96ef1324", + "size": 15487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de2033738a688baf42bcd0c7049e327d96ef1324" + }, + { + "path": "png/plexrequests-light.png", + "mode": "100644", + "type": "blob", + "sha": "de5b9da581a6099201a269f8e38b5ef7266bbba1", + "size": 17656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de5b9da581a6099201a269f8e38b5ef7266bbba1" + }, + { + "path": "png/plexrequests.png", + "mode": "100644", + "type": "blob", + "sha": "c2057a3772ba3d2274a6dc2eacdfd70af9599c13", + "size": 18149, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2057a3772ba3d2274a6dc2eacdfd70af9599c13" + }, + { + "path": "png/plexripper.png", + "mode": "100644", + "type": "blob", + "sha": "2382996e288483e8a901127fd6ae24e56795247e", + "size": 141282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2382996e288483e8a901127fd6ae24e56795247e" + }, + { + "path": "png/plume.png", + "mode": "100644", + "type": "blob", + "sha": "d651ecc362be21452b6d2dc1b0961088d57110eb", + "size": 26211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d651ecc362be21452b6d2dc1b0961088d57110eb" + }, + { + "path": "png/pluralsight.png", + "mode": "100644", + "type": "blob", + "sha": "35c8aaf1dbcd0be1720526193302ba86400ce0a8", + "size": 17677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35c8aaf1dbcd0be1720526193302ba86400ce0a8" + }, + { + "path": "png/pocket-casts-dark.png", + "mode": "100644", + "type": "blob", + "sha": "46c680d726e4940adc5b50b13c8c23824007b10c", + "size": 30093, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46c680d726e4940adc5b50b13c8c23824007b10c" + }, + { + "path": "png/pocket-casts.png", + "mode": "100644", + "type": "blob", + "sha": "268ad5c71a1ad059db85cf7b0debd70252dd4ccc", + "size": 30189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/268ad5c71a1ad059db85cf7b0debd70252dd4ccc" + }, + { + "path": "png/pocket-id-light.png", + "mode": "100644", + "type": "blob", + "sha": "01983e6d67c9942afe52509b4173855c6307b3c0", + "size": 16579, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01983e6d67c9942afe52509b4173855c6307b3c0" + }, + { + "path": "png/pocket-id.png", + "mode": "100644", + "type": "blob", + "sha": "dd4118ef962b76942512159ae48efb4e204a14c7", + "size": 15690, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd4118ef962b76942512159ae48efb4e204a14c7" + }, + { + "path": "png/pocketbase-dark.png", + "mode": "100644", + "type": "blob", + "sha": "af108e89ff5b87abc30207f17fde5e9a4a1e53ce", + "size": 13431, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af108e89ff5b87abc30207f17fde5e9a4a1e53ce" + }, + { + "path": "png/pocketbase.png", + "mode": "100644", + "type": "blob", + "sha": "dd85f54f32e7a929bf8105023732a174c6a06b48", + "size": 13140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd85f54f32e7a929bf8105023732a174c6a06b48" + }, + { + "path": "png/podfetch-light.png", + "mode": "100644", + "type": "blob", + "sha": "6f2063907cc60b7de6386000b878b4a142b3cf7f", + "size": 19458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f2063907cc60b7de6386000b878b4a142b3cf7f" + }, + { + "path": "png/podfetch.png", + "mode": "100644", + "type": "blob", + "sha": "9a8998a60f2584ebe122ef2d0a34e0f1befd89ed", + "size": 16579, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a8998a60f2584ebe122ef2d0a34e0f1befd89ed" + }, + { + "path": "png/podgrab.png", + "mode": "100644", + "type": "blob", + "sha": "2111598f999f99074bfd687d1747084313691dfc", + "size": 17595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2111598f999f99074bfd687d1747084313691dfc" + }, + { + "path": "png/podify.png", + "mode": "100644", + "type": "blob", + "sha": "bb7946dd0839b0466f49a6dca68b248f9ba2b980", + "size": 31040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb7946dd0839b0466f49a6dca68b248f9ba2b980" + }, + { + "path": "png/podman.png", + "mode": "100644", + "type": "blob", + "sha": "6082271a3aa73f4f172a28b76eda2eacacd91538", + "size": 65119, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6082271a3aa73f4f172a28b76eda2eacacd91538" + }, + { + "path": "png/podnapisi.png", + "mode": "100644", + "type": "blob", + "sha": "cbd98ee9943215796c9daf235020758494a82fb6", + "size": 16755, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbd98ee9943215796c9daf235020758494a82fb6" + }, + { + "path": "png/policycontroller.png", + "mode": "100644", + "type": "blob", + "sha": "d3712c0d0bc6ae643981691405134e17ce5d49ec", + "size": 46147, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3712c0d0bc6ae643981691405134e17ce5d49ec" + }, + { + "path": "png/poly.png", + "mode": "100644", + "type": "blob", + "sha": "7017036a65f430db1b3933fcd965a6100d34a0de", + "size": 12549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7017036a65f430db1b3933fcd965a6100d34a0de" + }, + { + "path": "png/polywork.png", + "mode": "100644", + "type": "blob", + "sha": "0ce51d3fe36d334268c6ca8e34f0f970969fada8", + "size": 13072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ce51d3fe36d334268c6ca8e34f0f970969fada8" + }, + { + "path": "png/porkbun.png", + "mode": "100644", + "type": "blob", + "sha": "f34914c7166ca3415e874f8a89846f2c4bf8f64d", + "size": 20844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f34914c7166ca3415e874f8a89846f2c4bf8f64d" + }, + { + "path": "png/port-note.png", + "mode": "100644", + "type": "blob", + "sha": "bab42bd31fc84496edb18059a4a19b88bd1dffde", + "size": 20294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bab42bd31fc84496edb18059a4a19b88bd1dffde" + }, + { + "path": "png/portainer-alt.png", + "mode": "100644", + "type": "blob", + "sha": "ac1c8635e6a27247a21d3ba3d43c253398f148f8", + "size": 15339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac1c8635e6a27247a21d3ba3d43c253398f148f8" + }, + { + "path": "png/portainer-be-dark.png", + "mode": "100644", + "type": "blob", + "sha": "99e0eb8a3cfad374f559cc26758dcaca359d8613", + "size": 3609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99e0eb8a3cfad374f559cc26758dcaca359d8613" + }, + { + "path": "png/portainer-be.png", + "mode": "100644", + "type": "blob", + "sha": "99372b3ddb1c70bdc5c3c627c8e162ca183ebd06", + "size": 3609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99372b3ddb1c70bdc5c3c627c8e162ca183ebd06" + }, + { + "path": "png/portainer-dark.png", + "mode": "100644", + "type": "blob", + "sha": "065285ef15a75c043e8ae352f58429be925a48a1", + "size": 3591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/065285ef15a75c043e8ae352f58429be925a48a1" + }, + { + "path": "png/portainer.png", + "mode": "100644", + "type": "blob", + "sha": "d04fc76236f613b16b6fc9b20c41684901cae2e5", + "size": 3591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d04fc76236f613b16b6fc9b20c41684901cae2e5" + }, + { + "path": "png/portracker-dark.png", + "mode": "100644", + "type": "blob", + "sha": "9dc72b251917d8e20bb23e24985b0d338e24ce44", + "size": 11636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dc72b251917d8e20bb23e24985b0d338e24ce44" + }, + { + "path": "png/portracker.png", + "mode": "100644", + "type": "blob", + "sha": "e49c5961288fc175ea97d433a7589f6c3aa48548", + "size": 11636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e49c5961288fc175ea97d433a7589f6c3aa48548" + }, + { + "path": "png/portus.png", + "mode": "100644", + "type": "blob", + "sha": "754b78318612d5b8cf943d19a3f512d3b7509fa7", + "size": 38724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/754b78318612d5b8cf943d19a3f512d3b7509fa7" + }, + { + "path": "png/postal.png", + "mode": "100644", + "type": "blob", + "sha": "177049962702a87363832f7d01f2da9b95aae171", + "size": 13336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/177049962702a87363832f7d01f2da9b95aae171" + }, + { + "path": "png/poste.png", + "mode": "100644", + "type": "blob", + "sha": "578ee55aeb638f20562658d5274662d15c33b40d", + "size": 24605, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/578ee55aeb638f20562658d5274662d15c33b40d" + }, + { + "path": "png/posterizarr.png", + "mode": "100644", + "type": "blob", + "sha": "2b0cc78c18b88ebe5c1f02d028d7a7fadcf52821", + "size": 28788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b0cc78c18b88ebe5c1f02d028d7a7fadcf52821" + }, + { + "path": "png/postgres.png", + "mode": "100644", + "type": "blob", + "sha": "73a78f1b34e7cb6ac79267b985a6d295ba2d9058", + "size": 46074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73a78f1b34e7cb6ac79267b985a6d295ba2d9058" + }, + { + "path": "png/postgresql.png", + "mode": "100644", + "type": "blob", + "sha": "2c4e4df6012c40c641597b57664f05770233c4b5", + "size": 46248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c4e4df6012c40c641597b57664f05770233c4b5" + }, + { + "path": "png/postgresus.png", + "mode": "100644", + "type": "blob", + "sha": "108f8cafdbe0740e5065e7b0435b445886693dbe", + "size": 25545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/108f8cafdbe0740e5065e7b0435b445886693dbe" + }, + { + "path": "png/posthog-light.png", + "mode": "100644", + "type": "blob", + "sha": "68447751dcb179d0069e56d544c3cfafc8b3aa51", + "size": 19088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68447751dcb179d0069e56d544c3cfafc8b3aa51" + }, + { + "path": "png/posthog.png", + "mode": "100644", + "type": "blob", + "sha": "e7a0f66020c226fd0ee5becd08ad678e10188f43", + "size": 18839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7a0f66020c226fd0ee5becd08ad678e10188f43" + }, + { + "path": "png/postiz-dark.png", + "mode": "100644", + "type": "blob", + "sha": "d0535eb37f9dde761daf6efdbb2a5aec96014477", + "size": 24484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0535eb37f9dde761daf6efdbb2a5aec96014477" + }, + { + "path": "png/postiz.png", + "mode": "100644", + "type": "blob", + "sha": "436ef655e12ade50c2041c79f1bfa28a531c00e9", + "size": 30396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/436ef655e12ade50c2041c79f1bfa28a531c00e9" + }, + { + "path": "png/powerbi.png", + "mode": "100644", + "type": "blob", + "sha": "a45f5c51586290761bfe11fa3fe44c64a1ff89f9", + "size": 21397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a45f5c51586290761bfe11fa3fe44c64a1ff89f9" + }, + { + "path": "png/powerdns.png", + "mode": "100644", + "type": "blob", + "sha": "7327d426b23cd9bc8a428f70aa9b8539e0192e44", + "size": 30048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7327d426b23cd9bc8a428f70aa9b8539e0192e44" + }, + { + "path": "png/powerpanel.png", + "mode": "100644", + "type": "blob", + "sha": "dfe193aaecf323774e4c47dddca50fc0a3c6670c", + "size": 2540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfe193aaecf323774e4c47dddca50fc0a3c6670c" + }, + { + "path": "png/premium-mobile.png", + "mode": "100644", + "type": "blob", + "sha": "14c68dc9c1e930685c870a841fad9beb15977e92", + "size": 2501, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14c68dc9c1e930685c870a841fad9beb15977e92" + }, + { + "path": "png/premiumize.png", + "mode": "100644", + "type": "blob", + "sha": "cdc65632605d52a274b708d4f6f440523b6024f9", + "size": 13609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdc65632605d52a274b708d4f6f440523b6024f9" + }, + { + "path": "png/pretix.png", + "mode": "100644", + "type": "blob", + "sha": "386c994ee561237eec729de2b77de23acabce7f1", + "size": 5298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/386c994ee561237eec729de2b77de23acabce7f1" + }, + { + "path": "png/price-buddy.png", + "mode": "100644", + "type": "blob", + "sha": "5f2cd46fd7f76223f3a27793e77997724c389265", + "size": 9809, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f2cd46fd7f76223f3a27793e77997724c389265" + }, + { + "path": "png/primal.png", + "mode": "100644", + "type": "blob", + "sha": "c09f39f4a27c754ade989a87c18b3b3341aaed53", + "size": 30314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c09f39f4a27c754ade989a87c18b3b3341aaed53" + }, + { + "path": "png/prime-video-alt-dark.png", + "mode": "100644", + "type": "blob", + "sha": "08fd9927b6023441608636d65b2c96f1d0ba1a89", + "size": 12463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08fd9927b6023441608636d65b2c96f1d0ba1a89" + }, + { + "path": "png/prime-video-alt.png", + "mode": "100644", + "type": "blob", + "sha": "797c1738a45e6248a7a64fea6c1d1b00b9340382", + "size": 12463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/797c1738a45e6248a7a64fea6c1d1b00b9340382" + }, + { + "path": "png/prime-video-light.png", + "mode": "100644", + "type": "blob", + "sha": "4f58c6cc109b3a82bce4df7fa88c58c3cffc179d", + "size": 52523, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f58c6cc109b3a82bce4df7fa88c58c3cffc179d" + }, + { + "path": "png/prime-video.png", + "mode": "100644", + "type": "blob", + "sha": "7bb47351e2b5ea619e2f82baf6b01b69c953e4cc", + "size": 53534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bb47351e2b5ea619e2f82baf6b01b69c953e4cc" + }, + { + "path": "png/printables.png", + "mode": "100644", + "type": "blob", + "sha": "eb9d2384d8b7dec9a58fac65ac83f5d00b72b34a", + "size": 3637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb9d2384d8b7dec9a58fac65ac83f5d00b72b34a" + }, + { + "path": "png/printer.png", + "mode": "100644", + "type": "blob", + "sha": "c7a5be068d68cb2d4f1ffee8d5ff8ed1d8b79270", + "size": 23151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7a5be068d68cb2d4f1ffee8d5ff8ed1d8b79270" + }, + { + "path": "png/pritunl.png", + "mode": "100644", + "type": "blob", + "sha": "910886aaedb8e24c910f54911845b24c52214811", + "size": 13253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/910886aaedb8e24c910f54911845b24c52214811" + }, + { + "path": "png/privacyidea.png", + "mode": "100644", + "type": "blob", + "sha": "a827edadffc5ccff90efd918c61a1716679f0a17", + "size": 26376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a827edadffc5ccff90efd918c61a1716679f0a17" + }, + { + "path": "png/private-internet-access.png", + "mode": "100644", + "type": "blob", + "sha": "28571bddabfc7c574125e1f7cc2afb227c75bdca", + "size": 21359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28571bddabfc7c574125e1f7cc2afb227c75bdca" + }, + { + "path": "png/privatebin.png", + "mode": "100644", + "type": "blob", + "sha": "535085022191e2aa0ed4ad1f2d693fdab81e33dc", + "size": 30228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/535085022191e2aa0ed4ad1f2d693fdab81e33dc" + }, + { + "path": "png/profilarr.png", + "mode": "100644", + "type": "blob", + "sha": "b8dd6758d6beb07abb99f37f6973206d040ad27d", + "size": 9652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8dd6758d6beb07abb99f37f6973206d040ad27d" + }, + { + "path": "png/projection-lab.png", + "mode": "100644", + "type": "blob", + "sha": "537c5d2496b96ead24da9c823709a97eca14e924", + "size": 38315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/537c5d2496b96ead24da9c823709a97eca14e924" + }, + { + "path": "png/projectsend.png", + "mode": "100644", + "type": "blob", + "sha": "eb3ef34085990e42a5e641a8d05eff128ebd9056", + "size": 33534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb3ef34085990e42a5e641a8d05eff128ebd9056" + }, + { + "path": "png/prometheus.png", + "mode": "100644", + "type": "blob", + "sha": "d9790fe1c410f8228dea80eccaba8282b5e7cb70", + "size": 22999, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9790fe1c410f8228dea80eccaba8282b5e7cb70" + }, + { + "path": "png/proton-calendar.png", + "mode": "100644", + "type": "blob", + "sha": "886ff6e3cd38d5fde58135bdb9f07979583e5c83", + "size": 41769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/886ff6e3cd38d5fde58135bdb9f07979583e5c83" + }, + { + "path": "png/proton-docs.png", + "mode": "100644", + "type": "blob", + "sha": "0131c572c9f4254b48ddfd3a3d9d51f39a72b9fd", + "size": 19015, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0131c572c9f4254b48ddfd3a3d9d51f39a72b9fd" + }, + { + "path": "png/proton-drive.png", + "mode": "100644", + "type": "blob", + "sha": "c51cd6fb5f3ca4724a46a2257dbf2a0af7b3a1ca", + "size": 60679, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c51cd6fb5f3ca4724a46a2257dbf2a0af7b3a1ca" + }, + { + "path": "png/proton-lumo.png", + "mode": "100644", + "type": "blob", + "sha": "a03f2d583993791d64148a7600a688f30519218a", + "size": 24221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a03f2d583993791d64148a7600a688f30519218a" + }, + { + "path": "png/proton-mail.png", + "mode": "100644", + "type": "blob", + "sha": "3729f04ff5458ce496e56422d94561670e493733", + "size": 29916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3729f04ff5458ce496e56422d94561670e493733" + }, + { + "path": "png/proton-pass.png", + "mode": "100644", + "type": "blob", + "sha": "839bb95ad10bde50eafd77397fa713558aaa7cb9", + "size": 59676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/839bb95ad10bde50eafd77397fa713558aaa7cb9" + }, + { + "path": "png/proton-vpn.png", + "mode": "100644", + "type": "blob", + "sha": "e7aa54566bc0c5efc4f1d26885977807a29fc1c1", + "size": 45293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7aa54566bc0c5efc4f1d26885977807a29fc1c1" + }, + { + "path": "png/proton-wallet.png", + "mode": "100644", + "type": "blob", + "sha": "43fbdb0458011b6b8d9f37899c22c73548ffab23", + "size": 118104, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43fbdb0458011b6b8d9f37899c22c73548ffab23" + }, + { + "path": "png/prowlarr.png", + "mode": "100644", + "type": "blob", + "sha": "c2d5a02075e5a8d99c97022a3a70378c96188123", + "size": 56163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2d5a02075e5a8d99c97022a3a70378c96188123" + }, + { + "path": "png/proxmox-light.png", + "mode": "100644", + "type": "blob", + "sha": "6fdbec751d291f495bbf1820fc3770e39b8bc7f8", + "size": 30281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fdbec751d291f495bbf1820fc3770e39b8bc7f8" + }, + { + "path": "png/proxmox.png", + "mode": "100644", + "type": "blob", + "sha": "f6619f726796a4a5abcb68e4ca3312dd395e4787", + "size": 28299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6619f726796a4a5abcb68e4ca3312dd395e4787" + }, + { + "path": "png/prtg.png", + "mode": "100644", + "type": "blob", + "sha": "85fb3f89b000b4fbd1129ceccc9d7920325b3880", + "size": 27684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85fb3f89b000b4fbd1129ceccc9d7920325b3880" + }, + { + "path": "png/prusa-research.png", + "mode": "100644", + "type": "blob", + "sha": "1c3640fc808dd917e23c01c62434556e4d62db92", + "size": 34520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c3640fc808dd917e23c01c62434556e4d62db92" + }, + { + "path": "png/psitransfer.png", + "mode": "100644", + "type": "blob", + "sha": "a486c8ae9b2cab1a3001fe71221e884ca74eac2d", + "size": 1132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a486c8ae9b2cab1a3001fe71221e884ca74eac2d" + }, + { + "path": "png/pterodactyl.png", + "mode": "100644", + "type": "blob", + "sha": "2111230e52c8cfc5ae69399dbe26c2b1c4afd852", + "size": 43604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2111230e52c8cfc5ae69399dbe26c2b1c4afd852" + }, + { + "path": "png/public-pool.png", + "mode": "100644", + "type": "blob", + "sha": "9b07e48f11a73dfc7c18b5cbf024c57b985511de", + "size": 68388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b07e48f11a73dfc7c18b5cbf024c57b985511de" + }, + { + "path": "png/pufferpanel.png", + "mode": "100644", + "type": "blob", + "sha": "4934d8cc59a8d38877447d44119de3010ee7cb58", + "size": 23855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4934d8cc59a8d38877447d44119de3010ee7cb58" + }, + { + "path": "png/pulsarr.png", + "mode": "100644", + "type": "blob", + "sha": "080e6fd1ba47c4bdec01c615d75207528a013302", + "size": 31912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/080e6fd1ba47c4bdec01c615d75207528a013302" + }, + { + "path": "png/pulse.png", + "mode": "100644", + "type": "blob", + "sha": "9afbb87f184faae309a674293e39d52bac217037", + "size": 13841, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9afbb87f184faae309a674293e39d52bac217037" + }, + { + "path": "png/purelymail.png", + "mode": "100644", + "type": "blob", + "sha": "9b8303c1b037aef70ef8ed1fddc84eb5971d5878", + "size": 45121, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b8303c1b037aef70ef8ed1fddc84eb5971d5878" + }, + { + "path": "png/pushfish.png", + "mode": "100644", + "type": "blob", + "sha": "93fa49c6806fe4e392e389e7bd444db7dbb3b8a4", + "size": 15059, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93fa49c6806fe4e392e389e7bd444db7dbb3b8a4" + }, + { + "path": "png/pushover.png", + "mode": "100644", + "type": "blob", + "sha": "dab9bf0d2ca93685ef9b099c21dd00ad8c16a7d4", + "size": 23525, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dab9bf0d2ca93685ef9b099c21dd00ad8c16a7d4" + }, + { + "path": "png/putty.png", + "mode": "100644", + "type": "blob", + "sha": "c321f90350eca48ed1918b64a59a0b991883cbb9", + "size": 20153, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c321f90350eca48ed1918b64a59a0b991883cbb9" + }, + { + "path": "png/pve-scripts-local.png", + "mode": "100644", + "type": "blob", + "sha": "0441b124e556a6fdeefbcd6a349a1cb79e03b5d4", + "size": 50677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0441b124e556a6fdeefbcd6a349a1cb79e03b5d4" + }, + { + "path": "png/pwndrop-light.png", + "mode": "100644", + "type": "blob", + "sha": "da62dc6123605a9c578fabdef471af3bd83a600a", + "size": 5034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da62dc6123605a9c578fabdef471af3bd83a600a" + }, + { + "path": "png/pwndrop.png", + "mode": "100644", + "type": "blob", + "sha": "dc726238509741e481d4a0988b016d426de25cb9", + "size": 4841, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc726238509741e481d4a0988b016d426de25cb9" + }, + { + "path": "png/pwpush-light.png", + "mode": "100644", + "type": "blob", + "sha": "4c0975451312d440514dcf5b0013052412c943b0", + "size": 10181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c0975451312d440514dcf5b0013052412c943b0" + }, + { + "path": "png/pwpush.png", + "mode": "100644", + "type": "blob", + "sha": "eddc1014c27d0cd1c281c2bf1ea3b8aeb0f3d2bf", + "size": 8929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eddc1014c27d0cd1c281c2bf1ea3b8aeb0f3d2bf" + }, + { + "path": "png/pydio.png", + "mode": "100644", + "type": "blob", + "sha": "c10151ac1ab92bac79c506970d46b2bc1596fe14", + "size": 21644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c10151ac1ab92bac79c506970d46b2bc1596fe14" + }, + { + "path": "png/pyload.png", + "mode": "100644", + "type": "blob", + "sha": "00ce24fa91d431631533085d47c12959b467189c", + "size": 24430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00ce24fa91d431631533085d47c12959b467189c" + }, + { + "path": "png/python.png", + "mode": "100644", + "type": "blob", + "sha": "dbf18475667037a7ed41d9a46bb02267621dddc3", + "size": 36164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbf18475667037a7ed41d9a46bb02267621dddc3" + }, + { + "path": "png/qbittorrent.png", + "mode": "100644", + "type": "blob", + "sha": "001149fb168e3ef76e07c7286e8843ed7e02e389", + "size": 59717, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/001149fb168e3ef76e07c7286e8843ed7e02e389" + }, + { + "path": "png/qd-today.png", + "mode": "100644", + "type": "blob", + "sha": "cb6c4ae0c0b9a0f46d2903cb7190e6ed43be25ac", + "size": 12762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb6c4ae0c0b9a0f46d2903cb7190e6ed43be25ac" + }, + { + "path": "png/qdirstat.png", + "mode": "100644", + "type": "blob", + "sha": "6cc55ba41454ab4d4cee7973b5dafb692be9e7a7", + "size": 21458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cc55ba41454ab4d4cee7973b5dafb692be9e7a7" + }, + { + "path": "png/qdrant.png", + "mode": "100644", + "type": "blob", + "sha": "3f2b0de1cab8fbc9a59f650d99a74ce5b31893ca", + "size": 13281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f2b0de1cab8fbc9a59f650d99a74ce5b31893ca" + }, + { + "path": "png/qinglong.png", + "mode": "100644", + "type": "blob", + "sha": "9f467025ce5c9adf82c214f4b3b524d1c9047609", + "size": 97784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f467025ce5c9adf82c214f4b3b524d1c9047609" + }, + { + "path": "png/qnap.png", + "mode": "100644", + "type": "blob", + "sha": "23ae0ad0b6bafbf8d28843194408cfc8290111ba", + "size": 19851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23ae0ad0b6bafbf8d28843194408cfc8290111ba" + }, + { + "path": "png/quant-ux.png", + "mode": "100644", + "type": "blob", + "sha": "fe48260681aa707fd9cba4768578af0550eadc4b", + "size": 8476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe48260681aa707fd9cba4768578af0550eadc4b" + }, + { + "path": "png/quay.png", + "mode": "100644", + "type": "blob", + "sha": "84694f4be2763aecbc8340d74df0f9a0c113d9ad", + "size": 22764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84694f4be2763aecbc8340d74df0f9a0c113d9ad" + }, + { + "path": "png/questdb.png", + "mode": "100644", + "type": "blob", + "sha": "f3936a0761bcf7795fbd96c1f067e91c04dae861", + "size": 38017, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3936a0761bcf7795fbd96c1f067e91c04dae861" + }, + { + "path": "png/quetre.png", + "mode": "100644", + "type": "blob", + "sha": "3ecd82d66139ea44fcd0aa8d391ee65a763df2e9", + "size": 25800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ecd82d66139ea44fcd0aa8d391ee65a763df2e9" + }, + { + "path": "png/qui.png", + "mode": "100644", + "type": "blob", + "sha": "05152b0a6f653e71033aa7d1434717e3fbb41b0f", + "size": 12032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05152b0a6f653e71033aa7d1434717e3fbb41b0f" + }, + { + "path": "png/quickshare.png", + "mode": "100644", + "type": "blob", + "sha": "b9b86837d00d83f6486a6ceee39d86499e8d45e4", + "size": 20166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9b86837d00d83f6486a6ceee39d86499e8d45e4" + }, + { + "path": "png/quickwit.png", + "mode": "100644", + "type": "blob", + "sha": "68fadb6abe77495eca585733e3b78fc9f61383f6", + "size": 12826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68fadb6abe77495eca585733e3b78fc9f61383f6" + }, + { + "path": "png/quizlet.png", + "mode": "100644", + "type": "blob", + "sha": "e7ffbd38918f506687b568f3584bbe00f6dc4b61", + "size": 19837, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7ffbd38918f506687b568f3584bbe00f6dc4b61" + }, + { + "path": "png/qutebrowser.png", + "mode": "100644", + "type": "blob", + "sha": "893e096b0d2d15b0949ff664c8ee83f5640b463b", + "size": 36833, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/893e096b0d2d15b0949ff664c8ee83f5640b463b" + }, + { + "path": "png/qwen.png", + "mode": "100644", + "type": "blob", + "sha": "5d311be1c2a41efda5c3694b470f24057631553b", + "size": 31661, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d311be1c2a41efda5c3694b470f24057631553b" + }, + { + "path": "png/qwik.png", + "mode": "100644", + "type": "blob", + "sha": "22dcb9e1422a9a944bdada8a4b9cebc198d35c2d", + "size": 16382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22dcb9e1422a9a944bdada8a4b9cebc198d35c2d" + }, + { + "path": "png/r.png", + "mode": "100644", + "type": "blob", + "sha": "8bfabf2a9b697766ad2650569fd07d5cb480047b", + "size": 44111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bfabf2a9b697766ad2650569fd07d5cb480047b" + }, + { + "path": "png/rabbitmq.png", + "mode": "100644", + "type": "blob", + "sha": "23374841e2db9e19a568d5bc9474fcf53497793e", + "size": 5852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23374841e2db9e19a568d5bc9474fcf53497793e" + }, + { + "path": "png/racknerd-dark.png", + "mode": "100644", + "type": "blob", + "sha": "fe90871683ec4c1339fc4680e6d90ecd749e2798", + "size": 1378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe90871683ec4c1339fc4680e6d90ecd749e2798" + }, + { + "path": "png/racknerd.png", + "mode": "100644", + "type": "blob", + "sha": "3ba4eaf61e56543fa6d9b8a443699b1b714139f0", + "size": 1706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ba4eaf61e56543fa6d9b8a443699b1b714139f0" + }, + { + "path": "png/radarr-4k.png", + "mode": "100644", + "type": "blob", + "sha": "805c20d2ca2ab47c5fe2a785689ff7f66a39d693", + "size": 17014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/805c20d2ca2ab47c5fe2a785689ff7f66a39d693" + }, + { + "path": "png/radarr.png", + "mode": "100644", + "type": "blob", + "sha": "417f77fba965a26f6b46e529528a25bd0986acec", + "size": 23404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/417f77fba965a26f6b46e529528a25bd0986acec" + }, + { + "path": "png/radicale.png", + "mode": "100644", + "type": "blob", + "sha": "0d8b45d5badac065eae9ee44bfef44134a6a9197", + "size": 18444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d8b45d5badac065eae9ee44bfef44134a6a9197" + }, + { + "path": "png/rainloop.png", + "mode": "100644", + "type": "blob", + "sha": "2b5c15536b721ac0ac819aeefb49415068fdb8a2", + "size": 18646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b5c15536b721ac0ac819aeefb49415068fdb8a2" + }, + { + "path": "png/rallly.png", + "mode": "100644", + "type": "blob", + "sha": "f5c0681108b9bd46032971c107bcceab51484a21", + "size": 9367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5c0681108b9bd46032971c107bcceab51484a21" + }, + { + "path": "png/ramp-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4d74122387f84903fba1119ed0cf59b3b2e15822", + "size": 5990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d74122387f84903fba1119ed0cf59b3b2e15822" + }, + { + "path": "png/ramp.png", + "mode": "100644", + "type": "blob", + "sha": "fc6af5bc515b2d5fb101887b4f087252889a1859", + "size": 5990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc6af5bc515b2d5fb101887b4f087252889a1859" + }, + { + "path": "png/rancher.png", + "mode": "100644", + "type": "blob", + "sha": "97e925587568a1d7fb0969f591bded9f0ffcedbb", + "size": 15302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97e925587568a1d7fb0969f591bded9f0ffcedbb" + }, + { + "path": "png/raneto.png", + "mode": "100644", + "type": "blob", + "sha": "b0e8ba85c660b315d777da7c6e658b1f6e31e5cb", + "size": 54703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0e8ba85c660b315d777da7c6e658b1f6e31e5cb" + }, + { + "path": "png/raritan-light.png", + "mode": "100644", + "type": "blob", + "sha": "7356018983f3edbbaf132c7ba93dc8bb4e60a7da", + "size": 12873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7356018983f3edbbaf132c7ba93dc8bb4e60a7da" + }, + { + "path": "png/raritan.png", + "mode": "100644", + "type": "blob", + "sha": "3d41da1eea7d78073ca6ca672a27a560257a4091", + "size": 12523, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d41da1eea7d78073ca6ca672a27a560257a4091" + }, + { + "path": "png/raspberry-pi-light.png", + "mode": "100644", + "type": "blob", + "sha": "84e766f50a75b0d3ffd3f6ca7b4ee7ae6c800a73", + "size": 45908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84e766f50a75b0d3ffd3f6ca7b4ee7ae6c800a73" + }, + { + "path": "png/raspberry-pi.png", + "mode": "100644", + "type": "blob", + "sha": "6db052005f02350c195c6b2c7f4ae6dc81ce589e", + "size": 41564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6db052005f02350c195c6b2c7f4ae6dc81ce589e" + }, + { + "path": "png/raspberrymatic.png", + "mode": "100644", + "type": "blob", + "sha": "c9e367d8f71069f769301104266b8497481b5a2b", + "size": 5842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9e367d8f71069f769301104266b8497481b5a2b" + }, + { + "path": "png/rathole.png", + "mode": "100644", + "type": "blob", + "sha": "25744ff9b42eda99e5d823f919ad877cb26cbfb3", + "size": 16309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25744ff9b42eda99e5d823f919ad877cb26cbfb3" + }, + { + "path": "png/rclone.png", + "mode": "100644", + "type": "blob", + "sha": "a5f64cf7de0ace02d2c322193fce3370ecc41a0c", + "size": 26156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5f64cf7de0ace02d2c322193fce3370ecc41a0c" + }, + { + "path": "png/rdt-client.png", + "mode": "100644", + "type": "blob", + "sha": "231498416d36c56b2e6bbc8f9da71e3b133758be", + "size": 26734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/231498416d36c56b2e6bbc8f9da71e3b133758be" + }, + { + "path": "png/reactive-resume-light.png", + "mode": "100644", + "type": "blob", + "sha": "3717d244c421babd7b0e00636e6864ff1fcb3bde", + "size": 19442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3717d244c421babd7b0e00636e6864ff1fcb3bde" + }, + { + "path": "png/reactive-resume.png", + "mode": "100644", + "type": "blob", + "sha": "a0f42ceb62e17d462bc7b82c1fc407a0f15b8fac", + "size": 18075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0f42ceb62e17d462bc7b82c1fc407a0f15b8fac" + }, + { + "path": "png/reactjs.png", + "mode": "100644", + "type": "blob", + "sha": "cb42b036f4cd768dbe797df3b3a5aa8608ed4919", + "size": 27305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb42b036f4cd768dbe797df3b3a5aa8608ed4919" + }, + { + "path": "png/readarr.png", + "mode": "100644", + "type": "blob", + "sha": "c95c324171e35834b18b595834ac11ec2dda41a4", + "size": 59263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c95c324171e35834b18b595834ac11ec2dda41a4" + }, + { + "path": "png/readeck.png", + "mode": "100644", + "type": "blob", + "sha": "a9ff749b6ff30e699fb59003a1ea53fcf15e6ca0", + "size": 15329, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9ff749b6ff30e699fb59003a1ea53fcf15e6ca0" + }, + { + "path": "png/readthedocs-light.png", + "mode": "100644", + "type": "blob", + "sha": "e2f9ba8dabc2c17426ac661721488cf952de3073", + "size": 19364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2f9ba8dabc2c17426ac661721488cf952de3073" + }, + { + "path": "png/readthedocs.png", + "mode": "100644", + "type": "blob", + "sha": "a3493e1bc3c795f0d1bbe223fa1b95191da77a73", + "size": 20064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3493e1bc3c795f0d1bbe223fa1b95191da77a73" + }, + { + "path": "png/readwise-reader-dark.png", + "mode": "100644", + "type": "blob", + "sha": "db06a4929c48886ff2e40522a8dcf6528c42d5a1", + "size": 4086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db06a4929c48886ff2e40522a8dcf6528c42d5a1" + }, + { + "path": "png/readwise-reader.png", + "mode": "100644", + "type": "blob", + "sha": "ae5bd05ccc8734c3c82b1b8295ffcd86212041ac", + "size": 3282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae5bd05ccc8734c3c82b1b8295ffcd86212041ac" + }, + { + "path": "png/real-debrid.png", + "mode": "100644", + "type": "blob", + "sha": "231498416d36c56b2e6bbc8f9da71e3b133758be", + "size": 26734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/231498416d36c56b2e6bbc8f9da71e3b133758be" + }, + { + "path": "png/realhosting.png", + "mode": "100644", + "type": "blob", + "sha": "9e005084184528cdcf652f5d8ff5ab8a40ec8522", + "size": 12333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e005084184528cdcf652f5d8ff5ab8a40ec8522" + }, + { + "path": "png/recalbox.png", + "mode": "100644", + "type": "blob", + "sha": "b8056f2b9d1e41dc818086940684c47c748986a1", + "size": 20336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8056f2b9d1e41dc818086940684c47c748986a1" + }, + { + "path": "png/receipt-wrangler.png", + "mode": "100644", + "type": "blob", + "sha": "71096e1d3e25d7bc34dce9b524b9a822deb023e5", + "size": 11670, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71096e1d3e25d7bc34dce9b524b9a822deb023e5" + }, + { + "path": "png/recipesage.png", + "mode": "100644", + "type": "blob", + "sha": "cf26398a0b92e5110e8a55fcb915c4786e01dff3", + "size": 24829, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf26398a0b92e5110e8a55fcb915c4786e01dff3" + }, + { + "path": "png/recipya.png", + "mode": "100644", + "type": "blob", + "sha": "6bbf7f5f6c52bd28ba85a8ed6153df7f3a94f028", + "size": 193163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bbf7f5f6c52bd28ba85a8ed6153df7f3a94f028" + }, + { + "path": "png/recomendarr.png", + "mode": "100644", + "type": "blob", + "sha": "427e3360e4cc1b3f39fcb74069a67a63910403de", + "size": 122188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/427e3360e4cc1b3f39fcb74069a67a63910403de" + }, + { + "path": "png/recyclarr.png", + "mode": "100644", + "type": "blob", + "sha": "4ec399c013a1b8a84f229cee9eaba2194b25fe24", + "size": 15047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ec399c013a1b8a84f229cee9eaba2194b25fe24" + }, + { + "path": "png/reddit.png", + "mode": "100644", + "type": "blob", + "sha": "69ba3e9326be520134c7073cba3071f3f47e7a70", + "size": 22054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69ba3e9326be520134c7073cba3071f3f47e7a70" + }, + { + "path": "png/redhat-linux.png", + "mode": "100644", + "type": "blob", + "sha": "0288f4ddbada75051eeb316c5c65869a5f190703", + "size": 14108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0288f4ddbada75051eeb316c5c65869a5f190703" + }, + { + "path": "png/redict.png", + "mode": "100644", + "type": "blob", + "sha": "cebf8c32c7e7707243ce5b1151966a65b01b89bb", + "size": 15241, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cebf8c32c7e7707243ce5b1151966a65b01b89bb" + }, + { + "path": "png/redis.png", + "mode": "100644", + "type": "blob", + "sha": "90d92c1e12975d68ea83052227ee7025d4a7621e", + "size": 31994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90d92c1e12975d68ea83052227ee7025d4a7621e" + }, + { + "path": "png/redlib-light.png", + "mode": "100644", + "type": "blob", + "sha": "4e6deb56c22b360c018ebe2719cec221cecc8743", + "size": 12443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e6deb56c22b360c018ebe2719cec221cecc8743" + }, + { + "path": "png/redlib.png", + "mode": "100644", + "type": "blob", + "sha": "4285e0a8256cf298fab3dce6de6626a8dcb355d7", + "size": 12997, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4285e0a8256cf298fab3dce6de6626a8dcb355d7" + }, + { + "path": "png/redmine.png", + "mode": "100644", + "type": "blob", + "sha": "049019db2e58f68a43737cbc5cf352c25ae294eb", + "size": 18181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/049019db2e58f68a43737cbc5cf352c25ae294eb" + }, + { + "path": "png/rekor.png", + "mode": "100644", + "type": "blob", + "sha": "054652bdb3f67e4b573dd43ac415d0c9de93eb43", + "size": 38081, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/054652bdb3f67e4b573dd43ac415d0c9de93eb43" + }, + { + "path": "png/release-argus.png", + "mode": "100644", + "type": "blob", + "sha": "4d52599e778427604684e0d859349fd07a089bd3", + "size": 18395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d52599e778427604684e0d859349fd07a089bd3" + }, + { + "path": "png/remmina.png", + "mode": "100644", + "type": "blob", + "sha": "dc8717c398a3efbf13a707fc1013703249452a25", + "size": 50940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc8717c398a3efbf13a707fc1013703249452a25" + }, + { + "path": "png/remnawave.png", + "mode": "100644", + "type": "blob", + "sha": "028f6c66b35dee235a7eafb36a742f99851cfae9", + "size": 17559, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/028f6c66b35dee235a7eafb36a742f99851cfae9" + }, + { + "path": "png/remnote.png", + "mode": "100644", + "type": "blob", + "sha": "84a50f4044286c170027f014c4658befe9719f68", + "size": 5214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84a50f4044286c170027f014c4658befe9719f68" + }, + { + "path": "png/remotely.png", + "mode": "100644", + "type": "blob", + "sha": "46ea1a0af93532bd8e57abd70abd702a452496c0", + "size": 1116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46ea1a0af93532bd8e57abd70abd702a452496c0" + }, + { + "path": "png/renovate.png", + "mode": "100644", + "type": "blob", + "sha": "d86efa0cbde9466d6ef3b1311a9176246565c791", + "size": 31317, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d86efa0cbde9466d6ef3b1311a9176246565c791" + }, + { + "path": "png/reolink.png", + "mode": "100644", + "type": "blob", + "sha": "c5b263954c6990cfb3241646ac9541c1a648e312", + "size": 20162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5b263954c6990cfb3241646ac9541c1a648e312" + }, + { + "path": "png/reposilite-dark.png", + "mode": "100644", + "type": "blob", + "sha": "284c2a1717a2003e90bb05ade47bf572f06682f5", + "size": 18189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/284c2a1717a2003e90bb05ade47bf572f06682f5" + }, + { + "path": "png/reposilite.png", + "mode": "100644", + "type": "blob", + "sha": "7873b437b72e429f029d916710b6574eb5e11ccb", + "size": 21593, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7873b437b72e429f029d916710b6574eb5e11ccb" + }, + { + "path": "png/requestly.png", + "mode": "100644", + "type": "blob", + "sha": "b74e5c3bda429fd378bdedbec6b2cc368c502c02", + "size": 33826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b74e5c3bda429fd378bdedbec6b2cc368c502c02" + }, + { + "path": "png/requestrr.png", + "mode": "100644", + "type": "blob", + "sha": "ed15dbc008cba55bb6b31a8722b3051ee24a7974", + "size": 46564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed15dbc008cba55bb6b31a8722b3051ee24a7974" + }, + { + "path": "png/resiliosync-full-dark.png", + "mode": "100644", + "type": "blob", + "sha": "9c32106952cef6b5764a1c82f14d9d14e0978f7d", + "size": 32386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c32106952cef6b5764a1c82f14d9d14e0978f7d" + }, + { + "path": "png/resiliosync-full.png", + "mode": "100644", + "type": "blob", + "sha": "5b37fcaada2567c099ea0afe2bb5ae4140261cb0", + "size": 33803, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b37fcaada2567c099ea0afe2bb5ae4140261cb0" + }, + { + "path": "png/resiliosync.png", + "mode": "100644", + "type": "blob", + "sha": "0bd20bdd2e2ffdc88432ff109796e21fd24165e2", + "size": 20275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bd20bdd2e2ffdc88432ff109796e21fd24165e2" + }, + { + "path": "png/restic.png", + "mode": "100644", + "type": "blob", + "sha": "951e1938cf9fc44f3224ff53e36d26076e7fd9db", + "size": 135581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/951e1938cf9fc44f3224ff53e36d26076e7fd9db" + }, + { + "path": "png/restreamer.png", + "mode": "100644", + "type": "blob", + "sha": "9b15411084a0049db61a59924a408957bff20b32", + "size": 19743, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b15411084a0049db61a59924a408957bff20b32" + }, + { + "path": "png/retrom.png", + "mode": "100644", + "type": "blob", + "sha": "e74d576d4f564ed4a29964193ac1a56589d4f65b", + "size": 41581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e74d576d4f564ed4a29964193ac1a56589d4f65b" + }, + { + "path": "png/revanced-manager.png", + "mode": "100644", + "type": "blob", + "sha": "3f93fdd6e812927e38eea3e1a1c11182a1363acf", + "size": 26187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f93fdd6e812927e38eea3e1a1c11182a1363acf" + }, + { + "path": "png/revolt-light.png", + "mode": "100644", + "type": "blob", + "sha": "f880f6b77e8efbcaf405933cf57c298eb69418d3", + "size": 9931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f880f6b77e8efbcaf405933cf57c298eb69418d3" + }, + { + "path": "png/revolt.png", + "mode": "100644", + "type": "blob", + "sha": "6bb6287211b96b407edfc825f9cc45124272aa1a", + "size": 11432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bb6287211b96b407edfc825f9cc45124272aa1a" + }, + { + "path": "png/rhasspy-dark.png", + "mode": "100644", + "type": "blob", + "sha": "bb00edda4fc0f15612cb6abbc41a6e2524ba32a4", + "size": 42177, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb00edda4fc0f15612cb6abbc41a6e2524ba32a4" + }, + { + "path": "png/rhasspy.png", + "mode": "100644", + "type": "blob", + "sha": "89df572d14461733b6738160fa8c2d33be1d706c", + "size": 39711, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89df572d14461733b6738160fa8c2d33be1d706c" + }, + { + "path": "png/rhodecode.png", + "mode": "100644", + "type": "blob", + "sha": "c515c15d2b52a720ddd5efc2fefe008a3802565a", + "size": 22298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c515c15d2b52a720ddd5efc2fefe008a3802565a" + }, + { + "path": "png/richy.png", + "mode": "100644", + "type": "blob", + "sha": "d805b93229b1f5c9255895ed8ce641b362de45d3", + "size": 21412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d805b93229b1f5c9255895ed8ce641b362de45d3" + }, + { + "path": "png/rimgo-light.png", + "mode": "100644", + "type": "blob", + "sha": "04afb625c7aa1f47f54f86cf8bc990f5e0faca0b", + "size": 5111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04afb625c7aa1f47f54f86cf8bc990f5e0faca0b" + }, + { + "path": "png/rimgo.png", + "mode": "100644", + "type": "blob", + "sha": "90ba9bf57dfd6b73a1426b24b31f3a6653188855", + "size": 5170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90ba9bf57dfd6b73a1426b24b31f3a6653188855" + }, + { + "path": "png/riot.png", + "mode": "100644", + "type": "blob", + "sha": "d49988d497fa9edf31f0c08a2174279fec70f7a7", + "size": 23552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d49988d497fa9edf31f0c08a2174279fec70f7a7" + }, + { + "path": "png/ripe.png", + "mode": "100644", + "type": "blob", + "sha": "ae0fc737e8f327bb119973a68d1544d5b88aa859", + "size": 78677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae0fc737e8f327bb119973a68d1544d5b88aa859" + }, + { + "path": "png/riverside-fm-light.png", + "mode": "100644", + "type": "blob", + "sha": "be0b4997420f60b74739dc7d753a9badc3fd530f", + "size": 12683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be0b4997420f60b74739dc7d753a9badc3fd530f" + }, + { + "path": "png/riverside-fm.png", + "mode": "100644", + "type": "blob", + "sha": "5f6d66e07a9fb8b757d8b13b26187aa6a58c73b9", + "size": 12983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f6d66e07a9fb8b757d8b13b26187aa6a58c73b9" + }, + { + "path": "png/robinhood.png", + "mode": "100644", + "type": "blob", + "sha": "d67221d6558aeff18cc02377df31b2b9122072b0", + "size": 8113, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d67221d6558aeff18cc02377df31b2b9122072b0" + }, + { + "path": "png/rocket-chat.png", + "mode": "100644", + "type": "blob", + "sha": "b32aeb0154efc739ecccba98a61e162c56fc9bf2", + "size": 27427, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b32aeb0154efc739ecccba98a61e162c56fc9bf2" + }, + { + "path": "png/rocky-linux.png", + "mode": "100644", + "type": "blob", + "sha": "66da31f136e9515baa3204c78888d646fff81c57", + "size": 14506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66da31f136e9515baa3204c78888d646fff81c57" + }, + { + "path": "png/romm.png", + "mode": "100644", + "type": "blob", + "sha": "87e98af36bf7446f52cb1b91100b871c5cdaa28a", + "size": 27747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87e98af36bf7446f52cb1b91100b871c5cdaa28a" + }, + { + "path": "png/rompya.png", + "mode": "100644", + "type": "blob", + "sha": "cb3d7ad8a42368f5ea229710451c8780e30450d3", + "size": 20944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb3d7ad8a42368f5ea229710451c8780e30450d3" + }, + { + "path": "png/rook.png", + "mode": "100644", + "type": "blob", + "sha": "fd7637c2f0023ffe4fd000ba867d2c822bfc1f39", + "size": 7697, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd7637c2f0023ffe4fd000ba867d2c822bfc1f39" + }, + { + "path": "png/root-me-dark.png", + "mode": "100644", + "type": "blob", + "sha": "a6e91b5c7138c37c9eae6a8f7f39efa3029bfe44", + "size": 18126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6e91b5c7138c37c9eae6a8f7f39efa3029bfe44" + }, + { + "path": "png/root-me.png", + "mode": "100644", + "type": "blob", + "sha": "2a741c8550fd6a8a9383ed53b072c205dbe09dbe", + "size": 17427, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a741c8550fd6a8a9383ed53b072c205dbe09dbe" + }, + { + "path": "png/rotki.png", + "mode": "100644", + "type": "blob", + "sha": "4d097d3e8f8a24e67b6ef1d13a8870a6efc623cf", + "size": 41221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d097d3e8f8a24e67b6ef1d13a8870a6efc623cf" + }, + { + "path": "png/roundcube.png", + "mode": "100644", + "type": "blob", + "sha": "f001ef64543718755659fcc6c4adc21749dc371a", + "size": 18658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f001ef64543718755659fcc6c4adc21749dc371a" + }, + { + "path": "png/router.png", + "mode": "100644", + "type": "blob", + "sha": "f46a09d4c1f36836afaaba6768da217fa43dd769", + "size": 32261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f46a09d4c1f36836afaaba6768da217fa43dd769" + }, + { + "path": "png/rozetkaua.png", + "mode": "100644", + "type": "blob", + "sha": "de441a2de0d8806b0b29df5bfa73cf3702ef3cf9", + "size": 9889, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de441a2de0d8806b0b29df5bfa73cf3702ef3cf9" + }, + { + "path": "png/rpi-monitor.png", + "mode": "100644", + "type": "blob", + "sha": "c9539da455baab98e176b114d9075aeccff8e149", + "size": 38025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9539da455baab98e176b114d9075aeccff8e149" + }, + { + "path": "png/rport.png", + "mode": "100644", + "type": "blob", + "sha": "e5d2ca5e1a96a597a3dce3843bc0d939db70d6ee", + "size": 12851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5d2ca5e1a96a597a3dce3843bc0d939db70d6ee" + }, + { + "path": "png/rspamd.png", + "mode": "100644", + "type": "blob", + "sha": "81b1233b54ce47e0a4c6f181b7d758fbbed958e2", + "size": 8327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81b1233b54ce47e0a4c6f181b7d758fbbed958e2" + }, + { + "path": "png/rss-bridge.png", + "mode": "100644", + "type": "blob", + "sha": "59a251b45ef8f867e01f10d2b286ddff816b834b", + "size": 15927, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59a251b45ef8f867e01f10d2b286ddff816b834b" + }, + { + "path": "png/rss-translator.png", + "mode": "100644", + "type": "blob", + "sha": "2263a306c4d8042f1e508ca8cf1e040b1461b169", + "size": 16903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2263a306c4d8042f1e508ca8cf1e040b1461b169" + }, + { + "path": "png/rsshub.png", + "mode": "100644", + "type": "blob", + "sha": "15ba763d67f9ab196fb9d31d912ed8a5b0f5c28b", + "size": 12330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15ba763d67f9ab196fb9d31d912ed8a5b0f5c28b" + }, + { + "path": "png/rstudio.png", + "mode": "100644", + "type": "blob", + "sha": "695659b3e45fe455f461f54293c02969f1d8ad62", + "size": 21812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/695659b3e45fe455f461f54293c02969f1d8ad62" + }, + { + "path": "png/rstudioserver.png", + "mode": "100644", + "type": "blob", + "sha": "695659b3e45fe455f461f54293c02969f1d8ad62", + "size": 21812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/695659b3e45fe455f461f54293c02969f1d8ad62" + }, + { + "path": "png/ruby.png", + "mode": "100644", + "type": "blob", + "sha": "3cd889863273960e07fdf0e3f0da3906a5c7a657", + "size": 73476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cd889863273960e07fdf0e3f0da3906a5c7a657" + }, + { + "path": "png/ruckus-unleashed.png", + "mode": "100644", + "type": "blob", + "sha": "b718b91189c3e47435cd2b8a2ade348c62d6e014", + "size": 36289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b718b91189c3e47435cd2b8a2ade348c62d6e014" + }, + { + "path": "png/rumble.png", + "mode": "100644", + "type": "blob", + "sha": "1f6b2b05367313a142e3b788d1b7bbdc043697c3", + "size": 16881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f6b2b05367313a142e3b788d1b7bbdc043697c3" + }, + { + "path": "png/rundeck.png", + "mode": "100644", + "type": "blob", + "sha": "ef9738d8d89c1c510f34f74a18e25390bb8eb7b3", + "size": 5773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef9738d8d89c1c510f34f74a18e25390bb8eb7b3" + }, + { + "path": "png/runeaudio.png", + "mode": "100644", + "type": "blob", + "sha": "07aa69e60f5171f34880949b303034523f5bb26f", + "size": 4841, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07aa69e60f5171f34880949b303034523f5bb26f" + }, + { + "path": "png/runonflux.png", + "mode": "100644", + "type": "blob", + "sha": "55d4cf9259930c28a133f50e9488c694c3030be9", + "size": 24091, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55d4cf9259930c28a133f50e9488c694c3030be9" + }, + { + "path": "png/runson-light.png", + "mode": "100644", + "type": "blob", + "sha": "8afb067e134693d7aa8815f80c87e26506ce7d3b", + "size": 49607, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8afb067e134693d7aa8815f80c87e26506ce7d3b" + }, + { + "path": "png/runson.png", + "mode": "100644", + "type": "blob", + "sha": "bc4b2751c0286d63763a86c877bc44ea10fba123", + "size": 33381, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc4b2751c0286d63763a86c877bc44ea10fba123" + }, + { + "path": "png/rust-dark.png", + "mode": "100644", + "type": "blob", + "sha": "740b7d3e2c749d45e2ad4c5e4348a295c8183370", + "size": 11721, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/740b7d3e2c749d45e2ad4c5e4348a295c8183370" + }, + { + "path": "png/rust.png", + "mode": "100644", + "type": "blob", + "sha": "6033f909c79248ab37bf2c872689e957284481dd", + "size": 11721, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6033f909c79248ab37bf2c872689e957284481dd" + }, + { + "path": "png/rustdesk.png", + "mode": "100644", + "type": "blob", + "sha": "e0bee01d03a20e5195aace38a8454eb75742c628", + "size": 12696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0bee01d03a20e5195aace38a8454eb75742c628" + }, + { + "path": "png/rutorrent.png", + "mode": "100644", + "type": "blob", + "sha": "fecdf6fd3d506b3415a53affede5b6e74e729a4c", + "size": 36555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fecdf6fd3d506b3415a53affede5b6e74e729a4c" + }, + { + "path": "png/ryot-light.png", + "mode": "100644", + "type": "blob", + "sha": "374a414af0bd6fcdb2494bd86b3d80ed58653e37", + "size": 28664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/374a414af0bd6fcdb2494bd86b3d80ed58653e37" + }, + { + "path": "png/ryot.png", + "mode": "100644", + "type": "blob", + "sha": "feeec8cd690c8a4aef6a5487a913a9f42471037f", + "size": 24670, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/feeec8cd690c8a4aef6a5487a913a9f42471037f" + }, + { + "path": "png/sabnzbd-light.png", + "mode": "100644", + "type": "blob", + "sha": "a276c7083bf338fda2611e629e65f544244a6799", + "size": 12815, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a276c7083bf338fda2611e629e65f544244a6799" + }, + { + "path": "png/sabnzbd.png", + "mode": "100644", + "type": "blob", + "sha": "c562e7799e20b4c78b243399f06e9e9f5652124d", + "size": 11447, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c562e7799e20b4c78b243399f06e9e9f5652124d" + }, + { + "path": "png/safari-ios.png", + "mode": "100644", + "type": "blob", + "sha": "77133a549cb7c2c39d658f67d2c94d63385f8953", + "size": 43969, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77133a549cb7c2c39d658f67d2c94d63385f8953" + }, + { + "path": "png/safari.png", + "mode": "100644", + "type": "blob", + "sha": "77133a549cb7c2c39d658f67d2c94d63385f8953", + "size": 43969, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77133a549cb7c2c39d658f67d2c94d63385f8953" + }, + { + "path": "png/safeline.png", + "mode": "100644", + "type": "blob", + "sha": "60f7b10502a9996e3c158f630e479da465971c8e", + "size": 21913, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60f7b10502a9996e3c158f630e479da465971c8e" + }, + { + "path": "png/sagemcom.png", + "mode": "100644", + "type": "blob", + "sha": "8e695ff534e0f013aec355bc726cf3a4690f480a", + "size": 38211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e695ff534e0f013aec355bc726cf3a4690f480a" + }, + { + "path": "png/salad.png", + "mode": "100644", + "type": "blob", + "sha": "3e392bb889db32fbc99a30bf6793c95b5cc314d9", + "size": 2823, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e392bb889db32fbc99a30bf6793c95b5cc314d9" + }, + { + "path": "png/salt-project.png", + "mode": "100644", + "type": "blob", + "sha": "5440b691b25e7801233e0d799b35911e97eec645", + "size": 2791, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5440b691b25e7801233e0d799b35911e97eec645" + }, + { + "path": "png/saltcorn.png", + "mode": "100644", + "type": "blob", + "sha": "45189f0c01efdb5eaa5dfaa75ef695c26a5929f6", + "size": 20893, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45189f0c01efdb5eaa5dfaa75ef695c26a5929f6" + }, + { + "path": "png/samba-server.png", + "mode": "100644", + "type": "blob", + "sha": "983e8c951e79d58a2dfb3c15f489d7d89f6353fe", + "size": 8101, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/983e8c951e79d58a2dfb3c15f489d7d89f6353fe" + }, + { + "path": "png/samsung-internet.png", + "mode": "100644", + "type": "blob", + "sha": "307c81b0846046de036ed19f3d7a02bff66bb83f", + "size": 22238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/307c81b0846046de036ed19f3d7a02bff66bb83f" + }, + { + "path": "png/sandstorm.png", + "mode": "100644", + "type": "blob", + "sha": "866aad3e9a6c5a87990746f57f032015a7837608", + "size": 13103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/866aad3e9a6c5a87990746f57f032015a7837608" + }, + { + "path": "png/satisfactory.png", + "mode": "100644", + "type": "blob", + "sha": "0aa8fd73ff2e5d76062d2a20b6d84abda3d0eb9d", + "size": 259340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0aa8fd73ff2e5d76062d2a20b6d84abda3d0eb9d" + }, + { + "path": "png/scanservjs.png", + "mode": "100644", + "type": "blob", + "sha": "75afdb4c31d60e4c1b09f0507c77f08500146c18", + "size": 17546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75afdb4c31d60e4c1b09f0507c77f08500146c18" + }, + { + "path": "png/schedulearn-dark.png", + "mode": "100644", + "type": "blob", + "sha": "a6bc6c5d89a887ccfba41236767f67ca884adc82", + "size": 32846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6bc6c5d89a887ccfba41236767f67ca884adc82" + }, + { + "path": "png/schedulearn.png", + "mode": "100644", + "type": "blob", + "sha": "b8087101989c95a2a0b996b0565f48197b50cbeb", + "size": 35432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8087101989c95a2a0b996b0565f48197b50cbeb" + }, + { + "path": "png/schneider.png", + "mode": "100644", + "type": "blob", + "sha": "253594f5d2eccfc6e14eb2107cb616560dcffe66", + "size": 5510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/253594f5d2eccfc6e14eb2107cb616560dcffe66" + }, + { + "path": "png/scraperr.png", + "mode": "100644", + "type": "blob", + "sha": "8fcf12db7b5f93f4be86ef610953285df22bd380", + "size": 34486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fcf12db7b5f93f4be86ef610953285df22bd380" + }, + { + "path": "png/scrcpy.png", + "mode": "100644", + "type": "blob", + "sha": "b2f8cd292a8c44802718f2a3a36dd0f4404acbd7", + "size": 13545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2f8cd292a8c44802718f2a3a36dd0f4404acbd7" + }, + { + "path": "png/screenconnect.png", + "mode": "100644", + "type": "blob", + "sha": "70d891b1780274df03fdf14d834c7e7bf8519f57", + "size": 2683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70d891b1780274df03fdf14d834c7e7bf8519f57" + }, + { + "path": "png/scrutiny-light.png", + "mode": "100644", + "type": "blob", + "sha": "686a7fb7cb576210244618dc63785ea4678322d1", + "size": 64832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/686a7fb7cb576210244618dc63785ea4678322d1" + }, + { + "path": "png/scrutiny.png", + "mode": "100644", + "type": "blob", + "sha": "f7d44e03d3955a195a2092150d8c2d56fcc41989", + "size": 66434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7d44e03d3955a195a2092150d8c2d56fcc41989" + }, + { + "path": "png/scrypted.png", + "mode": "100644", + "type": "blob", + "sha": "a26550bb8cbb85ddf8d0b824314193ef96455569", + "size": 73715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a26550bb8cbb85ddf8d0b824314193ef96455569" + }, + { + "path": "png/seafile.png", + "mode": "100644", + "type": "blob", + "sha": "69b10da8ab8a233f66f34dd62a3b8b33e0b69951", + "size": 27820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69b10da8ab8a233f66f34dd62a3b8b33e0b69951" + }, + { + "path": "png/searx.png", + "mode": "100644", + "type": "blob", + "sha": "bc2c8b4059b16e31f730f117a1f109813f36f28a", + "size": 41001, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc2c8b4059b16e31f730f117a1f109813f36f28a" + }, + { + "path": "png/searxng.png", + "mode": "100644", + "type": "blob", + "sha": "e2d8f6d0c01d7112b560b7c5074dfe7ab8cefc7e", + "size": 21609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2d8f6d0c01d7112b560b7c5074dfe7ab8cefc7e" + }, + { + "path": "png/secureai-tools-light.png", + "mode": "100644", + "type": "blob", + "sha": "a85852d8512242b7c7d193e92d1fbd9717d58485", + "size": 20195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a85852d8512242b7c7d193e92d1fbd9717d58485" + }, + { + "path": "png/secureai-tools.png", + "mode": "100644", + "type": "blob", + "sha": "346da1dd4a31d5e48864f236f282aa052a222194", + "size": 26796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/346da1dd4a31d5e48864f236f282aa052a222194" + }, + { + "path": "png/security-onion-dark.png", + "mode": "100644", + "type": "blob", + "sha": "fa80b3c60987f37157abd66ce71a9f5156c8ba5e", + "size": 23678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa80b3c60987f37157abd66ce71a9f5156c8ba5e" + }, + { + "path": "png/security-onion.png", + "mode": "100644", + "type": "blob", + "sha": "e9538e6dc888d5cb3ad685746945771cfef23b7a", + "size": 23618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9538e6dc888d5cb3ad685746945771cfef23b7a" + }, + { + "path": "png/seelf.png", + "mode": "100644", + "type": "blob", + "sha": "ae5bdfa53959af2bfbd890c98043f882ba25b276", + "size": 20254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae5bdfa53959af2bfbd890c98043f882ba25b276" + }, + { + "path": "png/selenium.png", + "mode": "100644", + "type": "blob", + "sha": "11784ab7d064d13d654000f75ef609267ed032ce", + "size": 7868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11784ab7d064d13d654000f75ef609267ed032ce" + }, + { + "path": "png/self-hosted-gateway.png", + "mode": "100644", + "type": "blob", + "sha": "ecf63fd32d20ea0849ddba0ef7bd6e99a319f005", + "size": 11990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecf63fd32d20ea0849ddba0ef7bd6e99a319f005" + }, + { + "path": "png/selfh-st-light.png", + "mode": "100644", + "type": "blob", + "sha": "992a38ca84c73cc50ea862ff528ff462ca5b2c13", + "size": 11394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/992a38ca84c73cc50ea862ff528ff462ca5b2c13" + }, + { + "path": "png/selfh-st.png", + "mode": "100644", + "type": "blob", + "sha": "93d0040bf6ebfccaf574acdf5dc5bed444d87b41", + "size": 11683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93d0040bf6ebfccaf574acdf5dc5bed444d87b41" + }, + { + "path": "png/selfhosted-light.png", + "mode": "100644", + "type": "blob", + "sha": "47410bb56d34433c13b374e67aab91c1f97bdf58", + "size": 6247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47410bb56d34433c13b374e67aab91c1f97bdf58" + }, + { + "path": "png/selfhosted.png", + "mode": "100644", + "type": "blob", + "sha": "5bfbf85e3ce86331f4cc3f43afa74d6f124d09ae", + "size": 6280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bfbf85e3ce86331f4cc3f43afa74d6f124d09ae" + }, + { + "path": "png/semaphore-dark.png", + "mode": "100644", + "type": "blob", + "sha": "04f4fe2ddd9552cff9c8136061c31106303cac1e", + "size": 19035, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04f4fe2ddd9552cff9c8136061c31106303cac1e" + }, + { + "path": "png/semaphore.png", + "mode": "100644", + "type": "blob", + "sha": "cd0188c4c21e89013c22b8bc3a150c259bce1026", + "size": 20030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd0188c4c21e89013c22b8bc3a150c259bce1026" + }, + { + "path": "png/send.png", + "mode": "100644", + "type": "blob", + "sha": "f1636aaacbe29bb77f6c2091ce7b598f1dd1a0fb", + "size": 20468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1636aaacbe29bb77f6c2091ce7b598f1dd1a0fb" + }, + { + "path": "png/sendgrid.png", + "mode": "100644", + "type": "blob", + "sha": "83520e4978f6ac0334b54f9f0af1da9b7262d082", + "size": 2386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83520e4978f6ac0334b54f9f0af1da9b7262d082" + }, + { + "path": "png/sendinblue.png", + "mode": "100644", + "type": "blob", + "sha": "e1ced6b3769a91925365ef001ebd2cef965909ab", + "size": 28311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1ced6b3769a91925365ef001ebd2cef965909ab" + }, + { + "path": "png/sensu.png", + "mode": "100644", + "type": "blob", + "sha": "bc7c9664eb3a786bbd88e653817dd64ba0c6a65d", + "size": 14084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc7c9664eb3a786bbd88e653817dd64ba0c6a65d" + }, + { + "path": "png/sentry-light.png", + "mode": "100644", + "type": "blob", + "sha": "a8749f3d2819a4e3a6eba4fd1bfc447bdb0232cd", + "size": 24739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8749f3d2819a4e3a6eba4fd1bfc447bdb0232cd" + }, + { + "path": "png/sentry.png", + "mode": "100644", + "type": "blob", + "sha": "009c64b93cee0678bb84bb75e5aa6305dcc3fe07", + "size": 19491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/009c64b93cee0678bb84bb75e5aa6305dcc3fe07" + }, + { + "path": "png/seq.png", + "mode": "100644", + "type": "blob", + "sha": "4f3e278cc28ef938f1714fa8b31429f9dd20998f", + "size": 3504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f3e278cc28ef938f1714fa8b31429f9dd20998f" + }, + { + "path": "png/series-troxide.png", + "mode": "100644", + "type": "blob", + "sha": "392877f73c07ba63851d09b919064edabfdd31a4", + "size": 28079, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/392877f73c07ba63851d09b919064edabfdd31a4" + }, + { + "path": "png/serpbear.png", + "mode": "100644", + "type": "blob", + "sha": "add5f875b68a6e5bbe1c17ccd981660c5a55482b", + "size": 6561, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/add5f875b68a6e5bbe1c17ccd981660c5a55482b" + }, + { + "path": "png/servarr-light.png", + "mode": "100644", + "type": "blob", + "sha": "18162cbbce2f3e0187108c4a8745e15cea156942", + "size": 49162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18162cbbce2f3e0187108c4a8745e15cea156942" + }, + { + "path": "png/servarr.png", + "mode": "100644", + "type": "blob", + "sha": "ddde70bb5fe3c84d0894decdfa98ccc46ba0df0a", + "size": 49633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddde70bb5fe3c84d0894decdfa98ccc46ba0df0a" + }, + { + "path": "png/serviio-light.png", + "mode": "100644", + "type": "blob", + "sha": "1df26be6a21ed2ad970bfef8c7b79638819be593", + "size": 15708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1df26be6a21ed2ad970bfef8c7b79638819be593" + }, + { + "path": "png/serviio.png", + "mode": "100644", + "type": "blob", + "sha": "2fb0de81b1f3611d8ef8cdf86412e510a8dfcf0f", + "size": 15463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fb0de81b1f3611d8ef8cdf86412e510a8dfcf0f" + }, + { + "path": "png/session.png", + "mode": "100644", + "type": "blob", + "sha": "59e0b611eae4b6571433df7344559c8004859e2b", + "size": 43868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59e0b611eae4b6571433df7344559c8004859e2b" + }, + { + "path": "png/seznam.png", + "mode": "100644", + "type": "blob", + "sha": "b696821c8ef1d0edafdf362aaddc52a60c30e040", + "size": 6188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b696821c8ef1d0edafdf362aaddc52a60c30e040" + }, + { + "path": "png/sftpgo.png", + "mode": "100644", + "type": "blob", + "sha": "25c14ea0004cac9ea564464dc20261e73c428b43", + "size": 26553, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25c14ea0004cac9ea564464dc20261e73c428b43" + }, + { + "path": "png/shaarli.png", + "mode": "100644", + "type": "blob", + "sha": "3439af96665b4aa8ff463c32ef5ecb964a9b4ca1", + "size": 34797, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3439af96665b4aa8ff463c32ef5ecb964a9b4ca1" + }, + { + "path": "png/shell-light.png", + "mode": "100644", + "type": "blob", + "sha": "a3675693af2ce5e20726e4969b435dad5b4d667a", + "size": 19961, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3675693af2ce5e20726e4969b435dad5b4d667a" + }, + { + "path": "png/shell-tips-light.png", + "mode": "100644", + "type": "blob", + "sha": "ecde0a65fc228c7e6dd4bcf874ba45d48cbbc6aa", + "size": 6887, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecde0a65fc228c7e6dd4bcf874ba45d48cbbc6aa" + }, + { + "path": "png/shell-tips.png", + "mode": "100644", + "type": "blob", + "sha": "8033c14b18bccd3b75fd5504621cd5005209d54b", + "size": 6578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8033c14b18bccd3b75fd5504621cd5005209d54b" + }, + { + "path": "png/shell.png", + "mode": "100644", + "type": "blob", + "sha": "8129c298d6dcbb318d3816f6c98bfbe5b9d6c309", + "size": 20824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8129c298d6dcbb318d3816f6c98bfbe5b9d6c309" + }, + { + "path": "png/shellhub.png", + "mode": "100644", + "type": "blob", + "sha": "be8ddd48f79ad60f740f3ee4b8db81a4473d1dab", + "size": 29596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be8ddd48f79ad60f740f3ee4b8db81a4473d1dab" + }, + { + "path": "png/shellngn.png", + "mode": "100644", + "type": "blob", + "sha": "7aed9d89149398f69e2a106cf1d37c701110f80b", + "size": 35517, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aed9d89149398f69e2a106cf1d37c701110f80b" + }, + { + "path": "png/shelly.png", + "mode": "100644", + "type": "blob", + "sha": "8bb82290114143a0ed87a0e054cfa23b1f5db521", + "size": 51872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bb82290114143a0ed87a0e054cfa23b1f5db521" + }, + { + "path": "png/shinkro.png", + "mode": "100644", + "type": "blob", + "sha": "23bc76beb80a4372772946f19519a2da11eb573d", + "size": 26225, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23bc76beb80a4372772946f19519a2da11eb573d" + }, + { + "path": "png/shinobi.png", + "mode": "100644", + "type": "blob", + "sha": "ada5f62f8d1a8f80fe02808d64f01f592448f8d3", + "size": 178437, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ada5f62f8d1a8f80fe02808d64f01f592448f8d3" + }, + { + "path": "png/shiori.png", + "mode": "100644", + "type": "blob", + "sha": "11f59fb6be309c19188b374794cd09c72a25c7a0", + "size": 20967, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11f59fb6be309c19188b374794cd09c72a25c7a0" + }, + { + "path": "png/shlink.png", + "mode": "100644", + "type": "blob", + "sha": "71d4046e4687c94c5f481b6c39bc7bcf9080e5f3", + "size": 23204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71d4046e4687c94c5f481b6c39bc7bcf9080e5f3" + }, + { + "path": "png/shoko-server.png", + "mode": "100644", + "type": "blob", + "sha": "a45d6ac780f7a3bbd5c2588274bcc74a775e8746", + "size": 33790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a45d6ac780f7a3bbd5c2588274bcc74a775e8746" + }, + { + "path": "png/shoko.png", + "mode": "100644", + "type": "blob", + "sha": "0bb5b10fed28b732f2ab62512b4669f8c6e247d3", + "size": 32398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bb5b10fed28b732f2ab62512b4669f8c6e247d3" + }, + { + "path": "png/shopify.png", + "mode": "100644", + "type": "blob", + "sha": "f9c37dea2bc9d02c8dbbecfc2945598dbdbf2bcf", + "size": 23581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9c37dea2bc9d02c8dbbecfc2945598dbdbf2bcf" + }, + { + "path": "png/shortcut.png", + "mode": "100644", + "type": "blob", + "sha": "b9493505c1e90509ba2792045034f66506499855", + "size": 12515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9493505c1e90509ba2792045034f66506499855" + }, + { + "path": "png/sickbeard.png", + "mode": "100644", + "type": "blob", + "sha": "6c81aa23ca76cd0e1c3429f4c58cc5c1cd44dc53", + "size": 68751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c81aa23ca76cd0e1c3429f4c58cc5c1cd44dc53" + }, + { + "path": "png/sickchill.png", + "mode": "100644", + "type": "blob", + "sha": "5b535e9485362151851a6d5a908efae14286a810", + "size": 13782, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b535e9485362151851a6d5a908efae14286a810" + }, + { + "path": "png/sickgear.png", + "mode": "100644", + "type": "blob", + "sha": "69c894f48a058f79476d271ae82bf31279b4ddaa", + "size": 13296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69c894f48a058f79476d271ae82bf31279b4ddaa" + }, + { + "path": "png/signal.png", + "mode": "100644", + "type": "blob", + "sha": "3511294ad76a6ca11eea0e5fe83b3a36f5c73f9a", + "size": 31967, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3511294ad76a6ca11eea0e5fe83b3a36f5c73f9a" + }, + { + "path": "png/signoz.png", + "mode": "100644", + "type": "blob", + "sha": "8576c498d0ff75c2decf8b456fe8db5b050cf5db", + "size": 31287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8576c498d0ff75c2decf8b456fe8db5b050cf5db" + }, + { + "path": "png/sigstore.png", + "mode": "100644", + "type": "blob", + "sha": "e5c23da0d9e7002b1757203d07fd53956b3bf46e", + "size": 34931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5c23da0d9e7002b1757203d07fd53956b3bf46e" + }, + { + "path": "png/silae.png", + "mode": "100644", + "type": "blob", + "sha": "74b27fdebf175a05c05fd29706a6bb28bcb8a595", + "size": 9960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74b27fdebf175a05c05fd29706a6bb28bcb8a595" + }, + { + "path": "png/silverbullet.png", + "mode": "100644", + "type": "blob", + "sha": "e5e33a69784afaecb2f66505e314471c95e02b61", + "size": 65220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5e33a69784afaecb2f66505e314471c95e02b61" + }, + { + "path": "png/simplelogin.png", + "mode": "100644", + "type": "blob", + "sha": "fc7f2a116c1878ceed35726262fa9664980001e4", + "size": 45284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc7f2a116c1878ceed35726262fa9664980001e4" + }, + { + "path": "png/simplex-chat.png", + "mode": "100644", + "type": "blob", + "sha": "70892f614f2d2841ac78fa233a60cc71bf11d315", + "size": 13444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70892f614f2d2841ac78fa233a60cc71bf11d315" + }, + { + "path": "png/sinusbot.png", + "mode": "100644", + "type": "blob", + "sha": "4cdc2711d04fdedb7816f4d0bb47e37cb4155183", + "size": 21886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cdc2711d04fdedb7816f4d0bb47e37cb4155183" + }, + { + "path": "png/sipeed.png", + "mode": "100644", + "type": "blob", + "sha": "1ef4c7dc3198c7f4efa94a9973132e2eaba79f58", + "size": 6549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ef4c7dc3198c7f4efa94a9973132e2eaba79f58" + }, + { + "path": "png/siyuan.png", + "mode": "100644", + "type": "blob", + "sha": "22aa85887f535d5b5b45776dc9cb54c2ac745f74", + "size": 6731, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22aa85887f535d5b5b45776dc9cb54c2ac745f74" + }, + { + "path": "png/sketchup-make.png", + "mode": "100644", + "type": "blob", + "sha": "509cf1467a1dd185176229470725bfb849a45516", + "size": 5526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/509cf1467a1dd185176229470725bfb849a45516" + }, + { + "path": "png/skylink-fibernet.png", + "mode": "100644", + "type": "blob", + "sha": "ef2eb1485df694afb2fd0bb080fc510f99d8a7c6", + "size": 3357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef2eb1485df694afb2fd0bb080fc510f99d8a7c6" + }, + { + "path": "png/skype.png", + "mode": "100644", + "type": "blob", + "sha": "82c548568035df48eabe3356d2a2466461613d18", + "size": 49678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82c548568035df48eabe3356d2a2466461613d18" + }, + { + "path": "png/slaanesh.png", + "mode": "100644", + "type": "blob", + "sha": "4ad34304586e1b4bf28076b23414bb9f2cc9b46c", + "size": 22255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ad34304586e1b4bf28076b23414bb9f2cc9b46c" + }, + { + "path": "png/slack.png", + "mode": "100644", + "type": "blob", + "sha": "285ade8cc46a0e7d173d9df2c5f08f3f3b16a298", + "size": 19235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/285ade8cc46a0e7d173d9df2c5f08f3f3b16a298" + }, + { + "path": "png/slash-light.png", + "mode": "100644", + "type": "blob", + "sha": "f57929d7a3261d5d0cab30cde1c112e7af27bc36", + "size": 20573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f57929d7a3261d5d0cab30cde1c112e7af27bc36" + }, + { + "path": "png/slash.png", + "mode": "100644", + "type": "blob", + "sha": "d353c00ddf795de8ef8cf05c31c570e46db5c399", + "size": 14764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d353c00ddf795de8ef8cf05c31c570e46db5c399" + }, + { + "path": "png/slice.png", + "mode": "100644", + "type": "blob", + "sha": "cedc5fcb93928aca41df557d02b319ab81b80ab6", + "size": 27568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cedc5fcb93928aca41df557d02b319ab81b80ab6" + }, + { + "path": "png/slidev.png", + "mode": "100644", + "type": "blob", + "sha": "2e5d72844e572a6983b51b8940726a8dbdb1bf8f", + "size": 35054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e5d72844e572a6983b51b8940726a8dbdb1bf8f" + }, + { + "path": "png/slink-light.png", + "mode": "100644", + "type": "blob", + "sha": "7c6cc45ddc4b26db5eb5ca68f8baf1e722fba1f6", + "size": 54492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c6cc45ddc4b26db5eb5ca68f8baf1e722fba1f6" + }, + { + "path": "png/slink.png", + "mode": "100644", + "type": "blob", + "sha": "b16a6898255888b9418ebad02b11cd6880c5aa60", + "size": 78414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b16a6898255888b9418ebad02b11cd6880c5aa60" + }, + { + "path": "png/slskd.png", + "mode": "100644", + "type": "blob", + "sha": "85da5d9cf59ca405c5ea0efacb7516b0bba78ba6", + "size": 24720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85da5d9cf59ca405c5ea0efacb7516b0bba78ba6" + }, + { + "path": "png/slurpit-dark.png", + "mode": "100644", + "type": "blob", + "sha": "75c76a35f21b5cd64484b31b751a0da0a5e43699", + "size": 23374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75c76a35f21b5cd64484b31b751a0da0a5e43699" + }, + { + "path": "png/slurpit.png", + "mode": "100644", + "type": "blob", + "sha": "ec936a3b9ecaecfa0eb723f9393111d03f012af2", + "size": 22533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec936a3b9ecaecfa0eb723f9393111d03f012af2" + }, + { + "path": "png/smartfox.png", + "mode": "100644", + "type": "blob", + "sha": "daebb00ca4a5bf6d7a75d3e29ddc45d23cce09d2", + "size": 25561, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/daebb00ca4a5bf6d7a75d3e29ddc45d23cce09d2" + }, + { + "path": "png/smlight.png", + "mode": "100644", + "type": "blob", + "sha": "5ed9167fb52ea840d40bed081fb289700c066587", + "size": 52640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ed9167fb52ea840d40bed081fb289700c066587" + }, + { + "path": "png/smokeping.png", + "mode": "100644", + "type": "blob", + "sha": "d483481ef1cfd1a2da17d9c68356085a3314ddd2", + "size": 7367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d483481ef1cfd1a2da17d9c68356085a3314ddd2" + }, + { + "path": "png/snapcast.png", + "mode": "100644", + "type": "blob", + "sha": "bd5bd9a297de6bf62ddde013bd321242e135eb4c", + "size": 31959, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd5bd9a297de6bf62ddde013bd321242e135eb4c" + }, + { + "path": "png/snapchat-dark.png", + "mode": "100644", + "type": "blob", + "sha": "25e1326a32791e370caa0eacf58319016f9f97c1", + "size": 22676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25e1326a32791e370caa0eacf58319016f9f97c1" + }, + { + "path": "png/snapchat.png", + "mode": "100644", + "type": "blob", + "sha": "8a72c6d4828d5fb9c1200998cbad92d75bcf5f00", + "size": 24170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a72c6d4828d5fb9c1200998cbad92d75bcf5f00" + }, + { + "path": "png/snapdrop.png", + "mode": "100644", + "type": "blob", + "sha": "85fd221104411b7071439b86eb71a891b3389963", + "size": 31784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85fd221104411b7071439b86eb71a891b3389963" + }, + { + "path": "png/snappymail-light.png", + "mode": "100644", + "type": "blob", + "sha": "7a52600d0fa783565805e454f236ed2aaea92e19", + "size": 11192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a52600d0fa783565805e454f236ed2aaea92e19" + }, + { + "path": "png/snappymail.png", + "mode": "100644", + "type": "blob", + "sha": "87217c3bf9d31fae00b3d480a2e6cfc92d49c04f", + "size": 9775, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87217c3bf9d31fae00b3d480a2e6cfc92d49c04f" + }, + { + "path": "png/snibox.png", + "mode": "100644", + "type": "blob", + "sha": "33f4f4cd2caa1ba71b4145c9a6c2f8109b7eb6e1", + "size": 6092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33f4f4cd2caa1ba71b4145c9a6c2f8109b7eb6e1" + }, + { + "path": "png/snikket.png", + "mode": "100644", + "type": "blob", + "sha": "c7eb0f71d5cf1446ccfdad716e95640184f378be", + "size": 35775, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7eb0f71d5cf1446ccfdad716e95640184f378be" + }, + { + "path": "png/snipe-it.png", + "mode": "100644", + "type": "blob", + "sha": "98446901d69bb78503214fff0e85d4207b397eb2", + "size": 41673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98446901d69bb78503214fff0e85d4207b397eb2" + }, + { + "path": "png/snippetbox.png", + "mode": "100644", + "type": "blob", + "sha": "e23b245fb0d93368f4f313b9c9c2e3947421ddb9", + "size": 9245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e23b245fb0d93368f4f313b9c9c2e3947421ddb9" + }, + { + "path": "png/socialhome.png", + "mode": "100644", + "type": "blob", + "sha": "2b89af1c28894ffa6c6e84e05ac5588eb1543bde", + "size": 7113, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b89af1c28894ffa6c6e84e05ac5588eb1543bde" + }, + { + "path": "png/sogo.png", + "mode": "100644", + "type": "blob", + "sha": "c409247f0b63f7a29087d119686ed075337aa5cf", + "size": 45459, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c409247f0b63f7a29087d119686ed075337aa5cf" + }, + { + "path": "png/solaar.png", + "mode": "100644", + "type": "blob", + "sha": "7549d374e9998965166ef289d3e33be43c303312", + "size": 30645, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7549d374e9998965166ef289d3e33be43c303312" + }, + { + "path": "png/solid-invoice.png", + "mode": "100644", + "type": "blob", + "sha": "65579e17692e3ef40ad452236203c688a8666701", + "size": 10385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65579e17692e3ef40ad452236203c688a8666701" + }, + { + "path": "png/solidtime-light.png", + "mode": "100644", + "type": "blob", + "sha": "19339af485426506eea8c3c87e2b9ef925284835", + "size": 13954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19339af485426506eea8c3c87e2b9ef925284835" + }, + { + "path": "png/solidtime.png", + "mode": "100644", + "type": "blob", + "sha": "fdd8d318b56ae68b517de692b0597684f06e1760", + "size": 12873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdd8d318b56ae68b517de692b0597684f06e1760" + }, + { + "path": "png/sonarqube.png", + "mode": "100644", + "type": "blob", + "sha": "0d1ada19915679128320b8195bae792a15871e13", + "size": 22201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d1ada19915679128320b8195bae792a15871e13" + }, + { + "path": "png/sonarr-4k.png", + "mode": "100644", + "type": "blob", + "sha": "ffd323c88b106c7fdd459d61f2e4fdf1545753d2", + "size": 24852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffd323c88b106c7fdd459d61f2e4fdf1545753d2" + }, + { + "path": "png/sonarr-dark.png", + "mode": "100644", + "type": "blob", + "sha": "2cf29761b2ced9c3cc2b3002ea506411e76d64f2", + "size": 33207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cf29761b2ced9c3cc2b3002ea506411e76d64f2" + }, + { + "path": "png/sonarr.png", + "mode": "100644", + "type": "blob", + "sha": "8e08f059bbed83e3a7ceef83ad99fcec0d5b500f", + "size": 33627, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e08f059bbed83e3a7ceef83ad99fcec0d5b500f" + }, + { + "path": "png/sophos-dark.png", + "mode": "100644", + "type": "blob", + "sha": "9e015dd5cd38f034a0bfcbfb1347c916717e1bfa", + "size": 20512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e015dd5cd38f034a0bfcbfb1347c916717e1bfa" + }, + { + "path": "png/sophos.png", + "mode": "100644", + "type": "blob", + "sha": "60bbcc8f93c83489cef150660da6f2f248001e43", + "size": 20816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60bbcc8f93c83489cef150660da6f2f248001e43" + }, + { + "path": "png/soulseek.png", + "mode": "100644", + "type": "blob", + "sha": "f0d4374eb5f9a9f3d30c7468cf698550207fd797", + "size": 65437, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0d4374eb5f9a9f3d30c7468cf698550207fd797" + }, + { + "path": "png/sourcegraph.png", + "mode": "100644", + "type": "blob", + "sha": "c8946b09535f4b8b5315368f98685512fe7675c3", + "size": 21263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8946b09535f4b8b5315368f98685512fe7675c3" + }, + { + "path": "png/spamassassin.png", + "mode": "100644", + "type": "blob", + "sha": "b1269c0aaf487fb7361d1e1ee7aa31fcc5d7bf06", + "size": 130319, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1269c0aaf487fb7361d1e1ee7aa31fcc5d7bf06" + }, + { + "path": "png/spark.png", + "mode": "100644", + "type": "blob", + "sha": "e0e3e1b91db4944287d569957fc937b2ec79cacc", + "size": 17118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0e3e1b91db4944287d569957fc937b2ec79cacc" + }, + { + "path": "png/sparkleshare.png", + "mode": "100644", + "type": "blob", + "sha": "904bdde8ce4c080224bdec10de8b3064d8d5d676", + "size": 20571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/904bdde8ce4c080224bdec10de8b3064d8d5d676" + }, + { + "path": "png/sparky-fitness.png", + "mode": "100644", + "type": "blob", + "sha": "6a22fb9c1e3f335c0ffb4041eef5ac43b9b67dd4", + "size": 132335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a22fb9c1e3f335c0ffb4041eef5ac43b9b67dd4" + }, + { + "path": "png/specifically-clementines.png", + "mode": "100644", + "type": "blob", + "sha": "8478f1eadb3873c488a6d1ed66840b5e90cbf8e5", + "size": 57404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8478f1eadb3873c488a6d1ed66840b5e90cbf8e5" + }, + { + "path": "png/specter-desktop.png", + "mode": "100644", + "type": "blob", + "sha": "7d78b3248f98c99eee9087d9394ba5c1cdd6cfb4", + "size": 22436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d78b3248f98c99eee9087d9394ba5c1cdd6cfb4" + }, + { + "path": "png/speedtest-tracker.png", + "mode": "100644", + "type": "blob", + "sha": "0a992472116eb40aef017d54e4683a498e1fa792", + "size": 3922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a992472116eb40aef017d54e4683a498e1fa792" + }, + { + "path": "png/sphinx-doc.png", + "mode": "100644", + "type": "blob", + "sha": "529e7bd5b6ed86ebd91a9abb257d89a79550091a", + "size": 33771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/529e7bd5b6ed86ebd91a9abb257d89a79550091a" + }, + { + "path": "png/sphinx-relay.png", + "mode": "100644", + "type": "blob", + "sha": "6e2d52bafc1d7333766d5ce2929e82ecc43365dc", + "size": 16933, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e2d52bafc1d7333766d5ce2929e82ecc43365dc" + }, + { + "path": "png/sphinx.png", + "mode": "100644", + "type": "blob", + "sha": "529e7bd5b6ed86ebd91a9abb257d89a79550091a", + "size": 33771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/529e7bd5b6ed86ebd91a9abb257d89a79550091a" + }, + { + "path": "png/spiceworks.png", + "mode": "100644", + "type": "blob", + "sha": "eb26a8e01d70a44c1bd9be369ec4bcebb333ae3c", + "size": 19774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb26a8e01d70a44c1bd9be369ec4bcebb333ae3c" + }, + { + "path": "png/spiderfoot.png", + "mode": "100644", + "type": "blob", + "sha": "a83cb84c808e9e8f28823abd0cb87177ab8e7bdc", + "size": 56121, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a83cb84c808e9e8f28823abd0cb87177ab8e7bdc" + }, + { + "path": "png/spliit.png", + "mode": "100644", + "type": "blob", + "sha": "e1e4cd71353a5e132e4c3c4e7923ed2abc7954ed", + "size": 17955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1e4cd71353a5e132e4c3c4e7923ed2abc7954ed" + }, + { + "path": "png/splunk.png", + "mode": "100644", + "type": "blob", + "sha": "e88ce9ef5a7432f2658295d2f42b620570a2a32f", + "size": 33321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e88ce9ef5a7432f2658295d2f42b620570a2a32f" + }, + { + "path": "png/spoolman.png", + "mode": "100644", + "type": "blob", + "sha": "04ae0c4e0f9d5c156c40a6793877994f784b0f7c", + "size": 28100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04ae0c4e0f9d5c156c40a6793877994f784b0f7c" + }, + { + "path": "png/spotify.png", + "mode": "100644", + "type": "blob", + "sha": "c24e18365965cedd1a8cd4c669317588a23fa727", + "size": 25048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c24e18365965cedd1a8cd4c669317588a23fa727" + }, + { + "path": "png/spotnet.png", + "mode": "100644", + "type": "blob", + "sha": "ba504b4fe8a1631c6b3445b5c10f5f9938498ef8", + "size": 28169, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba504b4fe8a1631c6b3445b5c10f5f9938498ef8" + }, + { + "path": "png/spree-dark.png", + "mode": "100644", + "type": "blob", + "sha": "c96276d0814eea8c60abeeeef9bb7996555fa6b9", + "size": 6321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c96276d0814eea8c60abeeeef9bb7996555fa6b9" + }, + { + "path": "png/spree.png", + "mode": "100644", + "type": "blob", + "sha": "fbfef6681bdedc3c16a0c193f231d616490511d7", + "size": 6321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbfef6681bdedc3c16a0c193f231d616490511d7" + }, + { + "path": "png/springboot-initializer.png", + "mode": "100644", + "type": "blob", + "sha": "50e9780406b48a028918396f8901a18289241627", + "size": 10271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50e9780406b48a028918396f8901a18289241627" + }, + { + "path": "png/sqlitebrowser.png", + "mode": "100644", + "type": "blob", + "sha": "817a3363ae2beabc32bae4dbc959e01761f2db2a", + "size": 33995, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/817a3363ae2beabc32bae4dbc959e01761f2db2a" + }, + { + "path": "png/squeezebox-server.png", + "mode": "100644", + "type": "blob", + "sha": "d91de0cf66693ca0266e1ee40976d2647ecd21bb", + "size": 29053, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d91de0cf66693ca0266e1ee40976d2647ecd21bb" + }, + { + "path": "png/squidex.png", + "mode": "100644", + "type": "blob", + "sha": "6a8ee7174c6b8833e65f5c0b9e3fa17b5d592b3f", + "size": 19497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a8ee7174c6b8833e65f5c0b9e3fa17b5d592b3f" + }, + { + "path": "png/squirrel-servers-manager.png", + "mode": "100644", + "type": "blob", + "sha": "2c9a617e5b5e92f5a1a6d5d35fdf21a2d61178cd", + "size": 200079, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c9a617e5b5e92f5a1a6d5d35fdf21a2d61178cd" + }, + { + "path": "png/sshwifty.png", + "mode": "100644", + "type": "blob", + "sha": "5c8f9e21635183b140ae3b443aaace7da58f70d1", + "size": 87505, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c8f9e21635183b140ae3b443aaace7da58f70d1" + }, + { + "path": "png/sst-dev-dark.png", + "mode": "100644", + "type": "blob", + "sha": "04c4ceb5185a22be7a19f0cbf2848856488f29b2", + "size": 7663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04c4ceb5185a22be7a19f0cbf2848856488f29b2" + }, + { + "path": "png/sst-dev.png", + "mode": "100644", + "type": "blob", + "sha": "bdae46d651c515a82b16a168bc35762801cdc49d", + "size": 7663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdae46d651c515a82b16a168bc35762801cdc49d" + }, + { + "path": "png/stalwart-mail-server.png", + "mode": "100644", + "type": "blob", + "sha": "350b6447c7e32cdc0d043eaddd959136a23a0a1f", + "size": 26017, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/350b6447c7e32cdc0d043eaddd959136a23a0a1f" + }, + { + "path": "png/stalwart.png", + "mode": "100644", + "type": "blob", + "sha": "01edc19278d355940ba37d3c40ec034f55e914db", + "size": 58871, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01edc19278d355940ba37d3c40ec034f55e914db" + }, + { + "path": "png/standard-notes.png", + "mode": "100644", + "type": "blob", + "sha": "029faed9c45ea7729ba55c8de3538e1d673a24e6", + "size": 13231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/029faed9c45ea7729ba55c8de3538e1d673a24e6" + }, + { + "path": "png/startpage.png", + "mode": "100644", + "type": "blob", + "sha": "337ddfcfff1689cdb8e6e554e0023b378c0493dc", + "size": 94812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/337ddfcfff1689cdb8e6e554e0023b378c0493dc" + }, + { + "path": "png/stash.png", + "mode": "100644", + "type": "blob", + "sha": "2974470d26e4ad1cacf1d2bc48b4401c27869423", + "size": 28597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2974470d26e4ad1cacf1d2bc48b4401c27869423" + }, + { + "path": "png/statping-ng.png", + "mode": "100644", + "type": "blob", + "sha": "b9e2011e17963e0e0bbaa1f93a142069b7d1a048", + "size": 32754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9e2011e17963e0e0bbaa1f93a142069b7d1a048" + }, + { + "path": "png/statping.png", + "mode": "100644", + "type": "blob", + "sha": "b9e2011e17963e0e0bbaa1f93a142069b7d1a048", + "size": 32754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9e2011e17963e0e0bbaa1f93a142069b7d1a048" + }, + { + "path": "png/stb-proxy.png", + "mode": "100644", + "type": "blob", + "sha": "51e17e9096f5d61e70e38dea41992d7353abd8fb", + "size": 13170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51e17e9096f5d61e70e38dea41992d7353abd8fb" + }, + { + "path": "png/steam.png", + "mode": "100644", + "type": "blob", + "sha": "4b7f5e6741bee12013f24bcee00c23f88d90fe6b", + "size": 32064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b7f5e6741bee12013f24bcee00c23f88d90fe6b" + }, + { + "path": "png/step-ca.png", + "mode": "100644", + "type": "blob", + "sha": "665f0d2b29b2e2f6e6e18e0fa640730c976d0fd7", + "size": 18967, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/665f0d2b29b2e2f6e6e18e0fa640730c976d0fd7" + }, + { + "path": "png/stirling-pdf.png", + "mode": "100644", + "type": "blob", + "sha": "191329eeea7b6c9767866953bab8692b368a0b78", + "size": 24587, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/191329eeea7b6c9767866953bab8692b368a0b78" + }, + { + "path": "png/storj.png", + "mode": "100644", + "type": "blob", + "sha": "4914eb6316e2f196db8f28201852c04abd178cf6", + "size": 30724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4914eb6316e2f196db8f28201852c04abd178cf6" + }, + { + "path": "png/storm.png", + "mode": "100644", + "type": "blob", + "sha": "2277edff6e582262acb807e8a41fa9543b894b09", + "size": 21276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2277edff6e582262acb807e8a41fa9543b894b09" + }, + { + "path": "png/stormkit.png", + "mode": "100644", + "type": "blob", + "sha": "3eb92b1498ba858b564917589fb6613372d005d8", + "size": 21058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3eb92b1498ba858b564917589fb6613372d005d8" + }, + { + "path": "png/strapi.png", + "mode": "100644", + "type": "blob", + "sha": "8575fc59345cd34dfb3184cdae67b0f04f3068ef", + "size": 8281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8575fc59345cd34dfb3184cdae67b0f04f3068ef" + }, + { + "path": "png/strava.png", + "mode": "100644", + "type": "blob", + "sha": "5543ccb5d8baf20518432c19f93d5507e9115513", + "size": 8806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5543ccb5d8baf20518432c19f93d5507e9115513" + }, + { + "path": "png/stream-harvestarr.png", + "mode": "100644", + "type": "blob", + "sha": "500b47ff5686c1e2d5a6bb4aef1a5e118d48c409", + "size": 172964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/500b47ff5686c1e2d5a6bb4aef1a5e118d48c409" + }, + { + "path": "png/streama.png", + "mode": "100644", + "type": "blob", + "sha": "63c44269cb4d5816dcb4c8a1a838a9140ef05105", + "size": 1532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63c44269cb4d5816dcb4c8a1a838a9140ef05105" + }, + { + "path": "png/stremio.png", + "mode": "100644", + "type": "blob", + "sha": "167a791767b537009b453abb7337a7b6d09a936a", + "size": 10533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/167a791767b537009b453abb7337a7b6d09a936a" + }, + { + "path": "png/stump-alt.png", + "mode": "100644", + "type": "blob", + "sha": "cf4f545dcc94763f2ab45e6ea6afd2e6c9bdc647", + "size": 89453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf4f545dcc94763f2ab45e6ea6afd2e6c9bdc647" + }, + { + "path": "png/stump.png", + "mode": "100644", + "type": "blob", + "sha": "7a1ae6904d778c7bcb56372fa2dd394c305a0bcd", + "size": 62986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a1ae6904d778c7bcb56372fa2dd394c305a0bcd" + }, + { + "path": "png/sub-store.png", + "mode": "100644", + "type": "blob", + "sha": "4adec0f0fa25f26142aaa9fa4a4f428eeab9f4ce", + "size": 29935, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4adec0f0fa25f26142aaa9fa4a4f428eeab9f4ce" + }, + { + "path": "png/subatic.png", + "mode": "100644", + "type": "blob", + "sha": "47483a4d6d2ac73bb98288e49d5b07e4248a5703", + "size": 19806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47483a4d6d2ac73bb98288e49d5b07e4248a5703" + }, + { + "path": "png/subdl.png", + "mode": "100644", + "type": "blob", + "sha": "d93354d23144627256cc267ef44d976ff8ebd8fd", + "size": 1172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d93354d23144627256cc267ef44d976ff8ebd8fd" + }, + { + "path": "png/substreamer.png", + "mode": "100644", + "type": "blob", + "sha": "95b1696d6d0572bc294d85768f819ca0a1d30f25", + "size": 29453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95b1696d6d0572bc294d85768f819ca0a1d30f25" + }, + { + "path": "png/suggest-arr.png", + "mode": "100644", + "type": "blob", + "sha": "5214ba5c3bd90839c5eafccd4dc73487880a8e62", + "size": 133368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5214ba5c3bd90839c5eafccd4dc73487880a8e62" + }, + { + "path": "png/sun-panel.png", + "mode": "100644", + "type": "blob", + "sha": "47a8254e53871ec02a2a69dd6a5eef241cc2ceb8", + "size": 6987, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47a8254e53871ec02a2a69dd6a5eef241cc2ceb8" + }, + { + "path": "png/sunsama.png", + "mode": "100644", + "type": "blob", + "sha": "23cb6c0a71f2ef8384b67f53e4b74d0cc56a7378", + "size": 22037, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23cb6c0a71f2ef8384b67f53e4b74d0cc56a7378" + }, + { + "path": "png/sunshine.png", + "mode": "100644", + "type": "blob", + "sha": "dc1c112f567810829faf85790a9606b633ca77c1", + "size": 36501, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc1c112f567810829faf85790a9606b633ca77c1" + }, + { + "path": "png/supabase.png", + "mode": "100644", + "type": "blob", + "sha": "100e6a2e8db709083c1827bcdafedb963b849a32", + "size": 28705, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/100e6a2e8db709083c1827bcdafedb963b849a32" + }, + { + "path": "png/superlist.png", + "mode": "100644", + "type": "blob", + "sha": "0f01f37b6d7af3c68b143b634bf69973b4cf0ff4", + "size": 75793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f01f37b6d7af3c68b143b634bf69973b4cf0ff4" + }, + { + "path": "png/supermicro.png", + "mode": "100644", + "type": "blob", + "sha": "0c09af372c598a5bd3d3b293693e54c0d52f613b", + "size": 53298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c09af372c598a5bd3d3b293693e54c0d52f613b" + }, + { + "path": "png/surveymonkey.png", + "mode": "100644", + "type": "blob", + "sha": "5e2b915667ae1ba82c5a69b2819e9ebf6d658274", + "size": 22506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e2b915667ae1ba82c5a69b2819e9ebf6d658274" + }, + { + "path": "png/suwayomi-light.png", + "mode": "100644", + "type": "blob", + "sha": "5a22b2f38b2e1e2397889e6af651df83338b6b50", + "size": 28858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a22b2f38b2e1e2397889e6af651df83338b6b50" + }, + { + "path": "png/suwayomi.png", + "mode": "100644", + "type": "blob", + "sha": "85ab8da7a21000bb789a11ea6c9eba2ff5ec7ce4", + "size": 28731, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85ab8da7a21000bb789a11ea6c9eba2ff5ec7ce4" + }, + { + "path": "png/svelte.png", + "mode": "100644", + "type": "blob", + "sha": "d3d0fe7490c32ce01bdffe970abf71c0afb39920", + "size": 16590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3d0fe7490c32ce01bdffe970abf71c0afb39920" + }, + { + "path": "png/swagger.png", + "mode": "100644", + "type": "blob", + "sha": "63b4b52c5579215b6eefbd85622832883939666d", + "size": 25269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63b4b52c5579215b6eefbd85622832883939666d" + }, + { + "path": "png/swarmpit.png", + "mode": "100644", + "type": "blob", + "sha": "9dfc3e9eb8183d3e4d2c844f196297159ae169f4", + "size": 37961, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dfc3e9eb8183d3e4d2c844f196297159ae169f4" + }, + { + "path": "png/swift.png", + "mode": "100644", + "type": "blob", + "sha": "fae7cd809714e7aa7239638e513ae1cfa8207c12", + "size": 41309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fae7cd809714e7aa7239638e513ae1cfa8207c12" + }, + { + "path": "png/swizzin.png", + "mode": "100644", + "type": "blob", + "sha": "6c3ab6d1e421b0b20b43359d926c5319d8ebd1bb", + "size": 7044, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c3ab6d1e421b0b20b43359d926c5319d8ebd1bb" + }, + { + "path": "png/syft.png", + "mode": "100644", + "type": "blob", + "sha": "6072d5f99fdf723e825e5123cdf8332556a23065", + "size": 35348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6072d5f99fdf723e825e5123cdf8332556a23065" + }, + { + "path": "png/symedia.png", + "mode": "100644", + "type": "blob", + "sha": "a8b47de6ab0a07f26290b8f3afd13e82f21bc1f1", + "size": 61932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8b47de6ab0a07f26290b8f3afd13e82f21bc1f1" + }, + { + "path": "png/symmetricom-light.png", + "mode": "100644", + "type": "blob", + "sha": "86a1ddd060d1760fcdd301bb960a130d58a2d333", + "size": 24963, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86a1ddd060d1760fcdd301bb960a130d58a2d333" + }, + { + "path": "png/symmetricom.png", + "mode": "100644", + "type": "blob", + "sha": "29c9ca6e468283f6bdeda91f882d430783e3d2f1", + "size": 21260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29c9ca6e468283f6bdeda91f882d430783e3d2f1" + }, + { + "path": "png/sympa.png", + "mode": "100644", + "type": "blob", + "sha": "2bc77e40045f4cff9aa60ef6e76866949433692e", + "size": 19208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bc77e40045f4cff9aa60ef6e76866949433692e" + }, + { + "path": "png/synapse-light.png", + "mode": "100644", + "type": "blob", + "sha": "4c8674abe19a876eda2aa2009359307886583ced", + "size": 19521, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c8674abe19a876eda2aa2009359307886583ced" + }, + { + "path": "png/synapse.png", + "mode": "100644", + "type": "blob", + "sha": "63e69e19e1626c983a520b5242a145bbcdc61400", + "size": 18258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63e69e19e1626c983a520b5242a145bbcdc61400" + }, + { + "path": "png/syncany.png", + "mode": "100644", + "type": "blob", + "sha": "e0fbf131fb1ef76fb9b0d40847066a0c9a0886cc", + "size": 30952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0fbf131fb1ef76fb9b0d40847066a0c9a0886cc" + }, + { + "path": "png/synclounge-light.png", + "mode": "100644", + "type": "blob", + "sha": "1b504a3c8727a0746dca22e6ca5573cb766dbb35", + "size": 5450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b504a3c8727a0746dca22e6ca5573cb766dbb35" + }, + { + "path": "png/synclounge.png", + "mode": "100644", + "type": "blob", + "sha": "b9999c2f8d1ec34c894119858ddd958735757834", + "size": 5450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9999c2f8d1ec34c894119858ddd958735757834" + }, + { + "path": "png/syncplay.png", + "mode": "100644", + "type": "blob", + "sha": "0dcc895bcd83f100d39b47d17af8f0c4cdaab47c", + "size": 25979, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0dcc895bcd83f100d39b47d17af8f0c4cdaab47c" + }, + { + "path": "png/syncthing-dark.png", + "mode": "100644", + "type": "blob", + "sha": "43974bbd2cf46a2ea2112c47d1081c3d346a60ea", + "size": 33334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43974bbd2cf46a2ea2112c47d1081c3d346a60ea" + }, + { + "path": "png/syncthing.png", + "mode": "100644", + "type": "blob", + "sha": "82f0d366a3aef637a2a801aa8c1bdbb75442573d", + "size": 33818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82f0d366a3aef637a2a801aa8c1bdbb75442573d" + }, + { + "path": "png/synology-audio-station.png", + "mode": "100644", + "type": "blob", + "sha": "3066e9ceff5437665b3f3149fee112789ef0ab35", + "size": 21033, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3066e9ceff5437665b3f3149fee112789ef0ab35" + }, + { + "path": "png/synology-calendar.png", + "mode": "100644", + "type": "blob", + "sha": "cb19178ec83375b4ecf5f88830d7e44408482270", + "size": 5811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb19178ec83375b4ecf5f88830d7e44408482270" + }, + { + "path": "png/synology-chat.png", + "mode": "100644", + "type": "blob", + "sha": "62da3da2a4073efcbd4bbc3f536d32be658bfae6", + "size": 15938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62da3da2a4073efcbd4bbc3f536d32be658bfae6" + }, + { + "path": "png/synology-cloud-sync.png", + "mode": "100644", + "type": "blob", + "sha": "53115a01d47404e48dd6d488551787dd558a0a8c", + "size": 44069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53115a01d47404e48dd6d488551787dd558a0a8c" + }, + { + "path": "png/synology-contacts.png", + "mode": "100644", + "type": "blob", + "sha": "0fa313ee4e21273b1546879dcacac61ef781c28e", + "size": 23308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fa313ee4e21273b1546879dcacac61ef781c28e" + }, + { + "path": "png/synology-document-viewer.png", + "mode": "100644", + "type": "blob", + "sha": "5c92e03f44855a35e7f6657b1348180dae7d7519", + "size": 29548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c92e03f44855a35e7f6657b1348180dae7d7519" + }, + { + "path": "png/synology-download-station.png", + "mode": "100644", + "type": "blob", + "sha": "d3c8fab557e4607c435ad116c85a89b4f331ce3e", + "size": 9344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3c8fab557e4607c435ad116c85a89b4f331ce3e" + }, + { + "path": "png/synology-drive-server.png", + "mode": "100644", + "type": "blob", + "sha": "40d776b4576d38f7440355b53535374b4d06fbe3", + "size": 48604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40d776b4576d38f7440355b53535374b4d06fbe3" + }, + { + "path": "png/synology-drive.png", + "mode": "100644", + "type": "blob", + "sha": "40d776b4576d38f7440355b53535374b4d06fbe3", + "size": 48604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40d776b4576d38f7440355b53535374b4d06fbe3" + }, + { + "path": "png/synology-dsm.png", + "mode": "100644", + "type": "blob", + "sha": "9847a2d6a46f0334b25e157758a3b0ed84742399", + "size": 20294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9847a2d6a46f0334b25e157758a3b0ed84742399" + }, + { + "path": "png/synology-file-station.png", + "mode": "100644", + "type": "blob", + "sha": "287afed41ede9b6dd8bb357e40fa8eb4a2c466ca", + "size": 42194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/287afed41ede9b6dd8bb357e40fa8eb4a2c466ca" + }, + { + "path": "png/synology-light.png", + "mode": "100644", + "type": "blob", + "sha": "d062543bb8d2e152130255e69a6d7d3ee3cfe088", + "size": 16547, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d062543bb8d2e152130255e69a6d7d3ee3cfe088" + }, + { + "path": "png/synology-mail-plus.png", + "mode": "100644", + "type": "blob", + "sha": "d55975368b3815c3df6aa16f86f15110c2034252", + "size": 14132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d55975368b3815c3df6aa16f86f15110c2034252" + }, + { + "path": "png/synology-mail-station.png", + "mode": "100644", + "type": "blob", + "sha": "cf21bd80d508b3c8140dedf2acc1ff9aa4994246", + "size": 13178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf21bd80d508b3c8140dedf2acc1ff9aa4994246" + }, + { + "path": "png/synology-note-station.png", + "mode": "100644", + "type": "blob", + "sha": "df0cf47ad6bf808a3830fec775a3f1282a7bf712", + "size": 48563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df0cf47ad6bf808a3830fec775a3f1282a7bf712" + }, + { + "path": "png/synology-office.png", + "mode": "100644", + "type": "blob", + "sha": "12ad3302b828161dbeaebc540b0d4157e0e20e40", + "size": 49772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12ad3302b828161dbeaebc540b0d4157e0e20e40" + }, + { + "path": "png/synology-pdfviewer.png", + "mode": "100644", + "type": "blob", + "sha": "5c92e03f44855a35e7f6657b1348180dae7d7519", + "size": 29548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c92e03f44855a35e7f6657b1348180dae7d7519" + }, + { + "path": "png/synology-photo-station.png", + "mode": "100644", + "type": "blob", + "sha": "362c252cd7bdb4e2c2c3c28f35cc48398879be95", + "size": 22829, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/362c252cd7bdb4e2c2c3c28f35cc48398879be95" + }, + { + "path": "png/synology-photos.png", + "mode": "100644", + "type": "blob", + "sha": "483f5a7d637df951aa4561664ec1939d2a8ee03f", + "size": 27725, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/483f5a7d637df951aa4561664ec1939d2a8ee03f" + }, + { + "path": "png/synology-surveillance-station.png", + "mode": "100644", + "type": "blob", + "sha": "3f6c7ed29969a53460f38c72c7f8e4e8521f4cfb", + "size": 37214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f6c7ed29969a53460f38c72c7f8e4e8521f4cfb" + }, + { + "path": "png/synology-text-editor.png", + "mode": "100644", + "type": "blob", + "sha": "97c3cedd00edcda20b572441b94cb8c1b3f7f174", + "size": 40768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97c3cedd00edcda20b572441b94cb8c1b3f7f174" + }, + { + "path": "png/synology-video-station.png", + "mode": "100644", + "type": "blob", + "sha": "e140d83a9e63cbffc45b63f8d384d312c4021135", + "size": 14725, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e140d83a9e63cbffc45b63f8d384d312c4021135" + }, + { + "path": "png/synology-vmm.png", + "mode": "100644", + "type": "blob", + "sha": "2e823896b96cb671ebd6f6e044311b98c65c58d0", + "size": 31233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e823896b96cb671ebd6f6e044311b98c65c58d0" + }, + { + "path": "png/synology-webstation.png", + "mode": "100644", + "type": "blob", + "sha": "6bb506824a037cf41f4316dda50a2ee061771745", + "size": 36189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bb506824a037cf41f4316dda50a2ee061771745" + }, + { + "path": "png/synology.png", + "mode": "100644", + "type": "blob", + "sha": "94456a55290a3f275a57694e926294653906094d", + "size": 21280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94456a55290a3f275a57694e926294653906094d" + }, + { + "path": "png/sysreptor.png", + "mode": "100644", + "type": "blob", + "sha": "eedb2b200be5c42c14a22df6a8186916b0fdc755", + "size": 15195, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eedb2b200be5c42c14a22df6a8186916b0fdc755" + }, + { + "path": "png/t3-chat.png", + "mode": "100644", + "type": "blob", + "sha": "33b958171eb7301018205cdf9d47517cfbdaf97c", + "size": 138838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33b958171eb7301018205cdf9d47517cfbdaf97c" + }, + { + "path": "png/tabula.png", + "mode": "100644", + "type": "blob", + "sha": "3ac8e0c34ce1e49cc7e4a16fa485bdf5006998b7", + "size": 16545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ac8e0c34ce1e49cc7e4a16fa485bdf5006998b7" + }, + { + "path": "png/tacticalrmm.png", + "mode": "100644", + "type": "blob", + "sha": "03c2e8be807d92997ba3e2290a90879b1f610fba", + "size": 37402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03c2e8be807d92997ba3e2290a90879b1f610fba" + }, + { + "path": "png/taiga.png", + "mode": "100644", + "type": "blob", + "sha": "d000178e5ca187bdefcb4e2389a16fbdf03cf22d", + "size": 30295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d000178e5ca187bdefcb4e2389a16fbdf03cf22d" + }, + { + "path": "png/tailscale-light.png", + "mode": "100644", + "type": "blob", + "sha": "2026eea3d464ede2bff0bfca287d6f85e745a5f8", + "size": 23838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2026eea3d464ede2bff0bfca287d6f85e745a5f8" + }, + { + "path": "png/tailscale.png", + "mode": "100644", + "type": "blob", + "sha": "0b7934fa8492db242943ae9e2cf21f46cd81b3ed", + "size": 16121, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b7934fa8492db242943ae9e2cf21f46cd81b3ed" + }, + { + "path": "png/tailwind.png", + "mode": "100644", + "type": "blob", + "sha": "fa101310cad01317de0df3514d4089805f49435a", + "size": 8599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa101310cad01317de0df3514d4089805f49435a" + }, + { + "path": "png/talos.png", + "mode": "100644", + "type": "blob", + "sha": "a821af67a5cf7e1e1963c59560bdb84c5a2bcc47", + "size": 30124, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a821af67a5cf7e1e1963c59560bdb84c5a2bcc47" + }, + { + "path": "png/tandoor-recipes.png", + "mode": "100644", + "type": "blob", + "sha": "7416eeba1ee66cb499975ce353bb8d2d0b49e446", + "size": 22783, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7416eeba1ee66cb499975ce353bb8d2d0b49e446" + }, + { + "path": "png/tangerine-ui.png", + "mode": "100644", + "type": "blob", + "sha": "2f5bacc8d97da95ebed111400623937671bcdf6a", + "size": 23921, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f5bacc8d97da95ebed111400623937671bcdf6a" + }, + { + "path": "png/tanoshi.png", + "mode": "100644", + "type": "blob", + "sha": "b0ca574c40ec10e944f3f790639dec18db345e4f", + "size": 20167, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0ca574c40ec10e944f3f790639dec18db345e4f" + }, + { + "path": "png/tar1090.png", + "mode": "100644", + "type": "blob", + "sha": "c21fd821861a1adce630450666c33d879e3b8c5b", + "size": 1287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c21fd821861a1adce630450666c33d879e3b8c5b" + }, + { + "path": "png/taskcafe.png", + "mode": "100644", + "type": "blob", + "sha": "7753b42644011a56e18eadd16a0e5e3b5c962c29", + "size": 27991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7753b42644011a56e18eadd16a0e5e3b5c962c29" + }, + { + "path": "png/tasmoadmin.png", + "mode": "100644", + "type": "blob", + "sha": "447d68b997bc118939d2949183e4f8d2af9cc8e4", + "size": 950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/447d68b997bc118939d2949183e4f8d2af9cc8e4" + }, + { + "path": "png/tasmocompiler.png", + "mode": "100644", + "type": "blob", + "sha": "33a79f0b3e844a24273d86decadc3c333b3f094e", + "size": 20369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33a79f0b3e844a24273d86decadc3c333b3f094e" + }, + { + "path": "png/tasmota-light.png", + "mode": "100644", + "type": "blob", + "sha": "f6060a89362b503e98d6d1d722371c9747a86e32", + "size": 12768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6060a89362b503e98d6d1d722371c9747a86e32" + }, + { + "path": "png/tasmota.png", + "mode": "100644", + "type": "blob", + "sha": "f55e346941345f9210eef426c1acee63e2da69f1", + "size": 13129, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f55e346941345f9210eef426c1acee63e2da69f1" + }, + { + "path": "png/tautulli.png", + "mode": "100644", + "type": "blob", + "sha": "6d7be6406813d6ab4000205eebf47b9c06114804", + "size": 28487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d7be6406813d6ab4000205eebf47b9c06114804" + }, + { + "path": "png/tdarr.png", + "mode": "100644", + "type": "blob", + "sha": "b507192c40db219395073aa7f70d90b50a249116", + "size": 157604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b507192c40db219395073aa7f70d90b50a249116" + }, + { + "path": "png/team-viewer.png", + "mode": "100644", + "type": "blob", + "sha": "73f378d3475c89c2343f4c382221a9183de996c4", + "size": 7577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73f378d3475c89c2343f4c382221a9183de996c4" + }, + { + "path": "png/teamcity-light.png", + "mode": "100644", + "type": "blob", + "sha": "273e371e4352761e51e4b16b9c4a49f1435bc751", + "size": 33228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/273e371e4352761e51e4b16b9c4a49f1435bc751" + }, + { + "path": "png/teamcity.png", + "mode": "100644", + "type": "blob", + "sha": "5b2896b339aaa4b04f4da99c30c752816488aa67", + "size": 33233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b2896b339aaa4b04f4da99c30c752816488aa67" + }, + { + "path": "png/teamspeak.png", + "mode": "100644", + "type": "blob", + "sha": "ddc6629c54ed3ffaab7eaac0dcb18dd98e5f0ecb", + "size": 56796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddc6629c54ed3ffaab7eaac0dcb18dd98e5f0ecb" + }, + { + "path": "png/teamtailor.png", + "mode": "100644", + "type": "blob", + "sha": "080fe6fb22636bc565f5c39ad4c5b93433588e76", + "size": 10025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/080fe6fb22636bc565f5c39ad4c5b93433588e76" + }, + { + "path": "png/technitium.png", + "mode": "100644", + "type": "blob", + "sha": "09d325f726262361b3147fa2b8e95aa926d9923e", + "size": 259, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09d325f726262361b3147fa2b8e95aa926d9923e" + }, + { + "path": "png/teddy-cloud.png", + "mode": "100644", + "type": "blob", + "sha": "1f02facfdbcb185bdc16611aee7b963e13ca6ca0", + "size": 24566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f02facfdbcb185bdc16611aee7b963e13ca6ca0" + }, + { + "path": "png/teedy.png", + "mode": "100644", + "type": "blob", + "sha": "09fa157310cda2394a839fa3d68eb94ce970f4ba", + "size": 8070, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09fa157310cda2394a839fa3d68eb94ce970f4ba" + }, + { + "path": "png/telegraf.png", + "mode": "100644", + "type": "blob", + "sha": "f643f1fa26c95a8586791f797a7f23d88a7cd88b", + "size": 30062, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f643f1fa26c95a8586791f797a7f23d88a7cd88b" + }, + { + "path": "png/telegram.png", + "mode": "100644", + "type": "blob", + "sha": "566f70ac526033d3d119c695acd32238c660b683", + "size": 21991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/566f70ac526033d3d119c695acd32238c660b683" + }, + { + "path": "png/telekom.png", + "mode": "100644", + "type": "blob", + "sha": "19e702e1a4f2b81575b39ae31066e82ec974ef3b", + "size": 6506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19e702e1a4f2b81575b39ae31066e82ec974ef3b" + }, + { + "path": "png/teleport.png", + "mode": "100644", + "type": "blob", + "sha": "d950f262f50567288e3f61b212c77bd67738b3c3", + "size": 27812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d950f262f50567288e3f61b212c77bd67738b3c3" + }, + { + "path": "png/tenable-dark.png", + "mode": "100644", + "type": "blob", + "sha": "c2c91707231b28ce43d851725fef4a941b0f6681", + "size": 14492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2c91707231b28ce43d851725fef4a941b0f6681" + }, + { + "path": "png/tenable.png", + "mode": "100644", + "type": "blob", + "sha": "3d45de9f95504c340eaba6bc42138aa2bef4b40c", + "size": 14492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d45de9f95504c340eaba6bc42138aa2bef4b40c" + }, + { + "path": "png/tenda.png", + "mode": "100644", + "type": "blob", + "sha": "8b2cd71feb69ed09ab10ff446cde945322c8e45e", + "size": 78720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b2cd71feb69ed09ab10ff446cde945322c8e45e" + }, + { + "path": "png/terminal.png", + "mode": "100644", + "type": "blob", + "sha": "f133c14e91a350ecb59ccbbc4994a087a436f305", + "size": 9311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f133c14e91a350ecb59ccbbc4994a087a436f305" + }, + { + "path": "png/termix.png", + "mode": "100644", + "type": "blob", + "sha": "6094a944bb1410121ecb333ff17fefe137818d12", + "size": 20396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6094a944bb1410121ecb333ff17fefe137818d12" + }, + { + "path": "png/terraform.png", + "mode": "100644", + "type": "blob", + "sha": "3b3f74020736e79be52059c220dc85df96f8584f", + "size": 13158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b3f74020736e79be52059c220dc85df96f8584f" + }, + { + "path": "png/terraria.png", + "mode": "100644", + "type": "blob", + "sha": "ba060f544627e6cc56de27eaec8371624e7bb3cf", + "size": 84296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba060f544627e6cc56de27eaec8371624e7bb3cf" + }, + { + "path": "png/teslamate-light.png", + "mode": "100644", + "type": "blob", + "sha": "00dfb513adad3e832679ec0a87cff7cf7da72da9", + "size": 13228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00dfb513adad3e832679ec0a87cff7cf7da72da9" + }, + { + "path": "png/teslamate.png", + "mode": "100644", + "type": "blob", + "sha": "a4731576a1ede2756efba302acc54200eb36b59f", + "size": 13301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4731576a1ede2756efba302acc54200eb36b59f" + }, + { + "path": "png/thanos.png", + "mode": "100644", + "type": "blob", + "sha": "f8707ee81b0a0e0fdd78ab33ee3b0b2c5cc46dc4", + "size": 5106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8707ee81b0a0e0fdd78ab33ee3b0b2c5cc46dc4" + }, + { + "path": "png/the-onion.png", + "mode": "100644", + "type": "blob", + "sha": "ab87d9217a9e593e3a5930c39436b46c99dba58d", + "size": 11700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab87d9217a9e593e3a5930c39436b46c99dba58d" + }, + { + "path": "png/the-pirate-bay.png", + "mode": "100644", + "type": "blob", + "sha": "7b2d1e2b738d06087b2bc55f071dfbd4d8259fe6", + "size": 108643, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b2d1e2b738d06087b2bc55f071dfbd4d8259fe6" + }, + { + "path": "png/the-proxy-bay.png", + "mode": "100644", + "type": "blob", + "sha": "7b2d1e2b738d06087b2bc55f071dfbd4d8259fe6", + "size": 108643, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b2d1e2b738d06087b2bc55f071dfbd4d8259fe6" + }, + { + "path": "png/theia-light.png", + "mode": "100644", + "type": "blob", + "sha": "636211e601cfbcabf9e8ee9a552096ed67467832", + "size": 26575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/636211e601cfbcabf9e8ee9a552096ed67467832" + }, + { + "path": "png/theia.png", + "mode": "100644", + "type": "blob", + "sha": "8778e31cad33f9c75f474fff0e4342091d289aa6", + "size": 20342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8778e31cad33f9c75f474fff0e4342091d289aa6" + }, + { + "path": "png/thelounge.png", + "mode": "100644", + "type": "blob", + "sha": "f33a3c5a7e4a45b83ab117451636b5a8b09f7949", + "size": 28910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f33a3c5a7e4a45b83ab117451636b5a8b09f7949" + }, + { + "path": "png/themepark.png", + "mode": "100644", + "type": "blob", + "sha": "81431b6a3f9f89508f617cf305919176ac185f37", + "size": 100014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81431b6a3f9f89508f617cf305919176ac185f37" + }, + { + "path": "png/theodinproject.png", + "mode": "100644", + "type": "blob", + "sha": "e34e5cbdf5df2180fde2cd030fa0f276d614fe41", + "size": 21152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e34e5cbdf5df2180fde2cd030fa0f276d614fe41" + }, + { + "path": "png/thin-linc.png", + "mode": "100644", + "type": "blob", + "sha": "96135d01afba807d32f49bb291e279d20324032b", + "size": 6264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96135d01afba807d32f49bb291e279d20324032b" + }, + { + "path": "png/thingsboard.png", + "mode": "100644", + "type": "blob", + "sha": "d94a70cb8a1ed0ffdef1026acb7945b43de43e15", + "size": 27732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d94a70cb8a1ed0ffdef1026acb7945b43de43e15" + }, + { + "path": "png/threadfin.png", + "mode": "100644", + "type": "blob", + "sha": "fdae9425db678a9ee127d640d28dd0bcefa53e65", + "size": 1798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdae9425db678a9ee127d640d28dd0bcefa53e65" + }, + { + "path": "png/threads-light.png", + "mode": "100644", + "type": "blob", + "sha": "18b41d68f0271b9154111dc43d320b686df8f6b6", + "size": 25434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18b41d68f0271b9154111dc43d320b686df8f6b6" + }, + { + "path": "png/threads.png", + "mode": "100644", + "type": "blob", + "sha": "8b0ee86b25bec3b97ef46061f84de680af6621f4", + "size": 18072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b0ee86b25bec3b97ef46061f84de680af6621f4" + }, + { + "path": "png/thunderbird.png", + "mode": "100644", + "type": "blob", + "sha": "2d76242a83b70127ab00fbf046738dc1fc99d44f", + "size": 76732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d76242a83b70127ab00fbf046738dc1fc99d44f" + }, + { + "path": "png/thunderhub-light.png", + "mode": "100644", + "type": "blob", + "sha": "624e8ad556f2192aa6a3039245386245bb743f7c", + "size": 7561, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/624e8ad556f2192aa6a3039245386245bb743f7c" + }, + { + "path": "png/thunderhub.png", + "mode": "100644", + "type": "blob", + "sha": "2a7f42315a68860e96a5f6458bee12ec3284f8d4", + "size": 1674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a7f42315a68860e96a5f6458bee12ec3284f8d4" + }, + { + "path": "png/tianji-light.png", + "mode": "100644", + "type": "blob", + "sha": "3402faea11b6f6984b001ec060d74da203fe1c26", + "size": 30820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3402faea11b6f6984b001ec060d74da203fe1c26" + }, + { + "path": "png/tianji.png", + "mode": "100644", + "type": "blob", + "sha": "1ebd19dacd8f88c8953a8c23c935abdfb5eb63f8", + "size": 27092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ebd19dacd8f88c8953a8c23c935abdfb5eb63f8" + }, + { + "path": "png/ticky.png", + "mode": "100644", + "type": "blob", + "sha": "89c37cf9e39710c62f74398952c53c0f671ad8d7", + "size": 24311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89c37cf9e39710c62f74398952c53c0f671ad8d7" + }, + { + "path": "png/tidal-dark.png", + "mode": "100644", + "type": "blob", + "sha": "f80bb4001e4cef86fe48422e2021d4400397ea0f", + "size": 3524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f80bb4001e4cef86fe48422e2021d4400397ea0f" + }, + { + "path": "png/tidal.png", + "mode": "100644", + "type": "blob", + "sha": "ac918e70bd2df387fd50b27171cef047c270c1f0", + "size": 3590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac918e70bd2df387fd50b27171cef047c270c1f0" + }, + { + "path": "png/tiddlywiki-light.png", + "mode": "100644", + "type": "blob", + "sha": "78a8ab4dcfe35e4b8168d6636a92765138d6650c", + "size": 20640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78a8ab4dcfe35e4b8168d6636a92765138d6650c" + }, + { + "path": "png/tiddlywiki.png", + "mode": "100644", + "type": "blob", + "sha": "401ce79c27693a8e7eae722280a867bfd5c1eff7", + "size": 18379, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/401ce79c27693a8e7eae722280a867bfd5c1eff7" + }, + { + "path": "png/tiktok-light.png", + "mode": "100644", + "type": "blob", + "sha": "b672aedb0bb4f3913815e27213da62ebd5cf7d16", + "size": 24580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b672aedb0bb4f3913815e27213da62ebd5cf7d16" + }, + { + "path": "png/tiktok.png", + "mode": "100644", + "type": "blob", + "sha": "528f7810ba867194df7dc7c8e9961d0e30318d3e", + "size": 25217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/528f7810ba867194df7dc7c8e9961d0e30318d3e" + }, + { + "path": "png/timemachines-light.png", + "mode": "100644", + "type": "blob", + "sha": "fcc49a1fdf34718c1470d4ff430e4b8e32a7edd8", + "size": 22423, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcc49a1fdf34718c1470d4ff430e4b8e32a7edd8" + }, + { + "path": "png/timemachines.png", + "mode": "100644", + "type": "blob", + "sha": "dd4e9a572336b0f51cf319f84e3db27e81ffcdca", + "size": 22235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd4e9a572336b0f51cf319f84e3db27e81ffcdca" + }, + { + "path": "png/timetagger-light.png", + "mode": "100644", + "type": "blob", + "sha": "0f6d7b8b73e060b068eb4d93ae43356bffe9f221", + "size": 2709, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f6d7b8b73e060b068eb4d93ae43356bffe9f221" + }, + { + "path": "png/timetagger.png", + "mode": "100644", + "type": "blob", + "sha": "76492725ca0f54b685a331fb4f47632ffd886c5e", + "size": 2742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76492725ca0f54b685a331fb4f47632ffd886c5e" + }, + { + "path": "png/ting-isp.png", + "mode": "100644", + "type": "blob", + "sha": "9f6a3f5a432474f66905068029c800854e712cab", + "size": 9532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f6a3f5a432474f66905068029c800854e712cab" + }, + { + "path": "png/tiny-media-manager.png", + "mode": "100644", + "type": "blob", + "sha": "089b4500702b2d98eef162314e958702cae43073", + "size": 9989, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/089b4500702b2d98eef162314e958702cae43073" + }, + { + "path": "png/tinyauth.png", + "mode": "100644", + "type": "blob", + "sha": "d41d69504ba9a78301742224e19331046a6adcea", + "size": 34749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d41d69504ba9a78301742224e19331046a6adcea" + }, + { + "path": "png/tinypilot.png", + "mode": "100644", + "type": "blob", + "sha": "4044c63b771e3d89cb6a306dbcb4efabdbde711c", + "size": 3393, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4044c63b771e3d89cb6a306dbcb4efabdbde711c" + }, + { + "path": "png/tinytinyrss.png", + "mode": "100644", + "type": "blob", + "sha": "af5bebaadaecc6ebc8f4e2055367ba437251cb17", + "size": 12179, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af5bebaadaecc6ebc8f4e2055367ba437251cb17" + }, + { + "path": "png/tipi.png", + "mode": "100644", + "type": "blob", + "sha": "207798aba94d39626191f8d1c812813b6570488e", + "size": 7922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/207798aba94d39626191f8d1c812813b6570488e" + }, + { + "path": "png/tmdb.png", + "mode": "100644", + "type": "blob", + "sha": "c48a56052bc562e35387740659249c19d8187bd6", + "size": 27811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c48a56052bc562e35387740659249c19d8187bd6" + }, + { + "path": "png/todoist-dark.png", + "mode": "100644", + "type": "blob", + "sha": "336c8c459fc4c7b494b31ad12d5909b70de763da", + "size": 18118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/336c8c459fc4c7b494b31ad12d5909b70de763da" + }, + { + "path": "png/todoist.png", + "mode": "100644", + "type": "blob", + "sha": "66df4325c7cba242d92478be98c2c37aec5b0c4c", + "size": 19499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66df4325c7cba242d92478be98c2c37aec5b0c4c" + }, + { + "path": "png/toggl-dark.png", + "mode": "100644", + "type": "blob", + "sha": "82e17cdd39a5aec4d520bc163051745a2bff729d", + "size": 8508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82e17cdd39a5aec4d520bc163051745a2bff729d" + }, + { + "path": "png/toggl.png", + "mode": "100644", + "type": "blob", + "sha": "f1310b9aa8a4d0ad78940dd96a603f60ae6b19d2", + "size": 8508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1310b9aa8a4d0ad78940dd96a603f60ae6b19d2" + }, + { + "path": "png/tolgee.png", + "mode": "100644", + "type": "blob", + "sha": "a861966f45e95c59b4f58c29ac351aa43cc162e6", + "size": 17629, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a861966f45e95c59b4f58c29ac351aa43cc162e6" + }, + { + "path": "png/tooljet-dark.png", + "mode": "100644", + "type": "blob", + "sha": "5ab1bba1ac34921a70ccd0edd34a8ab8cb88140e", + "size": 13469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ab1bba1ac34921a70ccd0edd34a8ab8cb88140e" + }, + { + "path": "png/tooljet.png", + "mode": "100644", + "type": "blob", + "sha": "3f575f5b9a74ca644116ad42c9c2094aeff56555", + "size": 13242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f575f5b9a74ca644116ad42c9c2094aeff56555" + }, + { + "path": "png/topdesk.png", + "mode": "100644", + "type": "blob", + "sha": "97b4d73b319531517d7b409dc8e3fcb7713e8a52", + "size": 8260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97b4d73b319531517d7b409dc8e3fcb7713e8a52" + }, + { + "path": "png/tor.png", + "mode": "100644", + "type": "blob", + "sha": "38c9d4021d537777485641aa970289b8561260c1", + "size": 50751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38c9d4021d537777485641aa970289b8561260c1" + }, + { + "path": "png/torrserver.png", + "mode": "100644", + "type": "blob", + "sha": "a59ad624c991277aad9ec369cfbc4fbd6fa80229", + "size": 219484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a59ad624c991277aad9ec369cfbc4fbd6fa80229" + }, + { + "path": "png/touitomamout.png", + "mode": "100644", + "type": "blob", + "sha": "08216d48d703a87e4251e2ab0c7152ecf086d472", + "size": 29624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08216d48d703a87e4251e2ab0c7152ecf086d472" + }, + { + "path": "png/tp-link.png", + "mode": "100644", + "type": "blob", + "sha": "6c17d8e1aaccecf301179900bf197427b21653b7", + "size": 12241, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c17d8e1aaccecf301179900bf197427b21653b7" + }, + { + "path": "png/tpdb.png", + "mode": "100644", + "type": "blob", + "sha": "35be929125ba1400ec8dc0256fa30dbcf6ec765c", + "size": 28903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35be929125ba1400ec8dc0256fa30dbcf6ec765c" + }, + { + "path": "png/traccar-dark.png", + "mode": "100644", + "type": "blob", + "sha": "2eebc34eb9b3ba8ce92da7be4f3a1f3750ea45d1", + "size": 29445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eebc34eb9b3ba8ce92da7be4f3a1f3750ea45d1" + }, + { + "path": "png/traccar.png", + "mode": "100644", + "type": "blob", + "sha": "4982b6c541a92b9165defcf516941951d0dc892e", + "size": 27750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4982b6c541a92b9165defcf516941951d0dc892e" + }, + { + "path": "png/trading-view-dark.png", + "mode": "100644", + "type": "blob", + "sha": "28212206fdb376418c13215d29186d34c824a5de", + "size": 7597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28212206fdb376418c13215d29186d34c824a5de" + }, + { + "path": "png/trading-view.png", + "mode": "100644", + "type": "blob", + "sha": "9a0fd3f3949581fb8dd23993343ba1886d54dfe4", + "size": 7597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a0fd3f3949581fb8dd23993343ba1886d54dfe4" + }, + { + "path": "png/traefik-proxy.png", + "mode": "100644", + "type": "blob", + "sha": "c9168d7a70c3e8cdcd10b7cbd81f0d02e8918ae0", + "size": 25598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9168d7a70c3e8cdcd10b7cbd81f0d02e8918ae0" + }, + { + "path": "png/traefik.png", + "mode": "100644", + "type": "blob", + "sha": "5725cb900f9ffea5d137ba4d10ee2eb4b806be8a", + "size": 30444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5725cb900f9ffea5d137ba4d10ee2eb4b806be8a" + }, + { + "path": "png/traggo.png", + "mode": "100644", + "type": "blob", + "sha": "76080973f111979964a0c4f4e38b3faaf0b50e6c", + "size": 56246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76080973f111979964a0c4f4e38b3faaf0b50e6c" + }, + { + "path": "png/trailarr.png", + "mode": "100644", + "type": "blob", + "sha": "2537d2b4b5000038f93bff4add9ea43c94a44df4", + "size": 8281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2537d2b4b5000038f93bff4add9ea43c94a44df4" + }, + { + "path": "png/trakt.png", + "mode": "100644", + "type": "blob", + "sha": "583af74dbb2b206546b3eaa1e041d33c9d159cc0", + "size": 37773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/583af74dbb2b206546b3eaa1e041d33c9d159cc0" + }, + { + "path": "png/transmission.png", + "mode": "100644", + "type": "blob", + "sha": "57bedaee88bfcbfe50ba26e5552146ef537f5b8f", + "size": 40508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57bedaee88bfcbfe50ba26e5552146ef537f5b8f" + }, + { + "path": "png/trash-guides.png", + "mode": "100644", + "type": "blob", + "sha": "1257ca5ba2756eb3dd804d38c1cb00519e567ccc", + "size": 284930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1257ca5ba2756eb3dd804d38c1cb00519e567ccc" + }, + { + "path": "png/trellix-dark.png", + "mode": "100644", + "type": "blob", + "sha": "603af4100d89ec17ad86c7c910481f234cbb4cbb", + "size": 33792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/603af4100d89ec17ad86c7c910481f234cbb4cbb" + }, + { + "path": "png/trellix.png", + "mode": "100644", + "type": "blob", + "sha": "9ff51b94b86ca5f49c524e79c9e9cf6764d99b99", + "size": 39047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ff51b94b86ca5f49c524e79c9e9cf6764d99b99" + }, + { + "path": "png/trilium.png", + "mode": "100644", + "type": "blob", + "sha": "17487d933bf4fa72d6ec907b252c75f66f5a2ed8", + "size": 36721, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17487d933bf4fa72d6ec907b252c75f66f5a2ed8" + }, + { + "path": "png/triliumnext.png", + "mode": "100644", + "type": "blob", + "sha": "62857d2a6130562d7337b07999d1d18b008a392f", + "size": 37781, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62857d2a6130562d7337b07999d1d18b008a392f" + }, + { + "path": "png/trivy.png", + "mode": "100644", + "type": "blob", + "sha": "62eb1afd1caf808ac4c208c8db75ddd350109478", + "size": 15168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62eb1afd1caf808ac4c208c8db75ddd350109478" + }, + { + "path": "png/trmnl-android.png", + "mode": "100644", + "type": "blob", + "sha": "d675e464502bc0edbdfefc7ce279366a9210751f", + "size": 13423, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d675e464502bc0edbdfefc7ce279366a9210751f" + }, + { + "path": "png/trmnl.png", + "mode": "100644", + "type": "blob", + "sha": "b2721f041d774c462bfd81ec4cd686fbca7a6cc4", + "size": 7553, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2721f041d774c462bfd81ec4cd686fbca7a6cc4" + }, + { + "path": "png/troddit.png", + "mode": "100644", + "type": "blob", + "sha": "6373b0ecaf17e8d5979270e9f7b68b385f78b026", + "size": 9618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6373b0ecaf17e8d5979270e9f7b68b385f78b026" + }, + { + "path": "png/trudesk.png", + "mode": "100644", + "type": "blob", + "sha": "c29fa60b7a15a1cec90db832f0f8ce6d76e641a4", + "size": 1742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c29fa60b7a15a1cec90db832f0f8ce6d76e641a4" + }, + { + "path": "png/truecommand.png", + "mode": "100644", + "type": "blob", + "sha": "7d4d017cd57366679454e0d2f4ea5ccb3fa67f41", + "size": 15494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d4d017cd57366679454e0d2f4ea5ccb3fa67f41" + }, + { + "path": "png/truenas-core.png", + "mode": "100644", + "type": "blob", + "sha": "0c22fcfb76ba47909eca56e5a97e3b37e6c24973", + "size": 25142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c22fcfb76ba47909eca56e5a97e3b37e6c24973" + }, + { + "path": "png/truenas-enterprise.png", + "mode": "100644", + "type": "blob", + "sha": "4764566802c85e5272da161131e83a629b668217", + "size": 6562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4764566802c85e5272da161131e83a629b668217" + }, + { + "path": "png/truenas-scale.png", + "mode": "100644", + "type": "blob", + "sha": "5b19c93e0c1855d738ba51d623f63dd1cbc218fc", + "size": 46029, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b19c93e0c1855d738ba51d623f63dd1cbc218fc" + }, + { + "path": "png/truenas.png", + "mode": "100644", + "type": "blob", + "sha": "bced8155ce336a042bbd642b870b1aa1bfc61964", + "size": 25587, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bced8155ce336a042bbd642b870b1aa1bfc61964" + }, + { + "path": "png/tryhackme.png", + "mode": "100644", + "type": "blob", + "sha": "1218800adab3d41c3b245c179153057217fc2ab4", + "size": 20023, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1218800adab3d41c3b245c179153057217fc2ab4" + }, + { + "path": "png/tsd-proxy.png", + "mode": "100644", + "type": "blob", + "sha": "14c928a731a90c57e8e8f368ba8f625eb08d994a", + "size": 12726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14c928a731a90c57e8e8f368ba8f625eb08d994a" + }, + { + "path": "png/tube-archivist-light.png", + "mode": "100644", + "type": "blob", + "sha": "d8c20dffa7e6ac107bac679fec5a1cdc61b34dfd", + "size": 19264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8c20dffa7e6ac107bac679fec5a1cdc61b34dfd" + }, + { + "path": "png/tube-archivist.png", + "mode": "100644", + "type": "blob", + "sha": "397ffbbf06a0c9b8a326c153e93d644d81390540", + "size": 19855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/397ffbbf06a0c9b8a326c153e93d644d81390540" + }, + { + "path": "png/tubesync-light.png", + "mode": "100644", + "type": "blob", + "sha": "db64ed41f4cd10a6ff12322260ad04594e575c4e", + "size": 24848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db64ed41f4cd10a6ff12322260ad04594e575c4e" + }, + { + "path": "png/tubesync.png", + "mode": "100644", + "type": "blob", + "sha": "d1fb9897d1d2d828dcc112fd69acb142016a7dcd", + "size": 23918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1fb9897d1d2d828dcc112fd69acb142016a7dcd" + }, + { + "path": "png/tugtainer.png", + "mode": "100644", + "type": "blob", + "sha": "3027b052ef7613dcb71b2b90392914cbf3eb8ef9", + "size": 5101, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3027b052ef7613dcb71b2b90392914cbf3eb8ef9" + }, + { + "path": "png/tumblr.png", + "mode": "100644", + "type": "blob", + "sha": "d810234a318902187404bb8b198d25e203a69d5f", + "size": 17176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d810234a318902187404bb8b198d25e203a69d5f" + }, + { + "path": "png/tunarr.png", + "mode": "100644", + "type": "blob", + "sha": "d0657834d716bc9aac0ae4ff9c46f22e5f38314c", + "size": 9873, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0657834d716bc9aac0ae4ff9c46f22e5f38314c" + }, + { + "path": "png/tunnelix.png", + "mode": "100644", + "type": "blob", + "sha": "8fdb1f62686b7a88d6150c68a855b3948cfd4044", + "size": 21031, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fdb1f62686b7a88d6150c68a855b3948cfd4044" + }, + { + "path": "png/turbopack-light.png", + "mode": "100644", + "type": "blob", + "sha": "fddb05b8a24e8141b6ff9885bfe10219a45ac455", + "size": 13548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fddb05b8a24e8141b6ff9885bfe10219a45ac455" + }, + { + "path": "png/turbopack.png", + "mode": "100644", + "type": "blob", + "sha": "f9b42d3b09a1e6a47e2124b0be06e464bba91a64", + "size": 13243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9b42d3b09a1e6a47e2124b0be06e464bba91a64" + }, + { + "path": "png/tuta.png", + "mode": "100644", + "type": "blob", + "sha": "a53a71bd9d91dd0528931a646cbf64d7daa1a394", + "size": 5668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a53a71bd9d91dd0528931a646cbf64d7daa1a394" + }, + { + "path": "png/tux.png", + "mode": "100644", + "type": "blob", + "sha": "e6246545422d0246451e3f53e7bd9fa94b6d6cfa", + "size": 52296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6246545422d0246451e3f53e7bd9fa94b6d6cfa" + }, + { + "path": "png/tvdb.png", + "mode": "100644", + "type": "blob", + "sha": "e7d73e1c077cd1095704074303a1bf52c1fb4dff", + "size": 17345, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7d73e1c077cd1095704074303a1bf52c1fb4dff" + }, + { + "path": "png/tvheadend.png", + "mode": "100644", + "type": "blob", + "sha": "7e7a0b9bb4292bf1a6e64f746710113f42463b20", + "size": 12229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e7a0b9bb4292bf1a6e64f746710113f42463b20" + }, + { + "path": "png/tvp-vod.png", + "mode": "100644", + "type": "blob", + "sha": "ec4f55e69ee4a2f9ae528324bcb2d25f4c145445", + "size": 56269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec4f55e69ee4a2f9ae528324bcb2d25f4c145445" + }, + { + "path": "png/tweakers.png", + "mode": "100644", + "type": "blob", + "sha": "3ab7747ea4a31bf95e87e1bcb9eb515c0823655b", + "size": 14851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ab7747ea4a31bf95e87e1bcb9eb515c0823655b" + }, + { + "path": "png/twingate-light.png", + "mode": "100644", + "type": "blob", + "sha": "5c3c44419c6ce4297e9f5a0351619adccb5ab603", + "size": 10000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c3c44419c6ce4297e9f5a0351619adccb5ab603" + }, + { + "path": "png/twingate.png", + "mode": "100644", + "type": "blob", + "sha": "220efe1dce8264fb474f1d5440e314e245e0c4c1", + "size": 10196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/220efe1dce8264fb474f1d5440e314e245e0c4c1" + }, + { + "path": "png/twitch.png", + "mode": "100644", + "type": "blob", + "sha": "e73856edc5a3b9d5ff3cd2b59157cbda56ea1855", + "size": 4122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e73856edc5a3b9d5ff3cd2b59157cbda56ea1855" + }, + { + "path": "png/twitter.png", + "mode": "100644", + "type": "blob", + "sha": "49ff7151788dfc6d20d8b0c146fd69f4e7e967fa", + "size": 20687, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49ff7151788dfc6d20d8b0c146fd69f4e7e967fa" + }, + { + "path": "png/txlog.png", + "mode": "100644", + "type": "blob", + "sha": "9ce7725431d571bf535825a90c10e8e5a4566925", + "size": 10894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ce7725431d571bf535825a90c10e8e5a4566925" + }, + { + "path": "png/typemill-light.png", + "mode": "100644", + "type": "blob", + "sha": "d66affbdcf6eada5d455a0389d7e4b7c8f70195e", + "size": 21719, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d66affbdcf6eada5d455a0389d7e4b7c8f70195e" + }, + { + "path": "png/typemill.png", + "mode": "100644", + "type": "blob", + "sha": "498f482f941b492df04366a289c86c1d603b3f31", + "size": 22151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/498f482f941b492df04366a289c86c1d603b3f31" + }, + { + "path": "png/typescript.png", + "mode": "100644", + "type": "blob", + "sha": "f1359115c3073588e3853e7ca33ffca00399c15a", + "size": 11573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1359115c3073588e3853e7ca33ffca00399c15a" + }, + { + "path": "png/typesense.png", + "mode": "100644", + "type": "blob", + "sha": "49c1f2811476f0ad45aba4ac2a8e1d5e15a023be", + "size": 28028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49c1f2811476f0ad45aba4ac2a8e1d5e15a023be" + }, + { + "path": "png/typo3.png", + "mode": "100644", + "type": "blob", + "sha": "f047ff4bc656681d29e17082e60165f7f94fdfad", + "size": 16692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f047ff4bc656681d29e17082e60165f7f94fdfad" + }, + { + "path": "png/ubiquiti-networks.png", + "mode": "100644", + "type": "blob", + "sha": "dff37ea9e7e5985a6bf9bda970467597d920251e", + "size": 19822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dff37ea9e7e5985a6bf9bda970467597d920251e" + }, + { + "path": "png/ubiquiti-unifi.png", + "mode": "100644", + "type": "blob", + "sha": "c28ee7da5ab8275fe5545b29cb68e53cfc4effed", + "size": 10765, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c28ee7da5ab8275fe5545b29cb68e53cfc4effed" + }, + { + "path": "png/ubiquiti.png", + "mode": "100644", + "type": "blob", + "sha": "dff37ea9e7e5985a6bf9bda970467597d920251e", + "size": 19822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dff37ea9e7e5985a6bf9bda970467597d920251e" + }, + { + "path": "png/ubooquity.png", + "mode": "100644", + "type": "blob", + "sha": "46a844251608c3174c1eab27145940cc90d06043", + "size": 11533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46a844251608c3174c1eab27145940cc90d06043" + }, + { + "path": "png/ubuntu-linux-alt.png", + "mode": "100644", + "type": "blob", + "sha": "858dcbdb281a4b02d276b4879b42704f2d49fa9c", + "size": 23464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/858dcbdb281a4b02d276b4879b42704f2d49fa9c" + }, + { + "path": "png/ubuntu-linux.png", + "mode": "100644", + "type": "blob", + "sha": "31d501f0c2f7c68ec4a6c6613a4acbc0620eb528", + "size": 23483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31d501f0c2f7c68ec4a6c6613a4acbc0620eb528" + }, + { + "path": "png/uc-browser.png", + "mode": "100644", + "type": "blob", + "sha": "48eaf245cfe78637ee0569b4f45f76418caa3826", + "size": 25501, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48eaf245cfe78637ee0569b4f45f76418caa3826" + }, + { + "path": "png/udemy-light.png", + "mode": "100644", + "type": "blob", + "sha": "b149dbe9c8d8e2f701e431310e279f8542bcddc3", + "size": 8614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b149dbe9c8d8e2f701e431310e279f8542bcddc3" + }, + { + "path": "png/udemy.png", + "mode": "100644", + "type": "blob", + "sha": "578c410a914604b68736cdf948a608de28d88f94", + "size": 7454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/578c410a914604b68736cdf948a608de28d88f94" + }, + { + "path": "png/ugreen-nas.png", + "mode": "100644", + "type": "blob", + "sha": "7bee1fb241b43fdaf1d7250c4f52beba518059f0", + "size": 61982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bee1fb241b43fdaf1d7250c4f52beba518059f0" + }, + { + "path": "png/ugreen.png", + "mode": "100644", + "type": "blob", + "sha": "fb568590a2639fc5391b167b3feff17c617003e3", + "size": 13197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb568590a2639fc5391b167b3feff17c617003e3" + }, + { + "path": "png/ultimate-guitar-light.png", + "mode": "100644", + "type": "blob", + "sha": "2e24aa6891b1c004836b5ec39f48c9596c7afbef", + "size": 19417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e24aa6891b1c004836b5ec39f48c9596c7afbef" + }, + { + "path": "png/ultimate-guitar.png", + "mode": "100644", + "type": "blob", + "sha": "1cd5a9541ed55e371b849504bec2b9ede7d3efe2", + "size": 20047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cd5a9541ed55e371b849504bec2b9ede7d3efe2" + }, + { + "path": "png/umami-light.png", + "mode": "100644", + "type": "blob", + "sha": "6fb6efcac0f452da42ae6696ffd21d4fab8e9d0d", + "size": 11720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fb6efcac0f452da42ae6696ffd21d4fab8e9d0d" + }, + { + "path": "png/umami.png", + "mode": "100644", + "type": "blob", + "sha": "d593315f1da07a7bb585d7ad1aa179272801efe3", + "size": 10469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d593315f1da07a7bb585d7ad1aa179272801efe3" + }, + { + "path": "png/umbrel.png", + "mode": "100644", + "type": "blob", + "sha": "713f3e65dade54e4243292dcec8556d5319961a4", + "size": 18575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/713f3e65dade54e4243292dcec8556d5319961a4" + }, + { + "path": "png/unbound.png", + "mode": "100644", + "type": "blob", + "sha": "4aef439d44c274d965eb5243b0c48654785cc4b4", + "size": 16235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4aef439d44c274d965eb5243b0c48654785cc4b4" + }, + { + "path": "png/uncomplicated-alert-receiver.png", + "mode": "100644", + "type": "blob", + "sha": "bd22d3a01b9e274b1f77e4687a92096126627c99", + "size": 27612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd22d3a01b9e274b1f77e4687a92096126627c99" + }, + { + "path": "png/undb.png", + "mode": "100644", + "type": "blob", + "sha": "3d4b075299f22b5ad4eac545e3f97a61a9ddbc74", + "size": 27661, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d4b075299f22b5ad4eac545e3f97a61a9ddbc74" + }, + { + "path": "png/unifi-controller.png", + "mode": "100644", + "type": "blob", + "sha": "35b046abd50744772b51974506c3f84bea3f224b", + "size": 96974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35b046abd50744772b51974506c3f84bea3f224b" + }, + { + "path": "png/unifi-dark.png", + "mode": "100644", + "type": "blob", + "sha": "58c60af56688837f231f8149aac343590712fc56", + "size": 19178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58c60af56688837f231f8149aac343590712fc56" + }, + { + "path": "png/unifi-drive.png", + "mode": "100644", + "type": "blob", + "sha": "5a9db3eeed55a4445c1daf19c69004f8f34a3f85", + "size": 33267, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a9db3eeed55a4445c1daf19c69004f8f34a3f85" + }, + { + "path": "png/unifi-protect.png", + "mode": "100644", + "type": "blob", + "sha": "0af359ab965a88c565c91434a02e7f76fc05dc94", + "size": 148799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0af359ab965a88c565c91434a02e7f76fc05dc94" + }, + { + "path": "png/unifi-voucher-site.png", + "mode": "100644", + "type": "blob", + "sha": "3a4d41c78f5ad8a393433eedc0e3ae78f65cc167", + "size": 27090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a4d41c78f5ad8a393433eedc0e3ae78f65cc167" + }, + { + "path": "png/unifi.png", + "mode": "100644", + "type": "blob", + "sha": "dff37ea9e7e5985a6bf9bda970467597d920251e", + "size": 19822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dff37ea9e7e5985a6bf9bda970467597d920251e" + }, + { + "path": "png/unimus.png", + "mode": "100644", + "type": "blob", + "sha": "2a47eaf34b652faf3c3f50f2c09383c328152e44", + "size": 27830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a47eaf34b652faf3c3f50f2c09383c328152e44" + }, + { + "path": "png/unity-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4d4a4f2a3a4f70b4336e5a440214eae01e0d5b83", + "size": 5857, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d4a4f2a3a4f70b4336e5a440214eae01e0d5b83" + }, + { + "path": "png/unity.png", + "mode": "100644", + "type": "blob", + "sha": "46b0177b82162b94c1031b61851b45770485352d", + "size": 5857, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46b0177b82162b94c1031b61851b45770485352d" + }, + { + "path": "png/universal-media-server.png", + "mode": "100644", + "type": "blob", + "sha": "a14476e381d5afe6224ffc89fc118b4e809dbd45", + "size": 44960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a14476e381d5afe6224ffc89fc118b4e809dbd45" + }, + { + "path": "png/university-applied-sciences-brandenburg.png", + "mode": "100644", + "type": "blob", + "sha": "ededd01c36b01b754d63c8cad90fb39f9a6550fb", + "size": 3402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ededd01c36b01b754d63c8cad90fb39f9a6550fb" + }, + { + "path": "png/unmanic.png", + "mode": "100644", + "type": "blob", + "sha": "2288c8b39dad6fd7786a45d9ff51c461abb8928f", + "size": 3023, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2288c8b39dad6fd7786a45d9ff51c461abb8928f" + }, + { + "path": "png/unraid.png", + "mode": "100644", + "type": "blob", + "sha": "ada63c68359864598b58407879ea0df502746709", + "size": 9861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ada63c68359864598b58407879ea0df502746709" + }, + { + "path": "png/untangle.png", + "mode": "100644", + "type": "blob", + "sha": "6f1eba89ce2a09d3ae0fdf4f2d98c30bd5fdb43e", + "size": 21565, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f1eba89ce2a09d3ae0fdf4f2d98c30bd5fdb43e" + }, + { + "path": "png/updog.png", + "mode": "100644", + "type": "blob", + "sha": "b9aa91ba36476fbfab3e466cdbd89b9e2dc77b10", + "size": 7951, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9aa91ba36476fbfab3e466cdbd89b9e2dc77b10" + }, + { + "path": "png/ups.png", + "mode": "100644", + "type": "blob", + "sha": "c7aee922de92f4a732d911ddab557ce83a5776d2", + "size": 28333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7aee922de92f4a732d911ddab557ce83a5776d2" + }, + { + "path": "png/upsnap.png", + "mode": "100644", + "type": "blob", + "sha": "f9139d7832e9f3978ad583f55e922eeb709155c5", + "size": 57012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9139d7832e9f3978ad583f55e922eeb709155c5" + }, + { + "path": "png/uptime-kuma.png", + "mode": "100644", + "type": "blob", + "sha": "713ca376ec286c0741c269eba7c3f542a4d1660f", + "size": 28995, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/713ca376ec286c0741c269eba7c3f542a4d1660f" + }, + { + "path": "png/uptimerobot.png", + "mode": "100644", + "type": "blob", + "sha": "1e707e8bf2d36702afd7159ef2c65274f56658da", + "size": 14499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e707e8bf2d36702afd7159ef2c65274f56658da" + }, + { + "path": "png/upvote-rss.png", + "mode": "100644", + "type": "blob", + "sha": "0e056d094405862befaf365c33496d0ec3a62228", + "size": 17768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e056d094405862befaf365c33496d0ec3a62228" + }, + { + "path": "png/upwork.png", + "mode": "100644", + "type": "blob", + "sha": "1484fa992e3a456de4b58d32b3298bc7875e5749", + "size": 13339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1484fa992e3a456de4b58d32b3298bc7875e5749" + }, + { + "path": "png/urbackup-server.png", + "mode": "100644", + "type": "blob", + "sha": "40458c81d8de91907749358bc459a8aba6020623", + "size": 11011, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40458c81d8de91907749358bc459a8aba6020623" + }, + { + "path": "png/urbackup.png", + "mode": "100644", + "type": "blob", + "sha": "40458c81d8de91907749358bc459a8aba6020623", + "size": 11011, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40458c81d8de91907749358bc459a8aba6020623" + }, + { + "path": "png/usermin.png", + "mode": "100644", + "type": "blob", + "sha": "d77b5b35d1a71b0f929a71af6fe9b56705363313", + "size": 25581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d77b5b35d1a71b0f929a71af6fe9b56705363313" + }, + { + "path": "png/valetudo.png", + "mode": "100644", + "type": "blob", + "sha": "35ea8349a2d6de593777904d325f6f0453f4915f", + "size": 25891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35ea8349a2d6de593777904d325f6f0453f4915f" + }, + { + "path": "png/valkey.png", + "mode": "100644", + "type": "blob", + "sha": "62f83641b0df684c57935da9fb64bb95d33b52d1", + "size": 20533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62f83641b0df684c57935da9fb64bb95d33b52d1" + }, + { + "path": "png/vault-light.png", + "mode": "100644", + "type": "blob", + "sha": "30e4eadfc3274ca09002c2545f1ddaf2ab8fb377", + "size": 16424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30e4eadfc3274ca09002c2545f1ddaf2ab8fb377" + }, + { + "path": "png/vault.png", + "mode": "100644", + "type": "blob", + "sha": "22dfbbe783b31fa0d2ddb31cb02b8dcd8a102d7a", + "size": 14707, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22dfbbe783b31fa0d2ddb31cb02b8dcd8a102d7a" + }, + { + "path": "png/vaultwarden-light.png", + "mode": "100644", + "type": "blob", + "sha": "7fdcedcdcb27f57a1fb678473455b926686b719f", + "size": 14860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fdcedcdcb27f57a1fb678473455b926686b719f" + }, + { + "path": "png/vaultwarden.png", + "mode": "100644", + "type": "blob", + "sha": "6cdb32557b767f165aa4c00e84f0fef9eb84ac97", + "size": 12575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cdb32557b767f165aa4c00e84f0fef9eb84ac97" + }, + { + "path": "png/vector.png", + "mode": "100644", + "type": "blob", + "sha": "affbc6498d18110cdfdacde4d15493ec5f29594c", + "size": 37551, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/affbc6498d18110cdfdacde4d15493ec5f29594c" + }, + { + "path": "png/veeam.png", + "mode": "100644", + "type": "blob", + "sha": "81d798569631664e066333ea509534ca2249de6d", + "size": 7739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81d798569631664e066333ea509534ca2249de6d" + }, + { + "path": "png/vera-crypt.png", + "mode": "100644", + "type": "blob", + "sha": "e6ffe11a1929bca5bed380bebefb2cb5e2dd0d53", + "size": 32891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6ffe11a1929bca5bed380bebefb2cb5e2dd0d53" + }, + { + "path": "png/vercel-light.png", + "mode": "100644", + "type": "blob", + "sha": "aac87a6b26e7eaa5ccdfdd175c204e7c7beeb699", + "size": 10952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aac87a6b26e7eaa5ccdfdd175c204e7c7beeb699" + }, + { + "path": "png/vercel.png", + "mode": "100644", + "type": "blob", + "sha": "54f24b578e13b1fdd815da769da8c231931a1cba", + "size": 10214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54f24b578e13b1fdd815da769da8c231931a1cba" + }, + { + "path": "png/verizon.png", + "mode": "100644", + "type": "blob", + "sha": "9d8447fc82a338f489ee8a8693a6c305006dfade", + "size": 12807, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d8447fc82a338f489ee8a8693a6c305006dfade" + }, + { + "path": "png/verriflo-dark.png", + "mode": "100644", + "type": "blob", + "sha": "27b27f239b61a95098789a8694c63b2d0306ae41", + "size": 20612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27b27f239b61a95098789a8694c63b2d0306ae41" + }, + { + "path": "png/verriflo.png", + "mode": "100644", + "type": "blob", + "sha": "6f218db58b1128608fbf1c34c975e5387533ba9c", + "size": 20813, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f218db58b1128608fbf1c34c975e5387533ba9c" + }, + { + "path": "png/vertiv-dark.png", + "mode": "100644", + "type": "blob", + "sha": "77bc2b9430938d6f99809653803c33785c3d2b62", + "size": 7523, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77bc2b9430938d6f99809653803c33785c3d2b62" + }, + { + "path": "png/vertiv.png", + "mode": "100644", + "type": "blob", + "sha": "fb5c94d85653410b6b2c34d2297b530a05fc0787", + "size": 7523, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb5c94d85653410b6b2c34d2297b530a05fc0787" + }, + { + "path": "png/vi.png", + "mode": "100644", + "type": "blob", + "sha": "4a66fa49abf106182d809f2595fb26ce98ccfbdb", + "size": 13585, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a66fa49abf106182d809f2595fb26ce98ccfbdb" + }, + { + "path": "png/viber.png", + "mode": "100644", + "type": "blob", + "sha": "3bcfec131f324eb2df277007b12c01e4d886e2fd", + "size": 12167, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bcfec131f324eb2df277007b12c01e4d886e2fd" + }, + { + "path": "png/victorialogs.png", + "mode": "100644", + "type": "blob", + "sha": "00cdcf91190c8a493a77843f64d3d2279d716fcb", + "size": 8637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00cdcf91190c8a493a77843f64d3d2279d716fcb" + }, + { + "path": "png/victoriametrics-light.png", + "mode": "100644", + "type": "blob", + "sha": "c0ef450219f04050f7986b1d2247fb2d81351bdf", + "size": 22473, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0ef450219f04050f7986b1d2247fb2d81351bdf" + }, + { + "path": "png/victoriametrics.png", + "mode": "100644", + "type": "blob", + "sha": "06776f58b4dba0826ff0d181e18b73ab9cbd9e8e", + "size": 15622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06776f58b4dba0826ff0d181e18b73ab9cbd9e8e" + }, + { + "path": "png/victron-energy.png", + "mode": "100644", + "type": "blob", + "sha": "7f9f87b896ad2d4d0fda5253bc3c41899c570234", + "size": 21868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f9f87b896ad2d4d0fda5253bc3c41899c570234" + }, + { + "path": "png/vidzy.png", + "mode": "100644", + "type": "blob", + "sha": "5ec280cdadd84017abc93882edbb23b458e283f9", + "size": 11177, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ec280cdadd84017abc93882edbb23b458e283f9" + }, + { + "path": "png/viewtube.png", + "mode": "100644", + "type": "blob", + "sha": "f72e1ee32caaa466b832073c7b8ed63a036b96f8", + "size": 53220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f72e1ee32caaa466b832073c7b8ed63a036b96f8" + }, + { + "path": "png/vikunja.png", + "mode": "100644", + "type": "blob", + "sha": "c2c935409be5def3bb6b598af11dd4e831071a98", + "size": 29010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2c935409be5def3bb6b598af11dd4e831071a98" + }, + { + "path": "png/vinchin-backup.png", + "mode": "100644", + "type": "blob", + "sha": "c690f69deaa0e3924234f59f1f197091d40c7c07", + "size": 23534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c690f69deaa0e3924234f59f1f197091d40c7c07" + }, + { + "path": "png/virgin-media.png", + "mode": "100644", + "type": "blob", + "sha": "6e3da0b2656a95fa3622f051aee409c28c2ed1b9", + "size": 62779, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e3da0b2656a95fa3622f051aee409c28c2ed1b9" + }, + { + "path": "png/virtualmin.png", + "mode": "100644", + "type": "blob", + "sha": "b696be5d11400971cd8872afdd2168a153093f7f", + "size": 48894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b696be5d11400971cd8872afdd2168a153093f7f" + }, + { + "path": "png/virtualradarserver.png", + "mode": "100644", + "type": "blob", + "sha": "5e7bc2494b34ad86b0a7620dfdcb7f306ecd72df", + "size": 31270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e7bc2494b34ad86b0a7620dfdcb7f306ecd72df" + }, + { + "path": "png/viseron-light.png", + "mode": "100644", + "type": "blob", + "sha": "046de871f7f505d65820f2ce436f6ef4c396f47d", + "size": 254600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/046de871f7f505d65820f2ce436f6ef4c396f47d" + }, + { + "path": "png/viseron.png", + "mode": "100644", + "type": "blob", + "sha": "23a5eb56c06efb3c09d01b7dc112281e61b3f945", + "size": 243202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23a5eb56c06efb3c09d01b7dc112281e61b3f945" + }, + { + "path": "png/visual-studio-code.png", + "mode": "100644", + "type": "blob", + "sha": "ab76bf117402ad040b65c3ec4d2361307762be94", + "size": 26380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab76bf117402ad040b65c3ec4d2361307762be94" + }, + { + "path": "png/vitalpbx.png", + "mode": "100644", + "type": "blob", + "sha": "f721a021c0b9a8c0fdda0ac82ddfaaf8c1d3aee6", + "size": 7279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f721a021c0b9a8c0fdda0ac82ddfaaf8c1d3aee6" + }, + { + "path": "png/vite.png", + "mode": "100644", + "type": "blob", + "sha": "1850b6c95a61820c0918ea0579b403d77614e760", + "size": 22701, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1850b6c95a61820c0918ea0579b403d77614e760" + }, + { + "path": "png/vitest.png", + "mode": "100644", + "type": "blob", + "sha": "fa818fc9376c626741312ac1186578261fdc652a", + "size": 9555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa818fc9376c626741312ac1186578261fdc652a" + }, + { + "path": "png/vito-deploy.png", + "mode": "100644", + "type": "blob", + "sha": "cfb5eb5fcd537aa19cd065b9587b12e5fbc5072f", + "size": 13924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfb5eb5fcd537aa19cd065b9587b12e5fbc5072f" + }, + { + "path": "png/vivaldi.png", + "mode": "100644", + "type": "blob", + "sha": "13db241437b2b0e62817e5a00290fe6a294c0913", + "size": 29108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13db241437b2b0e62817e5a00290fe6a294c0913" + }, + { + "path": "png/vmware-esxi.png", + "mode": "100644", + "type": "blob", + "sha": "18d1b28c1652997b60d3c40cbf49c230fae2ac06", + "size": 20474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18d1b28c1652997b60d3c40cbf49c230fae2ac06" + }, + { + "path": "png/vmware-horizon.png", + "mode": "100644", + "type": "blob", + "sha": "41b4a1066b97d70c134e94e28a908024bd17b06b", + "size": 12520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41b4a1066b97d70c134e94e28a908024bd17b06b" + }, + { + "path": "png/vmware-vcenter.png", + "mode": "100644", + "type": "blob", + "sha": "9224af8a36308172703a0c326496b24061dce590", + "size": 16142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9224af8a36308172703a0c326496b24061dce590" + }, + { + "path": "png/vmware-workstation.png", + "mode": "100644", + "type": "blob", + "sha": "4f87547c894511f3360170c0d6df854a4c3f9ae0", + "size": 12092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f87547c894511f3360170c0d6df854a4c3f9ae0" + }, + { + "path": "png/vmware.png", + "mode": "100644", + "type": "blob", + "sha": "8c2ca4a9ce91a3aedcc31d02ab906d74f377d30e", + "size": 10269, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c2ca4a9ce91a3aedcc31d02ab906d74f377d30e" + }, + { + "path": "png/vn-stat.png", + "mode": "100644", + "type": "blob", + "sha": "d3434ad932d8ea8d2f4df53f538571af0057a83d", + "size": 1064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3434ad932d8ea8d2f4df53f538571af0057a83d" + }, + { + "path": "png/vodafone.png", + "mode": "100644", + "type": "blob", + "sha": "ac69aad4bf4fec73b5d13e7b0304336132e7ba5a", + "size": 14513, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac69aad4bf4fec73b5d13e7b0304336132e7ba5a" + }, + { + "path": "png/voilib.png", + "mode": "100644", + "type": "blob", + "sha": "f69204d8a489f899a8ab2b9953a0f9ae86c3a053", + "size": 28647, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f69204d8a489f899a8ab2b9953a0f9ae86c3a053" + }, + { + "path": "png/voip-info.png", + "mode": "100644", + "type": "blob", + "sha": "5cba51cf4bb39cbbf8f74fa414490630754ee42d", + "size": 21762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cba51cf4bb39cbbf8f74fa414490630754ee42d" + }, + { + "path": "png/voip-ms.png", + "mode": "100644", + "type": "blob", + "sha": "9a893ec265948d02e2414e9b8e1ea8e18c7d9d1a", + "size": 17633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a893ec265948d02e2414e9b8e1ea8e18c7d9d1a" + }, + { + "path": "png/voltaserve-light.png", + "mode": "100644", + "type": "blob", + "sha": "0516f68fc018b1c30ac05f533fb6cf6ba2a852d0", + "size": 16287, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0516f68fc018b1c30ac05f533fb6cf6ba2a852d0" + }, + { + "path": "png/voltaserve.png", + "mode": "100644", + "type": "blob", + "sha": "93d7008289c744b306de3bf9df68cd499bf5b4aa", + "size": 15567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93d7008289c744b306de3bf9df68cd499bf5b4aa" + }, + { + "path": "png/volumio-light.png", + "mode": "100644", + "type": "blob", + "sha": "5ff63129761de1218a1ab684c860c3a2b5c713e8", + "size": 22373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ff63129761de1218a1ab684c860c3a2b5c713e8" + }, + { + "path": "png/volumio.png", + "mode": "100644", + "type": "blob", + "sha": "0faa44665fc917a60b20579e4da0e2cd3fb2cc8c", + "size": 22991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0faa44665fc917a60b20579e4da0e2cd3fb2cc8c" + }, + { + "path": "png/voron.png", + "mode": "100644", + "type": "blob", + "sha": "c464561b78404a13d28eecba664ace2fc0f0fa7b", + "size": 19893, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c464561b78404a13d28eecba664ace2fc0f0fa7b" + }, + { + "path": "png/vouchervault.png", + "mode": "100644", + "type": "blob", + "sha": "0df5e9dc67b5e0664e81d8675803a4a7bcb59d88", + "size": 49058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0df5e9dc67b5e0664e81d8675803a4a7bcb59d88" + }, + { + "path": "png/vscode.png", + "mode": "100644", + "type": "blob", + "sha": "0ed147e9046547cc00d6fd708cf351961db9f5e4", + "size": 46504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ed147e9046547cc00d6fd708cf351961db9f5e4" + }, + { + "path": "png/vtvgo.png", + "mode": "100644", + "type": "blob", + "sha": "b5054ed38070fdb1fab022ba5a764525eeb3ab76", + "size": 43460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5054ed38070fdb1fab022ba5a764525eeb3ab76" + }, + { + "path": "png/vuetorrent.png", + "mode": "100644", + "type": "blob", + "sha": "bc948422d8b1fd37fc96aec9cbddff4f8779b542", + "size": 12870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc948422d8b1fd37fc96aec9cbddff4f8779b542" + }, + { + "path": "png/vultr.png", + "mode": "100644", + "type": "blob", + "sha": "5fbf9db5a0d7d7b88f726641795b096b4d75bcb1", + "size": 17438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fbf9db5a0d7d7b88f726641795b096b4d75bcb1" + }, + { + "path": "png/vuplus.png", + "mode": "100644", + "type": "blob", + "sha": "691f67d286d54d1473d562449278ef75c25cd47d", + "size": 9684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/691f67d286d54d1473d562449278ef75c25cd47d" + }, + { + "path": "png/wakapi.png", + "mode": "100644", + "type": "blob", + "sha": "8421406ba774d852add6825643eec234c76066ba", + "size": 29771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8421406ba774d852add6825643eec234c76066ba" + }, + { + "path": "png/wakatime-light.png", + "mode": "100644", + "type": "blob", + "sha": "d53e07eb90b4636275163e9aefe4d7c24d48ee8e", + "size": 23965, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d53e07eb90b4636275163e9aefe4d7c24d48ee8e" + }, + { + "path": "png/wakatime.png", + "mode": "100644", + "type": "blob", + "sha": "a06996d144ecc57afea7f2e089995430e5dfd62b", + "size": 17236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a06996d144ecc57afea7f2e089995430e5dfd62b" + }, + { + "path": "png/wallabag-light.png", + "mode": "100644", + "type": "blob", + "sha": "5b43600ef739d811204525a9247be9de756493a0", + "size": 16931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b43600ef739d811204525a9247be9de756493a0" + }, + { + "path": "png/wallabag.png", + "mode": "100644", + "type": "blob", + "sha": "4a02afa1c443bfccaa4adcfee250badffe9dc633", + "size": 14378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a02afa1c443bfccaa4adcfee250badffe9dc633" + }, + { + "path": "png/wallos.png", + "mode": "100644", + "type": "blob", + "sha": "fd718ddf08bc711b43a42f6f1df87478653bce6d", + "size": 14816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd718ddf08bc711b43a42f6f1df87478653bce6d" + }, + { + "path": "png/wanderer-light.png", + "mode": "100644", + "type": "blob", + "sha": "54db3b7b269896b4275ee828674af50371b27109", + "size": 25432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54db3b7b269896b4275ee828674af50371b27109" + }, + { + "path": "png/wanderer.png", + "mode": "100644", + "type": "blob", + "sha": "c12076cb78fd629e26a7f87bcade140f6487c3ce", + "size": 26845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c12076cb78fd629e26a7f87bcade140f6487c3ce" + }, + { + "path": "png/wanikani.png", + "mode": "100644", + "type": "blob", + "sha": "d0fb8286a93876d5d91c69d8d0528642bb608cc8", + "size": 152150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0fb8286a93876d5d91c69d8d0528642bb608cc8" + }, + { + "path": "png/ward.png", + "mode": "100644", + "type": "blob", + "sha": "97dfa26733265756d721a5b956b5eaa3c0b41b93", + "size": 78154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97dfa26733265756d721a5b956b5eaa3c0b41b93" + }, + { + "path": "png/warpgate.png", + "mode": "100644", + "type": "blob", + "sha": "b43654b0e2fc7145a3f26dec7fbb988cec49fbd5", + "size": 173223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b43654b0e2fc7145a3f26dec7fbb988cec49fbd5" + }, + { + "path": "png/warracker.png", + "mode": "100644", + "type": "blob", + "sha": "a24dd86fcccf42bac3987b1f2c24d670da87a013", + "size": 3755, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a24dd86fcccf42bac3987b1f2c24d670da87a013" + }, + { + "path": "png/watcharr-light.png", + "mode": "100644", + "type": "blob", + "sha": "3e72c6241ab19c3563fda2023a2b49937dccf350", + "size": 38021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e72c6241ab19c3563fda2023a2b49937dccf350" + }, + { + "path": "png/watcharr.png", + "mode": "100644", + "type": "blob", + "sha": "a11653cba8a8fa1ffad769705c704431b4fc2053", + "size": 28933, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a11653cba8a8fa1ffad769705c704431b4fc2053" + }, + { + "path": "png/watcher.png", + "mode": "100644", + "type": "blob", + "sha": "cd590f9f75321754acbe081a0e89a2b5c65b05c4", + "size": 6380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd590f9f75321754acbe081a0e89a2b5c65b05c4" + }, + { + "path": "png/watchlistarr.png", + "mode": "100644", + "type": "blob", + "sha": "711feaddc605c2c41ba684bae9bbca5060c90bf6", + "size": 203632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/711feaddc605c2c41ba684bae9bbca5060c90bf6" + }, + { + "path": "png/watchtower.png", + "mode": "100644", + "type": "blob", + "sha": "0a6c3c538d3fe0bdc80325a9f5692ef55f2a10e0", + "size": 22311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a6c3c538d3fe0bdc80325a9f5692ef55f2a10e0" + }, + { + "path": "png/watchyourlan.png", + "mode": "100644", + "type": "blob", + "sha": "fd73e8d6dcd5e0df07193cdbc244262c5b30f972", + "size": 15224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd73e8d6dcd5e0df07193cdbc244262c5b30f972" + }, + { + "path": "png/watchyourports.png", + "mode": "100644", + "type": "blob", + "sha": "8fb6877d85112d283c25e9ea14ec42a56c2e291b", + "size": 10699, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fb6877d85112d283c25e9ea14ec42a56c2e291b" + }, + { + "path": "png/wavelog.png", + "mode": "100644", + "type": "blob", + "sha": "65aaeddb41708cd55dd1136de85ef96aa9d7eca3", + "size": 29087, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65aaeddb41708cd55dd1136de85ef96aa9d7eca3" + }, + { + "path": "png/waze.png", + "mode": "100644", + "type": "blob", + "sha": "702541908384b969f5652d5b50f0cdd0414e18ad", + "size": 28374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/702541908384b969f5652d5b50f0cdd0414e18ad" + }, + { + "path": "png/wazuh.png", + "mode": "100644", + "type": "blob", + "sha": "045b703d6f484445d20bfeda3726d5bc014b4467", + "size": 22320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/045b703d6f484445d20bfeda3726d5bc014b4467" + }, + { + "path": "png/wbo.png", + "mode": "100644", + "type": "blob", + "sha": "0cd1fd994bd2def42ccea7df20cf360cef159dc5", + "size": 42601, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cd1fd994bd2def42ccea7df20cf360cef159dc5" + }, + { + "path": "png/wd-mycloud.png", + "mode": "100644", + "type": "blob", + "sha": "588fd136b9e84270b44c5d085d5d098c93571fad", + "size": 19326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/588fd136b9e84270b44c5d085d5d098c93571fad" + }, + { + "path": "png/web-check-dark.png", + "mode": "100644", + "type": "blob", + "sha": "94230cfe5329c8c6a09d559b7cb96a013a7895f1", + "size": 11713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94230cfe5329c8c6a09d559b7cb96a013a7895f1" + }, + { + "path": "png/web-check.png", + "mode": "100644", + "type": "blob", + "sha": "70cbe83f818c06b211ff69da9bc6986d9298d28d", + "size": 14704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70cbe83f818c06b211ff69da9bc6986d9298d28d" + }, + { + "path": "png/web-whisper.png", + "mode": "100644", + "type": "blob", + "sha": "cefdccf25cb6ce6a8310096912c1576521a75af9", + "size": 33001, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cefdccf25cb6ce6a8310096912c1576521a75af9" + }, + { + "path": "png/webdav.png", + "mode": "100644", + "type": "blob", + "sha": "9cf99825a7219f5554c508b47858ec1ea39c60b6", + "size": 4024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cf99825a7219f5554c508b47858ec1ea39c60b6" + }, + { + "path": "png/webdb.png", + "mode": "100644", + "type": "blob", + "sha": "d30d66a0999741d124141a061ec837d2fdada633", + "size": 21314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d30d66a0999741d124141a061ec837d2fdada633" + }, + { + "path": "png/webex.png", + "mode": "100644", + "type": "blob", + "sha": "8863b059185805241a0bd8fa8958b164846b658b", + "size": 187436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8863b059185805241a0bd8fa8958b164846b658b" + }, + { + "path": "png/webhook.png", + "mode": "100644", + "type": "blob", + "sha": "380c53bf56cb2bd7538f73fdbd1eb87b31b9ec0b", + "size": 31056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/380c53bf56cb2bd7538f73fdbd1eb87b31b9ec0b" + }, + { + "path": "png/webhookd.png", + "mode": "100644", + "type": "blob", + "sha": "b3f64a455f4df86375c93ffbfe28cf2ddc526510", + "size": 32902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3f64a455f4df86375c93ffbfe28cf2ddc526510" + }, + { + "path": "png/webkit.png", + "mode": "100644", + "type": "blob", + "sha": "1e229a9845407b57c0f47fbde3424538b0cb3d14", + "size": 37813, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e229a9845407b57c0f47fbde3424538b0cb3d14" + }, + { + "path": "png/webmin.png", + "mode": "100644", + "type": "blob", + "sha": "751163db6f5afbfddd74e8bb97e8cd7e6c97e826", + "size": 42858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/751163db6f5afbfddd74e8bb97e8cd7e6c97e826" + }, + { + "path": "png/webtools.png", + "mode": "100644", + "type": "blob", + "sha": "437113c2fb5b5f24314dcea75a0eefec9107c039", + "size": 14281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/437113c2fb5b5f24314dcea75a0eefec9107c039" + }, + { + "path": "png/webtop.png", + "mode": "100644", + "type": "blob", + "sha": "ebb34e699bb753a32c6b544514e3f4ec7cee7108", + "size": 30212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebb34e699bb753a32c6b544514e3f4ec7cee7108" + }, + { + "path": "png/webtorrent.png", + "mode": "100644", + "type": "blob", + "sha": "63918d352a4300674ff13a555325aae5b5800927", + "size": 20799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63918d352a4300674ff13a555325aae5b5800927" + }, + { + "path": "png/webtrees.png", + "mode": "100644", + "type": "blob", + "sha": "d48255c3b7d2f237d8f379f2e557ce8c594a8778", + "size": 55606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d48255c3b7d2f237d8f379f2e557ce8c594a8778" + }, + { + "path": "png/wekan.png", + "mode": "100644", + "type": "blob", + "sha": "4bdaf0cc4b05c7eca68dd47f2e93d203a1e8d122", + "size": 21283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bdaf0cc4b05c7eca68dd47f2e93d203a1e8d122" + }, + { + "path": "png/wero-dark.png", + "mode": "100644", + "type": "blob", + "sha": "4d4cc2746d0a5a52bcc825d390f952cb94338e7a", + "size": 9365, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d4cc2746d0a5a52bcc825d390f952cb94338e7a" + }, + { + "path": "png/wero.png", + "mode": "100644", + "type": "blob", + "sha": "d75f39af8d44140a615e199e933c64a787a45450", + "size": 18733, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d75f39af8d44140a615e199e933c64a787a45450" + }, + { + "path": "png/western-digital.png", + "mode": "100644", + "type": "blob", + "sha": "ef5c2fce587de14ee4957b6b23c4a139d7dea023", + "size": 13113, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef5c2fce587de14ee4957b6b23c4a139d7dea023" + }, + { + "path": "png/wetty.png", + "mode": "100644", + "type": "blob", + "sha": "5a04e7b177b34b98ad848e5e6b50ffefc7f959f5", + "size": 31941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a04e7b177b34b98ad848e5e6b50ffefc7f959f5" + }, + { + "path": "png/wevr-labs.png", + "mode": "100644", + "type": "blob", + "sha": "a8a0c761a235301c57451fdeb926d755799f2029", + "size": 17119, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8a0c761a235301c57451fdeb926d755799f2029" + }, + { + "path": "png/wg-gen-web-light.png", + "mode": "100644", + "type": "blob", + "sha": "ed9c6d3fdf1f45256986c513cbf60bd5ad7ebe23", + "size": 22549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed9c6d3fdf1f45256986c513cbf60bd5ad7ebe23" + }, + { + "path": "png/wg-gen-web.png", + "mode": "100644", + "type": "blob", + "sha": "f1b33fda20cfb42be2e5b825c62a8ac50a3a8f0e", + "size": 14515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1b33fda20cfb42be2e5b825c62a8ac50a3a8f0e" + }, + { + "path": "png/wger.png", + "mode": "100644", + "type": "blob", + "sha": "cd0999ca1ff87923605089fa65b2c51c0c6b10ab", + "size": 12428, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd0999ca1ff87923605089fa65b2c51c0c6b10ab" + }, + { + "path": "png/whatnot.png", + "mode": "100644", + "type": "blob", + "sha": "1355e002ff5a134a0e21926ff0afa027f4867cb8", + "size": 16984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1355e002ff5a134a0e21926ff0afa027f4867cb8" + }, + { + "path": "png/whats-up-docker.png", + "mode": "100644", + "type": "blob", + "sha": "9ff08f646e1316429adda777280bcf2bddfcaa0d", + "size": 105962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ff08f646e1316429adda777280bcf2bddfcaa0d" + }, + { + "path": "png/whatsapp.png", + "mode": "100644", + "type": "blob", + "sha": "10ecdfb5f6e3c3cc0de2665c9e15116dbc49d50c", + "size": 33884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10ecdfb5f6e3c3cc0de2665c9e15116dbc49d50c" + }, + { + "path": "png/whisparr.png", + "mode": "100644", + "type": "blob", + "sha": "3b818e24c612842d25f6987760ff5570081a0cad", + "size": 46482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b818e24c612842d25f6987760ff5570081a0cad" + }, + { + "path": "png/whodb.png", + "mode": "100644", + "type": "blob", + "sha": "ea3b4e4db8ea97520ca4fde5efe428c4e652d48c", + "size": 32553, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea3b4e4db8ea97520ca4fde5efe428c4e652d48c" + }, + { + "path": "png/whoogle.png", + "mode": "100644", + "type": "blob", + "sha": "572c28bdc9444c1c5cc2eb8f3e755adbbe3aa2a9", + "size": 5055, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/572c28bdc9444c1c5cc2eb8f3e755adbbe3aa2a9" + }, + { + "path": "png/wifiman.png", + "mode": "100644", + "type": "blob", + "sha": "be54b81d22bd339710a3d9b9225545048322d563", + "size": 33235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be54b81d22bd339710a3d9b9225545048322d563" + }, + { + "path": "png/wiki-go.png", + "mode": "100644", + "type": "blob", + "sha": "d8033baeae0e210451ae8d74138e37e55b34627d", + "size": 9713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8033baeae0e210451ae8d74138e37e55b34627d" + }, + { + "path": "png/wikidocs.png", + "mode": "100644", + "type": "blob", + "sha": "bfbc152e366072e618bb8ca3298c7bd230b3bf62", + "size": 10086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfbc152e366072e618bb8ca3298c7bd230b3bf62" + }, + { + "path": "png/wikijs-alt.png", + "mode": "100644", + "type": "blob", + "sha": "54738479978f9c9e727546710dcc69027af6c075", + "size": 238674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54738479978f9c9e727546710dcc69027af6c075" + }, + { + "path": "png/wikijs.png", + "mode": "100644", + "type": "blob", + "sha": "842f73c4fc10a3e52bd38759e73d98cbc4f37498", + "size": 160385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/842f73c4fc10a3e52bd38759e73d98cbc4f37498" + }, + { + "path": "png/wikipedia-light.png", + "mode": "100644", + "type": "blob", + "sha": "8556e03df8953420766ce3245881e8eda045dbb8", + "size": 24433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8556e03df8953420766ce3245881e8eda045dbb8" + }, + { + "path": "png/wikipedia.png", + "mode": "100644", + "type": "blob", + "sha": "4d34f3beeff4648d82d03d404a298a91d06f78ec", + "size": 23179, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d34f3beeff4648d82d03d404a298a91d06f78ec" + }, + { + "path": "png/willow.png", + "mode": "100644", + "type": "blob", + "sha": "9f9b978fbaa552a8f0135a24fa9fc4181c67887a", + "size": 28119, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f9b978fbaa552a8f0135a24fa9fc4181c67887a" + }, + { + "path": "png/windmill.png", + "mode": "100644", + "type": "blob", + "sha": "b56dcee028018adb39e2522e805c623612bf0515", + "size": 23738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b56dcee028018adb39e2522e805c623612bf0515" + }, + { + "path": "png/windows-10.png", + "mode": "100644", + "type": "blob", + "sha": "5be067f88dfde8461d6b28e361057b74e7ce4381", + "size": 5900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5be067f88dfde8461d6b28e361057b74e7ce4381" + }, + { + "path": "png/windows-11.png", + "mode": "100644", + "type": "blob", + "sha": "ce7b366d9f65d24ae8c313c42df3e84bedc22221", + "size": 76463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce7b366d9f65d24ae8c313c42df3e84bedc22221" + }, + { + "path": "png/windows-7.png", + "mode": "100644", + "type": "blob", + "sha": "bdf90f6b94240be1dbb6cfdfe1ee3142ca4a042e", + "size": 162940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdf90f6b94240be1dbb6cfdfe1ee3142ca4a042e" + }, + { + "path": "png/windows-95-light.png", + "mode": "100644", + "type": "blob", + "sha": "cbad7bbdbf234e134c16cec7fd55fc7a83f1c212", + "size": 36043, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbad7bbdbf234e134c16cec7fd55fc7a83f1c212" + }, + { + "path": "png/windows-95.png", + "mode": "100644", + "type": "blob", + "sha": "e0545dd6eae7b2b971db49e17357e9abcd6f9bce", + "size": 34811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0545dd6eae7b2b971db49e17357e9abcd6f9bce" + }, + { + "path": "png/windows-98.png", + "mode": "100644", + "type": "blob", + "sha": "f84e06695f6578681b26525294caa59a8d598904", + "size": 35507, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f84e06695f6578681b26525294caa59a8d598904" + }, + { + "path": "png/windows-retro-light.png", + "mode": "100644", + "type": "blob", + "sha": "78d0f75b2ef41df21ce0d34827427f67c2cc3d23", + "size": 24846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78d0f75b2ef41df21ce0d34827427f67c2cc3d23" + }, + { + "path": "png/windows-retro.png", + "mode": "100644", + "type": "blob", + "sha": "79c8e9e5859ab9885d5862cb2d56c2c861b2a0ed", + "size": 22613, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79c8e9e5859ab9885d5862cb2d56c2c861b2a0ed" + }, + { + "path": "png/windows-vista.png", + "mode": "100644", + "type": "blob", + "sha": "01cadf7638cdaa7093fd1776f5588e56d9085198", + "size": 188580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01cadf7638cdaa7093fd1776f5588e56d9085198" + }, + { + "path": "png/windows-xp.png", + "mode": "100644", + "type": "blob", + "sha": "7caa7c764e2faf21feb380d55e7337a9649ca7a4", + "size": 125349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7caa7c764e2faf21feb380d55e7337a9649ca7a4" + }, + { + "path": "png/wireguard.png", + "mode": "100644", + "type": "blob", + "sha": "7eaeb19469753fb97e6d696888269a03d8b11f78", + "size": 25365, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7eaeb19469753fb97e6d696888269a03d8b11f78" + }, + { + "path": "png/wirenboard.png", + "mode": "100644", + "type": "blob", + "sha": "46031eb78f5b88aba5856e0de627bc5ff213566f", + "size": 17916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46031eb78f5b88aba5856e0de627bc5ff213566f" + }, + { + "path": "png/wireshark.png", + "mode": "100644", + "type": "blob", + "sha": "cd3bdf8aa1975098cc62e2db7879175104970b11", + "size": 156875, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd3bdf8aa1975098cc62e2db7879175104970b11" + }, + { + "path": "png/wizarr.png", + "mode": "100644", + "type": "blob", + "sha": "6594b442a53c6da34141ee330b6a60365b9b0e50", + "size": 26480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6594b442a53c6da34141ee330b6a60365b9b0e50" + }, + { + "path": "png/wled.png", + "mode": "100644", + "type": "blob", + "sha": "192e9383310214e108895ff4d8e75d501feca1fc", + "size": 779, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/192e9383310214e108895ff4d8e75d501feca1fc" + }, + { + "path": "png/wolfi-light.png", + "mode": "100644", + "type": "blob", + "sha": "b0adacd6c71e9f53706172148ba8831955509f50", + "size": 45823, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0adacd6c71e9f53706172148ba8831955509f50" + }, + { + "path": "png/wolfi.png", + "mode": "100644", + "type": "blob", + "sha": "35b7a98e92a2bce083a8d3f6a94df5fc39ae6b73", + "size": 49641, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35b7a98e92a2bce083a8d3f6a94df5fc39ae6b73" + }, + { + "path": "png/woocommerce.png", + "mode": "100644", + "type": "blob", + "sha": "83b628aa75e6a4dbda1a34f438b5a0a7a7908aca", + "size": 36958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83b628aa75e6a4dbda1a34f438b5a0a7a7908aca" + }, + { + "path": "png/woodpecker-ci.png", + "mode": "100644", + "type": "blob", + "sha": "fa82d91ed7a460a6d4189f0f0a10846d1edf8685", + "size": 16878, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa82d91ed7a460a6d4189f0f0a10846d1edf8685" + }, + { + "path": "png/wooting-dark.png", + "mode": "100644", + "type": "blob", + "sha": "acaaeaf0dd88cdb439508444468c57486d29785e", + "size": 4207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acaaeaf0dd88cdb439508444468c57486d29785e" + }, + { + "path": "png/wooting.png", + "mode": "100644", + "type": "blob", + "sha": "6c597b10272e804be5e7eab2737be4dbeaf1eb6d", + "size": 4207, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c597b10272e804be5e7eab2737be4dbeaf1eb6d" + }, + { + "path": "png/wordpress.png", + "mode": "100644", + "type": "blob", + "sha": "ed28fe49990c435c23a263ae8e393d27fbe9da67", + "size": 39351, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed28fe49990c435c23a263ae8e393d27fbe9da67" + }, + { + "path": "png/workadventure.png", + "mode": "100644", + "type": "blob", + "sha": "97e617654593da1e073045c6cb04f3f3ecbedaa2", + "size": 2156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97e617654593da1e073045c6cb04f3f3ecbedaa2" + }, + { + "path": "png/worklenz.png", + "mode": "100644", + "type": "blob", + "sha": "56dfcfbe38ff7efdd916d816c0d5a3393ef2be5e", + "size": 26664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56dfcfbe38ff7efdd916d816c0d5a3393ef2be5e" + }, + { + "path": "png/wotdle-light.png", + "mode": "100644", + "type": "blob", + "sha": "9b185e544f208a71455e2c109533dd4e257e0e89", + "size": 15163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b185e544f208a71455e2c109533dd4e257e0e89" + }, + { + "path": "png/wotdle.png", + "mode": "100644", + "type": "blob", + "sha": "5a63a9172e354cc3724e997e97ce3c21fbda92cf", + "size": 16349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a63a9172e354cc3724e997e97ce3c21fbda92cf" + }, + { + "path": "png/wownero.png", + "mode": "100644", + "type": "blob", + "sha": "28a275d96d14fcd7cb9ca2ff0bb731d5b17c2b44", + "size": 29366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28a275d96d14fcd7cb9ca2ff0bb731d5b17c2b44" + }, + { + "path": "png/writefreely-light.png", + "mode": "100644", + "type": "blob", + "sha": "7e98dc80fbd28f224652af38f098a4a4f4ed62a2", + "size": 20801, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e98dc80fbd28f224652af38f098a4a4f4ed62a2" + }, + { + "path": "png/writefreely.png", + "mode": "100644", + "type": "blob", + "sha": "7bc63699094eaef0b3281ef87380faf909e6401c", + "size": 21069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bc63699094eaef0b3281ef87380faf909e6401c" + }, + { + "path": "png/wsz.png", + "mode": "100644", + "type": "blob", + "sha": "6e85aeea9241b1016dd408bf76afc0489b7398d3", + "size": 57098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e85aeea9241b1016dd408bf76afc0489b7398d3" + }, + { + "path": "png/x-light.png", + "mode": "100644", + "type": "blob", + "sha": "99131def947aedfccf09a7e0132b4b0aea9453ee", + "size": 26707, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99131def947aedfccf09a7e0132b4b0aea9453ee" + }, + { + "path": "png/x.png", + "mode": "100644", + "type": "blob", + "sha": "b466a62ed13534a73fc161d144cc09ec31ddfe17", + "size": 16314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b466a62ed13534a73fc161d144cc09ec31ddfe17" + }, + { + "path": "png/xbackbone.png", + "mode": "100644", + "type": "blob", + "sha": "a34b1208ab8a2f07817511d5ef7a60982414eb21", + "size": 31275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a34b1208ab8a2f07817511d5ef7a60982414eb21" + }, + { + "path": "png/xbox-game-pass.png", + "mode": "100644", + "type": "blob", + "sha": "4f7c04cf1092932388bd001fa625d0074caed6d3", + "size": 29158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f7c04cf1092932388bd001fa625d0074caed6d3" + }, + { + "path": "png/xbox.png", + "mode": "100644", + "type": "blob", + "sha": "8b6da8e89d0cfc5103829622f4b59fd6a42a10c9", + "size": 23635, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b6da8e89d0cfc5103829622f4b59fd6a42a10c9" + }, + { + "path": "png/xbrowsersync.png", + "mode": "100644", + "type": "blob", + "sha": "3cfa13093952ec2ece79b9d5108871131455a896", + "size": 43648, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cfa13093952ec2ece79b9d5108871131455a896" + }, + { + "path": "png/xcp-ng.png", + "mode": "100644", + "type": "blob", + "sha": "9df33b83e8449a488ec1513df7e6189dd0d61702", + "size": 46320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9df33b83e8449a488ec1513df7e6189dd0d61702" + }, + { + "path": "png/xen-orchestra.png", + "mode": "100644", + "type": "blob", + "sha": "a8cd9491806a39b67aa67aef0c763aae2078eef9", + "size": 73459, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8cd9491806a39b67aa67aef0c763aae2078eef9" + }, + { + "path": "png/xiaomi-global.png", + "mode": "100644", + "type": "blob", + "sha": "ac1af450b95364806a81aca53da9a53b277ba271", + "size": 9792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac1af450b95364806a81aca53da9a53b277ba271" + }, + { + "path": "png/xigmanas.png", + "mode": "100644", + "type": "blob", + "sha": "3dfb9ee6d09e742c61291bf5b9b1c825f4b50322", + "size": 16565, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3dfb9ee6d09e742c61291bf5b9b1c825f4b50322" + }, + { + "path": "png/xmr.png", + "mode": "100644", + "type": "blob", + "sha": "7e041763b7cbcb75f2f730cde6dcb3e91c566006", + "size": 17658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e041763b7cbcb75f2f730cde6dcb3e91c566006" + }, + { + "path": "png/xmrig.png", + "mode": "100644", + "type": "blob", + "sha": "8453388c8f3abe4ccaae6cf33f15ce349449df53", + "size": 20089, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8453388c8f3abe4ccaae6cf33f15ce349449df53" + }, + { + "path": "png/xpipe.png", + "mode": "100644", + "type": "blob", + "sha": "a58ae0a763337d355bcc21fa9869eb07053c58f1", + "size": 59892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a58ae0a763337d355bcc21fa9869eb07053c58f1" + }, + { + "path": "png/xteve.png", + "mode": "100644", + "type": "blob", + "sha": "87d8c9dd517637dece7bae6d0dc8cae4c432dc64", + "size": 3465, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87d8c9dd517637dece7bae6d0dc8cae4c432dc64" + }, + { + "path": "png/xubuntu-linux.png", + "mode": "100644", + "type": "blob", + "sha": "ae5a41eeff736b7082965f97538fa75a766fc45e", + "size": 9099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae5a41eeff736b7082965f97538fa75a766fc45e" + }, + { + "path": "png/xwiki.png", + "mode": "100644", + "type": "blob", + "sha": "26faa30ef0110070d3742c01b5247f0aa0ce5f86", + "size": 15664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26faa30ef0110070d3742c01b5247f0aa0ce5f86" + }, + { + "path": "png/yaade.png", + "mode": "100644", + "type": "blob", + "sha": "09fb0beed53996d1bb61c02e4db9e24c978d8071", + "size": 8791, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09fb0beed53996d1bb61c02e4db9e24c978d8071" + }, + { + "path": "png/yac-reader.png", + "mode": "100644", + "type": "blob", + "sha": "71438b38aee30fdbf24c599fefa9a17df69020e0", + "size": 16379, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71438b38aee30fdbf24c599fefa9a17df69020e0" + }, + { + "path": "png/yacd-blue.png", + "mode": "100644", + "type": "blob", + "sha": "b5dda2ac828de9dfcd7f9dacae9d2b0d9fe3ed44", + "size": 24436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5dda2ac828de9dfcd7f9dacae9d2b0d9fe3ed44" + }, + { + "path": "png/yacd.png", + "mode": "100644", + "type": "blob", + "sha": "97bbd6f9488d6aa170fffd6e53145be9832aa5eb", + "size": 5705, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97bbd6f9488d6aa170fffd6e53145be9832aa5eb" + }, + { + "path": "png/yacht.png", + "mode": "100644", + "type": "blob", + "sha": "6763e58c30c6f4259d55e46ab672e2835a1cf259", + "size": 39014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6763e58c30c6f4259d55e46ab672e2835a1cf259" + }, + { + "path": "png/yahoo-mail.png", + "mode": "100644", + "type": "blob", + "sha": "bc1588ee764ae42c79e38d11b8931b594c97e68d", + "size": 44270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc1588ee764ae42c79e38d11b8931b594c97e68d" + }, + { + "path": "png/yahoo.png", + "mode": "100644", + "type": "blob", + "sha": "fac3789626ac1ea8bac91594d261a1578abd5222", + "size": 18170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fac3789626ac1ea8bac91594d261a1578abd5222" + }, + { + "path": "png/yamtrack-light.png", + "mode": "100644", + "type": "blob", + "sha": "47a848d28c78fd9527f378ac2eed20da7f44142c", + "size": 19349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47a848d28c78fd9527f378ac2eed20da7f44142c" + }, + { + "path": "png/yamtrack.png", + "mode": "100644", + "type": "blob", + "sha": "87cdce418ea154b3c8ebe5ddf70091aa117e4621", + "size": 22528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87cdce418ea154b3c8ebe5ddf70091aa117e4621" + }, + { + "path": "png/yandex.png", + "mode": "100644", + "type": "blob", + "sha": "5ecd12ab3b036500d0324500f34d5a3d97774448", + "size": 13039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ecd12ab3b036500d0324500f34d5a3d97774448" + }, + { + "path": "png/yarn-social.png", + "mode": "100644", + "type": "blob", + "sha": "b5e38e753081678bc233c0251aa53ec23b326a34", + "size": 11901, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e38e753081678bc233c0251aa53ec23b326a34" + }, + { + "path": "png/yarr-light.png", + "mode": "100644", + "type": "blob", + "sha": "bc123cef4780569a9262a0ba61c606b928d75404", + "size": 19903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc123cef4780569a9262a0ba61c606b928d75404" + }, + { + "path": "png/yarr.png", + "mode": "100644", + "type": "blob", + "sha": "27da28c8d088e52b90fad45c393a3b41c4f6073a", + "size": 20671, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27da28c8d088e52b90fad45c393a3b41c4f6073a" + }, + { + "path": "png/yazi.png", + "mode": "100644", + "type": "blob", + "sha": "1676d73d0ec7e770f972f01c3220696b0990efe3", + "size": 113012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1676d73d0ec7e770f972f01c3220696b0990efe3" + }, + { + "path": "png/ycombinator-dark.png", + "mode": "100644", + "type": "blob", + "sha": "38a3f81e365bac8663d4bb1c170ee1c79b3aaf5f", + "size": 6616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38a3f81e365bac8663d4bb1c170ee1c79b3aaf5f" + }, + { + "path": "png/ycombinator.png", + "mode": "100644", + "type": "blob", + "sha": "19d2f8c49c8a976601366a9f8d2e18615ae0a281", + "size": 6944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19d2f8c49c8a976601366a9f8d2e18615ae0a281" + }, + { + "path": "png/ymarks.png", + "mode": "100644", + "type": "blob", + "sha": "0d73929dca672d42e918524ebbdf5900f5b88928", + "size": 2604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d73929dca672d42e918524ebbdf5900f5b88928" + }, + { + "path": "png/ynab.png", + "mode": "100644", + "type": "blob", + "sha": "21ce33ac5d653e21b9960722899f54bb826116f2", + "size": 32580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21ce33ac5d653e21b9960722899f54bb826116f2" + }, + { + "path": "png/your-spotify.png", + "mode": "100644", + "type": "blob", + "sha": "ab54c6143a4aeb3d042ab992d275edef03c70ad9", + "size": 23892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab54c6143a4aeb3d042ab992d275edef03c70ad9" + }, + { + "path": "png/yourls.png", + "mode": "100644", + "type": "blob", + "sha": "bfa762a539aeb5249388d7b357a33213220668f6", + "size": 47950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfa762a539aeb5249388d7b357a33213220668f6" + }, + { + "path": "png/youtarr.png", + "mode": "100644", + "type": "blob", + "sha": "21d79fb95ce261fb8cfd3d4685713d214f5fddc1", + "size": 184199, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21d79fb95ce261fb8cfd3d4685713d214f5fddc1" + }, + { + "path": "png/youtube-dl.png", + "mode": "100644", + "type": "blob", + "sha": "8f4b7485fb782b059beee81477bb3bb355cb875b", + "size": 19923, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f4b7485fb782b059beee81477bb3bb355cb875b" + }, + { + "path": "png/youtube-kids.png", + "mode": "100644", + "type": "blob", + "sha": "4e676cef4d5d3e0e8c30bf515f18441e00d217fd", + "size": 37668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e676cef4d5d3e0e8c30bf515f18441e00d217fd" + }, + { + "path": "png/youtube-music.png", + "mode": "100644", + "type": "blob", + "sha": "51cbaa7beae65743905fc4714af8259561ff25c5", + "size": 20196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51cbaa7beae65743905fc4714af8259561ff25c5" + }, + { + "path": "png/youtube-tv.png", + "mode": "100644", + "type": "blob", + "sha": "f4d630b783d5175c0d6168c3c8de58ba2b13b57b", + "size": 3475, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4d630b783d5175c0d6168c3c8de58ba2b13b57b" + }, + { + "path": "png/youtube.png", + "mode": "100644", + "type": "blob", + "sha": "46ed4ca7878d8e2c42fcc6bde8addae5af5ad9cc", + "size": 11876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46ed4ca7878d8e2c42fcc6bde8addae5af5ad9cc" + }, + { + "path": "png/yt-dlp.png", + "mode": "100644", + "type": "blob", + "sha": "5858ecc7cccfb7b33fda46fa97710dfecf3f06c9", + "size": 45434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5858ecc7cccfb7b33fda46fa97710dfecf3f06c9" + }, + { + "path": "png/yts.png", + "mode": "100644", + "type": "blob", + "sha": "05c68e6a0519a5af11c11d7cb95151438400965e", + "size": 57750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05c68e6a0519a5af11c11d7cb95151438400965e" + }, + { + "path": "png/yuno-host-light.png", + "mode": "100644", + "type": "blob", + "sha": "e2c8756f530e5fee9e12201c90dada50061735eb", + "size": 33345, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2c8756f530e5fee9e12201c90dada50061735eb" + }, + { + "path": "png/yunohost.png", + "mode": "100644", + "type": "blob", + "sha": "5b884d2e412dbd3c5563ed178cd3f9b8101147cf", + "size": 32715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b884d2e412dbd3c5563ed178cd3f9b8101147cf" + }, + { + "path": "png/z-ai.png", + "mode": "100644", + "type": "blob", + "sha": "81b2d5fc8781df4eb190d8012bbcfd5df6db3ece", + "size": 5476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81b2d5fc8781df4eb190d8012bbcfd5df6db3ece" + }, + { + "path": "png/z-wave-js-ui.png", + "mode": "100644", + "type": "blob", + "sha": "38883cb128a698b611c157e7c091357777fcef0c", + "size": 22820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38883cb128a698b611c157e7c091357777fcef0c" + }, + { + "path": "png/zabbix.png", + "mode": "100644", + "type": "blob", + "sha": "11e557e313712a9c7152562d7a27f34c4ec44db1", + "size": 14177, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11e557e313712a9c7152562d7a27f34c4ec44db1" + }, + { + "path": "png/zabka.png", + "mode": "100644", + "type": "blob", + "sha": "be5f0556513a505d0cfe5cc26970245cc68b6d81", + "size": 37416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be5f0556513a505d0cfe5cc26970245cc68b6d81" + }, + { + "path": "png/zalo.png", + "mode": "100644", + "type": "blob", + "sha": "1677751ea6bdfbabe4d499c901629ec03c4eab3c", + "size": 16152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1677751ea6bdfbabe4d499c901629ec03c4eab3c" + }, + { + "path": "png/zammad.png", + "mode": "100644", + "type": "blob", + "sha": "ecda25b0d9667c977d39d0a38704dd63ca708a97", + "size": 30067, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecda25b0d9667c977d39d0a38704dd63ca708a97" + }, + { + "path": "png/zapier-dark.png", + "mode": "100644", + "type": "blob", + "sha": "b26d5812f2cc9c46c4281fb851a8f2db52625461", + "size": 29656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b26d5812f2cc9c46c4281fb851a8f2db52625461" + }, + { + "path": "png/zapier.png", + "mode": "100644", + "type": "blob", + "sha": "09972e298e3d98d151e4e758142aa489ef0ae41f", + "size": 31545, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09972e298e3d98d151e4e758142aa489ef0ae41f" + }, + { + "path": "png/zashboard-dark.png", + "mode": "100644", + "type": "blob", + "sha": "e88bb005c10226c54c03a12df509654af5280ed9", + "size": 6630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e88bb005c10226c54c03a12df509654af5280ed9" + }, + { + "path": "png/zashboard.png", + "mode": "100644", + "type": "blob", + "sha": "5f39a13ca570d0b143754c42e8d0e636ec30ba65", + "size": 6630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f39a13ca570d0b143754c42e8d0e636ec30ba65" + }, + { + "path": "png/zen-browser-dark.png", + "mode": "100644", + "type": "blob", + "sha": "1745767e78ee697b16c51331897cf41840c9b6f2", + "size": 23711, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1745767e78ee697b16c51331897cf41840c9b6f2" + }, + { + "path": "png/zen-browser.png", + "mode": "100644", + "type": "blob", + "sha": "8bb5e36a1cbcef7e72091bdc6669fec7ce75877c", + "size": 23983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bb5e36a1cbcef7e72091bdc6669fec7ce75877c" + }, + { + "path": "png/zenarmor.png", + "mode": "100644", + "type": "blob", + "sha": "5219eb30f7c778ca4db21ebbc6ebc72e8a4b88b4", + "size": 11144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5219eb30f7c778ca4db21ebbc6ebc72e8a4b88b4" + }, + { + "path": "png/zendesk.png", + "mode": "100644", + "type": "blob", + "sha": "e6de457e6d0a34a0ba21248d2501c8cfaafa7fad", + "size": 18122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6de457e6d0a34a0ba21248d2501c8cfaafa7fad" + }, + { + "path": "png/zerotier-light.png", + "mode": "100644", + "type": "blob", + "sha": "4387fa5506409f3527891c92dc72e88883f29a6e", + "size": 11614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4387fa5506409f3527891c92dc72e88883f29a6e" + }, + { + "path": "png/zerotier.png", + "mode": "100644", + "type": "blob", + "sha": "5de0920db1ac76148f5be53ace1821106e37ac83", + "size": 13294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5de0920db1ac76148f5be53ace1821106e37ac83" + }, + { + "path": "png/zigbee2mqtt-light.png", + "mode": "100644", + "type": "blob", + "sha": "8ffd885942bd988bd1fc36b2b4e78f4d925286d2", + "size": 18525, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ffd885942bd988bd1fc36b2b4e78f4d925286d2" + }, + { + "path": "png/zigbee2mqtt.png", + "mode": "100644", + "type": "blob", + "sha": "3641e3c0252d1b4df4e1faeade8dc2b5ae3dc09f", + "size": 20009, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3641e3c0252d1b4df4e1faeade8dc2b5ae3dc09f" + }, + { + "path": "png/zima-os.png", + "mode": "100644", + "type": "blob", + "sha": "5f10ac158d93c4f7be8007aed1881cbca7c6252f", + "size": 69170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f10ac158d93c4f7be8007aed1881cbca7c6252f" + }, + { + "path": "png/zimbra.png", + "mode": "100644", + "type": "blob", + "sha": "db4f0eb08758336e53374c7ae1f8a57fb207a975", + "size": 36072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db4f0eb08758336e53374c7ae1f8a57fb207a975" + }, + { + "path": "png/zipcaptions.png", + "mode": "100644", + "type": "blob", + "sha": "bddc9515d4876e6330d56dd7132d20f346c1374d", + "size": 16334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bddc9515d4876e6330d56dd7132d20f346c1374d" + }, + { + "path": "png/zipline-diced.png", + "mode": "100644", + "type": "blob", + "sha": "84cfb447032c0abc1aec00e614b563d40b986f55", + "size": 24147, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84cfb447032c0abc1aec00e614b563d40b986f55" + }, + { + "path": "png/zipline-light.png", + "mode": "100644", + "type": "blob", + "sha": "c2d62baa7b248012875a5d61c8fdac95210034a5", + "size": 26036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2d62baa7b248012875a5d61c8fdac95210034a5" + }, + { + "path": "png/zipline.png", + "mode": "100644", + "type": "blob", + "sha": "cddd6bb21cdaeba5cdc15a22caa269b381319172", + "size": 23460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cddd6bb21cdaeba5cdc15a22caa269b381319172" + }, + { + "path": "png/zitadel-light.png", + "mode": "100644", + "type": "blob", + "sha": "926f2a2b4b2844faa31a36babca0fc4e61908cc6", + "size": 20981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/926f2a2b4b2844faa31a36babca0fc4e61908cc6" + }, + { + "path": "png/zitadel.png", + "mode": "100644", + "type": "blob", + "sha": "f6fa8634d1a782c9a5a1e0defc4c42b75c317b60", + "size": 23253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6fa8634d1a782c9a5a1e0defc4c42b75c317b60" + }, + { + "path": "png/znc.png", + "mode": "100644", + "type": "blob", + "sha": "2f7c37e3ed3400a9b801ff8861bba6a96850f6f6", + "size": 24297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f7c37e3ed3400a9b801ff8861bba6a96850f6f6" + }, + { + "path": "png/zohomail.png", + "mode": "100644", + "type": "blob", + "sha": "13a9571c297b047777641fdaf4f249077cd309e2", + "size": 22807, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13a9571c297b047777641fdaf4f249077cd309e2" + }, + { + "path": "png/zomro.png", + "mode": "100644", + "type": "blob", + "sha": "e3aac2e629a5fc7a95df3bb46fc196490453eb32", + "size": 61250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3aac2e629a5fc7a95df3bb46fc196490453eb32" + }, + { + "path": "png/zoneminder.png", + "mode": "100644", + "type": "blob", + "sha": "4022e8f9118c60199948f03e8494ab7a5c7ef4ea", + "size": 65388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4022e8f9118c60199948f03e8494ab7a5c7ef4ea" + }, + { + "path": "png/zoom-alt.png", + "mode": "100644", + "type": "blob", + "sha": "2d879362641f246b0f5cc15bfcdb0b6c7cef9dc3", + "size": 58867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d879362641f246b0f5cc15bfcdb0b6c7cef9dc3" + }, + { + "path": "png/zoom.png", + "mode": "100644", + "type": "blob", + "sha": "622db52e252a1a4bd63f577b5028f6700a97da8c", + "size": 14985, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/622db52e252a1a4bd63f577b5028f6700a97da8c" + }, + { + "path": "png/zoraxy.png", + "mode": "100644", + "type": "blob", + "sha": "af55270da89e6e11f68ccb49f4224aeac1f09910", + "size": 22038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af55270da89e6e11f68ccb49f4224aeac1f09910" + }, + { + "path": "png/zorin-linux.png", + "mode": "100644", + "type": "blob", + "sha": "f3fdf40f9fb707e7fccae71b413cd53b64867b7a", + "size": 9554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3fdf40f9fb707e7fccae71b413cd53b64867b7a" + }, + { + "path": "png/zot-registry.png", + "mode": "100644", + "type": "blob", + "sha": "053cd8b2ec18a8c2eac930e5445ba7ace6493bab", + "size": 19829, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/053cd8b2ec18a8c2eac930e5445ba7ace6493bab" + }, + { + "path": "png/zulip.png", + "mode": "100644", + "type": "blob", + "sha": "dcdae3fbe3508b48e3119ba64498f6c56aeabca2", + "size": 13476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcdae3fbe3508b48e3119ba64498f6c56aeabca2" + }, + { + "path": "png/zwavejs2mqtt.png", + "mode": "100644", + "type": "blob", + "sha": "e2aa537cb5cc1b8844fa831d047e83582cd35f05", + "size": 10605, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2aa537cb5cc1b8844fa831d047e83582cd35f05" + }, + { + "path": "png/zyxel-communications-light.png", + "mode": "100644", + "type": "blob", + "sha": "e3f52303210533fe29da28bc0397fcb7729f209b", + "size": 46854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3f52303210533fe29da28bc0397fcb7729f209b" + }, + { + "path": "png/zyxel-communications.png", + "mode": "100644", + "type": "blob", + "sha": "bb0ab16c1fe5d8025c3f4485057e9c0e89cc7502", + "size": 44747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb0ab16c1fe5d8025c3f4485057e9c0e89cc7502" + }, + { + "path": "png/zyxel-networks-light.png", + "mode": "100644", + "type": "blob", + "sha": "bb8620466a47607dbb7a816b62f302e3c2c23e0b", + "size": 49099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb8620466a47607dbb7a816b62f302e3c2c23e0b" + }, + { + "path": "png/zyxel-networks.png", + "mode": "100644", + "type": "blob", + "sha": "fd805ebdd7d2376d7384c3f014a55d34fd23c740", + "size": 46752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd805ebdd7d2376d7384c3f014a55d34fd23c740" + }, + { + "path": "renovate.json5", + "mode": "100644", + "type": "blob", + "sha": "38763050dee5fcafbafe6f8dcd52ea0e5f685adb", + "size": 352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38763050dee5fcafbafe6f8dcd52ea0e5f685adb" + }, + { + "path": "scripts", + "mode": "040000", + "type": "tree", + "sha": "4777b931cb9dbce99c880cbd4f441a327f7c42f3", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/4777b931cb9dbce99c880cbd4f441a327f7c42f3" + }, + { + "path": "scripts/common.py", + "mode": "100644", + "type": "blob", + "sha": "8f5864aed510f6aad560eb5aef11a9de30742761", + "size": 239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f5864aed510f6aad560eb5aef11a9de30742761" + }, + { + "path": "scripts/convert_svg_assets.py", + "mode": "100644", + "type": "blob", + "sha": "dd6e975167beb86c413ef9556c0d8159bdba23aa", + "size": 6253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd6e975167beb86c413ef9556c0d8159bdba23aa" + }, + { + "path": "scripts/generate_file_tree.py", + "mode": "100644", + "type": "blob", + "sha": "a4005f80ff81f54eae6c131cdf2eb7ba8824612f", + "size": 1583, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4005f80ff81f54eae6c131cdf2eb7ba8824612f" + }, + { + "path": "scripts/generate_icons.py", + "mode": "100644", + "type": "blob", + "sha": "364d9c211a509730c21e523f0c4e95b85ae4fbe5", + "size": 2378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/364d9c211a509730c21e523f0c4e95b85ae4fbe5" + }, + { + "path": "scripts/generate_meta.py", + "mode": "100644", + "type": "blob", + "sha": "65a148726131ccbec2907be7efefb3f2c5d1f099", + "size": 947, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65a148726131ccbec2907be7efefb3f2c5d1f099" + }, + { + "path": "scripts/generate_metadata.py", + "mode": "100644", + "type": "blob", + "sha": "4f61e03cc45b4262c5b97dca3818ceb6878286d2", + "size": 955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f61e03cc45b4262c5b97dca3818ceb6878286d2" + }, + { + "path": "scripts/generate_metadata_file.py", + "mode": "100644", + "type": "blob", + "sha": "e0318d6df5f0d3b34940a98d422561808ca16c4b", + "size": 1458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0318d6df5f0d3b34940a98d422561808ca16c4b" + }, + { + "path": "scripts/icons.py", + "mode": "100644", + "type": "blob", + "sha": "9a3af52bccb6e0182983b132e79f4bf44099bd71", + "size": 8200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a3af52bccb6e0182983b132e79f4bf44099bd71" + }, + { + "path": "scripts/metadata.py", + "mode": "100644", + "type": "blob", + "sha": "5781ac52a495492d8daeb644df2be36a6228f05f", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5781ac52a495492d8daeb644df2be36a6228f05f" + }, + { + "path": "scripts/parse_issue_form.py", + "mode": "100644", + "type": "blob", + "sha": "f822163834983c17ae4bb97323c21dd31a69ca5d", + "size": 804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f822163834983c17ae4bb97323c21dd31a69ca5d" + }, + { + "path": "scripts/print_icon_name.py", + "mode": "100644", + "type": "blob", + "sha": "6508af1d689c6bbffb148177ed43d51185b5deed", + "size": 418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6508af1d689c6bbffb148177ed43d51185b5deed" + }, + { + "path": "scripts/sync-metadata.mjs", + "mode": "100644", + "type": "blob", + "sha": "d03cf8ca1d1661e6309834e6684666c5fdbc5e69", + "size": 739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d03cf8ca1d1661e6309834e6684666c5fdbc5e69" + }, + { + "path": "svg", + "mode": "040000", + "type": "tree", + "sha": "c5f3440878536c984d28c5b3204fa97bd9186ee3", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/c5f3440878536c984d28c5b3204fa97bd9186ee3" + }, + { + "path": "svg/1337x.svg", + "mode": "100644", + "type": "blob", + "sha": "50bae0c669e7282c181ea876a934cfa54ad55ae6", + "size": 634, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50bae0c669e7282c181ea876a934cfa54ad55ae6" + }, + { + "path": "svg/13ft.svg", + "mode": "100644", + "type": "blob", + "sha": "d9ecc9a863b0d4a3d48e45644be462770d5d0989", + "size": 6233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9ecc9a863b0d4a3d48e45644be462770d5d0989" + }, + { + "path": "svg/1panel.svg", + "mode": "100644", + "type": "blob", + "sha": "4ae67b79d75b7cdd29219ebcf394481ef76bbb12", + "size": 1182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ae67b79d75b7cdd29219ebcf394481ef76bbb12" + }, + { + "path": "svg/1password-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d7cab7632c727c3c741d8c7c9173dd30cd75edff", + "size": 1299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7cab7632c727c3c741d8c7c9173dd30cd75edff" + }, + { + "path": "svg/1password.svg", + "mode": "100644", + "type": "blob", + "sha": "a6173f9cdf8220f4e3f5f682d93f879c6de35185", + "size": 1299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6173f9cdf8220f4e3f5f682d93f879c6de35185" + }, + { + "path": "svg/20i-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "dd33787b4dff55d62265fe4f3b4e600bc837ee34", + "size": 2202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd33787b4dff55d62265fe4f3b4e600bc837ee34" + }, + { + "path": "svg/20i.svg", + "mode": "100644", + "type": "blob", + "sha": "f51acd4b085de3e9d90ee0d5f4f451a152f289b1", + "size": 2202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f51acd4b085de3e9d90ee0d5f4f451a152f289b1" + }, + { + "path": "svg/2fauth-light.svg", + "mode": "100644", + "type": "blob", + "sha": "742d3175da19a7331d10002c61e1bb52b3e7e3fa", + "size": 507, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/742d3175da19a7331d10002c61e1bb52b3e7e3fa" + }, + { + "path": "svg/2fauth.svg", + "mode": "100755", + "type": "blob", + "sha": "36eaaaf89aa804242ba87e7ab73e2cf9abf36171", + "size": 483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36eaaaf89aa804242ba87e7ab73e2cf9abf36171" + }, + { + "path": "svg/3cx-light.svg", + "mode": "100644", + "type": "blob", + "sha": "19b1a46deb96068c6d6c4d2fbc7e0a999535483b", + "size": 1622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19b1a46deb96068c6d6c4d2fbc7e0a999535483b" + }, + { + "path": "svg/3cx.svg", + "mode": "100644", + "type": "blob", + "sha": "a6029d7874b885e3c3dfd09b30ad8b8850f83097", + "size": 1574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6029d7874b885e3c3dfd09b30ad8b8850f83097" + }, + { + "path": "svg/4chan.svg", + "mode": "100644", + "type": "blob", + "sha": "61000b303bc0dc625b96cf6e21f7c1db4b65033c", + "size": 24380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61000b303bc0dc625b96cf6e21f7c1db4b65033c" + }, + { + "path": "svg/5etools-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7e444a72e234506d4b686f1b60d7c401506bb7c9", + "size": 4483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e444a72e234506d4b686f1b60d7c401506bb7c9" + }, + { + "path": "svg/5etools.svg", + "mode": "100644", + "type": "blob", + "sha": "73c236ce45a441f54f48608866c38b6e3dac83bb", + "size": 4483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73c236ce45a441f54f48608866c38b6e3dac83bb" + }, + { + "path": "svg/7zip.svg", + "mode": "100644", + "type": "blob", + "sha": "f094ed1c45350cca73e1a1bf87b3df1d0d48aadf", + "size": 3066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f094ed1c45350cca73e1a1bf87b3df1d0d48aadf" + }, + { + "path": "svg/a-mule.svg", + "mode": "100644", + "type": "blob", + "sha": "6ba6e5cd7a2a15a8358b9ea410557f762c15f6f7", + "size": 34521, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ba6e5cd7a2a15a8358b9ea410557f762c15f6f7" + }, + { + "path": "svg/aboard.svg", + "mode": "100644", + "type": "blob", + "sha": "5279c6329c3ae0cde2f2f53afb393b03ba360251", + "size": 14236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5279c6329c3ae0cde2f2f53afb393b03ba360251" + }, + { + "path": "svg/act.svg", + "mode": "100644", + "type": "blob", + "sha": "e1b8536b4d6b4ab94525844df3603120b91b798c", + "size": 1131, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1b8536b4d6b4ab94525844df3603120b91b798c" + }, + { + "path": "svg/action1.svg", + "mode": "100644", + "type": "blob", + "sha": "7ffba429c2d81c9ef036337ffae360ca900b1957", + "size": 2474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ffba429c2d81c9ef036337ffae360ca900b1957" + }, + { + "path": "svg/activepieces.svg", + "mode": "100755", + "type": "blob", + "sha": "e9e409eb65fc972c827e561bdd6fd939a5c4069b", + "size": 483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9e409eb65fc972c827e561bdd6fd939a5c4069b" + }, + { + "path": "svg/actual-budget.svg", + "mode": "100755", + "type": "blob", + "sha": "6f39271aba2eb7bc2e699d1312aeefef07df714e", + "size": 773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f39271aba2eb7bc2e699d1312aeefef07df714e" + }, + { + "path": "svg/adguard-home-sync.svg", + "mode": "100644", + "type": "blob", + "sha": "8d440c29ccce8115a31ba2a767a7a3d325deac9d", + "size": 8969, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d440c29ccce8115a31ba2a767a7a3d325deac9d" + }, + { + "path": "svg/adguard-home.svg", + "mode": "100755", + "type": "blob", + "sha": "7e3c6343f4c6d26d740dbe0db63a4c6a25e1b751", + "size": 672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e3c6343f4c6d26d740dbe0db63a4c6a25e1b751" + }, + { + "path": "svg/adminer.svg", + "mode": "100755", + "type": "blob", + "sha": "1ac2993dfd2ecfe22e17a2a480425db4e3c51044", + "size": 2143, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ac2993dfd2ecfe22e17a2a480425db4e3c51044" + }, + { + "path": "svg/adobe.svg", + "mode": "100644", + "type": "blob", + "sha": "8931c4979622321dde9c1ae6139abf3ffb664752", + "size": 290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8931c4979622321dde9c1ae6139abf3ffb664752" + }, + { + "path": "svg/advanzia.svg", + "mode": "100644", + "type": "blob", + "sha": "203e9a0390f2caef91344ef5ee6827b366b6dd2c", + "size": 1307, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/203e9a0390f2caef91344ef5ee6827b366b6dd2c" + }, + { + "path": "svg/adventure-log.svg", + "mode": "100755", + "type": "blob", + "sha": "b580c504a172fa46dd229aee25c61f3ff5861e8a", + "size": 14382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b580c504a172fa46dd229aee25c61f3ff5861e8a" + }, + { + "path": "svg/affine-light.svg", + "mode": "100644", + "type": "blob", + "sha": "752348e20516504b1bfbf7e30f1a1f57d39ee972", + "size": 1321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/752348e20516504b1bfbf7e30f1a1f57d39ee972" + }, + { + "path": "svg/affine.svg", + "mode": "100755", + "type": "blob", + "sha": "ed888a68442d9210a0cfc23f41c6226a163f72ec", + "size": 1309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed888a68442d9210a0cfc23f41c6226a163f72ec" + }, + { + "path": "svg/agregarr.svg", + "mode": "100644", + "type": "blob", + "sha": "a7521996615241e62ab25be5a220f37b6c8d2ef8", + "size": 1769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7521996615241e62ab25be5a220f37b6c8d2ef8" + }, + { + "path": "svg/air-trail.svg", + "mode": "100644", + "type": "blob", + "sha": "1b07ae50de43f16c5fab22310d19cd2ed609357b", + "size": 421, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b07ae50de43f16c5fab22310d19cd2ed609357b" + }, + { + "path": "svg/airsonic.svg", + "mode": "100644", + "type": "blob", + "sha": "1dea39a144e6f5ab87cf57b04c4c9b5490c3db4d", + "size": 3105, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dea39a144e6f5ab87cf57b04c4c9b5490c3db4d" + }, + { + "path": "svg/airtable.svg", + "mode": "100755", + "type": "blob", + "sha": "9bc6ab6be57e1c7661f7888581a6e90992c47bf1", + "size": 847, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bc6ab6be57e1c7661f7888581a6e90992c47bf1" + }, + { + "path": "svg/airtel.svg", + "mode": "100644", + "type": "blob", + "sha": "f2b3db524a26bd1be122d396383735f6ca6993b7", + "size": 1335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2b3db524a26bd1be122d396383735f6ca6993b7" + }, + { + "path": "svg/airvpn.svg", + "mode": "100644", + "type": "blob", + "sha": "4d92e2bf65326afc55e3897dc0bdc75e736b0749", + "size": 1390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d92e2bf65326afc55e3897dc0bdc75e736b0749" + }, + { + "path": "svg/akamai.svg", + "mode": "100644", + "type": "blob", + "sha": "d6db2fcb50efb594773bc06a80b32d36f765cb72", + "size": 3331, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6db2fcb50efb594773bc06a80b32d36f765cb72" + }, + { + "path": "svg/akaunting.svg", + "mode": "100644", + "type": "blob", + "sha": "dd480521794b0acfe5d7d30e37d96d6fec4610a0", + "size": 1040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd480521794b0acfe5d7d30e37d96d6fec4610a0" + }, + { + "path": "svg/akkoma-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b940e0ea8e3b37f26bad9109a1ebac907876a908", + "size": 843, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b940e0ea8e3b37f26bad9109a1ebac907876a908" + }, + { + "path": "svg/akkoma.svg", + "mode": "100755", + "type": "blob", + "sha": "a4c91054d7061abd15aa5c869f3e9406fb1b9346", + "size": 843, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4c91054d7061abd15aa5c869f3e9406fb1b9346" + }, + { + "path": "svg/albert-heijn.svg", + "mode": "100644", + "type": "blob", + "sha": "f5049b13f3078dfeb67c7749176ed6a840d058f7", + "size": 1094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5049b13f3078dfeb67c7749176ed6a840d058f7" + }, + { + "path": "svg/alertmanager.svg", + "mode": "100644", + "type": "blob", + "sha": "f3573d82b5720ca639fd16670f30071dc1d50c17", + "size": 1018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3573d82b5720ca639fd16670f30071dc1d50c17" + }, + { + "path": "svg/alexa.svg", + "mode": "100644", + "type": "blob", + "sha": "9490e57a3a1424afbfd361c43acf773d2fc19669", + "size": 3075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9490e57a3a1424afbfd361c43acf773d2fc19669" + }, + { + "path": "svg/aliexpress.svg", + "mode": "100644", + "type": "blob", + "sha": "35f4953450bb602ec2ad7e1eb6fec9a0070bb3b4", + "size": 842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35f4953450bb602ec2ad7e1eb6fec9a0070bb3b4" + }, + { + "path": "svg/alist.svg", + "mode": "100755", + "type": "blob", + "sha": "bd620edc165612230a7ca92ef27932585dbeb509", + "size": 1769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd620edc165612230a7ca92ef27932585dbeb509" + }, + { + "path": "svg/aliyun.svg", + "mode": "100644", + "type": "blob", + "sha": "612a16159726cc09ca2c54a1a56bbe77fe749d65", + "size": 630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/612a16159726cc09ca2c54a1a56bbe77fe749d65" + }, + { + "path": "svg/alloy.svg", + "mode": "100644", + "type": "blob", + "sha": "6bea180f5e82a09fabd2ab239708ce1ed73d63e9", + "size": 1578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bea180f5e82a09fabd2ab239708ce1ed73d63e9" + }, + { + "path": "svg/alma-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "89f52ed30f5d1a2627e2e2f66a53e76936273b21", + "size": 2718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89f52ed30f5d1a2627e2e2f66a53e76936273b21" + }, + { + "path": "svg/alpine-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "1ffbdad892024045f784bdeb079209922182e0e7", + "size": 981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ffbdad892024045f784bdeb079209922182e0e7" + }, + { + "path": "svg/amazon-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2d3fd01f4dc2b658433611ebd3c0c822e60cb6d8", + "size": 2283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d3fd01f4dc2b658433611ebd3c0c822e60cb6d8" + }, + { + "path": "svg/amazon-prime.svg", + "mode": "100755", + "type": "blob", + "sha": "d0b1f76cc3fec198c9fae3bc169687eb2f00d379", + "size": 3057, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0b1f76cc3fec198c9fae3bc169687eb2f00d379" + }, + { + "path": "svg/amazon-web-services-light.svg", + "mode": "100644", + "type": "blob", + "sha": "711a93ad6c7d64996cffb7d043eb78d5aac2d36a", + "size": 2976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/711a93ad6c7d64996cffb7d043eb78d5aac2d36a" + }, + { + "path": "svg/amazon-web-services.svg", + "mode": "100644", + "type": "blob", + "sha": "7c989b0f65741a2345b73245c48e6a8c0bdb3a1a", + "size": 2952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c989b0f65741a2345b73245c48e6a8c0bdb3a1a" + }, + { + "path": "svg/amazon.svg", + "mode": "100755", + "type": "blob", + "sha": "97afc4ab66fa17e1813d5c88dfa583bbbba6c05a", + "size": 2235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97afc4ab66fa17e1813d5c88dfa583bbbba6c05a" + }, + { + "path": "svg/amd-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1d9843a2fcb69a6c31f336f030e053f34ead4613", + "size": 201, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d9843a2fcb69a6c31f336f030e053f34ead4613" + }, + { + "path": "svg/amd.svg", + "mode": "100755", + "type": "blob", + "sha": "ebc7c99942913358c71bd95c04b794612a2f27f6", + "size": 189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebc7c99942913358c71bd95c04b794612a2f27f6" + }, + { + "path": "svg/android-auto-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d0b7a2164e4d9d4a0f2cb033ba03547e0892bdf8", + "size": 6595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0b7a2164e4d9d4a0f2cb033ba03547e0892bdf8" + }, + { + "path": "svg/android-auto.svg", + "mode": "100644", + "type": "blob", + "sha": "8d260c0694ffc315e3a0d97b7e0ed164d9946f06", + "size": 6571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d260c0694ffc315e3a0d97b7e0ed164d9946f06" + }, + { + "path": "svg/android-robot.svg", + "mode": "100644", + "type": "blob", + "sha": "2a0354e3390b6498430a67dae634bee69e379bfb", + "size": 689, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a0354e3390b6498430a67dae634bee69e379bfb" + }, + { + "path": "svg/android.svg", + "mode": "100755", + "type": "blob", + "sha": "51d55e6bf1ba8002faeb9e858534a1b420b159ab", + "size": 640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51d55e6bf1ba8002faeb9e858534a1b420b159ab" + }, + { + "path": "svg/angular.svg", + "mode": "100644", + "type": "blob", + "sha": "1982b875dcff85c319aaacb968c13137cc09cb04", + "size": 1764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1982b875dcff85c319aaacb968c13137cc09cb04" + }, + { + "path": "svg/anime-kai.svg", + "mode": "100644", + "type": "blob", + "sha": "a8fb5a94b1912e936697493637b92b97b906a0a6", + "size": 54922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8fb5a94b1912e936697493637b92b97b906a0a6" + }, + { + "path": "svg/anonaddy.svg", + "mode": "100755", + "type": "blob", + "sha": "fe754b5d202bbd76dc027b8f1af3bf9b552436d2", + "size": 2242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe754b5d202bbd76dc027b8f1af3bf9b552436d2" + }, + { + "path": "svg/ansible-light.svg", + "mode": "100644", + "type": "blob", + "sha": "07208b3d81b2ef8d1c30e21bbacfed4cefcac6a5", + "size": 442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07208b3d81b2ef8d1c30e21bbacfed4cefcac6a5" + }, + { + "path": "svg/ansible.svg", + "mode": "100755", + "type": "blob", + "sha": "10eb0a8a871199bb2fca4fa37e48e8109d7fbb7d", + "size": 445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10eb0a8a871199bb2fca4fa37e48e8109d7fbb7d" + }, + { + "path": "svg/any-listen.svg", + "mode": "100644", + "type": "blob", + "sha": "14f4b2d289c146a38cabb000246b00037f09fd91", + "size": 1761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14f4b2d289c146a38cabb000246b00037f09fd91" + }, + { + "path": "svg/anything-llm-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8d84b8c4ede37c27445647460befdd75ed666c69", + "size": 3209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d84b8c4ede37c27445647460befdd75ed666c69" + }, + { + "path": "svg/anything-llm.svg", + "mode": "100644", + "type": "blob", + "sha": "3e40567087bdedf34d109e475edaab97c817786b", + "size": 3206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e40567087bdedf34d109e475edaab97c817786b" + }, + { + "path": "svg/apache-airflow.svg", + "mode": "100644", + "type": "blob", + "sha": "ffb1272ba7bb26b2dfdae2f922527ec762f4fc24", + "size": 1621, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffb1272ba7bb26b2dfdae2f922527ec762f4fc24" + }, + { + "path": "svg/apache-answer.svg", + "mode": "100755", + "type": "blob", + "sha": "dc3cc738207888c1b8971791b5b26250356271f9", + "size": 535, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc3cc738207888c1b8971791b5b26250356271f9" + }, + { + "path": "svg/apache-cassandra.svg", + "mode": "100644", + "type": "blob", + "sha": "52e3536e13ab04621608fc77b3a1eabe8172eece", + "size": 11353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52e3536e13ab04621608fc77b3a1eabe8172eece" + }, + { + "path": "svg/apache-cloudstack.svg", + "mode": "100644", + "type": "blob", + "sha": "63e09c15202ef48279210f45c19e71311efd78f4", + "size": 5658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63e09c15202ef48279210f45c19e71311efd78f4" + }, + { + "path": "svg/apache-druid.svg", + "mode": "100644", + "type": "blob", + "sha": "c4391b6d2c65f76a5f7b1419209e834a08ea165f", + "size": 1586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4391b6d2c65f76a5f7b1419209e834a08ea165f" + }, + { + "path": "svg/apache-openoffice.svg", + "mode": "100644", + "type": "blob", + "sha": "4139060ff78bf137913d7995f6621d799a7d3f24", + "size": 2523, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4139060ff78bf137913d7995f6621d799a7d3f24" + }, + { + "path": "svg/apache-solr.svg", + "mode": "100644", + "type": "blob", + "sha": "b4c1bb7f124c53e3d8f0d838eb4e01c6a3da79f3", + "size": 1701, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4c1bb7f124c53e3d8f0d838eb4e01c6a3da79f3" + }, + { + "path": "svg/apache-subversion.svg", + "mode": "100644", + "type": "blob", + "sha": "10c2eb929c4ebe63c7c9f0cbf8db1dcd4a385a31", + "size": 7084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10c2eb929c4ebe63c7c9f0cbf8db1dcd4a385a31" + }, + { + "path": "svg/apache-tomcat-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1fe9e725f57781389f891cec92759218ffa1b67c", + "size": 3833, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fe9e725f57781389f891cec92759218ffa1b67c" + }, + { + "path": "svg/apache-tomcat.svg", + "mode": "100644", + "type": "blob", + "sha": "b88d7b958d08f01659eeb704331a1b9c63936dab", + "size": 3773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b88d7b958d08f01659eeb704331a1b9c63936dab" + }, + { + "path": "svg/apache.svg", + "mode": "100644", + "type": "blob", + "sha": "510956ec2f79965ef323ace743912b7da3c6bba6", + "size": 9302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/510956ec2f79965ef323ace743912b7da3c6bba6" + }, + { + "path": "svg/apc.svg", + "mode": "100644", + "type": "blob", + "sha": "b3fd09230c1e209147406c748a7a8620c26ae9a6", + "size": 1504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3fd09230c1e209147406c748a7a8620c26ae9a6" + }, + { + "path": "svg/apiscp.svg", + "mode": "100644", + "type": "blob", + "sha": "585e5125fa322c6fc7a77c207b4b7d489e223e6f", + "size": 3389, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/585e5125fa322c6fc7a77c207b4b7d489e223e6f" + }, + { + "path": "svg/app-store.svg", + "mode": "100644", + "type": "blob", + "sha": "acfeef15309d6e336586584fc436caa4871fcee1", + "size": 1156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acfeef15309d6e336586584fc436caa4871fcee1" + }, + { + "path": "svg/appflowy.svg", + "mode": "100755", + "type": "blob", + "sha": "24fc571de98b70c3fb2e08323e24e8dbdb6c56d7", + "size": 1915, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24fc571de98b70c3fb2e08323e24e8dbdb6c56d7" + }, + { + "path": "svg/apple-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "875eb57f510bdaece6e2ebc01ef581df8dcb9cbd", + "size": 1547, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/875eb57f510bdaece6e2ebc01ef581df8dcb9cbd" + }, + { + "path": "svg/apple-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3ce2d03ae50e892d5f8a8658c21d0dc119e3fd40", + "size": 622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ce2d03ae50e892d5f8a8658c21d0dc119e3fd40" + }, + { + "path": "svg/apple-maps.svg", + "mode": "100644", + "type": "blob", + "sha": "9c4336f419c7112dfdef2b6b4040dd419aea6ac2", + "size": 15861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c4336f419c7112dfdef2b6b4040dd419aea6ac2" + }, + { + "path": "svg/apple-music.svg", + "mode": "100755", + "type": "blob", + "sha": "2b8715f8d958cb94590c3885fec575b34a2a6df6", + "size": 2122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b8715f8d958cb94590c3885fec575b34a2a6df6" + }, + { + "path": "svg/apple-podcasts.svg", + "mode": "100644", + "type": "blob", + "sha": "21579a116d61ad79b8a8ac2a1368cd26c3e94659", + "size": 2445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21579a116d61ad79b8a8ac2a1368cd26c3e94659" + }, + { + "path": "svg/apple-tv-plus-light.svg", + "mode": "100644", + "type": "blob", + "sha": "6e06c61df25cc2e508ea352784664ba0d6a9f45b", + "size": 835, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e06c61df25cc2e508ea352784664ba0d6a9f45b" + }, + { + "path": "svg/apple-tv-plus.svg", + "mode": "100755", + "type": "blob", + "sha": "44c2564c253ec930ee9de1b96f0d48e32209f124", + "size": 823, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44c2564c253ec930ee9de1b96f0d48e32209f124" + }, + { + "path": "svg/apple.svg", + "mode": "100755", + "type": "blob", + "sha": "3230dedfdc63dcb6705e182347e1c4a0516612a0", + "size": 610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3230dedfdc63dcb6705e182347e1c4a0516612a0" + }, + { + "path": "svg/appwrite.svg", + "mode": "100755", + "type": "blob", + "sha": "df6366effa86737d17ba37c1acc3c01f921fc2c2", + "size": 680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df6366effa86737d17ba37c1acc3c01f921fc2c2" + }, + { + "path": "svg/ara-records-ansible.svg", + "mode": "100755", + "type": "blob", + "sha": "4f73df4a8e2a18de6032be94514f12fd8ff6674e", + "size": 2440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f73df4a8e2a18de6032be94514f12fd8ff6674e" + }, + { + "path": "svg/arcane.svg", + "mode": "100644", + "type": "blob", + "sha": "6663880cc78b36f3fdaaa3d8119600d9dcbc814b", + "size": 5429, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6663880cc78b36f3fdaaa3d8119600d9dcbc814b" + }, + { + "path": "svg/arch-linux.svg", + "mode": "100755", + "type": "blob", + "sha": "32095d2cfd8e772a935411ddb9453aa05007b62c", + "size": 498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32095d2cfd8e772a935411ddb9453aa05007b62c" + }, + { + "path": "svg/archidekt.svg", + "mode": "100644", + "type": "blob", + "sha": "cbc01b9afd8c845f4be031873fe46a39795544e2", + "size": 4314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbc01b9afd8c845f4be031873fe46a39795544e2" + }, + { + "path": "svg/arduino.svg", + "mode": "100644", + "type": "blob", + "sha": "fe3cfd62223cc67fa773c919ca7b3b16a67867fe", + "size": 1671, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe3cfd62223cc67fa773c919ca7b3b16a67867fe" + }, + { + "path": "svg/argo-cd.svg", + "mode": "100644", + "type": "blob", + "sha": "1ac1fbc87cf04432e96b2bef2e0c29275dd0fb53", + "size": 4069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ac1fbc87cf04432e96b2bef2e0c29275dd0fb53" + }, + { + "path": "svg/arm.svg", + "mode": "100644", + "type": "blob", + "sha": "bac2bc867356599d035f865b7cd89302375086d8", + "size": 1122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bac2bc867356599d035f865b7cd89302375086d8" + }, + { + "path": "svg/artifacthub.svg", + "mode": "100644", + "type": "blob", + "sha": "b8c9a54edcfaf7b1b6c0717f90f55bed701135a6", + "size": 1663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8c9a54edcfaf7b1b6c0717f90f55bed701135a6" + }, + { + "path": "svg/artifactory.svg", + "mode": "100644", + "type": "blob", + "sha": "8bd911d93016fc7eeee49e30c8ceaf6e163f4333", + "size": 356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bd911d93016fc7eeee49e30c8ceaf6e163f4333" + }, + { + "path": "svg/aruba.svg", + "mode": "100644", + "type": "blob", + "sha": "6454e6f0fd6d5bf292749e446d6e5108e46ab846", + "size": 397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6454e6f0fd6d5bf292749e446d6e5108e46ab846" + }, + { + "path": "svg/asana.svg", + "mode": "100644", + "type": "blob", + "sha": "31dbaf5b8d766c23032b5c743ffdf97bc96c9b4f", + "size": 920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31dbaf5b8d766c23032b5c743ffdf97bc96c9b4f" + }, + { + "path": "svg/asciinema.svg", + "mode": "100755", + "type": "blob", + "sha": "6400a35832052fead51f7f108f2426fda107135a", + "size": 637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6400a35832052fead51f7f108f2426fda107135a" + }, + { + "path": "svg/asrock-rack-ipmi.svg", + "mode": "100644", + "type": "blob", + "sha": "45c5e7da61ccf8ad57825db3814a3ca0a01b46c6", + "size": 4415, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45c5e7da61ccf8ad57825db3814a3ca0a01b46c6" + }, + { + "path": "svg/asrock-rack.svg", + "mode": "100644", + "type": "blob", + "sha": "45c5e7da61ccf8ad57825db3814a3ca0a01b46c6", + "size": 4415, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45c5e7da61ccf8ad57825db3814a3ca0a01b46c6" + }, + { + "path": "svg/assetgrid.png", + "mode": "100644", + "type": "blob", + "sha": "5f33f1d1867a9508678905f138648f2c8881bf2f", + "size": 2239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f33f1d1867a9508678905f138648f2c8881bf2f" + }, + { + "path": "svg/astral.svg", + "mode": "100644", + "type": "blob", + "sha": "5652b2b542ba36599aa8b0f5b7ba7599bfb10eb9", + "size": 1457, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5652b2b542ba36599aa8b0f5b7ba7599bfb10eb9" + }, + { + "path": "svg/astuto-light.svg", + "mode": "100644", + "type": "blob", + "sha": "72898a619a651542a20313a3320625f3862abe11", + "size": 2836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72898a619a651542a20313a3320625f3862abe11" + }, + { + "path": "svg/astuto.svg", + "mode": "100755", + "type": "blob", + "sha": "206d9eeb28a06f9ac47fff9403672be28d629d4e", + "size": 2817, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/206d9eeb28a06f9ac47fff9403672be28d629d4e" + }, + { + "path": "svg/asus-full.svg", + "mode": "100644", + "type": "blob", + "sha": "b93f8a10326c922c1533d834c58d87bc5235ec3d", + "size": 1614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b93f8a10326c922c1533d834c58d87bc5235ec3d" + }, + { + "path": "svg/asus-rog.svg", + "mode": "100644", + "type": "blob", + "sha": "89d0e35a25eeaa0e59519f435e0e1be45876835d", + "size": 3974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89d0e35a25eeaa0e59519f435e0e1be45876835d" + }, + { + "path": "svg/asus-router.svg", + "mode": "100644", + "type": "blob", + "sha": "97dda17aef309374b15e9aaabb8ed0285715dc2d", + "size": 4660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97dda17aef309374b15e9aaabb8ed0285715dc2d" + }, + { + "path": "svg/asus.svg", + "mode": "100644", + "type": "blob", + "sha": "d35b89d62126968c1fdaafccf06e9b9a36a94a08", + "size": 1383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d35b89d62126968c1fdaafccf06e9b9a36a94a08" + }, + { + "path": "svg/asustor.svg", + "mode": "100644", + "type": "blob", + "sha": "ddede1ab5e9fe50a9642273be6baa486234eb7ad", + "size": 2073, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddede1ab5e9fe50a9642273be6baa486234eb7ad" + }, + { + "path": "svg/at-t.svg", + "mode": "100644", + "type": "blob", + "sha": "d2143a174d18b788dcfa215bf04b432108f6f226", + "size": 2673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2143a174d18b788dcfa215bf04b432108f6f226" + }, + { + "path": "svg/atlassian-bamboo.svg", + "mode": "100644", + "type": "blob", + "sha": "fdfc58b7fe09b4ed1e506d189ec832cca2b02edd", + "size": 1109, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdfc58b7fe09b4ed1e506d189ec832cca2b02edd" + }, + { + "path": "svg/atlassian-bitbucket.svg", + "mode": "100644", + "type": "blob", + "sha": "009d2a46d8160abc8619e4471c4ba690dec67e36", + "size": 776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/009d2a46d8160abc8619e4471c4ba690dec67e36" + }, + { + "path": "svg/atlassian-confluence.svg", + "mode": "100644", + "type": "blob", + "sha": "13ee79e995f45f51e3bfa8a25a29eb42d8eb30bd", + "size": 1053, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13ee79e995f45f51e3bfa8a25a29eb42d8eb30bd" + }, + { + "path": "svg/atlassian-jira.svg", + "mode": "100644", + "type": "blob", + "sha": "73811db720de1c8096e02527c095543c536090b7", + "size": 988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73811db720de1c8096e02527c095543c536090b7" + }, + { + "path": "svg/atlassian-opsgenie.svg", + "mode": "100644", + "type": "blob", + "sha": "e9c6043221a7ea6e83d350c3787752d337a594fc", + "size": 1132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9c6043221a7ea6e83d350c3787752d337a594fc" + }, + { + "path": "svg/atlassian-trello.svg", + "mode": "100644", + "type": "blob", + "sha": "395fc179f544a264ba5d54240600574c18370eab", + "size": 786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/395fc179f544a264ba5d54240600574c18370eab" + }, + { + "path": "svg/atlassian.svg", + "mode": "100644", + "type": "blob", + "sha": "7c1cc1ed4f1a0b6ec8bb12fde0a6c0a3ab3c6b23", + "size": 718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c1cc1ed4f1a0b6ec8bb12fde0a6c0a3ab3c6b23" + }, + { + "path": "svg/atuin-light.svg", + "mode": "100644", + "type": "blob", + "sha": "43fcb8109e719c53d36c15b903d57c1819196293", + "size": 9761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43fcb8109e719c53d36c15b903d57c1819196293" + }, + { + "path": "svg/atuin.svg", + "mode": "100755", + "type": "blob", + "sha": "607d6bbe34aecb73961ed5c2890ae52aa05d2d07", + "size": 12302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/607d6bbe34aecb73961ed5c2890ae52aa05d2d07" + }, + { + "path": "svg/audacity.svg", + "mode": "100644", + "type": "blob", + "sha": "8bbf607e2ec6001241b72eb0562c38a284c45120", + "size": 2983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bbf607e2ec6001241b72eb0562c38a284c45120" + }, + { + "path": "svg/audiobookshelf.svg", + "mode": "100755", + "type": "blob", + "sha": "3fa76b1c4585d521f5d7fc1fe6864b04e4a6983a", + "size": 1775, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fa76b1c4585d521f5d7fc1fe6864b04e4a6983a" + }, + { + "path": "svg/aura.svg", + "mode": "100644", + "type": "blob", + "sha": "93b6898e2144dba323352be273289431ed209a8c", + "size": 1156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93b6898e2144dba323352be273289431ed209a8c" + }, + { + "path": "svg/auracast.svg", + "mode": "100644", + "type": "blob", + "sha": "6490d88c8957171cdca8f7fe57d069f212c92fec", + "size": 837, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6490d88c8957171cdca8f7fe57d069f212c92fec" + }, + { + "path": "svg/authelia.svg", + "mode": "100755", + "type": "blob", + "sha": "a7ffe09b180b82ec89234cac9c57505f2cb6aec5", + "size": 3524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7ffe09b180b82ec89234cac9c57505f2cb6aec5" + }, + { + "path": "svg/authentik.svg", + "mode": "100755", + "type": "blob", + "sha": "9933084dea517e989b7751111957d1b77b117ddc", + "size": 2005, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9933084dea517e989b7751111957d1b77b117ddc" + }, + { + "path": "svg/authman.svg", + "mode": "100755", + "type": "blob", + "sha": "951962353dfa08449545bbd7080ddbdec798cbb0", + "size": 6998, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/951962353dfa08449545bbd7080ddbdec798cbb0" + }, + { + "path": "svg/auto-cad.svg", + "mode": "100644", + "type": "blob", + "sha": "c84732f2dd3d2672f49f26c1a8729f886b506d42", + "size": 3107, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c84732f2dd3d2672f49f26c1a8729f886b506d42" + }, + { + "path": "svg/autobangumi-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "c6120c2095d1ce82cbf9540056f247183575c859", + "size": 1746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6120c2095d1ce82cbf9540056f247183575c859" + }, + { + "path": "svg/autobangumi.svg", + "mode": "100644", + "type": "blob", + "sha": "069c6197cdaaa7d650d07826fc08610312c604f0", + "size": 2133, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/069c6197cdaaa7d650d07826fc08610312c604f0" + }, + { + "path": "svg/autobrr.svg", + "mode": "100755", + "type": "blob", + "sha": "a5b12797c16fcc8f731d2a5e4c4654749ce21b71", + "size": 1206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5b12797c16fcc8f731d2a5e4c4654749ce21b71" + }, + { + "path": "svg/automad-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8034629cf326fc3a61d5246a148728bb19593530", + "size": 386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8034629cf326fc3a61d5246a148728bb19593530" + }, + { + "path": "svg/automad.svg", + "mode": "100755", + "type": "blob", + "sha": "701ab335723da986a3132b5c60ea5dfe661bb85d", + "size": 374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/701ab335723da986a3132b5c60ea5dfe661bb85d" + }, + { + "path": "svg/avg.svg", + "mode": "100644", + "type": "blob", + "sha": "a7f1d7339b8d95f1a706b8d7fb0b906538bf8393", + "size": 4584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7f1d7339b8d95f1a706b8d7fb0b906538bf8393" + }, + { + "path": "svg/avigilon.svg", + "mode": "100644", + "type": "blob", + "sha": "7185a92387ec84527ea0d298bfd27719e40ae940", + "size": 2220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7185a92387ec84527ea0d298bfd27719e40ae940" + }, + { + "path": "svg/avm-fritzbox-light.svg", + "mode": "100644", + "type": "blob", + "sha": "615a0e75e36bd5c91a6d0a0105ab27aeb1a85a29", + "size": 25443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/615a0e75e36bd5c91a6d0a0105ab27aeb1a85a29" + }, + { + "path": "svg/avm-fritzbox.svg", + "mode": "100644", + "type": "blob", + "sha": "f7ef9549a47561e27f3e493243d0b45a0f35238e", + "size": 25263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7ef9549a47561e27f3e493243d0b45a0f35238e" + }, + { + "path": "svg/aws-ecs.svg", + "mode": "100644", + "type": "blob", + "sha": "f569cccbff3070c7cc491fb96bd6930730af5ba3", + "size": 1793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f569cccbff3070c7cc491fb96bd6930730af5ba3" + }, + { + "path": "svg/aws-light.svg", + "mode": "100644", + "type": "blob", + "sha": "711a93ad6c7d64996cffb7d043eb78d5aac2d36a", + "size": 2976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/711a93ad6c7d64996cffb7d043eb78d5aac2d36a" + }, + { + "path": "svg/aws.svg", + "mode": "100644", + "type": "blob", + "sha": "7c989b0f65741a2345b73245c48e6a8c0bdb3a1a", + "size": 2952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c989b0f65741a2345b73245c48e6a8c0bdb3a1a" + }, + { + "path": "svg/awwesome.svg", + "mode": "100644", + "type": "blob", + "sha": "1a9b5f309ebad4158e5ed40c7d55f1e20778c313", + "size": 1417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a9b5f309ebad4158e5ed40c7d55f1e20778c313" + }, + { + "path": "svg/axis.svg", + "mode": "100644", + "type": "blob", + "sha": "e7878a2ff2285cac49658028a43dd277282935fc", + "size": 568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7878a2ff2285cac49658028a43dd277282935fc" + }, + { + "path": "svg/azuracast.svg", + "mode": "100755", + "type": "blob", + "sha": "fd2a0862aaf9d5dad8f72130f2df1bc45a443cbf", + "size": 3032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd2a0862aaf9d5dad8f72130f2df1bc45a443cbf" + }, + { + "path": "svg/azure-container-instances.svg", + "mode": "100644", + "type": "blob", + "sha": "e9ca50f2244ac046c3fd6784065f8b371088b95f", + "size": 1133, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9ca50f2244ac046c3fd6784065f8b371088b95f" + }, + { + "path": "svg/azure-container-service.svg", + "mode": "100644", + "type": "blob", + "sha": "43ddcb8d23ab304482a4a25e6459e76ecc06c497", + "size": 3082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43ddcb8d23ab304482a4a25e6459e76ecc06c497" + }, + { + "path": "svg/azure-devops.svg", + "mode": "100644", + "type": "blob", + "sha": "8b89bc44d910ed9489cbf5402cc82e5537e67f9d", + "size": 527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b89bc44d910ed9489cbf5402cc82e5537e67f9d" + }, + { + "path": "svg/azure-dns.svg", + "mode": "100644", + "type": "blob", + "sha": "8138f4b349012ad7b7a7bf599318ec090fec003a", + "size": 2098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8138f4b349012ad7b7a7bf599318ec090fec003a" + }, + { + "path": "svg/azure.svg", + "mode": "100644", + "type": "blob", + "sha": "ead24b49a66cef4f8ec7e4a6ae8ee9437e0b4bd4", + "size": 225, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ead24b49a66cef4f8ec7e4a6ae8ee9437e0b4bd4" + }, + { + "path": "svg/bab-technologie-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "5ecca02dabe8648e90b5ac2aa268d3bef6dd21d4", + "size": 4660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ecca02dabe8648e90b5ac2aa268d3bef6dd21d4" + }, + { + "path": "svg/bab-technologie.svg", + "mode": "100644", + "type": "blob", + "sha": "f8348049b87016a9fa66c72ecea10f894d50a9f5", + "size": 4660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8348049b87016a9fa66c72ecea10f894d50a9f5" + }, + { + "path": "svg/backblaze.svg", + "mode": "100755", + "type": "blob", + "sha": "ddb4ab734668d73529ab2595bc8ec5902b740f9e", + "size": 679, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddb4ab734668d73529ab2595bc8ec5902b740f9e" + }, + { + "path": "svg/backrest-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7d8038a8ca1442c48660be862480180aa13aed58", + "size": 2219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d8038a8ca1442c48660be862480180aa13aed58" + }, + { + "path": "svg/backrest.svg", + "mode": "100755", + "type": "blob", + "sha": "cb6966d5854742a17fc343ad84e432af87c089c6", + "size": 2200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb6966d5854742a17fc343ad84e432af87c089c6" + }, + { + "path": "svg/bale.svg", + "mode": "100644", + "type": "blob", + "sha": "0288000f4bc7c39c3a0b1147ac89df16743d4bc9", + "size": 2672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0288000f4bc7c39c3a0b1147ac89df16743d4bc9" + }, + { + "path": "svg/balena-cloud.svg", + "mode": "100644", + "type": "blob", + "sha": "f68944d23d2f71333cb154d201caaad7eed13531", + "size": 3278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f68944d23d2f71333cb154d201caaad7eed13531" + }, + { + "path": "svg/balena-etcher.svg", + "mode": "100644", + "type": "blob", + "sha": "0455d83a30bb1db5dcdb826f3aeab040fb48c2f5", + "size": 3278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0455d83a30bb1db5dcdb826f3aeab040fb48c2f5" + }, + { + "path": "svg/ballerina.svg", + "mode": "100644", + "type": "blob", + "sha": "b6395ca1055a04213d41d613191b759eda72f9f4", + "size": 422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6395ca1055a04213d41d613191b759eda72f9f4" + }, + { + "path": "svg/bandcamp.svg", + "mode": "100644", + "type": "blob", + "sha": "f36813281d9ffda6c17e81d6f3bc114f1cec0b26", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f36813281d9ffda6c17e81d6f3bc114f1cec0b26" + }, + { + "path": "svg/bar-assistant.svg", + "mode": "100755", + "type": "blob", + "sha": "fa64e1ac06a65cac9a4f5da85b699aa1f9bf062a", + "size": 718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa64e1ac06a65cac9a4f5da85b699aa1f9bf062a" + }, + { + "path": "svg/baserow.svg", + "mode": "100755", + "type": "blob", + "sha": "44b6198706f2729b8e331af7a2e6fa86f8890ca7", + "size": 984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44b6198706f2729b8e331af7a2e6fa86f8890ca7" + }, + { + "path": "svg/bazarr-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "56c1f0784b0755bbdba8f492b8fcabd115609708", + "size": 1178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56c1f0784b0755bbdba8f492b8fcabd115609708" + }, + { + "path": "svg/bazarr.svg", + "mode": "100644", + "type": "blob", + "sha": "efbb0e1b05d83ebc28b258cf7300fdad782cb4fc", + "size": 1121, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efbb0e1b05d83ebc28b258cf7300fdad782cb4fc" + }, + { + "path": "svg/bazecor.svg", + "mode": "100644", + "type": "blob", + "sha": "a51307ae39d8e19dba584091e611a83b8e75b8a3", + "size": 6672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a51307ae39d8e19dba584091e611a83b8e75b8a3" + }, + { + "path": "svg/be-quiet.svg", + "mode": "100644", + "type": "blob", + "sha": "d0b8ac858eaf8a4f8facb74e95b544d2d16ca031", + "size": 2703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0b8ac858eaf8a4f8facb74e95b544d2d16ca031" + }, + { + "path": "svg/beaver-habit-tracker-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b72d4a59a9df28adcdc77006fb6785ff1328cbb7", + "size": 805, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b72d4a59a9df28adcdc77006fb6785ff1328cbb7" + }, + { + "path": "svg/beaver-habit-tracker.svg", + "mode": "100755", + "type": "blob", + "sha": "a5b370d0a1507606fe2db09cf0b2161a76c3b48a", + "size": 757, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5b370d0a1507606fe2db09cf0b2161a76c3b48a" + }, + { + "path": "svg/bechtle.svg", + "mode": "100644", + "type": "blob", + "sha": "d2f8ba33c464d90bfd2fe43b3dd23daaa3084754", + "size": 922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2f8ba33c464d90bfd2fe43b3dd23daaa3084754" + }, + { + "path": "svg/beef-light.svg", + "mode": "100644", + "type": "blob", + "sha": "780d4eebefdd694b6efbd43535ac1b922cab283b", + "size": 12022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/780d4eebefdd694b6efbd43535ac1b922cab283b" + }, + { + "path": "svg/beef.svg", + "mode": "100644", + "type": "blob", + "sha": "476bb9b0f0ced2ab27ede5ffe4fc9241551fb421", + "size": 11989, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/476bb9b0f0ced2ab27ede5ffe4fc9241551fb421" + }, + { + "path": "svg/bentopdf.svg", + "mode": "100644", + "type": "blob", + "sha": "a94f6cf6cea13f2ea506c7e6f02bf8991d13a866", + "size": 491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a94f6cf6cea13f2ea506c7e6f02bf8991d13a866" + }, + { + "path": "svg/beszel-light.svg", + "mode": "100644", + "type": "blob", + "sha": "fa276d248afa844db7f084b24d34ac18ab5a97e7", + "size": 1139, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa276d248afa844db7f084b24d34ac18ab5a97e7" + }, + { + "path": "svg/beszel.svg", + "mode": "100755", + "type": "blob", + "sha": "fa276d248afa844db7f084b24d34ac18ab5a97e7", + "size": 1139, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa276d248afa844db7f084b24d34ac18ab5a97e7" + }, + { + "path": "svg/bewcloud.svg", + "mode": "100644", + "type": "blob", + "sha": "cac0ea6954348245b3048052f227d5991baa0ec2", + "size": 1444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cac0ea6954348245b3048052f227d5991baa0ec2" + }, + { + "path": "svg/biblioreads-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c792392178829848ab4e08084173aa95a1b6db14", + "size": 1193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c792392178829848ab4e08084173aa95a1b6db14" + }, + { + "path": "svg/biblioreads.svg", + "mode": "100755", + "type": "blob", + "sha": "a683c845f553daabd4d498e676545deadf06133d", + "size": 1174, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a683c845f553daabd4d498e676545deadf06133d" + }, + { + "path": "svg/bigcapital.svg", + "mode": "100755", + "type": "blob", + "sha": "8f35177d454bf7a655ad0a20b618c4b189d1f721", + "size": 256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f35177d454bf7a655ad0a20b618c4b189d1f721" + }, + { + "path": "svg/bilibili.svg", + "mode": "100644", + "type": "blob", + "sha": "28113ce37a6e5a1027f10e08a5c91b1894f26fa1", + "size": 3875, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28113ce37a6e5a1027f10e08a5c91b1894f26fa1" + }, + { + "path": "svg/bing.svg", + "mode": "100644", + "type": "blob", + "sha": "6b6e98903cfc2c9b9ee28b1c7ea5a88f419ecac8", + "size": 5367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b6e98903cfc2c9b9ee28b1c7ea5a88f419ecac8" + }, + { + "path": "svg/binner-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "47fb29c7c28463c86de1d854142e8c0240a1db8b", + "size": 3619, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47fb29c7c28463c86de1d854142e8c0240a1db8b" + }, + { + "path": "svg/binner.svg", + "mode": "100644", + "type": "blob", + "sha": "b0eb63c087f515b886fd2b0819550276cf5ddedc", + "size": 3623, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0eb63c087f515b886fd2b0819550276cf5ddedc" + }, + { + "path": "svg/bitbucket.svg", + "mode": "100755", + "type": "blob", + "sha": "a1652599e17e296eb18bfb7ae3aa663efc4c2ce1", + "size": 833, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1652599e17e296eb18bfb7ae3aa663efc4c2ce1" + }, + { + "path": "svg/bitcoin.svg", + "mode": "100644", + "type": "blob", + "sha": "aa85330b938db7ce93c4be97bd5df5ac18d46ff4", + "size": 1101, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa85330b938db7ce93c4be97bd5df5ac18d46ff4" + }, + { + "path": "svg/bitmagnet.svg", + "mode": "100644", + "type": "blob", + "sha": "ab2bf7587cb835c2dc45ed485e9ef3cfbeae98fe", + "size": 954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab2bf7587cb835c2dc45ed485e9ef3cfbeae98fe" + }, + { + "path": "svg/bitwarden.svg", + "mode": "100755", + "type": "blob", + "sha": "4c595265349e2100722ff197390d4b91ef281724", + "size": 397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c595265349e2100722ff197390d4b91ef281724" + }, + { + "path": "svg/blocky.svg", + "mode": "100755", + "type": "blob", + "sha": "0c37c7556783adec58f833876a8a269a1de7cd39", + "size": 14036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c37c7556783adec58f833876a8a269a1de7cd39" + }, + { + "path": "svg/blogger.svg", + "mode": "100644", + "type": "blob", + "sha": "3be8b1d97bb9001686cffc8c49fb554e8bc67d5d", + "size": 1834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3be8b1d97bb9001686cffc8c49fb554e8bc67d5d" + }, + { + "path": "svg/bluesky.svg", + "mode": "100755", + "type": "blob", + "sha": "2b49d712b4a3b322748ba2bc9501593067c1bc37", + "size": 525, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b49d712b4a3b322748ba2bc9501593067c1bc37" + }, + { + "path": "svg/bluetooth.svg", + "mode": "100644", + "type": "blob", + "sha": "5099463446ac0ee6fccde7bb0b392399707c4e82", + "size": 1253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5099463446ac0ee6fccde7bb0b392399707c4e82" + }, + { + "path": "svg/book-lore.svg", + "mode": "100644", + "type": "blob", + "sha": "1c4415d78b3e5910680e3eb163023d23e79a951b", + "size": 816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c4415d78b3e5910680e3eb163023d23e79a951b" + }, + { + "path": "svg/booklogr-light.svg", + "mode": "100755", + "type": "blob", + "sha": "7d25e4198dc610a81f2ee297512421e88c97bc09", + "size": 2028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d25e4198dc610a81f2ee297512421e88c97bc09" + }, + { + "path": "svg/booklogr.svg", + "mode": "100644", + "type": "blob", + "sha": "9e7128bbfa267ab6f35ccb808e8fb43d9e0cce7a", + "size": 2052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e7128bbfa267ab6f35ccb808e8fb43d9e0cce7a" + }, + { + "path": "svg/bookstack.svg", + "mode": "100644", + "type": "blob", + "sha": "db69426429f2dbe31d59ee0a7e660e07f8a28b30", + "size": 794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db69426429f2dbe31d59ee0a7e660e07f8a28b30" + }, + { + "path": "svg/bootstrap.svg", + "mode": "100644", + "type": "blob", + "sha": "3fb2c0b6dbbe6b6a5c3acaad88f66c19bb113c37", + "size": 2070, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fb2c0b6dbbe6b6a5c3acaad88f66c19bb113c37" + }, + { + "path": "svg/borg.svg", + "mode": "100755", + "type": "blob", + "sha": "e313856f3f8274783987d3569c362ef4723e9f9e", + "size": 254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e313856f3f8274783987d3569c362ef4723e9f9e" + }, + { + "path": "svg/borgmatic-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d1b9d368da512d350c9fa20d1eefaa46544de42b", + "size": 1171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1b9d368da512d350c9fa20d1eefaa46544de42b" + }, + { + "path": "svg/borgmatic.svg", + "mode": "100755", + "type": "blob", + "sha": "32836b50172f7ab4d88748983b11ef128515b621", + "size": 1152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32836b50172f7ab4d88748983b11ef128515b621" + }, + { + "path": "svg/bottom-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "174e33b2729771e1951d8f210ff5a187e7a23b8e", + "size": 15688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/174e33b2729771e1951d8f210ff5a187e7a23b8e" + }, + { + "path": "svg/bottom.svg", + "mode": "100644", + "type": "blob", + "sha": "a8a71c3f2183dc9c7c76f26584347a37f9fb6998", + "size": 15695, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8a71c3f2183dc9c7c76f26584347a37f9fb6998" + }, + { + "path": "svg/boundary.svg", + "mode": "100644", + "type": "blob", + "sha": "daf6335055ff6fdd35efc16912bb7cf3b9fc5569", + "size": 657, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/daf6335055ff6fdd35efc16912bb7cf3b9fc5569" + }, + { + "path": "svg/box.svg", + "mode": "100755", + "type": "blob", + "sha": "72bcf7d13da770e0fa4f3d70a82e88c3ea322d33", + "size": 1087, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72bcf7d13da770e0fa4f3d70a82e88c3ea322d33" + }, + { + "path": "svg/brave.svg", + "mode": "100755", + "type": "blob", + "sha": "e192b2d839aa7d58ee0c18eb6869552a909992fc", + "size": 3100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e192b2d839aa7d58ee0c18eb6869552a909992fc" + }, + { + "path": "svg/brick-tracker.svg", + "mode": "100644", + "type": "blob", + "sha": "992660500234fa2160878a60585e9f53d3b38dfb", + "size": 1332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/992660500234fa2160878a60585e9f53d3b38dfb" + }, + { + "path": "svg/bright-move.svg", + "mode": "100644", + "type": "blob", + "sha": "60d18c8bbabe2ebbd4d86cd798b429d0930d3b39", + "size": 4770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60d18c8bbabe2ebbd4d86cd798b429d0930d3b39" + }, + { + "path": "svg/broadcastchannel-light.svg", + "mode": "100644", + "type": "blob", + "sha": "abb3ec0a558a7d8622364a02f4a9e9fcee4e6f49", + "size": 607, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abb3ec0a558a7d8622364a02f4a9e9fcee4e6f49" + }, + { + "path": "svg/broadcastchannel.svg", + "mode": "100755", + "type": "blob", + "sha": "14c88a9993c918489b63780fcb5a17d7d21d432d", + "size": 595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14c88a9993c918489b63780fcb5a17d7d21d432d" + }, + { + "path": "svg/brocade.svg", + "mode": "100644", + "type": "blob", + "sha": "a9f619ce3c066be61bca8a0ca3bcc3a1e3a40cba", + "size": 640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9f619ce3c066be61bca8a0ca3bcc3a1e3a40cba" + }, + { + "path": "svg/brother.svg", + "mode": "100755", + "type": "blob", + "sha": "d0805addb1d6ad5aa5c1f2804920a7ff25d1bc88", + "size": 1594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0805addb1d6ad5aa5c1f2804920a7ff25d1bc88" + }, + { + "path": "svg/browserless-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bca030705888b2683186d494f538be26a8f47e10", + "size": 449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bca030705888b2683186d494f538be26a8f47e10" + }, + { + "path": "svg/browserless.svg", + "mode": "100644", + "type": "blob", + "sha": "2c582723b0fefc12a419e35d5bd22e608a3a186e", + "size": 437, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c582723b0fefc12a419e35d5bd22e608a3a186e" + }, + { + "path": "svg/browsh.svg", + "mode": "100644", + "type": "blob", + "sha": "c88299a5d8fa1d0e34f045cd5d774798548173e3", + "size": 585, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c88299a5d8fa1d0e34f045cd5d774798548173e3" + }, + { + "path": "svg/budget-board.svg", + "mode": "100644", + "type": "blob", + "sha": "734d1e56f39c2b7d9d38f8c3574f79b98b0e3b90", + "size": 1715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/734d1e56f39c2b7d9d38f8c3574f79b98b0e3b90" + }, + { + "path": "svg/budgetbee-light.svg", + "mode": "100644", + "type": "blob", + "sha": "72e199fa5d56990fd4781e63f1f5a28f256eccef", + "size": 4109, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72e199fa5d56990fd4781e63f1f5a28f256eccef" + }, + { + "path": "svg/budgetbee.svg", + "mode": "100755", + "type": "blob", + "sha": "abf28573f14cc248783b7cc7284906026d710154", + "size": 4037, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abf28573f14cc248783b7cc7284906026d710154" + }, + { + "path": "svg/budibase.svg", + "mode": "100755", + "type": "blob", + "sha": "548678e0d35ac9173240a6f168fa86c14aa2e4de", + "size": 1099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/548678e0d35ac9173240a6f168fa86c14aa2e4de" + }, + { + "path": "svg/build-better-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "93559438c7a5eea9a7dc5ba273efbf2711f5702b", + "size": 537, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93559438c7a5eea9a7dc5ba273efbf2711f5702b" + }, + { + "path": "svg/build-better.svg", + "mode": "100644", + "type": "blob", + "sha": "02e8df2f8f0533e68db4fd7c05bd614c2dce2e45", + "size": 537, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02e8df2f8f0533e68db4fd7c05bd614c2dce2e45" + }, + { + "path": "svg/buildium.svg", + "mode": "100644", + "type": "blob", + "sha": "9eb79bf4a9d7505ea41457811199e79d727054a8", + "size": 743, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eb79bf4a9d7505ea41457811199e79d727054a8" + }, + { + "path": "svg/bunkerweb.svg", + "mode": "100755", + "type": "blob", + "sha": "edf6498b95d800ebc3a47559a3f0c65651b23cfb", + "size": 581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edf6498b95d800ebc3a47559a3f0c65651b23cfb" + }, + { + "path": "svg/bunny.svg", + "mode": "100644", + "type": "blob", + "sha": "2ea31fa70b5b74498ac62e7b45f071ad9de6f4c6", + "size": 6292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ea31fa70b5b74498ac62e7b45f071ad9de6f4c6" + }, + { + "path": "svg/bytestash.svg", + "mode": "100644", + "type": "blob", + "sha": "13b3d58a97f290c599e3398ac12a71459407360f", + "size": 9409, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13b3d58a97f290c599e3398ac12a71459407360f" + }, + { + "path": "svg/c.svg", + "mode": "100644", + "type": "blob", + "sha": "ad1d0b62aadd35c8b5aa54268f718bc367d4361d", + "size": 1146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad1d0b62aadd35c8b5aa54268f718bc367d4361d" + }, + { + "path": "svg/cabernet.svg", + "mode": "100644", + "type": "blob", + "sha": "dc88709d30b225aee7f6a42ae8361c37cc734b59", + "size": 7160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc88709d30b225aee7f6a42ae8361c37cc734b59" + }, + { + "path": "svg/cachyos-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "3836ae07ab3b0edb951dc1d0efaf9f219bef4325", + "size": 10039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3836ae07ab3b0edb951dc1d0efaf9f219bef4325" + }, + { + "path": "svg/cacti.svg", + "mode": "100644", + "type": "blob", + "sha": "af2a38b47193dcdd518986a7b4ebf3dc055dc6b9", + "size": 9150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af2a38b47193dcdd518986a7b4ebf3dc055dc6b9" + }, + { + "path": "svg/caddy.svg", + "mode": "100755", + "type": "blob", + "sha": "2056f626464dd568bb85118cb81c4a9fa3aeb7a1", + "size": 3363, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2056f626464dd568bb85118cb81c4a9fa3aeb7a1" + }, + { + "path": "svg/cal-com-light.svg", + "mode": "100644", + "type": "blob", + "sha": "dce833fa5e9ef2a4b7eda2820b26e9e555c6e499", + "size": 774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dce833fa5e9ef2a4b7eda2820b26e9e555c6e499" + }, + { + "path": "svg/cal-com.svg", + "mode": "100755", + "type": "blob", + "sha": "b12288b8bcf6d514a0d0d3269d890a6062b5fb50", + "size": 774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b12288b8bcf6d514a0d0d3269d890a6062b5fb50" + }, + { + "path": "svg/calibre-web.svg", + "mode": "100644", + "type": "blob", + "sha": "762717799bb44d10883e5428609bed0446ace08b", + "size": 1047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/762717799bb44d10883e5428609bed0446ace08b" + }, + { + "path": "svg/calibre.svg", + "mode": "100755", + "type": "blob", + "sha": "49aec37ed386dcc15aa9bbd4a2c29a30595c9c64", + "size": 16980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49aec37ed386dcc15aa9bbd4a2c29a30595c9c64" + }, + { + "path": "svg/canonical.svg", + "mode": "100644", + "type": "blob", + "sha": "38a28b65d53ba7f74fd656d294f2832b7c6f2f8e", + "size": 463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38a28b65d53ba7f74fd656d294f2832b7c6f2f8e" + }, + { + "path": "svg/canvas-lms.svg", + "mode": "100644", + "type": "blob", + "sha": "5a351a1cbea12e72b3283b8f37b38037edf617c9", + "size": 1947, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a351a1cbea12e72b3283b8f37b38037edf617c9" + }, + { + "path": "svg/cap-cut-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "90120ab1b0cf6ccdb0730d7147b24747cf2be00e", + "size": 483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90120ab1b0cf6ccdb0730d7147b24747cf2be00e" + }, + { + "path": "svg/cap-cut.svg", + "mode": "100644", + "type": "blob", + "sha": "18bc8dd692417e2fbfd35f699c745d0d44ccd30c", + "size": 486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18bc8dd692417e2fbfd35f699c745d0d44ccd30c" + }, + { + "path": "svg/capacities-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "037a027265613253adac6f26f97f039d8f63b5a9", + "size": 1226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/037a027265613253adac6f26f97f039d8f63b5a9" + }, + { + "path": "svg/capacities.svg", + "mode": "100644", + "type": "blob", + "sha": "d801bcbbdeab4a4072b13598459ebeec265505ef", + "size": 1226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d801bcbbdeab4a4072b13598459ebeec265505ef" + }, + { + "path": "svg/caprover.svg", + "mode": "100755", + "type": "blob", + "sha": "5f4d04e3e51db80aa2910d3696499e2fd966f26d", + "size": 2050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f4d04e3e51db80aa2910d3696499e2fd966f26d" + }, + { + "path": "svg/carrefour.svg", + "mode": "100644", + "type": "blob", + "sha": "367c2f983ef2ecec0518e8bfa99e8c83c5b1a741", + "size": 6539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/367c2f983ef2ecec0518e8bfa99e8c83c5b1a741" + }, + { + "path": "svg/casaos.svg", + "mode": "100644", + "type": "blob", + "sha": "4ba998dda70b3f347c15b683b6ceae723610e0a0", + "size": 611, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ba998dda70b3f347c15b683b6ceae723610e0a0" + }, + { + "path": "svg/castopod.svg", + "mode": "100755", + "type": "blob", + "sha": "7ae56b6c1cf840cf802a68f7d2a06701890c3eca", + "size": 1736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ae56b6c1cf840cf802a68f7d2a06701890c3eca" + }, + { + "path": "svg/cc-light.svg", + "mode": "100644", + "type": "blob", + "sha": "5f4a874cbac765ae5682946d660ef2e0f941961a", + "size": 731, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f4a874cbac765ae5682946d660ef2e0f941961a" + }, + { + "path": "svg/cc.svg", + "mode": "100644", + "type": "blob", + "sha": "a2dc3b7b6aa38d1d5e8b821811b8eaaf791d741c", + "size": 719, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2dc3b7b6aa38d1d5e8b821811b8eaaf791d741c" + }, + { + "path": "svg/centos.svg", + "mode": "100644", + "type": "blob", + "sha": "c1cec586ba29ff8d333cea1066da8ea935d81b33", + "size": 1479, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1cec586ba29ff8d333cea1066da8ea935d81b33" + }, + { + "path": "svg/ceph.svg", + "mode": "100644", + "type": "blob", + "sha": "db13eab37d11fc2dec02ebfe32ff76cbce93ebe5", + "size": 1783, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db13eab37d11fc2dec02ebfe32ff76cbce93ebe5" + }, + { + "path": "svg/cert-manager.svg", + "mode": "100644", + "type": "blob", + "sha": "ed4a075404d8f4dd1ccfaec083c0942c63fa3960", + "size": 11761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed4a075404d8f4dd1ccfaec083c0942c63fa3960" + }, + { + "path": "svg/cert-warden-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b28e4ef730c22f753143c0544fa26a3bb93d6825", + "size": 5357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b28e4ef730c22f753143c0544fa26a3bb93d6825" + }, + { + "path": "svg/cert-warden.svg", + "mode": "100644", + "type": "blob", + "sha": "6aade08c5abba34e00633acf9be33fb3f3d834bd", + "size": 5360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6aade08c5abba34e00633acf9be33fb3f3d834bd" + }, + { + "path": "svg/cessna.svg", + "mode": "100644", + "type": "blob", + "sha": "e553c06297c6652cd63283f506e9d12af64f84db", + "size": 6630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e553c06297c6652cd63283f506e9d12af64f84db" + }, + { + "path": "svg/chainguard.svg", + "mode": "100644", + "type": "blob", + "sha": "135af785aa32841ab120d5e79722e379de246986", + "size": 2186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/135af785aa32841ab120d5e79722e379de246986" + }, + { + "path": "svg/changedetection.svg", + "mode": "100755", + "type": "blob", + "sha": "12dbc82761eaf916c1b7d3c85a40f152b2155a57", + "size": 2750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12dbc82761eaf916c1b7d3c85a40f152b2155a57" + }, + { + "path": "svg/channels-dvr.svg", + "mode": "100755", + "type": "blob", + "sha": "8b5dfe63cf47890b3c04f19b9b98652849633a17", + "size": 1640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b5dfe63cf47890b3c04f19b9b98652849633a17" + }, + { + "path": "svg/chaptarr.svg", + "mode": "100644", + "type": "blob", + "sha": "7ff22e3b9de252f46bbd914e63b0457e252c2117", + "size": 1181015, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ff22e3b9de252f46bbd914e63b0457e252c2117" + }, + { + "path": "svg/chatgpt.svg", + "mode": "100755", + "type": "blob", + "sha": "2312a7744253251dc7f71513d4f929ed3c514e50", + "size": 972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2312a7744253251dc7f71513d4f929ed3c514e50" + }, + { + "path": "svg/chatpad-ai.svg", + "mode": "100644", + "type": "blob", + "sha": "8e8695e7f58ea7ec0c3943581c2d8c91abc32b1e", + "size": 1091, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e8695e7f58ea7ec0c3943581c2d8c91abc32b1e" + }, + { + "path": "svg/chatwoot.svg", + "mode": "100644", + "type": "blob", + "sha": "9a93f3afe6e1b1cb97eb86349d49e35abb3169e4", + "size": 575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a93f3afe6e1b1cb97eb86349d49e35abb3169e4" + }, + { + "path": "svg/check-cle.svg", + "mode": "100644", + "type": "blob", + "sha": "d2d5d6d1ba6553ab2b239c0906c1c9b079993801", + "size": 3818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2d5d6d1ba6553ab2b239c0906c1c9b079993801" + }, + { + "path": "svg/checkmate.svg", + "mode": "100644", + "type": "blob", + "sha": "2c73542e5d8995111281cd2a2afd39f78cf164d5", + "size": 29915, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c73542e5d8995111281cd2a2afd39f78cf164d5" + }, + { + "path": "svg/checkmk.svg", + "mode": "100644", + "type": "blob", + "sha": "bccbbd7f8175bc314a52908ba4851afc3e93211e", + "size": 644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bccbbd7f8175bc314a52908ba4851afc3e93211e" + }, + { + "path": "svg/chess.svg", + "mode": "100644", + "type": "blob", + "sha": "f727e8c6024d1f32cd12693ff0833967417501b2", + "size": 2215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f727e8c6024d1f32cd12693ff0833967417501b2" + }, + { + "path": "svg/chevereto.svg", + "mode": "100755", + "type": "blob", + "sha": "8a7a2f083c3c3e0cd873625744740e8ec5af8fef", + "size": 1134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a7a2f083c3c3e0cd873625744740e8ec5af8fef" + }, + { + "path": "svg/chhoto-url.svg", + "mode": "100644", + "type": "blob", + "sha": "f4521421adcc205f49df25ff12a1b7a3a917fff8", + "size": 2746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4521421adcc205f49df25ff12a1b7a3a917fff8" + }, + { + "path": "svg/chibisafe.svg", + "mode": "100644", + "type": "blob", + "sha": "8aa090f1c0c4288968f3b93ed8b5b56c997c6e65", + "size": 32363, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8aa090f1c0c4288968f3b93ed8b5b56c997c6e65" + }, + { + "path": "svg/chirpy.svg", + "mode": "100755", + "type": "blob", + "sha": "9432fc602fd29d0a2b6105fc08ffc4add8af48d9", + "size": 652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9432fc602fd29d0a2b6105fc08ffc4add8af48d9" + }, + { + "path": "svg/chroma.svg", + "mode": "100644", + "type": "blob", + "sha": "e880a8673ef5a0d32bf4cb86ebb856e30f9afe66", + "size": 1424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e880a8673ef5a0d32bf4cb86ebb856e30f9afe66" + }, + { + "path": "svg/chrome-canary.svg", + "mode": "100644", + "type": "blob", + "sha": "fd119180014bc156336ed8aa7fa863fec52b7a74", + "size": 11749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd119180014bc156336ed8aa7fa863fec52b7a74" + }, + { + "path": "svg/chrome-dev.svg", + "mode": "100644", + "type": "blob", + "sha": "2c6f8e9989e431ab8a5cdb3e9a6d01442802372f", + "size": 50051, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c6f8e9989e431ab8a5cdb3e9a6d01442802372f" + }, + { + "path": "svg/chrome-devtools.svg", + "mode": "100644", + "type": "blob", + "sha": "b8551a0c9e740dafdd6b2e20a02edff742db3fb3", + "size": 2248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8551a0c9e740dafdd6b2e20a02edff742db3fb3" + }, + { + "path": "svg/chrome-remote-desktop.svg", + "mode": "100644", + "type": "blob", + "sha": "cf844992dfdb9e340ef6a164d55bb59c478de9f5", + "size": 8449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf844992dfdb9e340ef6a164d55bb59c478de9f5" + }, + { + "path": "svg/chrome.svg", + "mode": "100644", + "type": "blob", + "sha": "d0da442e5db3347b367cd0701488e23fa6aef79d", + "size": 2910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0da442e5db3347b367cd0701488e23fa6aef79d" + }, + { + "path": "svg/chromium.svg", + "mode": "100755", + "type": "blob", + "sha": "e29081c007f8dc1870ab3c878e56a75911f35893", + "size": 1810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e29081c007f8dc1870ab3c878e56a75911f35893" + }, + { + "path": "svg/cilium-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3d4579184828b2972fbc127450085be3011771df", + "size": 787, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d4579184828b2972fbc127450085be3011771df" + }, + { + "path": "svg/cilium.svg", + "mode": "100644", + "type": "blob", + "sha": "88c6c0a7f9fced18c96c7ce747da9f7f917ab32b", + "size": 790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88c6c0a7f9fced18c96c7ce747da9f7f917ab32b" + }, + { + "path": "svg/cinny-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f2a4ed33b47c3e0fde799940caafa125b969c19a", + "size": 460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2a4ed33b47c3e0fde799940caafa125b969c19a" + }, + { + "path": "svg/cinny.svg", + "mode": "100644", + "type": "blob", + "sha": "4dbd8f369e6a2b03fed849ae3dd83cc2072a8cd3", + "size": 438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4dbd8f369e6a2b03fed849ae3dd83cc2072a8cd3" + }, + { + "path": "svg/ciphermail.svg", + "mode": "100644", + "type": "blob", + "sha": "758a2c6f5e1c6d8fe3b9d43813d2c74db0bfa0f2", + "size": 2829, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/758a2c6f5e1c6d8fe3b9d43813d2c74db0bfa0f2" + }, + { + "path": "svg/cisco.svg", + "mode": "100644", + "type": "blob", + "sha": "33d2302de80f684b2a7d0b7666fcd7fd480410cb", + "size": 2223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33d2302de80f684b2a7d0b7666fcd7fd480410cb" + }, + { + "path": "svg/clam-av.svg", + "mode": "100644", + "type": "blob", + "sha": "ec518ae1cb9a766f2ab4b18b4c6956d01ff0ff8a", + "size": 6540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec518ae1cb9a766f2ab4b18b4c6956d01ff0ff8a" + }, + { + "path": "svg/claude-ai-light.svg", + "mode": "100644", + "type": "blob", + "sha": "cd6c6134c2e60a48d8ca84519d1085fd7874f3e2", + "size": 526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd6c6134c2e60a48d8ca84519d1085fd7874f3e2" + }, + { + "path": "svg/claude-ai.svg", + "mode": "100644", + "type": "blob", + "sha": "42607a251565dea7c70adc4332a18aad8df243b1", + "size": 526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42607a251565dea7c70adc4332a18aad8df243b1" + }, + { + "path": "svg/cleanuperr.svg", + "mode": "100644", + "type": "blob", + "sha": "d5bc5e73235e445dbb82d1d466a951d3fa7a13b6", + "size": 115020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5bc5e73235e445dbb82d1d466a951d3fa7a13b6" + }, + { + "path": "svg/clickhouse.svg", + "mode": "100755", + "type": "blob", + "sha": "2fd2702cb6839c78f33185f6cb435b4cd27ef3e1", + "size": 301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fd2702cb6839c78f33185f6cb435b4cd27ef3e1" + }, + { + "path": "svg/clickup.svg", + "mode": "100644", + "type": "blob", + "sha": "e65b47ced05d53fa043f9340cfe0936f9537e169", + "size": 1520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e65b47ced05d53fa043f9340cfe0936f9537e169" + }, + { + "path": "svg/cloud66.svg", + "mode": "100644", + "type": "blob", + "sha": "c1e94305b28eafee5c6d3338567ee147446ca2e2", + "size": 3211, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1e94305b28eafee5c6d3338567ee147446ca2e2" + }, + { + "path": "svg/cloud9-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e13ae7d35ec7e46c347fa21560ae2c8afbb09234", + "size": 4160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e13ae7d35ec7e46c347fa21560ae2c8afbb09234" + }, + { + "path": "svg/cloud9.svg", + "mode": "100644", + "type": "blob", + "sha": "4cb2fec07be6027b8311e6ab424e016cfd75ca33", + "size": 4100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cb2fec07be6027b8311e6ab424e016cfd75ca33" + }, + { + "path": "svg/cloudbeaver.svg", + "mode": "100755", + "type": "blob", + "sha": "40c369d885c9bd3e98cb9da7254b731939f38649", + "size": 2749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40c369d885c9bd3e98cb9da7254b731939f38649" + }, + { + "path": "svg/cloudflare-pages.svg", + "mode": "100644", + "type": "blob", + "sha": "4538c06a2bb5e0001871959ed7838aedb36319dd", + "size": 1029, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4538c06a2bb5e0001871959ed7838aedb36319dd" + }, + { + "path": "svg/cloudflare-zero-trust.svg", + "mode": "100644", + "type": "blob", + "sha": "45cdd46d1d6a1577e755ebde0e5c4e0926648c1a", + "size": 5664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45cdd46d1d6a1577e755ebde0e5c4e0926648c1a" + }, + { + "path": "svg/cloudflare.svg", + "mode": "100755", + "type": "blob", + "sha": "9577324d6614378afee8d03a8601033c00f4ba97", + "size": 1216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9577324d6614378afee8d03a8601033c00f4ba97" + }, + { + "path": "svg/cloudpanel.svg", + "mode": "100644", + "type": "blob", + "sha": "b74a79acfd80abc139b0377b40cfa7052be069f4", + "size": 1035, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b74a79acfd80abc139b0377b40cfa7052be069f4" + }, + { + "path": "svg/cloudreve.svg", + "mode": "100644", + "type": "blob", + "sha": "0a2c6c14cc1ea977d5cbe20d96656a94c6327401", + "size": 132929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a2c6c14cc1ea977d5cbe20d96656a94c6327401" + }, + { + "path": "svg/cloudstream.svg", + "mode": "100644", + "type": "blob", + "sha": "aae892613bd34916f1f97184601c6fedb05fc849", + "size": 3607, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aae892613bd34916f1f97184601c6fedb05fc849" + }, + { + "path": "svg/cobalt-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "da13c8cfa0059961f6854dab103b4ac5a49fa771", + "size": 1112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da13c8cfa0059961f6854dab103b4ac5a49fa771" + }, + { + "path": "svg/cobalt.svg", + "mode": "100644", + "type": "blob", + "sha": "8180949a22efaae9be4aef800817823e384ec182", + "size": 1112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8180949a22efaae9be4aef800817823e384ec182" + }, + { + "path": "svg/cockpit-cms-light.svg", + "mode": "100644", + "type": "blob", + "sha": "607e26fef1cac7bc9b2f1ab6ae34f3960e5a9dcb", + "size": 559, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/607e26fef1cac7bc9b2f1ab6ae34f3960e5a9dcb" + }, + { + "path": "svg/cockpit-cms.svg", + "mode": "100644", + "type": "blob", + "sha": "e0d53a0c846f163e0a4a2915c404075dc1fa3a48", + "size": 544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0d53a0c846f163e0a4a2915c404075dc1fa3a48" + }, + { + "path": "svg/cockpit-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b64cf256fcab998569505b6c088f51f05e3e194e", + "size": 622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b64cf256fcab998569505b6c088f51f05e3e194e" + }, + { + "path": "svg/cockpit.svg", + "mode": "100755", + "type": "blob", + "sha": "39ce83513a7f7f5c301310cb61bd3e8ccf099d20", + "size": 610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39ce83513a7f7f5c301310cb61bd3e8ccf099d20" + }, + { + "path": "svg/code-cademy-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "bc00e2bc5ae78ea903c66dc5d6adf74e5e4388cc", + "size": 1086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc00e2bc5ae78ea903c66dc5d6adf74e5e4388cc" + }, + { + "path": "svg/code-cademy.svg", + "mode": "100644", + "type": "blob", + "sha": "3c831026acffd3d95fdfae4abab3a60ecf137cf7", + "size": 1089, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c831026acffd3d95fdfae4abab3a60ecf137cf7" + }, + { + "path": "svg/code.svg", + "mode": "100644", + "type": "blob", + "sha": "5cb0e77160a240f1f0b3d799bf7e09f4b2dfa93f", + "size": 3275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cb0e77160a240f1f0b3d799bf7e09f4b2dfa93f" + }, + { + "path": "svg/codeberg.svg", + "mode": "100755", + "type": "blob", + "sha": "1b458c3cd355d390908d72e8042464a19b4ad521", + "size": 814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b458c3cd355d390908d72e8042464a19b4ad521" + }, + { + "path": "svg/codellm.svg", + "mode": "100644", + "type": "blob", + "sha": "4e80004c5c0255e1fd185c7e66adf6453591f574", + "size": 5694, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e80004c5c0255e1fd185c7e66adf6453591f574" + }, + { + "path": "svg/coder-light.svg", + "mode": "100644", + "type": "blob", + "sha": "969e68fbdc9b90293933ec9016c49159def5e73a", + "size": 743, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/969e68fbdc9b90293933ec9016c49159def5e73a" + }, + { + "path": "svg/coder.svg", + "mode": "100755", + "type": "blob", + "sha": "64d2d97a52febd348966993a87c4c18f9f9a28d9", + "size": 743, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64d2d97a52febd348966993a87c4c18f9f9a28d9" + }, + { + "path": "svg/codestats-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f702148c5e20f50ea01610e7b3c10c44ae80285d", + "size": 1981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f702148c5e20f50ea01610e7b3c10c44ae80285d" + }, + { + "path": "svg/codestats.svg", + "mode": "100644", + "type": "blob", + "sha": "caf49a1563661eab1b2557891806d57fe7fc7b5f", + "size": 1957, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/caf49a1563661eab1b2557891806d57fe7fc7b5f" + }, + { + "path": "svg/codex-light.svg", + "mode": "100644", + "type": "blob", + "sha": "46158e2753f76fe1add28fd1c6e10fb45f020614", + "size": 4949, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46158e2753f76fe1add28fd1c6e10fb45f020614" + }, + { + "path": "svg/codex.svg", + "mode": "100644", + "type": "blob", + "sha": "e7ffdc65d9131b96e9eccd1b48aa214e81eca6a5", + "size": 4868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7ffdc65d9131b96e9eccd1b48aa214e81eca6a5" + }, + { + "path": "svg/collabora-online.svg", + "mode": "100644", + "type": "blob", + "sha": "eeb233eac1472fc83383d56664814fd980f8aab2", + "size": 5387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeb233eac1472fc83383d56664814fd980f8aab2" + }, + { + "path": "svg/commafeed-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b3b80bf42b0150ed700b77afde571ae0f4ea57d2", + "size": 498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3b80bf42b0150ed700b77afde571ae0f4ea57d2" + }, + { + "path": "svg/commafeed.svg", + "mode": "100755", + "type": "blob", + "sha": "1150fda0f209073b9474be4312d2fa4c58964bcd", + "size": 700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1150fda0f209073b9474be4312d2fa4c58964bcd" + }, + { + "path": "svg/commento-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3569d1adae7bf30fea0833e8c1f8608433b237d4", + "size": 7773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3569d1adae7bf30fea0833e8c1f8608433b237d4" + }, + { + "path": "svg/commento.svg", + "mode": "100755", + "type": "blob", + "sha": "c6fb83c8cc2b18908aaec5f779b3c65a5d784e39", + "size": 7773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6fb83c8cc2b18908aaec5f779b3c65a5d784e39" + }, + { + "path": "svg/compreface.svg", + "mode": "100755", + "type": "blob", + "sha": "bd995e22f78a9018364a1eed26a2d12f00d417e7", + "size": 2202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd995e22f78a9018364a1eed26a2d12f00d417e7" + }, + { + "path": "svg/concourse.svg", + "mode": "100644", + "type": "blob", + "sha": "809615d8001e32ba7a293f74db7365c42006dad2", + "size": 2486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/809615d8001e32ba7a293f74db7365c42006dad2" + }, + { + "path": "svg/confix.svg", + "mode": "100644", + "type": "blob", + "sha": "442380ee0f402d71999594414133983e505124e2", + "size": 10818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/442380ee0f402d71999594414133983e505124e2" + }, + { + "path": "svg/confluence.svg", + "mode": "100755", + "type": "blob", + "sha": "114868d914305e4f09637df5b76a1ad0ae241360", + "size": 1324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/114868d914305e4f09637df5b76a1ad0ae241360" + }, + { + "path": "svg/consul.svg", + "mode": "100644", + "type": "blob", + "sha": "65f87ff95d52776d6ffce3d40e87360099f383ab", + "size": 1103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65f87ff95d52776d6ffce3d40e87360099f383ab" + }, + { + "path": "svg/contabo.svg", + "mode": "100644", + "type": "blob", + "sha": "24eb79d9a1f1c42298a230c8d5c9405d1e6089ad", + "size": 1154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24eb79d9a1f1c42298a230c8d5c9405d1e6089ad" + }, + { + "path": "svg/control-d-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "4ad8089d15f54a34ff4c55a8e72b6fc7896f1696", + "size": 1126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ad8089d15f54a34ff4c55a8e72b6fc7896f1696" + }, + { + "path": "svg/control-d.svg", + "mode": "100644", + "type": "blob", + "sha": "237521bcea52563d62e05a4cbbc6cabe8fc01980", + "size": 1126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/237521bcea52563d62e05a4cbbc6cabe8fc01980" + }, + { + "path": "svg/converse-light.svg", + "mode": "100644", + "type": "blob", + "sha": "959937a506864f225867bdb645da13361392c384", + "size": 670, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/959937a506864f225867bdb645da13361392c384" + }, + { + "path": "svg/converse.svg", + "mode": "100755", + "type": "blob", + "sha": "8ad91d120c0d2ef4aa347090fdc096a7d78f0e80", + "size": 651, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ad91d120c0d2ef4aa347090fdc096a7d78f0e80" + }, + { + "path": "svg/convex.svg", + "mode": "100644", + "type": "blob", + "sha": "a94179c9939342cd5067c868a729b57907063cab", + "size": 926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a94179c9939342cd5067c868a729b57907063cab" + }, + { + "path": "svg/cooler-control.svg", + "mode": "100644", + "type": "blob", + "sha": "b8a7f256b0c0a8e3a8a1694590316786732a4561", + "size": 3251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8a7f256b0c0a8e3a8a1694590316786732a4561" + }, + { + "path": "svg/coolify.svg", + "mode": "100755", + "type": "blob", + "sha": "6d4b332dbe284439dc4ed27be22ba010addcd5f1", + "size": 574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d4b332dbe284439dc4ed27be22ba010addcd5f1" + }, + { + "path": "svg/copyparty.svg", + "mode": "100644", + "type": "blob", + "sha": "2c4f0d045be561b65c4b62b9939265fcec10e9ce", + "size": 8480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c4f0d045be561b65c4b62b9939265fcec10e9ce" + }, + { + "path": "svg/copyq.svg", + "mode": "100644", + "type": "blob", + "sha": "6184949bd0474185fcb69c363b9d21b554f1abf6", + "size": 4790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6184949bd0474185fcb69c363b9d21b554f1abf6" + }, + { + "path": "svg/coredns.svg", + "mode": "100644", + "type": "blob", + "sha": "443333247d500a778360fc007edb917b7851efdf", + "size": 7454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/443333247d500a778360fc007edb917b7851efdf" + }, + { + "path": "svg/coreos.svg", + "mode": "100644", + "type": "blob", + "sha": "dfb79db5e2df1ea26194aa91f7c490abd02d0138", + "size": 1150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfb79db5e2df1ea26194aa91f7c490abd02d0138" + }, + { + "path": "svg/cosign.svg", + "mode": "100644", + "type": "blob", + "sha": "22a24c95ea19ec9cd89b237fe48e00598a277d58", + "size": 4962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22a24c95ea19ec9cd89b237fe48e00598a277d58" + }, + { + "path": "svg/costco.svg", + "mode": "100644", + "type": "blob", + "sha": "f638b53a8ab1d2f910644d2858350bb23d9b7d33", + "size": 7147, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f638b53a8ab1d2f910644d2858350bb23d9b7d33" + }, + { + "path": "svg/couchdb.svg", + "mode": "100755", + "type": "blob", + "sha": "4e90ba74086b556960c6e6440a05a3c3da4ce19d", + "size": 673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e90ba74086b556960c6e6440a05a3c3da4ce19d" + }, + { + "path": "svg/counter-analytics.svg", + "mode": "100755", + "type": "blob", + "sha": "edc07ab40cb43d6fc54df9ee18ac3f3d559a488f", + "size": 378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edc07ab40cb43d6fc54df9ee18ac3f3d559a488f" + }, + { + "path": "svg/cozy.svg", + "mode": "100644", + "type": "blob", + "sha": "ff0c0e9a20932768db4790692ad74589336b717c", + "size": 4325, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff0c0e9a20932768db4790692ad74589336b717c" + }, + { + "path": "svg/cpanel.svg", + "mode": "100644", + "type": "blob", + "sha": "4bfc2ac8dac52292e219968fd8f5395cb1c8e5f3", + "size": 1119, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bfc2ac8dac52292e219968fd8f5395cb1c8e5f3" + }, + { + "path": "svg/cpp.svg", + "mode": "100644", + "type": "blob", + "sha": "9f18040032a39e4ee298ed21b5127f9b1bae05b7", + "size": 1162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f18040032a39e4ee298ed21b5127f9b1bae05b7" + }, + { + "path": "svg/crafty-controller.svg", + "mode": "100644", + "type": "blob", + "sha": "5ef77220d8bcb842cb552730be12c7f0cee12d47", + "size": 517, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ef77220d8bcb842cb552730be12c7f0cee12d47" + }, + { + "path": "svg/cronicle.svg", + "mode": "100644", + "type": "blob", + "sha": "2cd57ac802efde2df63df5ecb86c40a5711a2a1a", + "size": 2457, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cd57ac802efde2df63df5ecb86c40a5711a2a1a" + }, + { + "path": "svg/crowdin-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "796e768c22dbe516fc5b4b6385541f581ea0c52e", + "size": 3065, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/796e768c22dbe516fc5b4b6385541f581ea0c52e" + }, + { + "path": "svg/crowdin.svg", + "mode": "100644", + "type": "blob", + "sha": "845b22ba5a606ab2db523cba3cd971ef1efcf315", + "size": 2998, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/845b22ba5a606ab2db523cba3cd971ef1efcf315" + }, + { + "path": "svg/crowdsec.svg", + "mode": "100755", + "type": "blob", + "sha": "c9201b4b624a3e3fbf3c20ab1234ac236e86c33e", + "size": 7625, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9201b4b624a3e3fbf3c20ab1234ac236e86c33e" + }, + { + "path": "svg/crunchyroll.svg", + "mode": "100644", + "type": "blob", + "sha": "7576d27379b6bba0ecbabe2ec042bf83f1b9b5db", + "size": 2625, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7576d27379b6bba0ecbabe2ec042bf83f1b9b5db" + }, + { + "path": "svg/cryptomator.svg", + "mode": "100644", + "type": "blob", + "sha": "56a763aedc96201f64f05e6bc31ec89a08c49553", + "size": 4203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56a763aedc96201f64f05e6bc31ec89a08c49553" + }, + { + "path": "svg/cryptpad.svg", + "mode": "100755", + "type": "blob", + "sha": "48ff46156ac5325b1a11024e9fca86ca32bdc9bc", + "size": 1185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48ff46156ac5325b1a11024e9fca86ca32bdc9bc" + }, + { + "path": "svg/csharp.svg", + "mode": "100644", + "type": "blob", + "sha": "e3a32bb793f7e6ba144cd235093d8b23cf27b912", + "size": 1840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3a32bb793f7e6ba144cd235093d8b23cf27b912" + }, + { + "path": "svg/css-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1f5c0f7d90a2189e37e057002f9bb465c6515ab5", + "size": 943, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f5c0f7d90a2189e37e057002f9bb465c6515ab5" + }, + { + "path": "svg/css.svg", + "mode": "100644", + "type": "blob", + "sha": "1aa0be8d0e82e4820824dbc8c2bd2df83c673bbd", + "size": 931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1aa0be8d0e82e4820824dbc8c2bd2df83c673bbd" + }, + { + "path": "svg/ctfreak.svg", + "mode": "100755", + "type": "blob", + "sha": "e6a6bbc6f5b306881d3e164b4f25e9552adba0bc", + "size": 730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6a6bbc6f5b306881d3e164b4f25e9552adba0bc" + }, + { + "path": "svg/cup.svg", + "mode": "100644", + "type": "blob", + "sha": "4fe839661216c0beb6b0d8c2a5eb265bcdede1b3", + "size": 2164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fe839661216c0beb6b0d8c2a5eb265bcdede1b3" + }, + { + "path": "svg/cups-light.svg", + "mode": "100644", + "type": "blob", + "sha": "97c1ff3be12c34a37e70a7524eb07dd4487a1b56", + "size": 5127, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97c1ff3be12c34a37e70a7524eb07dd4487a1b56" + }, + { + "path": "svg/cups.svg", + "mode": "100644", + "type": "blob", + "sha": "0a21811b93a022e168c917f1536397e3be0b5ac5", + "size": 5108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a21811b93a022e168c917f1536397e3be0b5ac5" + }, + { + "path": "svg/cura.svg", + "mode": "100644", + "type": "blob", + "sha": "41c351a6b368249be8fe36373ac3c56b43d56dd3", + "size": 1013, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41c351a6b368249be8fe36373ac3c56b43d56dd3" + }, + { + "path": "svg/cyber-power-full.svg", + "mode": "100644", + "type": "blob", + "sha": "5d5d58430812ba4210c279ec6b056e5af8b9661c", + "size": 3819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d5d58430812ba4210c279ec6b056e5af8b9661c" + }, + { + "path": "svg/cyberchef.svg", + "mode": "100755", + "type": "blob", + "sha": "9a5f135e72684299ff3dccd170fb0aedb1c79052", + "size": 2254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a5f135e72684299ff3dccd170fb0aedb1c79052" + }, + { + "path": "svg/czkawka.svg", + "mode": "100755", + "type": "blob", + "sha": "08a0fa9448b9586addf5a6cba208443c4419e183", + "size": 8959, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08a0fa9448b9586addf5a6cba208443c4419e183" + }, + { + "path": "svg/d-link.svg", + "mode": "100644", + "type": "blob", + "sha": "6b8eb93745f2180f86e8689100576a692c94bf5a", + "size": 3038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b8eb93745f2180f86e8689100576a692c94bf5a" + }, + { + "path": "svg/dagster-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "2b0d2621c41af440584ca10010ea452c166b18a2", + "size": 5417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b0d2621c41af440584ca10010ea452c166b18a2" + }, + { + "path": "svg/dagster-light.svg", + "mode": "100644", + "type": "blob", + "sha": "24ace77ce950609afd6f5d33f608b458bb8051d0", + "size": 5430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24ace77ce950609afd6f5d33f608b458bb8051d0" + }, + { + "path": "svg/dalibo.svg", + "mode": "100755", + "type": "blob", + "sha": "fa73d66dfcb9fab79b00c149ac3959941f02df11", + "size": 1667, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa73d66dfcb9fab79b00c149ac3959941f02df11" + }, + { + "path": "svg/dart.svg", + "mode": "100644", + "type": "blob", + "sha": "9e9593ed465fa0e63f87491bc12d7191882fa3e3", + "size": 1673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e9593ed465fa0e63f87491bc12d7191882fa3e3" + }, + { + "path": "svg/dashboard-icons-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "ce7a098bb3b9824adec4db98ec6c9aacba3cf8d7", + "size": 976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce7a098bb3b9824adec4db98ec6c9aacba3cf8d7" + }, + { + "path": "svg/dashboard-icons.svg", + "mode": "100644", + "type": "blob", + "sha": "a8c51e6ace84e12108a411633a8f6b65430f11a1", + "size": 976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8c51e6ace84e12108a411633a8f6b65430f11a1" + }, + { + "path": "svg/dashwise.svg", + "mode": "100644", + "type": "blob", + "sha": "1b3965ced9c91cba764eae3e12b5e5140e44f6c8", + "size": 1410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b3965ced9c91cba764eae3e12b5e5140e44f6c8" + }, + { + "path": "svg/datadog.svg", + "mode": "100644", + "type": "blob", + "sha": "cb7b5b70472f7f0b9da71bda3d3eea9cacf110a1", + "size": 2492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb7b5b70472f7f0b9da71bda3d3eea9cacf110a1" + }, + { + "path": "svg/davical.svg", + "mode": "100755", + "type": "blob", + "sha": "2f784aa4bf7972678e22450bbdfc45202087129a", + "size": 953, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f784aa4bf7972678e22450bbdfc45202087129a" + }, + { + "path": "svg/dawarich.svg", + "mode": "100755", + "type": "blob", + "sha": "49e3d703468cf3fff123da0ea70c730dfc09279c", + "size": 36257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49e3d703468cf3fff123da0ea70c730dfc09279c" + }, + { + "path": "svg/dc-os.svg", + "mode": "100644", + "type": "blob", + "sha": "70a005487d0f8683ec2202039c53acc36a2fc851", + "size": 8342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70a005487d0f8683ec2202039c53acc36a2fc851" + }, + { + "path": "svg/ddclient.svg", + "mode": "100755", + "type": "blob", + "sha": "1ee6a2f6521a5b01f22c865e81a430ac825abfbf", + "size": 1626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ee6a2f6521a5b01f22c865e81a430ac825abfbf" + }, + { + "path": "svg/ddns-updater.svg", + "mode": "100755", + "type": "blob", + "sha": "841adb079ee41e8500de88045bf25ca6a07c6eb9", + "size": 6391, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/841adb079ee41e8500de88045bf25ca6a07c6eb9" + }, + { + "path": "svg/debian-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "946079972b23bc80dca1462a7644f2fa855aedf2", + "size": 3107, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/946079972b23bc80dca1462a7644f2fa855aedf2" + }, + { + "path": "svg/deepl-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "f72e0afac8ff18e992b316b4fb49e2778c9a8123", + "size": 6499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f72e0afac8ff18e992b316b4fb49e2778c9a8123" + }, + { + "path": "svg/deepl.svg", + "mode": "100644", + "type": "blob", + "sha": "081d97dff15af06232acb6babfc6f91d1745d534", + "size": 6499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/081d97dff15af06232acb6babfc6f91d1745d534" + }, + { + "path": "svg/deepseek.svg", + "mode": "100644", + "type": "blob", + "sha": "d1ba06b942cea0ee4d4642d752114258482195b4", + "size": 2560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1ba06b942cea0ee4d4642d752114258482195b4" + }, + { + "path": "svg/deezer.svg", + "mode": "100644", + "type": "blob", + "sha": "edd46a133fb35a16cdbe7ffb7492edd134f2d857", + "size": 1214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edd46a133fb35a16cdbe7ffb7492edd134f2d857" + }, + { + "path": "svg/defguard.svg", + "mode": "100755", + "type": "blob", + "sha": "0ff532a61fe138ddb6f31f31bddbb3fd683f500d", + "size": 591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ff532a61fe138ddb6f31f31bddbb3fd683f500d" + }, + { + "path": "svg/dell.svg", + "mode": "100644", + "type": "blob", + "sha": "1ebea5b441b6ab76026b0238ad4df85b37ac977c", + "size": 1126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ebea5b441b6ab76026b0238ad4df85b37ac977c" + }, + { + "path": "svg/deluge.svg", + "mode": "100755", + "type": "blob", + "sha": "0ec8b39f014863782e6bb7727be12dc03b5e033b", + "size": 795, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ec8b39f014863782e6bb7727be12dc03b5e033b" + }, + { + "path": "svg/deno-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e1a16db9db3727900531877857de4e2ccf8510bc", + "size": 5987, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1a16db9db3727900531877857de4e2ccf8510bc" + }, + { + "path": "svg/deno.svg", + "mode": "100644", + "type": "blob", + "sha": "f30c0a40e7dd8ebc46703a7dac87601ad897aba2", + "size": 5968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f30c0a40e7dd8ebc46703a7dac87601ad897aba2" + }, + { + "path": "svg/denodo.svg", + "mode": "100644", + "type": "blob", + "sha": "98ff761e20a25ccf0ca501ee5d7f6f3d14be9d21", + "size": 2575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98ff761e20a25ccf0ca501ee5d7f6f3d14be9d21" + }, + { + "path": "svg/denon-light.svg", + "mode": "100644", + "type": "blob", + "sha": "6a5f7be9041bc38b0764d6547507d284fae21e87", + "size": 837, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a5f7be9041bc38b0764d6547507d284fae21e87" + }, + { + "path": "svg/denon.svg", + "mode": "100644", + "type": "blob", + "sha": "4bf4338fcc32b72e1c35650d885276bcf4fd7ce8", + "size": 865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bf4338fcc32b72e1c35650d885276bcf4fd7ce8" + }, + { + "path": "svg/deployarr.svg", + "mode": "100644", + "type": "blob", + "sha": "db27acb6207cb8acdb66f39e4cd35dea4a4e7cbb", + "size": 6138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db27acb6207cb8acdb66f39e4cd35dea4a4e7cbb" + }, + { + "path": "svg/dia.svg", + "mode": "100644", + "type": "blob", + "sha": "8287d70eb0bd884fee68458e9e1a8ade265be234", + "size": 21540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8287d70eb0bd884fee68458e9e1a8ade265be234" + }, + { + "path": "svg/diagrams-net.svg", + "mode": "100644", + "type": "blob", + "sha": "c26b695bff6dd1df8b859234339fb8ea2f8df0a0", + "size": 742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c26b695bff6dd1df8b859234339fb8ea2f8df0a0" + }, + { + "path": "svg/diamond-aircraft.svg", + "mode": "100644", + "type": "blob", + "sha": "5ce03982bf2da78a06747d34475120537baa2bae", + "size": 6656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ce03982bf2da78a06747d34475120537baa2bae" + }, + { + "path": "svg/digi-kam.svg", + "mode": "100644", + "type": "blob", + "sha": "b6983bc48c2f23e45f3bb34d91277de1baa261c0", + "size": 646520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6983bc48c2f23e45f3bb34d91277de1baa261c0" + }, + { + "path": "svg/digikey.svg", + "mode": "100644", + "type": "blob", + "sha": "60196c7fb9e633e920717cfce721fb8152a27918", + "size": 1424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60196c7fb9e633e920717cfce721fb8152a27918" + }, + { + "path": "svg/digital-ocean.svg", + "mode": "100755", + "type": "blob", + "sha": "fbc40ee5c4ce6a12d92728efc0e7e0054e3199cd", + "size": 723, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbc40ee5c4ce6a12d92728efc0e7e0054e3199cd" + }, + { + "path": "svg/dilg.svg", + "mode": "100644", + "type": "blob", + "sha": "acf3654bbf1b9e6b5e69a44855136f25f25421b3", + "size": 4193443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acf3654bbf1b9e6b5e69a44855136f25f25421b3" + }, + { + "path": "svg/dillinger-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4fd9c954f559ab4a1621dadc38e31594faa5c590", + "size": 338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fd9c954f559ab4a1621dadc38e31594faa5c590" + }, + { + "path": "svg/dillinger.svg", + "mode": "100755", + "type": "blob", + "sha": "c2a895ef65e95abaaa669718b61af0c8f6324e1a", + "size": 326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2a895ef65e95abaaa669718b61af0c8f6324e1a" + }, + { + "path": "svg/diners-club.svg", + "mode": "100644", + "type": "blob", + "sha": "b2476b7f9fd174b0356b086beb2928b2e14f9fc4", + "size": 794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2476b7f9fd174b0356b086beb2928b2e14f9fc4" + }, + { + "path": "svg/directadmin.svg", + "mode": "100644", + "type": "blob", + "sha": "f4f8296d9ff6761f70890a6caabf6cfa5869fd9e", + "size": 436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4f8296d9ff6761f70890a6caabf6cfa5869fd9e" + }, + { + "path": "svg/directus.svg", + "mode": "100644", + "type": "blob", + "sha": "88de1a840218ca4f58d7b789a87ae377a81083fd", + "size": 10082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88de1a840218ca4f58d7b789a87ae377a81083fd" + }, + { + "path": "svg/discord.svg", + "mode": "100755", + "type": "blob", + "sha": "c8cbce66a307cf18da3f8b9e0e5cda90d26c6de8", + "size": 779, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8cbce66a307cf18da3f8b9e0e5cda90d26c6de8" + }, + { + "path": "svg/discourse-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e2d049f5e965f9567356f628f7c336d1e6beeb14", + "size": 1101, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2d049f5e965f9567356f628f7c336d1e6beeb14" + }, + { + "path": "svg/discourse.svg", + "mode": "100755", + "type": "blob", + "sha": "702775852755c6830e75b22c93ff9b4a4f6ea211", + "size": 1089, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/702775852755c6830e75b22c93ff9b4a4f6ea211" + }, + { + "path": "svg/disney-plus.svg", + "mode": "100755", + "type": "blob", + "sha": "f4111e13c13c6623ec767d1c698f5e9846fa86c5", + "size": 5710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4111e13c13c6623ec767d1c698f5e9846fa86c5" + }, + { + "path": "svg/dispatcharr.svg", + "mode": "100644", + "type": "blob", + "sha": "db3d6668faec85ecf7f0c8caa5ff724163b05488", + "size": 893, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db3d6668faec85ecf7f0c8caa5ff724163b05488" + }, + { + "path": "svg/distribution.svg", + "mode": "100644", + "type": "blob", + "sha": "44ce1d4012371f516f9933d8fe434a8c590b193e", + "size": 3866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44ce1d4012371f516f9933d8fe434a8c590b193e" + }, + { + "path": "svg/dixa.svg", + "mode": "100644", + "type": "blob", + "sha": "4ec6bb2c96700b776960cd5e6a680dc2e7bf6b76", + "size": 1740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ec6bb2c96700b776960cd5e6a680dc2e7bf6b76" + }, + { + "path": "svg/dlna.svg", + "mode": "100644", + "type": "blob", + "sha": "9c1f6b7b79fb1232d08c47bd44ed2499704384bd", + "size": 980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c1f6b7b79fb1232d08c47bd44ed2499704384bd" + }, + { + "path": "svg/docassemble-light.svg", + "mode": "100644", + "type": "blob", + "sha": "29e6a8a109fc8181771c37899d07d91b93f35d49", + "size": 886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29e6a8a109fc8181771c37899d07d91b93f35d49" + }, + { + "path": "svg/docassemble.svg", + "mode": "100755", + "type": "blob", + "sha": "cbb6c9f88c24650187c43a700120ceffa15b689e", + "size": 874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbb6c9f88c24650187c43a700120ceffa15b689e" + }, + { + "path": "svg/docker-engine.svg", + "mode": "100755", + "type": "blob", + "sha": "0903acd21c53121248271ddb091c4ab0163d344c", + "size": 608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0903acd21c53121248271ddb091c4ab0163d344c" + }, + { + "path": "svg/docker-mailserver-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1aeb44933500e9f90c44d16d6cb7d11eea269a68", + "size": 1075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1aeb44933500e9f90c44d16d6cb7d11eea269a68" + }, + { + "path": "svg/docker-mailserver.svg", + "mode": "100644", + "type": "blob", + "sha": "b91ab5db856f5a601800ad7bc36e92b7340fed02", + "size": 1081, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b91ab5db856f5a601800ad7bc36e92b7340fed02" + }, + { + "path": "svg/docker-moby.svg", + "mode": "100644", + "type": "blob", + "sha": "749b0a13f9c243ffbc5627d2de06f770f59c66f2", + "size": 9123, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/749b0a13f9c243ffbc5627d2de06f770f59c66f2" + }, + { + "path": "svg/docker-volume-backup.svg", + "mode": "100755", + "type": "blob", + "sha": "e2143be85ac41416c951ddee73c222055df4ca7c", + "size": 504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2143be85ac41416c951ddee73c222055df4ca7c" + }, + { + "path": "svg/docker.svg", + "mode": "100755", + "type": "blob", + "sha": "0903acd21c53121248271ddb091c4ab0163d344c", + "size": 608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0903acd21c53121248271ddb091c4ab0163d344c" + }, + { + "path": "svg/dockge.svg", + "mode": "100755", + "type": "blob", + "sha": "d40b6e0198b5064f1d29b5d823a3082ca88b105b", + "size": 918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d40b6e0198b5064f1d29b5d823a3082ca88b105b" + }, + { + "path": "svg/docking-station.svg", + "mode": "100755", + "type": "blob", + "sha": "370fd3098173cf50461b92408099d67680d3018f", + "size": 1221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/370fd3098173cf50461b92408099d67680d3018f" + }, + { + "path": "svg/dockpeek-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "9aaf4bb7cf2a8417cdfc68f427f2e406f8e5fbad", + "size": 613, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9aaf4bb7cf2a8417cdfc68f427f2e406f8e5fbad" + }, + { + "path": "svg/dockpeek.svg", + "mode": "100644", + "type": "blob", + "sha": "72b0df3f854d22739ebab4e6604ff34e547a05f3", + "size": 710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72b0df3f854d22739ebab4e6604ff34e547a05f3" + }, + { + "path": "svg/docsify.svg", + "mode": "100644", + "type": "blob", + "sha": "bfc80996946380bbcf890760ccf6bb66065e23be", + "size": 1532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfc80996946380bbcf890760ccf6bb66065e23be" + }, + { + "path": "svg/docspell.svg", + "mode": "100755", + "type": "blob", + "sha": "f1db5fdf2e2f017f45ac5fa5689bf12c29c44c2d", + "size": 949, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1db5fdf2e2f017f45ac5fa5689bf12c29c44c2d" + }, + { + "path": "svg/documenso.svg", + "mode": "100755", + "type": "blob", + "sha": "a5b4c1ec82cd42a2215fa1b13afa2521a8057f3f", + "size": 10337, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5b4c1ec82cd42a2215fa1b13afa2521a8057f3f" + }, + { + "path": "svg/docusaurus.svg", + "mode": "100755", + "type": "blob", + "sha": "640ccd062744ce7e6b735470ba3058db011cc6c0", + "size": 6153, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/640ccd062744ce7e6b735470ba3058db011cc6c0" + }, + { + "path": "svg/docuseal.svg", + "mode": "100755", + "type": "blob", + "sha": "42d7e33888aa81ea98a484d0227e3f5932742d9c", + "size": 1767, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42d7e33888aa81ea98a484d0227e3f5932742d9c" + }, + { + "path": "svg/dokemon.svg", + "mode": "100755", + "type": "blob", + "sha": "6af8cd323474f5348544974335064e6ef945d300", + "size": 314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6af8cd323474f5348544974335064e6ef945d300" + }, + { + "path": "svg/dokploy-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "21f093c3b6beff821d107b1c4a1d85b037855340", + "size": 6633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21f093c3b6beff821d107b1c4a1d85b037855340" + }, + { + "path": "svg/dokploy.svg", + "mode": "100644", + "type": "blob", + "sha": "57b43c15b1f1b0aab8e33309a13f9b4c8e659795", + "size": 6633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57b43c15b1f1b0aab8e33309a13f9b4c8e659795" + }, + { + "path": "svg/dokuwiki.svg", + "mode": "100755", + "type": "blob", + "sha": "36d5d120c6f76df4e14a291a2745c7815d03828e", + "size": 8443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36d5d120c6f76df4e14a291a2745c7815d03828e" + }, + { + "path": "svg/donetick.svg", + "mode": "100644", + "type": "blob", + "sha": "136b82c01d22ce1b26b7e1dbad6540221c723369", + "size": 64212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/136b82c01d22ce1b26b7e1dbad6540221c723369" + }, + { + "path": "svg/doplarr.svg", + "mode": "100644", + "type": "blob", + "sha": "a720932fd2653bd9af7482100fd3a86c1ab6b9c5", + "size": 5996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a720932fd2653bd9af7482100fd3a86c1ab6b9c5" + }, + { + "path": "svg/doppler.svg", + "mode": "100644", + "type": "blob", + "sha": "6636cb444fd153a96408001ca539eb6d6a593efc", + "size": 18338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6636cb444fd153a96408001ca539eb6d6a593efc" + }, + { + "path": "svg/double-commander.svg", + "mode": "100644", + "type": "blob", + "sha": "8d10c09e777765d5f8db6a2a873bf46974140566", + "size": 8391, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d10c09e777765d5f8db6a2a873bf46974140566" + }, + { + "path": "svg/double-take-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "68b68ad7a3819d2c0365fe481bf80cc22eafc885", + "size": 1909, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68b68ad7a3819d2c0365fe481bf80cc22eafc885" + }, + { + "path": "svg/double-take.svg", + "mode": "100755", + "type": "blob", + "sha": "2e2114684ab8e3b93357dc496715d72fa582127a", + "size": 1909, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e2114684ab8e3b93357dc496715d72fa582127a" + }, + { + "path": "svg/dovecot.svg", + "mode": "100755", + "type": "blob", + "sha": "788aead1afe663100cea308e3653be863ecbae78", + "size": 577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/788aead1afe663100cea308e3653be863ecbae78" + }, + { + "path": "svg/dozzle.svg", + "mode": "100755", + "type": "blob", + "sha": "586f4109dcf452f32a35667eca5d0aad7987341e", + "size": 9470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/586f4109dcf452f32a35667eca5d0aad7987341e" + }, + { + "path": "svg/draw-io.svg", + "mode": "100755", + "type": "blob", + "sha": "e7578e1795f2708abecbe49394142306499dd18c", + "size": 1669, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7578e1795f2708abecbe49394142306499dd18c" + }, + { + "path": "svg/draytek.svg", + "mode": "100644", + "type": "blob", + "sha": "1d2ecfc4ec490b4c66576537bdeb204caef2e17f", + "size": 2490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d2ecfc4ec490b4c66576537bdeb204caef2e17f" + }, + { + "path": "svg/dream-host-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "4c031860e3238a2e36cd9649ab499e4b2d5e6ff4", + "size": 556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c031860e3238a2e36cd9649ab499e4b2d5e6ff4" + }, + { + "path": "svg/dream-host.svg", + "mode": "100644", + "type": "blob", + "sha": "8f12a836aea2bc0d996de8fa32d2976aa4546e06", + "size": 559, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f12a836aea2bc0d996de8fa32d2976aa4546e06" + }, + { + "path": "svg/drop.svg", + "mode": "100644", + "type": "blob", + "sha": "4d7e5dba696cebb719a2d42a926216bae034d618", + "size": 416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d7e5dba696cebb719a2d42a926216bae034d618" + }, + { + "path": "svg/dropbox.svg", + "mode": "100755", + "type": "blob", + "sha": "01a91dc378992e31d96521fda2bd3b47f7ba8864", + "size": 417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01a91dc378992e31d96521fda2bd3b47f7ba8864" + }, + { + "path": "svg/dropout-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d36015c3eb224a2f4f95571e4f7ca03282f5ec5e", + "size": 606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d36015c3eb224a2f4f95571e4f7ca03282f5ec5e" + }, + { + "path": "svg/dropout.svg", + "mode": "100755", + "type": "blob", + "sha": "abebb984b01f8c9da810cc3b7644d83881c0e97c", + "size": 594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abebb984b01f8c9da810cc3b7644d83881c0e97c" + }, + { + "path": "svg/droppy-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b0bec150ba4b0bccb805f552a43118acf16e0354", + "size": 223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0bec150ba4b0bccb805f552a43118acf16e0354" + }, + { + "path": "svg/droppy.svg", + "mode": "100644", + "type": "blob", + "sha": "9b0ece51b8091321f45709228c7d2151a3f8ada5", + "size": 235, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b0ece51b8091321f45709228c7d2151a3f8ada5" + }, + { + "path": "svg/dub-light.svg", + "mode": "100644", + "type": "blob", + "sha": "91786a40d189c4525f31c26c03af4b6ef53576e4", + "size": 395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91786a40d189c4525f31c26c03af4b6ef53576e4" + }, + { + "path": "svg/dub.svg", + "mode": "100755", + "type": "blob", + "sha": "69dda7dc00e03a248124ffad9defff95d2462dec", + "size": 383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69dda7dc00e03a248124ffad9defff95d2462dec" + }, + { + "path": "svg/duckdns-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ff7a9c5d37e594149fc9107bd875592e5da00ac9", + "size": 1429, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff7a9c5d37e594149fc9107bd875592e5da00ac9" + }, + { + "path": "svg/duckdns.svg", + "mode": "100755", + "type": "blob", + "sha": "925ef6fe2cdca0a9d7a2d69ac86dcd121cd57ad9", + "size": 1432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/925ef6fe2cdca0a9d7a2d69ac86dcd121cd57ad9" + }, + { + "path": "svg/duckduckgo.svg", + "mode": "100755", + "type": "blob", + "sha": "08289aaa197ad555441275ce46fcdee19725ad34", + "size": 5171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08289aaa197ad555441275ce46fcdee19725ad34" + }, + { + "path": "svg/dumbassets.svg", + "mode": "100644", + "type": "blob", + "sha": "ce984738dbd0e6fbef7f7b0593a51a2ed2c7173c", + "size": 663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce984738dbd0e6fbef7f7b0593a51a2ed2c7173c" + }, + { + "path": "svg/dumbpad.svg", + "mode": "100644", + "type": "blob", + "sha": "669a8aade8ef118db129f1a99288d882029a83ff", + "size": 1640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/669a8aade8ef118db129f1a99288d882029a83ff" + }, + { + "path": "svg/duo.svg", + "mode": "100644", + "type": "blob", + "sha": "18902419fdf24cfc41aa6fe328976ac4055764fc", + "size": 1215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18902419fdf24cfc41aa6fe328976ac4055764fc" + }, + { + "path": "svg/duplicati.svg", + "mode": "100755", + "type": "blob", + "sha": "21d7aaee35bb6a6d6c506ce3220c5345d484644c", + "size": 1273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21d7aaee35bb6a6d6c506ce3220c5345d484644c" + }, + { + "path": "svg/easy-gate-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b8d60582679f2dd0c75fc59d50a2f08501b350b3", + "size": 3479, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8d60582679f2dd0c75fc59d50a2f08501b350b3" + }, + { + "path": "svg/easy-gate.svg", + "mode": "100644", + "type": "blob", + "sha": "40549b6a127ca3094b31257d9317afbd4fd402cf", + "size": 3458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40549b6a127ca3094b31257d9317afbd4fd402cf" + }, + { + "path": "svg/ebay.svg", + "mode": "100644", + "type": "blob", + "sha": "3d77642763ca179016b6a381651079d08d4a446e", + "size": 1577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d77642763ca179016b6a381651079d08d4a446e" + }, + { + "path": "svg/eblocker.svg", + "mode": "100644", + "type": "blob", + "sha": "b2b64532876a68a257fe5eb8d419f940c9f1c47d", + "size": 595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2b64532876a68a257fe5eb8d419f940c9f1c47d" + }, + { + "path": "svg/edge-dev.svg", + "mode": "100644", + "type": "blob", + "sha": "ef9ca26799e5539b675449ce6da3bd1096b766a2", + "size": 86239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef9ca26799e5539b675449ce6da3bd1096b766a2" + }, + { + "path": "svg/edge.svg", + "mode": "100644", + "type": "blob", + "sha": "9b0cb9130b5d116db07c02b04a0ebd14a50f1190", + "size": 2970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b0cb9130b5d116db07c02b04a0ebd14a50f1190" + }, + { + "path": "svg/eitaa.svg", + "mode": "100644", + "type": "blob", + "sha": "c823b10cdc9e2d6338744dc0115a972749ca2729", + "size": 2474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c823b10cdc9e2d6338744dc0115a972749ca2729" + }, + { + "path": "svg/elastic-beats.svg", + "mode": "100644", + "type": "blob", + "sha": "8bcba4aff8fc29c07b6a4b43de6803d56bdce793", + "size": 661, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bcba4aff8fc29c07b6a4b43de6803d56bdce793" + }, + { + "path": "svg/elastic-kibana.svg", + "mode": "100644", + "type": "blob", + "sha": "bb22e215f6bd2dfea92c2823cb66ed2310fc58d9", + "size": 439, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb22e215f6bd2dfea92c2823cb66ed2310fc58d9" + }, + { + "path": "svg/elastic-logstash.svg", + "mode": "100644", + "type": "blob", + "sha": "0994521a57f0675133ebc2914e02466ed6d763b1", + "size": 392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0994521a57f0675133ebc2914e02466ed6d763b1" + }, + { + "path": "svg/elastic.svg", + "mode": "100644", + "type": "blob", + "sha": "0da0d7081743f5200f0e01f1ae519d8915cad60d", + "size": 1749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0da0d7081743f5200f0e01f1ae519d8915cad60d" + }, + { + "path": "svg/elasticsearch.svg", + "mode": "100644", + "type": "blob", + "sha": "0da0d7081743f5200f0e01f1ae519d8915cad60d", + "size": 1749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0da0d7081743f5200f0e01f1ae519d8915cad60d" + }, + { + "path": "svg/electron.svg", + "mode": "100644", + "type": "blob", + "sha": "03bc0a3573cf2d5812731646118db8fd3f1851c4", + "size": 2360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03bc0a3573cf2d5812731646118db8fd3f1851c4" + }, + { + "path": "svg/electronic-arts.svg", + "mode": "100755", + "type": "blob", + "sha": "bd79a6a0fa7f489bcdd11e15e588bd0c7d08817a", + "size": 527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd79a6a0fa7f489bcdd11e15e588bd0c7d08817a" + }, + { + "path": "svg/electrum.svg", + "mode": "100644", + "type": "blob", + "sha": "144d8d4aa492d18781829cef78b17a0e06ebcb95", + "size": 6480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/144d8d4aa492d18781829cef78b17a0e06ebcb95" + }, + { + "path": "svg/element.svg", + "mode": "100755", + "type": "blob", + "sha": "c047aa51f801f6bd0f2ba2892d0557ee393bf220", + "size": 842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c047aa51f801f6bd0f2ba2892d0557ee393bf220" + }, + { + "path": "svg/eleventy-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2b98a98af949d9fd64469c905b753d4aac7df708", + "size": 1570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b98a98af949d9fd64469c905b753d4aac7df708" + }, + { + "path": "svg/eleventy.svg", + "mode": "100755", + "type": "blob", + "sha": "f25fef85a5efe80467140af77ea540f2bee4f5e3", + "size": 1576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f25fef85a5efe80467140af77ea540f2bee4f5e3" + }, + { + "path": "svg/elgato-wave-link.svg", + "mode": "100644", + "type": "blob", + "sha": "9d5bbfaf5d2bc07ec1bb39cc854e444d5294c61d", + "size": 2198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d5bbfaf5d2bc07ec1bb39cc854e444d5294c61d" + }, + { + "path": "svg/eliza-os.svg", + "mode": "100644", + "type": "blob", + "sha": "2898aa58024f4e6a0320ef4b2e36f148614bd0c8", + "size": 85787, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2898aa58024f4e6a0320ef4b2e36f148614bd0c8" + }, + { + "path": "svg/elysian.svg", + "mode": "100755", + "type": "blob", + "sha": "2815b36e3344895cd5223a263d3ae769704d2fc5", + "size": 335772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2815b36e3344895cd5223a263d3ae769704d2fc5" + }, + { + "path": "svg/emacs.svg", + "mode": "100644", + "type": "blob", + "sha": "aada0b3c0fb0d0f35cb8f91ea2a0c00749d73a14", + "size": 1926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aada0b3c0fb0d0f35cb8f91ea2a0c00749d73a14" + }, + { + "path": "svg/embraer.svg", + "mode": "100644", + "type": "blob", + "sha": "bd365d2a0506ca1939384ad918b828a2f4475499", + "size": 1643, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd365d2a0506ca1939384ad918b828a2f4475499" + }, + { + "path": "svg/emby.svg", + "mode": "100755", + "type": "blob", + "sha": "2f07c9236fb695bf5a8abe26b6ca0b0b07e27cbb", + "size": 345, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f07c9236fb695bf5a8abe26b6ca0b0b07e27cbb" + }, + { + "path": "svg/emq-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e70c779c6c57d384650f30e1b25671e246862faa", + "size": 862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e70c779c6c57d384650f30e1b25671e246862faa" + }, + { + "path": "svg/emq.svg", + "mode": "100644", + "type": "blob", + "sha": "583a340df91d494c4e9b94c54285fffbcb2d9264", + "size": 838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/583a340df91d494c4e9b94c54285fffbcb2d9264" + }, + { + "path": "svg/emqx.svg", + "mode": "100644", + "type": "blob", + "sha": "3df29dd762429b573f4e8ba57f15a2f2b55975db", + "size": 922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3df29dd762429b573f4e8ba57f15a2f2b55975db" + }, + { + "path": "svg/emsesp.svg", + "mode": "100644", + "type": "blob", + "sha": "39ac5079411ca25463e27833dcd368472d1736bc", + "size": 4182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39ac5079411ca25463e27833dcd368472d1736bc" + }, + { + "path": "svg/emulatorjs.svg", + "mode": "100755", + "type": "blob", + "sha": "baeb527cbb64160e20a8647e48a743555fba93f6", + "size": 54380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/baeb527cbb64160e20a8647e48a743555fba93f6" + }, + { + "path": "svg/enbizcard.svg", + "mode": "100644", + "type": "blob", + "sha": "76f117e1f073ecd834485a0c4c2132036bb53829", + "size": 7789, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76f117e1f073ecd834485a0c4c2132036bb53829" + }, + { + "path": "svg/enclosed-light.svg", + "mode": "100644", + "type": "blob", + "sha": "365b25f3571eec9820c861b0bbcadda50f3e11d8", + "size": 508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/365b25f3571eec9820c861b0bbcadda50f3e11d8" + }, + { + "path": "svg/enclosed.svg", + "mode": "100755", + "type": "blob", + "sha": "fc5874c393f5e5b4fdf88237eb0e7bc9e875bb97", + "size": 508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc5874c393f5e5b4fdf88237eb0e7bc9e875bb97" + }, + { + "path": "svg/endeavouros-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "e61fba8dfcd47b8b09df127266255d9132bdff7a", + "size": 3460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e61fba8dfcd47b8b09df127266255d9132bdff7a" + }, + { + "path": "svg/endless-light.svg", + "mode": "100644", + "type": "blob", + "sha": "edf9196852b4eda45bcc44ae36d7f4581ffe3f71", + "size": 4376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edf9196852b4eda45bcc44ae36d7f4581ffe3f71" + }, + { + "path": "svg/endless.svg", + "mode": "100755", + "type": "blob", + "sha": "322844cbca49761fd837620ced67fc2fa6a40134", + "size": 4357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/322844cbca49761fd837620ced67fc2fa6a40134" + }, + { + "path": "svg/endurain.svg", + "mode": "100755", + "type": "blob", + "sha": "f2d96a0209dc4138dc3932e0ef3f0ca610cb855a", + "size": 7301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2d96a0209dc4138dc3932e0ef3f0ca610cb855a" + }, + { + "path": "svg/enhance.svg", + "mode": "100644", + "type": "blob", + "sha": "5e4a32ec3704005830540e6cee57e409731fa8ab", + "size": 1103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e4a32ec3704005830540e6cee57e409731fa8ab" + }, + { + "path": "svg/entergy.svg", + "mode": "100644", + "type": "blob", + "sha": "46bdf7b95e192fc9d66ff732471de6309c3dad23", + "size": 1505, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46bdf7b95e192fc9d66ff732471de6309c3dad23" + }, + { + "path": "svg/epic-games-light.svg", + "mode": "100644", + "type": "blob", + "sha": "48900a4d716a42bc08d7318cb22f911ceca9b289", + "size": 7126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48900a4d716a42bc08d7318cb22f911ceca9b289" + }, + { + "path": "svg/epic-games.svg", + "mode": "100755", + "type": "blob", + "sha": "31be587c13ead10932d2399593dc4eabf7588d0f", + "size": 7069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31be587c13ead10932d2399593dc4eabf7588d0f" + }, + { + "path": "svg/erste-george.svg", + "mode": "100644", + "type": "blob", + "sha": "361cb3cc048b3cbfe156c3e7b9f42836e352c7b6", + "size": 320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/361cb3cc048b3cbfe156c3e7b9f42836e352c7b6" + }, + { + "path": "svg/erste.svg", + "mode": "100644", + "type": "blob", + "sha": "8b642f6300b349a9f119776eaa4fa123d4eaa82e", + "size": 1960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b642f6300b349a9f119776eaa4fa123d4eaa82e" + }, + { + "path": "svg/esphome-alt-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d6c1ba6e55555001dfb5d18b83a1a668c89b715b", + "size": 1672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6c1ba6e55555001dfb5d18b83a1a668c89b715b" + }, + { + "path": "svg/esphome-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "e1bd222ebb1a34654c6e06d724f69eb963163fab", + "size": 1630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1bd222ebb1a34654c6e06d724f69eb963163fab" + }, + { + "path": "svg/esphome-light.svg", + "mode": "100644", + "type": "blob", + "sha": "623449d7983bbd000ac02398f743e1905970e602", + "size": 753, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/623449d7983bbd000ac02398f743e1905970e602" + }, + { + "path": "svg/esphome.svg", + "mode": "100755", + "type": "blob", + "sha": "02f3a521301e4c49f00b1fdbd0488b0226a97fef", + "size": 2187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02f3a521301e4c49f00b1fdbd0488b0226a97fef" + }, + { + "path": "svg/espocrm.svg", + "mode": "100644", + "type": "blob", + "sha": "76ca1abcfb7bed18565f1fa61e33f09de5540462", + "size": 2745, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76ca1abcfb7bed18565f1fa61e33f09de5540462" + }, + { + "path": "svg/espressif.svg", + "mode": "100644", + "type": "blob", + "sha": "27eb9e9d08459df5d13cdfdb77faecd9554b52fc", + "size": 1241, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27eb9e9d08459df5d13cdfdb77faecd9554b52fc" + }, + { + "path": "svg/etcd.svg", + "mode": "100644", + "type": "blob", + "sha": "7397dc6da3f7d0d902d65032ba9b9f3b5c056082", + "size": 1386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7397dc6da3f7d0d902d65032ba9b9f3b5c056082" + }, + { + "path": "svg/etesync.svg", + "mode": "100755", + "type": "blob", + "sha": "61643c6803b824876f1fa0161e902d0e05f7e90b", + "size": 1834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61643c6803b824876f1fa0161e902d0e05f7e90b" + }, + { + "path": "svg/ethereum.svg", + "mode": "100644", + "type": "blob", + "sha": "f5ae0b1d75e1a4846587414b043691e780b54c95", + "size": 540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5ae0b1d75e1a4846587414b043691e780b54c95" + }, + { + "path": "svg/etherpad.svg", + "mode": "100644", + "type": "blob", + "sha": "c13823fb1ac8bcf59c20059ca4e087e3570ddd87", + "size": 2618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c13823fb1ac8bcf59c20059ca4e087e3570ddd87" + }, + { + "path": "svg/evcc.svg", + "mode": "100755", + "type": "blob", + "sha": "60c06489dbeaa7071a015cb98848e373f36bfecd", + "size": 2343, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60c06489dbeaa7071a015cb98848e373f36bfecd" + }, + { + "path": "svg/evernote.svg", + "mode": "100644", + "type": "blob", + "sha": "f3d58b44e8f4c853dbbdbf951f31f01be30d7725", + "size": 1600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3d58b44e8f4c853dbbdbf951f31f01be30d7725" + }, + { + "path": "svg/excalidraw.svg", + "mode": "100755", + "type": "blob", + "sha": "31b89f99d31cd52d2c1fc6245ed4ea64cff28765", + "size": 4012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31b89f99d31cd52d2c1fc6245ed4ea64cff28765" + }, + { + "path": "svg/exercism-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b64fcb294c3c287979035360e113fb8f1b4c0676", + "size": 1855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b64fcb294c3c287979035360e113fb8f1b4c0676" + }, + { + "path": "svg/exercism.svg", + "mode": "100644", + "type": "blob", + "sha": "8fc7b13d9afb2dc051f11acb864ae1dd28783ac2", + "size": 1858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fc7b13d9afb2dc051f11acb864ae1dd28783ac2" + }, + { + "path": "svg/f-droid.svg", + "mode": "100644", + "type": "blob", + "sha": "834cf52726c90305ff82541b0a0ce743f80cdf36", + "size": 4605, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/834cf52726c90305ff82541b0a0ce743f80cdf36" + }, + { + "path": "svg/f1-dash.svg", + "mode": "100644", + "type": "blob", + "sha": "6f0c1cf7c248eb1679ffa76320213e30659fae24", + "size": 2380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f0c1cf7c248eb1679ffa76320213e30659fae24" + }, + { + "path": "svg/facebook-messenger.svg", + "mode": "100755", + "type": "blob", + "sha": "7b826f4fac4fd8773f546daa95ae9d75fb65474f", + "size": 1002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b826f4fac4fd8773f546daa95ae9d75fb65474f" + }, + { + "path": "svg/facebook.svg", + "mode": "100755", + "type": "blob", + "sha": "737915713bb460e457768cf3f871921a15924ca6", + "size": 758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/737915713bb460e457768cf3f871921a15924ca6" + }, + { + "path": "svg/falcon-player-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b7044fe92f8a830cadbb4d9799e10bb78eefcf0c", + "size": 16089, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7044fe92f8a830cadbb4d9799e10bb78eefcf0c" + }, + { + "path": "svg/falcon-player.svg", + "mode": "100644", + "type": "blob", + "sha": "6e6b434cdc1dc91545b4f6b3e60b291e4b1056cb", + "size": 2323, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e6b434cdc1dc91545b4f6b3e60b291e4b1056cb" + }, + { + "path": "svg/fast-com-light.svg", + "mode": "100644", + "type": "blob", + "sha": "cf9986a280061f4419b0b4dc409268babfcae7d7", + "size": 1205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf9986a280061f4419b0b4dc409268babfcae7d7" + }, + { + "path": "svg/fast-com.svg", + "mode": "100644", + "type": "blob", + "sha": "8b50c3eedcc73e330606617068c14894da7f3871", + "size": 1157, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b50c3eedcc73e330606617068c14894da7f3871" + }, + { + "path": "svg/fasten-health.svg", + "mode": "100755", + "type": "blob", + "sha": "3404ddd12dce4ead792d9db0452d7d6e867bb373", + "size": 783, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3404ddd12dce4ead792d9db0452d7d6e867bb373" + }, + { + "path": "svg/fastmail.svg", + "mode": "100755", + "type": "blob", + "sha": "251619ae1a6a626af178bcc9bf1e1081cbbf2d77", + "size": 781, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/251619ae1a6a626af178bcc9bf1e1081cbbf2d77" + }, + { + "path": "svg/fedora-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "f7863a44109bfca1434b01ace39134e429e359c4", + "size": 1038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7863a44109bfca1434b01ace39134e429e359c4" + }, + { + "path": "svg/fedora.svg", + "mode": "100755", + "type": "blob", + "sha": "40668e211b302e45f9c83500e432d47c1f1f69c6", + "size": 2579, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40668e211b302e45f9c83500e432d47c1f1f69c6" + }, + { + "path": "svg/feedbase-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a94d874292c5ce58116022fb9e53e8326070af30", + "size": 498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a94d874292c5ce58116022fb9e53e8326070af30" + }, + { + "path": "svg/feedbase.svg", + "mode": "100755", + "type": "blob", + "sha": "ae93f202f2e81d19b47ebee3a4ce5d21e414e92c", + "size": 479, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae93f202f2e81d19b47ebee3a4ce5d21e414e92c" + }, + { + "path": "svg/feedbin-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c0d1164534e07492020099e116ac35eaf4a64bb9", + "size": 2567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0d1164534e07492020099e116ac35eaf4a64bb9" + }, + { + "path": "svg/feedbin.svg", + "mode": "100755", + "type": "blob", + "sha": "2d8aceda2e8d3e36e2f5c2935e6c7d3ea8410bcf", + "size": 2555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d8aceda2e8d3e36e2f5c2935e6c7d3ea8410bcf" + }, + { + "path": "svg/feedly.svg", + "mode": "100755", + "type": "blob", + "sha": "867af931d5f0a5e58395164f1e88d430b0958b9c", + "size": 838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/867af931d5f0a5e58395164f1e88d430b0958b9c" + }, + { + "path": "svg/feedlynx-light.svg", + "mode": "100644", + "type": "blob", + "sha": "9cef8c24f3ee6487fe12d3ac947fc45e3e0d0bbb", + "size": 5720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cef8c24f3ee6487fe12d3ac947fc45e3e0d0bbb" + }, + { + "path": "svg/feedlynx.svg", + "mode": "100755", + "type": "blob", + "sha": "e6ec7e061477d0fad5fcae26f5df968a2d7bcf85", + "size": 5666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6ec7e061477d0fad5fcae26f5df968a2d7bcf85" + }, + { + "path": "svg/fenrus-light.svg", + "mode": "100644", + "type": "blob", + "sha": "6fe851a5a674d1fb4e3b1625c46ce82821cd1d53", + "size": 9215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fe851a5a674d1fb4e3b1625c46ce82821cd1d53" + }, + { + "path": "svg/fenrus.svg", + "mode": "100755", + "type": "blob", + "sha": "ebbba6e49929299834443cf898948363a944378a", + "size": 9050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebbba6e49929299834443cf898948363a944378a" + }, + { + "path": "svg/ferdium.svg", + "mode": "100755", + "type": "blob", + "sha": "27682191f298c4841c2cba4f2236075920f77954", + "size": 733, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27682191f298c4841c2cba4f2236075920f77954" + }, + { + "path": "svg/ferretdb.svg", + "mode": "100755", + "type": "blob", + "sha": "6081ff94eead7a69c38094e8e1afa2e3bd93c2b2", + "size": 1866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6081ff94eead7a69c38094e8e1afa2e3bd93c2b2" + }, + { + "path": "svg/fidelity.svg", + "mode": "100644", + "type": "blob", + "sha": "2ebd3606622e830b295133f8a1050e2daaefaa44", + "size": 1342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ebd3606622e830b295133f8a1050e2daaefaa44" + }, + { + "path": "svg/fider.svg", + "mode": "100755", + "type": "blob", + "sha": "77e5e2f5fca3e2593f996aa1254d3b82c1f33ecb", + "size": 4839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77e5e2f5fca3e2593f996aa1254d3b82c1f33ecb" + }, + { + "path": "svg/figma.svg", + "mode": "100644", + "type": "blob", + "sha": "9ec15db484f10d33c005b6fa8a583f3e434207ae", + "size": 759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ec15db484f10d33c005b6fa8a583f3e434207ae" + }, + { + "path": "svg/filebot.svg", + "mode": "100644", + "type": "blob", + "sha": "d255aec894ff8c4f4017a2188a0ed20aa3dd49fe", + "size": 5698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d255aec894ff8c4f4017a2188a0ed20aa3dd49fe" + }, + { + "path": "svg/filebrowser-quantum.svg", + "mode": "100644", + "type": "blob", + "sha": "04e878ce1f193509d134f7c1a1c4ec2834456dc4", + "size": 395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04e878ce1f193509d134f7c1a1c4ec2834456dc4" + }, + { + "path": "svg/filebrowser.svg", + "mode": "100644", + "type": "blob", + "sha": "5c7a36efa7eda5d109ac3932c8ae0edd74d6c078", + "size": 2412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c7a36efa7eda5d109ac3932c8ae0edd74d6c078" + }, + { + "path": "svg/filecloud.svg", + "mode": "100644", + "type": "blob", + "sha": "5247c8dbe106f10accf064a2b546e84fe56e3593", + "size": 1935, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5247c8dbe106f10accf064a2b546e84fe56e3593" + }, + { + "path": "svg/fileflows.svg", + "mode": "100755", + "type": "blob", + "sha": "ee75f9087b81d082e664171545e4dc95cde53f70", + "size": 972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee75f9087b81d082e664171545e4dc95cde53f70" + }, + { + "path": "svg/filegator.svg", + "mode": "100644", + "type": "blob", + "sha": "457ab056fc1901a386ba1fdf00e440682765d950", + "size": 1317, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/457ab056fc1901a386ba1fdf00e440682765d950" + }, + { + "path": "svg/filerun.svg", + "mode": "100755", + "type": "blob", + "sha": "7721166cdd384ed422a519e3ef5adc9bbcd346ee", + "size": 429, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7721166cdd384ed422a519e3ef5adc9bbcd346ee" + }, + { + "path": "svg/files-community.svg", + "mode": "100644", + "type": "blob", + "sha": "d00d4ac3c3ef95071b565d241dbc028e7b8fe0e0", + "size": 7532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d00d4ac3c3ef95071b565d241dbc028e7b8fe0e0" + }, + { + "path": "svg/files.svg", + "mode": "100644", + "type": "blob", + "sha": "0a604f00701a058ad3f339b49ecbdcdbc54a26ac", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a604f00701a058ad3f339b49ecbdcdbc54a26ac" + }, + { + "path": "svg/filestash.svg", + "mode": "100755", + "type": "blob", + "sha": "214d31ae753ec6be5129cdc0163425512ab9fdf4", + "size": 574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/214d31ae753ec6be5129cdc0163425512ab9fdf4" + }, + { + "path": "svg/filezilla.svg", + "mode": "100644", + "type": "blob", + "sha": "d39c61183b8ad3a99b85b8380000ffda57d95c4d", + "size": 3489, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d39c61183b8ad3a99b85b8380000ffda57d95c4d" + }, + { + "path": "svg/finamp.svg", + "mode": "100644", + "type": "blob", + "sha": "544f91c42019e8456006ea8fdde283f586b731a2", + "size": 1742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/544f91c42019e8456006ea8fdde283f586b731a2" + }, + { + "path": "svg/findroid.svg", + "mode": "100644", + "type": "blob", + "sha": "49456a5997d102aaa96a90e5057adbf66f3daf46", + "size": 40073, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49456a5997d102aaa96a90e5057adbf66f3daf46" + }, + { + "path": "svg/fios-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2371e04727ab201ded367c255306814dfc257e85", + "size": 3078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2371e04727ab201ded367c255306814dfc257e85" + }, + { + "path": "svg/fios.svg", + "mode": "100644", + "type": "blob", + "sha": "e6e536eb93c23ca818ef0ec11eae09c7bc4e6bd8", + "size": 3081, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6e536eb93c23ca818ef0ec11eae09c7bc4e6bd8" + }, + { + "path": "svg/firebase.svg", + "mode": "100644", + "type": "blob", + "sha": "ea7d673501d327f74a6d63d257f30a216911acd9", + "size": 1355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea7d673501d327f74a6d63d257f30a216911acd9" + }, + { + "path": "svg/firefly-iii.svg", + "mode": "100755", + "type": "blob", + "sha": "be72f693495aa01db9ba8e9ac7d00f017380336d", + "size": 1859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be72f693495aa01db9ba8e9ac7d00f017380336d" + }, + { + "path": "svg/firefly.svg", + "mode": "100755", + "type": "blob", + "sha": "be72f693495aa01db9ba8e9ac7d00f017380336d", + "size": 1859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be72f693495aa01db9ba8e9ac7d00f017380336d" + }, + { + "path": "svg/firefox-beta.svg", + "mode": "100644", + "type": "blob", + "sha": "8c6e2cfc7924fc85ddba7ca28aa4b7187bce5949", + "size": 9367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c6e2cfc7924fc85ddba7ca28aa4b7187bce5949" + }, + { + "path": "svg/firefox-developer-edition.svg", + "mode": "100644", + "type": "blob", + "sha": "f18970e6e506e3dabdf8e492aa4ee5cd6a6f1c25", + "size": 27200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f18970e6e506e3dabdf8e492aa4ee5cd6a6f1c25" + }, + { + "path": "svg/firefox-lite.svg", + "mode": "100644", + "type": "blob", + "sha": "c1ebc1002088ff0a8b9a69f8fc9b2a96f20642e9", + "size": 7532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1ebc1002088ff0a8b9a69f8fc9b2a96f20642e9" + }, + { + "path": "svg/firefox-nightly.svg", + "mode": "100644", + "type": "blob", + "sha": "5987f77c171577d9e70c3d13495ea48eaad3f7dd", + "size": 9258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5987f77c171577d9e70c3d13495ea48eaad3f7dd" + }, + { + "path": "svg/firefox-reality.svg", + "mode": "100644", + "type": "blob", + "sha": "3ae629e0e0dcc3a0675439b5d93e5b27e6e1f0d7", + "size": 192300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ae629e0e0dcc3a0675439b5d93e5b27e6e1f0d7" + }, + { + "path": "svg/firefox-send.svg", + "mode": "100644", + "type": "blob", + "sha": "7609d2a2d95da09b05576877a36f4adbff55f275", + "size": 3252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7609d2a2d95da09b05576877a36f4adbff55f275" + }, + { + "path": "svg/firefox.svg", + "mode": "100755", + "type": "blob", + "sha": "6c2333f514826e5080ce34ec20a26e6b602f991f", + "size": 10699, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c2333f514826e5080ce34ec20a26e6b602f991f" + }, + { + "path": "svg/firewalla.svg", + "mode": "100644", + "type": "blob", + "sha": "40762fd0161b70aa21c56b89b89a41109810794d", + "size": 1279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40762fd0161b70aa21c56b89b89a41109810794d" + }, + { + "path": "svg/fittrackee.svg", + "mode": "100755", + "type": "blob", + "sha": "2bb3a0fcf390871821ab6bf74dc42f334b9a37dc", + "size": 2701, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bb3a0fcf390871821ab6bf74dc42f334b9a37dc" + }, + { + "path": "svg/fladder.svg", + "mode": "100755", + "type": "blob", + "sha": "2cc43fdc309d9d7b2e325202a93f0a6e0a372d0f", + "size": 1079, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cc43fdc309d9d7b2e325202a93f0a6e0a372d0f" + }, + { + "path": "svg/flaresolverr.svg", + "mode": "100755", + "type": "blob", + "sha": "f33749cfaf251fea8d31003c7b52778a83751ce8", + "size": 3510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f33749cfaf251fea8d31003c7b52778a83751ce8" + }, + { + "path": "svg/flarum.svg", + "mode": "100755", + "type": "blob", + "sha": "377ae1554bb1e7d1000e3b23ed84a4baad0d89be", + "size": 987, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/377ae1554bb1e7d1000e3b23ed84a4baad0d89be" + }, + { + "path": "svg/flathub-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "309e4c004f70d2ea8ddc57f2efda229aaeed6d3d", + "size": 2243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/309e4c004f70d2ea8ddc57f2efda229aaeed6d3d" + }, + { + "path": "svg/flathub.svg", + "mode": "100644", + "type": "blob", + "sha": "3e8fe756a18acf52e8362c6ef739b1622ea8f61c", + "size": 2030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e8fe756a18acf52e8362c6ef739b1622ea8f61c" + }, + { + "path": "svg/flatnotes.svg", + "mode": "100755", + "type": "blob", + "sha": "f22c68ecfafcad52167de442f74363b8cd0a18fe", + "size": 1460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f22c68ecfafcad52167de442f74363b8cd0a18fe" + }, + { + "path": "svg/flatpak.svg", + "mode": "100644", + "type": "blob", + "sha": "572436350042ed96540b1431df4d498232eda389", + "size": 509, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/572436350042ed96540b1431df4d498232eda389" + }, + { + "path": "svg/fleetdm.svg", + "mode": "100644", + "type": "blob", + "sha": "e1d9c6c88321357252e209937d902811b014e3d5", + "size": 1513, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1d9c6c88321357252e209937d902811b014e3d5" + }, + { + "path": "svg/flightradar24-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e505a94a74846316d60449ee59c1d3a3b76c61a0", + "size": 1672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e505a94a74846316d60449ee59c1d3a3b76c61a0" + }, + { + "path": "svg/flightradar24.svg", + "mode": "100755", + "type": "blob", + "sha": "1602d1b7e83a8471792737f1423e08eefa90ad32", + "size": 1660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1602d1b7e83a8471792737f1423e08eefa90ad32" + }, + { + "path": "svg/floatplane.svg", + "mode": "100644", + "type": "blob", + "sha": "12375f27b5532fda154e0ae3911fcb0ea8c8e8ef", + "size": 1325, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12375f27b5532fda154e0ae3911fcb0ea8c8e8ef" + }, + { + "path": "svg/flood.svg", + "mode": "100644", + "type": "blob", + "sha": "9017992fb834a1d382578ff462da664650c31c2f", + "size": 849, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9017992fb834a1d382578ff462da664650c31c2f" + }, + { + "path": "svg/floorp.svg", + "mode": "100644", + "type": "blob", + "sha": "1e5602430f7359abda4e5f2ef8ea93d338a77807", + "size": 31597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e5602430f7359abda4e5f2ef8ea93d338a77807" + }, + { + "path": "svg/flowise.svg", + "mode": "100644", + "type": "blob", + "sha": "649b580e19061342576650cf3646efb354f03363", + "size": 3980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/649b580e19061342576650cf3646efb354f03363" + }, + { + "path": "svg/flowtunes.svg", + "mode": "100644", + "type": "blob", + "sha": "d786a387866e19398fbd884eea09b1e23e661862", + "size": 3040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d786a387866e19398fbd884eea09b1e23e661862" + }, + { + "path": "svg/fluent-reader.svg", + "mode": "100644", + "type": "blob", + "sha": "25e3e8a65230204af3f0bb4bb35ce13fc164d2b1", + "size": 3914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25e3e8a65230204af3f0bb4bb35ce13fc164d2b1" + }, + { + "path": "svg/fluffychat-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "c6be1743c6f46b407dcb8c072ba8d30373ce3cb0", + "size": 2751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6be1743c6f46b407dcb8c072ba8d30373ce3cb0" + }, + { + "path": "svg/fluffychat.svg", + "mode": "100755", + "type": "blob", + "sha": "6354ca59b4879be1b8466507e43431bbcaffc454", + "size": 2751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6354ca59b4879be1b8466507e43431bbcaffc454" + }, + { + "path": "svg/fluidd.svg", + "mode": "100755", + "type": "blob", + "sha": "e4ce65f30eb9da1ee1c42ea4030e139df4de44f8", + "size": 742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4ce65f30eb9da1ee1c42ea4030e139df4de44f8" + }, + { + "path": "svg/flux-cd.svg", + "mode": "100644", + "type": "blob", + "sha": "620e3552ed50d09c1e43e3d0dc41ccb1a6e95c3d", + "size": 1871, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/620e3552ed50d09c1e43e3d0dc41ccb1a6e95c3d" + }, + { + "path": "svg/fly-io.svg", + "mode": "100644", + "type": "blob", + "sha": "0620a9a67a8763d521656c86dbdeb6ea8b9382f5", + "size": 6111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0620a9a67a8763d521656c86dbdeb6ea8b9382f5" + }, + { + "path": "svg/fmd.svg", + "mode": "100644", + "type": "blob", + "sha": "e8a2d02a67c67408c43d2ca4c54d9ae66837d831", + "size": 423, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8a2d02a67c67408c43d2ca4c54d9ae66837d831" + }, + { + "path": "svg/fnos.svg", + "mode": "100644", + "type": "blob", + "sha": "2739dcbf1f783c6fe5d09d9a38db692c11237d70", + "size": 1291, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2739dcbf1f783c6fe5d09d9a38db692c11237d70" + }, + { + "path": "svg/focalboard.svg", + "mode": "100644", + "type": "blob", + "sha": "8f3da8e415c0dc0ebd52be2f0679c4eddd4946e3", + "size": 1595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f3da8e415c0dc0ebd52be2f0679c4eddd4946e3" + }, + { + "path": "svg/foldingathome.svg", + "mode": "100644", + "type": "blob", + "sha": "8921c2bd27c6e58494016da733d742a35527457f", + "size": 7478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8921c2bd27c6e58494016da733d742a35527457f" + }, + { + "path": "svg/fontawesome.svg", + "mode": "100644", + "type": "blob", + "sha": "ce0c7c89e6089f0fa2fd84b6d4fb74344255ba8f", + "size": 4355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce0c7c89e6089f0fa2fd84b6d4fb74344255ba8f" + }, + { + "path": "svg/foreflight-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "30b10a492924ecf81563c159b0f0d5bece86d3a7", + "size": 12706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30b10a492924ecf81563c159b0f0d5bece86d3a7" + }, + { + "path": "svg/foreflight.svg", + "mode": "100644", + "type": "blob", + "sha": "a831b1f9f24b8612c844d335218349450b1a6a48", + "size": 13192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a831b1f9f24b8612c844d335218349450b1a6a48" + }, + { + "path": "svg/forgejo.svg", + "mode": "100755", + "type": "blob", + "sha": "04df0a52515a639138898204434f8aeb5fdb6219", + "size": 585, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04df0a52515a639138898204434f8aeb5fdb6219" + }, + { + "path": "svg/forte-light.svg", + "mode": "100644", + "type": "blob", + "sha": "154b630c303c4a6decbb8fd79fcceaf1eb945a64", + "size": 1100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/154b630c303c4a6decbb8fd79fcceaf1eb945a64" + }, + { + "path": "svg/forte.svg", + "mode": "100755", + "type": "blob", + "sha": "f818fe213d3f0d4ca2eee270660dc9e92c8dc315", + "size": 1085, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f818fe213d3f0d4ca2eee270660dc9e92c8dc315" + }, + { + "path": "svg/fortinet.svg", + "mode": "100644", + "type": "blob", + "sha": "9b0e4aadc2d28bbce573f50b48db22b9c8a3c476", + "size": 482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b0e4aadc2d28bbce573f50b48db22b9c8a3c476" + }, + { + "path": "svg/fossil.svg", + "mode": "100644", + "type": "blob", + "sha": "b699e738a85e5db372b43a133765f1010d52b0ca", + "size": 16445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b699e738a85e5db372b43a133765f1010d52b0ca" + }, + { + "path": "svg/franz.svg", + "mode": "100644", + "type": "blob", + "sha": "41d4c225f0aecf41ba96dd02db50d121e85220f2", + "size": 2938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41d4c225f0aecf41ba96dd02db50d121e85220f2" + }, + { + "path": "svg/free-sas.svg", + "mode": "100644", + "type": "blob", + "sha": "0a0994f61e33627067a4721a53f43d78da035201", + "size": 8088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a0994f61e33627067a4721a53f43d78da035201" + }, + { + "path": "svg/freedombox.svg", + "mode": "100644", + "type": "blob", + "sha": "ab852f4b213f35e3f7c25df8216eab61e1151912", + "size": 1386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab852f4b213f35e3f7c25df8216eab61e1151912" + }, + { + "path": "svg/freeipa.svg", + "mode": "100755", + "type": "blob", + "sha": "7131bae6be4c509dfa8da596b766547d8248ae9f", + "size": 1315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7131bae6be4c509dfa8da596b766547d8248ae9f" + }, + { + "path": "svg/freenas.svg", + "mode": "100644", + "type": "blob", + "sha": "7e518c71784df5b647d27491c6021145598ce273", + "size": 2320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e518c71784df5b647d27491c6021145598ce273" + }, + { + "path": "svg/freenom.svg", + "mode": "100644", + "type": "blob", + "sha": "c2c0b2e2f13c431c9c597aa4d71bdd9d1489a05c", + "size": 1312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2c0b2e2f13c431c9c597aa4d71bdd9d1489a05c" + }, + { + "path": "svg/freepbx.svg", + "mode": "100644", + "type": "blob", + "sha": "84284925bc69db259d451c71af57184feb3c3fc4", + "size": 1810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84284925bc69db259d451c71af57184feb3c3fc4" + }, + { + "path": "svg/freshping-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b35d7b89f7f046da63a69d358c8219c254a91b29", + "size": 567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b35d7b89f7f046da63a69d358c8219c254a91b29" + }, + { + "path": "svg/freshping.svg", + "mode": "100644", + "type": "blob", + "sha": "2ddbdf656e340e73976e2d6bcde81e277417feed", + "size": 555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ddbdf656e340e73976e2d6bcde81e277417feed" + }, + { + "path": "svg/freshrss.svg", + "mode": "100755", + "type": "blob", + "sha": "683c70a8432e19c1bce9dea481523f26dd60244c", + "size": 550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/683c70a8432e19c1bce9dea481523f26dd60244c" + }, + { + "path": "svg/friendica.svg", + "mode": "100755", + "type": "blob", + "sha": "125aebae3e84b09ff69f6ffbf2bb100b7a72989f", + "size": 840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/125aebae3e84b09ff69f6ffbf2bb100b7a72989f" + }, + { + "path": "svg/frigate-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e1ebc4d07a8b2777170b6ffbe13f045067cc48aa", + "size": 770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1ebc4d07a8b2777170b6ffbe13f045067cc48aa" + }, + { + "path": "svg/frigate.svg", + "mode": "100755", + "type": "blob", + "sha": "f171d2e459b6212d1d22d42fe2f49cb5c139f8e3", + "size": 758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f171d2e459b6212d1d22d42fe2f49cb5c139f8e3" + }, + { + "path": "svg/fritzbox-light.svg", + "mode": "100644", + "type": "blob", + "sha": "615a0e75e36bd5c91a6d0a0105ab27aeb1a85a29", + "size": 25443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/615a0e75e36bd5c91a6d0a0105ab27aeb1a85a29" + }, + { + "path": "svg/fritzbox.svg", + "mode": "100644", + "type": "blob", + "sha": "f7ef9549a47561e27f3e493243d0b45a0f35238e", + "size": 25263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7ef9549a47561e27f3e493243d0b45a0f35238e" + }, + { + "path": "svg/fronius.svg", + "mode": "100644", + "type": "blob", + "sha": "20fcf164c75f68daaaeb26331450a8bc4218e043", + "size": 1371, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20fcf164c75f68daaaeb26331450a8bc4218e043" + }, + { + "path": "svg/frp.svg", + "mode": "100644", + "type": "blob", + "sha": "b0c9d5b32c38e413d19ffb512c7bd944294b4dae", + "size": 3283, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0c9d5b32c38e413d19ffb512c7bd944294b4dae" + }, + { + "path": "svg/fulcio.svg", + "mode": "100644", + "type": "blob", + "sha": "ca10b314512f504a95da00d30f870df8fc9264f2", + "size": 5104, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca10b314512f504a95da00d30f870df8fc9264f2" + }, + { + "path": "svg/funkwhale-light.svg", + "mode": "100644", + "type": "blob", + "sha": "83d452380adf2ac8fbeb8a91070154486ff349b1", + "size": 1535, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83d452380adf2ac8fbeb8a91070154486ff349b1" + }, + { + "path": "svg/funkwhale.svg", + "mode": "100755", + "type": "blob", + "sha": "c116eb806f10e525837291c755a75566fd95be72", + "size": 1502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c116eb806f10e525837291c755a75566fd95be72" + }, + { + "path": "svg/fusionauth-light.svg", + "mode": "100644", + "type": "blob", + "sha": "854b391368a8f69dc76f1b82d48403eff3f61ddd", + "size": 2262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/854b391368a8f69dc76f1b82d48403eff3f61ddd" + }, + { + "path": "svg/fusionauth.svg", + "mode": "100755", + "type": "blob", + "sha": "c9ca47168db31fbaa3f3738dc92f4fea3bdd320b", + "size": 2142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9ca47168db31fbaa3f3738dc92f4fea3bdd320b" + }, + { + "path": "svg/garage.svg", + "mode": "100755", + "type": "blob", + "sha": "639d1acb9e47017fa0591a7f3793f2f5756c5ec8", + "size": 3233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/639d1acb9e47017fa0591a7f3793f2f5756c5ec8" + }, + { + "path": "svg/garuda-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "05ce7db4a224332b546b0bc4304c0a0c60fa8a34", + "size": 23058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05ce7db4a224332b546b0bc4304c0a0c60fa8a34" + }, + { + "path": "svg/gatsby.svg", + "mode": "100755", + "type": "blob", + "sha": "84b995f33666f1ecd353e9641e6ca52df2d526ae", + "size": 845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84b995f33666f1ecd353e9641e6ca52df2d526ae" + }, + { + "path": "svg/gatus.svg", + "mode": "100755", + "type": "blob", + "sha": "25c990a4bb9084d1387e07b4e0a787cfa6df5b87", + "size": 1602, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25c990a4bb9084d1387e07b4e0a787cfa6df5b87" + }, + { + "path": "svg/gboard.svg", + "mode": "100644", + "type": "blob", + "sha": "b8fe1d42f4c6248deb153aba53df52bfab8a9458", + "size": 5165, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8fe1d42f4c6248deb153aba53df52bfab8a9458" + }, + { + "path": "svg/geckoview.svg", + "mode": "100644", + "type": "blob", + "sha": "68616000935e9037497b6661540d1448416e5cfe", + "size": 536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68616000935e9037497b6661540d1448416e5cfe" + }, + { + "path": "svg/gentoo-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "839bd2ed76727b8d5018873e9744d241f70fdd68", + "size": 3316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/839bd2ed76727b8d5018873e9744d241f70fdd68" + }, + { + "path": "svg/geo-guessr.svg", + "mode": "100644", + "type": "blob", + "sha": "031ee98517da771534e294310ca591d5a44c73f8", + "size": 905, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/031ee98517da771534e294310ca591d5a44c73f8" + }, + { + "path": "svg/gerbera.svg", + "mode": "100644", + "type": "blob", + "sha": "e1045ed91df48f1f12c28eb0f98fc139f362ce0e", + "size": 12744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1045ed91df48f1f12c28eb0f98fc139f362ce0e" + }, + { + "path": "svg/gerrit.svg", + "mode": "100644", + "type": "blob", + "sha": "6d79f4255763c82722431c2408a4614abaf2e1a0", + "size": 501, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d79f4255763c82722431c2408a4614abaf2e1a0" + }, + { + "path": "svg/get-iplayer.svg", + "mode": "100644", + "type": "blob", + "sha": "72b72b2c64b52972b4bf20d978adccb5314fcc6c", + "size": 465, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72b72b2c64b52972b4bf20d978adccb5314fcc6c" + }, + { + "path": "svg/ghostfolio.svg", + "mode": "100755", + "type": "blob", + "sha": "b23385bee99962e4d1a9ba4280ebf3336c97af6e", + "size": 657, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b23385bee99962e4d1a9ba4280ebf3336c97af6e" + }, + { + "path": "svg/ghostty.svg", + "mode": "100644", + "type": "blob", + "sha": "cc00b5a204f8fd5dc4e3267522b5e6e392ea22c8", + "size": 187894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc00b5a204f8fd5dc4e3267522b5e6e392ea22c8" + }, + { + "path": "svg/gigaset.svg", + "mode": "100644", + "type": "blob", + "sha": "0d28509e30259c063ef735a313e8ba018d0d1817", + "size": 3989, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d28509e30259c063ef735a313e8ba018d0d1817" + }, + { + "path": "svg/gimp.svg", + "mode": "100755", + "type": "blob", + "sha": "a3f250d2ef6d4cbd3ad14ef8506822e9df555991", + "size": 29410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3f250d2ef6d4cbd3ad14ef8506822e9df555991" + }, + { + "path": "svg/git.svg", + "mode": "100644", + "type": "blob", + "sha": "4de798e31c3ee4d857008369db8e0d72c7438a98", + "size": 794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4de798e31c3ee4d857008369db8e0d72c7438a98" + }, + { + "path": "svg/gitbook.svg", + "mode": "100644", + "type": "blob", + "sha": "d0a0e93704c1eb31f770352cdcfb5860c30023e6", + "size": 1202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0a0e93704c1eb31f770352cdcfb5860c30023e6" + }, + { + "path": "svg/gitea.svg", + "mode": "100755", + "type": "blob", + "sha": "07505e47565b6a71495491ba72aafc9369fdad52", + "size": 2174, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07505e47565b6a71495491ba72aafc9369fdad52" + }, + { + "path": "svg/gitee.svg", + "mode": "100644", + "type": "blob", + "sha": "1ddf9bc657ff084d7d1009da508a4b660d5b1ede", + "size": 696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ddf9bc657ff084d7d1009da508a4b660d5b1ede" + }, + { + "path": "svg/github-light.svg", + "mode": "100644", + "type": "blob", + "sha": "791468524188c11ea924395381e28756b1ad9164", + "size": 819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/791468524188c11ea924395381e28756b1ad9164" + }, + { + "path": "svg/github.svg", + "mode": "100755", + "type": "blob", + "sha": "c3fbf81da297de155dfe79159051ee667aaab5a6", + "size": 822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3fbf81da297de155dfe79159051ee667aaab5a6" + }, + { + "path": "svg/gitlab.svg", + "mode": "100644", + "type": "blob", + "sha": "f4e50ff1307771f6b70602043020430687c28e36", + "size": 1020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4e50ff1307771f6b70602043020430687c28e36" + }, + { + "path": "svg/gitsign.svg", + "mode": "100644", + "type": "blob", + "sha": "213ea1990c2f26937c71f2280ad08cd40323dc41", + "size": 4623, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/213ea1990c2f26937c71f2280ad08cd40323dc41" + }, + { + "path": "svg/gladys-assistant.svg", + "mode": "100644", + "type": "blob", + "sha": "24c2ab25a069a0025e59ba958c1dfade4f9ab65d", + "size": 80285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24c2ab25a069a0025e59ba958c1dfade4f9ab65d" + }, + { + "path": "svg/glance.svg", + "mode": "100755", + "type": "blob", + "sha": "93eb4a4d42f43ade4428431c1720af84b6f17bbe", + "size": 1898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93eb4a4d42f43ade4428431c1720af84b6f17bbe" + }, + { + "path": "svg/glances-light.svg", + "mode": "100755", + "type": "blob", + "sha": "c82d700ded29147d369832d7a1685c5ca6225888", + "size": 2756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c82d700ded29147d369832d7a1685c5ca6225888" + }, + { + "path": "svg/glances.svg", + "mode": "100644", + "type": "blob", + "sha": "f5e4721bdcbb21b0841221b4638d46ad7eb4a473", + "size": 2756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5e4721bdcbb21b0841221b4638d46ad7eb4a473" + }, + { + "path": "svg/glinet-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "18ded209bac8e938f3c5b7954d204eec34ca68be", + "size": 3148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18ded209bac8e938f3c5b7954d204eec34ca68be" + }, + { + "path": "svg/glinet.svg", + "mode": "100644", + "type": "blob", + "sha": "b9790f21dd4212784a650eff00430dff78ec3ec9", + "size": 3151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9790f21dd4212784a650eff00430dff78ec3ec9" + }, + { + "path": "svg/glitchtip.svg", + "mode": "100644", + "type": "blob", + "sha": "a5f551aea07745207350b0c0fa8ddb792d56f970", + "size": 2045, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5f551aea07745207350b0c0fa8ddb792d56f970" + }, + { + "path": "svg/glpi.svg", + "mode": "100755", + "type": "blob", + "sha": "1eefd17861128d2d58f3266b2479fbb6da4c7fef", + "size": 1903, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1eefd17861128d2d58f3266b2479fbb6da4c7fef" + }, + { + "path": "svg/gluetun.svg", + "mode": "100644", + "type": "blob", + "sha": "c4fa5ad2f1812f31641ed817bf1c20cccff89a16", + "size": 8103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4fa5ad2f1812f31641ed817bf1c20cccff89a16" + }, + { + "path": "svg/gmail.svg", + "mode": "100755", + "type": "blob", + "sha": "62314ae759538861eb7e13702becc0d32525f8f9", + "size": 535, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62314ae759538861eb7e13702becc0d32525f8f9" + }, + { + "path": "svg/go.svg", + "mode": "100644", + "type": "blob", + "sha": "a925df8c54e5cb1074d2248776f1e8d6a4318f09", + "size": 1466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a925df8c54e5cb1074d2248776f1e8d6a4318f09" + }, + { + "path": "svg/goaccess-light.svg", + "mode": "100644", + "type": "blob", + "sha": "13b7583c80fc4c74045ea1ef10ab1e62c913b09a", + "size": 1045, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13b7583c80fc4c74045ea1ef10ab1e62c913b09a" + }, + { + "path": "svg/goaccess.svg", + "mode": "100755", + "type": "blob", + "sha": "84f85c5788a9f3739fd9836e3afb984922dd066b", + "size": 1045, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84f85c5788a9f3739fd9836e3afb984922dd066b" + }, + { + "path": "svg/godaddy-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "6de4bcef414a25c13f595e9e1ba423bc821108b6", + "size": 4307, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6de4bcef414a25c13f595e9e1ba423bc821108b6" + }, + { + "path": "svg/godaddy.svg", + "mode": "100644", + "type": "blob", + "sha": "90b2d017068358923071a3fd840e5cf1b9414b53", + "size": 1483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90b2d017068358923071a3fd840e5cf1b9414b53" + }, + { + "path": "svg/godot.svg", + "mode": "100644", + "type": "blob", + "sha": "b9aff0da0728ebb4a0bc7c1b1942be523910881f", + "size": 3584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9aff0da0728ebb4a0bc7c1b1942be523910881f" + }, + { + "path": "svg/golink-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "68abd37539987a9250a501c0e5c1f6585ab2d028", + "size": 2355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68abd37539987a9250a501c0e5c1f6585ab2d028" + }, + { + "path": "svg/golink.svg", + "mode": "100644", + "type": "blob", + "sha": "efc9c524c5d5afa5655609c5ce452a0c9d4a4fc9", + "size": 2355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efc9c524c5d5afa5655609c5ce452a0c9d4a4fc9" + }, + { + "path": "svg/gollum.svg", + "mode": "100644", + "type": "blob", + "sha": "208faa754ce2ce7300e3df13519fb01c858ead1f", + "size": 150804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/208faa754ce2ce7300e3df13519fb01c858ead1f" + }, + { + "path": "svg/gomft.svg", + "mode": "100644", + "type": "blob", + "sha": "78af8aa7d52515a6d88fdd385abaffb66dc5a0a9", + "size": 73387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78af8aa7d52515a6d88fdd385abaffb66dc5a0a9" + }, + { + "path": "svg/gonic.svg", + "mode": "100644", + "type": "blob", + "sha": "dc25ee2cf546591769083f7f6050eb901efd202f", + "size": 39558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc25ee2cf546591769083f7f6050eb901efd202f" + }, + { + "path": "svg/goodreads.svg", + "mode": "100644", + "type": "blob", + "sha": "b0bb7c321b98b1fdf4addbd63099f817f584be5a", + "size": 612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0bb7c321b98b1fdf4addbd63099f817f584be5a" + }, + { + "path": "svg/google-admin.svg", + "mode": "100644", + "type": "blob", + "sha": "59f84573ce1f42231e5352e4d6e2e05bcad75f98", + "size": 955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59f84573ce1f42231e5352e4d6e2e05bcad75f98" + }, + { + "path": "svg/google-admob.svg", + "mode": "100644", + "type": "blob", + "sha": "c22ce1e27492118d05acbd2efbbb2787358e1543", + "size": 794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c22ce1e27492118d05acbd2efbbb2787358e1543" + }, + { + "path": "svg/google-alerts.svg", + "mode": "100644", + "type": "blob", + "sha": "3a6a6da3d9b69170a62bcd5c06814397a51647b7", + "size": 700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a6a6da3d9b69170a62bcd5c06814397a51647b7" + }, + { + "path": "svg/google-analytics.svg", + "mode": "100755", + "type": "blob", + "sha": "8f152b8465aaa64cc01ff07df3cd7832fc8e3a0d", + "size": 679, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f152b8465aaa64cc01ff07df3cd7832fc8e3a0d" + }, + { + "path": "svg/google-assistant.svg", + "mode": "100644", + "type": "blob", + "sha": "f5020104f11946434a1a1679abac9e5047e74cde", + "size": 674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5020104f11946434a1a1679abac9e5047e74cde" + }, + { + "path": "svg/google-calendar.svg", + "mode": "100755", + "type": "blob", + "sha": "1c7560437d2f76149c2fe547c60704a92bc7fa23", + "size": 1686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c7560437d2f76149c2fe547c60704a92bc7fa23" + }, + { + "path": "svg/google-chat.svg", + "mode": "100644", + "type": "blob", + "sha": "94df915e9cd644d8c1c8f4d4f00637eb7fc60df7", + "size": 549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94df915e9cd644d8c1c8f4d4f00637eb7fc60df7" + }, + { + "path": "svg/google-chrome.svg", + "mode": "100755", + "type": "blob", + "sha": "e053d777e946b0a8464c47c4a76e474e1b87e4a4", + "size": 1761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e053d777e946b0a8464c47c4a76e474e1b87e4a4" + }, + { + "path": "svg/google-classroom.svg", + "mode": "100644", + "type": "blob", + "sha": "e1e5acda9650ab0f943bf8d2d855bb336548908b", + "size": 2274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1e5acda9650ab0f943bf8d2d855bb336548908b" + }, + { + "path": "svg/google-cloud-platform.svg", + "mode": "100644", + "type": "blob", + "sha": "b72218b3fbbe21341af241364643e9c7c8866e6f", + "size": 716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b72218b3fbbe21341af241364643e9c7c8866e6f" + }, + { + "path": "svg/google-cloud-print.svg", + "mode": "100644", + "type": "blob", + "sha": "6f7b9805f142623a681aefe3a878e8db870e15a2", + "size": 25387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f7b9805f142623a681aefe3a878e8db870e15a2" + }, + { + "path": "svg/google-colab.svg", + "mode": "100644", + "type": "blob", + "sha": "2d4781bbcd9fc245de7fcba281d88bfeab902b16", + "size": 914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d4781bbcd9fc245de7fcba281d88bfeab902b16" + }, + { + "path": "svg/google-compute-engine.svg", + "mode": "100644", + "type": "blob", + "sha": "ad0bc0f35b9c9a322c0028530132ece16b6e2d7a", + "size": 1534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad0bc0f35b9c9a322c0028530132ece16b6e2d7a" + }, + { + "path": "svg/google-contacts.svg", + "mode": "100755", + "type": "blob", + "sha": "cb6dd311249995407dd641c06b16fee2ad8d142a", + "size": 892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb6dd311249995407dd641c06b16fee2ad8d142a" + }, + { + "path": "svg/google-docs.svg", + "mode": "100644", + "type": "blob", + "sha": "33ff30048deb421d4a7ae51e6bc8e782d6c8542b", + "size": 3276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33ff30048deb421d4a7ae51e6bc8e782d6c8542b" + }, + { + "path": "svg/google-domains.svg", + "mode": "100644", + "type": "blob", + "sha": "fe70bff4f8d76c303d2b9b6fc76b288627e6cd6d", + "size": 541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe70bff4f8d76c303d2b9b6fc76b288627e6cd6d" + }, + { + "path": "svg/google-drive.svg", + "mode": "100755", + "type": "blob", + "sha": "c863e807bc6be8351ecae61171e03baaa5539f71", + "size": 800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c863e807bc6be8351ecae61171e03baaa5539f71" + }, + { + "path": "svg/google-earth.svg", + "mode": "100644", + "type": "blob", + "sha": "370bb603c1f06754fb252c004dcf038bad6f579b", + "size": 2391, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/370bb603c1f06754fb252c004dcf038bad6f579b" + }, + { + "path": "svg/google-fi.svg", + "mode": "100644", + "type": "blob", + "sha": "394878833839575c1c98941b35aac17187dde6ab", + "size": 717, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/394878833839575c1c98941b35aac17187dde6ab" + }, + { + "path": "svg/google-fit.svg", + "mode": "100644", + "type": "blob", + "sha": "7cc4e81915ad25d8c789e17f4184260b6c1483f0", + "size": 840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cc4e81915ad25d8c789e17f4184260b6c1483f0" + }, + { + "path": "svg/google-fonts.svg", + "mode": "100644", + "type": "blob", + "sha": "580ec454a90948e29ba76449136b5734de2f4dda", + "size": 655, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/580ec454a90948e29ba76449136b5734de2f4dda" + }, + { + "path": "svg/google-forms.svg", + "mode": "100644", + "type": "blob", + "sha": "18e3e02f3245887b33a9d6b45b6c0d84126a46e2", + "size": 3581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18e3e02f3245887b33a9d6b45b6c0d84126a46e2" + }, + { + "path": "svg/google-gemini.svg", + "mode": "100755", + "type": "blob", + "sha": "deee47c9942c277a11f1d6c3dbbd491621edb65a", + "size": 600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/deee47c9942c277a11f1d6c3dbbd491621edb65a" + }, + { + "path": "svg/google-home.svg", + "mode": "100755", + "type": "blob", + "sha": "30801eaa930a58751ac0f157b76555eb434278c8", + "size": 1226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30801eaa930a58751ac0f157b76555eb434278c8" + }, + { + "path": "svg/google-jules.svg", + "mode": "100644", + "type": "blob", + "sha": "09ea944126f2764d156770cdddd41adfb62d03ca", + "size": 1640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09ea944126f2764d156770cdddd41adfb62d03ca" + }, + { + "path": "svg/google-keep.svg", + "mode": "100755", + "type": "blob", + "sha": "d47e460667470e1ad7244fb48e196f2caa7c4eca", + "size": 499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d47e460667470e1ad7244fb48e196f2caa7c4eca" + }, + { + "path": "svg/google-lens.svg", + "mode": "100644", + "type": "blob", + "sha": "93be3ddb3d7b20e82fca6b0ac07e9a0323b024d0", + "size": 680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93be3ddb3d7b20e82fca6b0ac07e9a0323b024d0" + }, + { + "path": "svg/google-maps.svg", + "mode": "100755", + "type": "blob", + "sha": "982da5833dac5601d427c463286ab739eb33e37c", + "size": 885, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/982da5833dac5601d427c463286ab739eb33e37c" + }, + { + "path": "svg/google-meet.svg", + "mode": "100755", + "type": "blob", + "sha": "9d39126174feb6236a6d307c77b1f5638a75888d", + "size": 737, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d39126174feb6236a6d307c77b1f5638a75888d" + }, + { + "path": "svg/google-messages.svg", + "mode": "100755", + "type": "blob", + "sha": "e7fdca104304af9d1b29d81f840083daab93dd6c", + "size": 688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7fdca104304af9d1b29d81f840083daab93dd6c" + }, + { + "path": "svg/google-news.svg", + "mode": "100644", + "type": "blob", + "sha": "87f1931b75ba0c6170fba4afb5b115390c5071e2", + "size": 4156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87f1931b75ba0c6170fba4afb5b115390c5071e2" + }, + { + "path": "svg/google-one.svg", + "mode": "100644", + "type": "blob", + "sha": "e60e3a4571e5caa4a2b212805722fdcbff35b625", + "size": 1647, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e60e3a4571e5caa4a2b212805722fdcbff35b625" + }, + { + "path": "svg/google-pay.svg", + "mode": "100644", + "type": "blob", + "sha": "03c68527d706e1242e94b8e402ef6c110c699952", + "size": 6710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03c68527d706e1242e94b8e402ef6c110c699952" + }, + { + "path": "svg/google-photos.svg", + "mode": "100755", + "type": "blob", + "sha": "9989c9172426670f00d521e550dd3879bcfd2676", + "size": 633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9989c9172426670f00d521e550dd3879bcfd2676" + }, + { + "path": "svg/google-play-books.svg", + "mode": "100644", + "type": "blob", + "sha": "04f0769448c7940831d3e1ae5fd307c3a98112d7", + "size": 1273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04f0769448c7940831d3e1ae5fd307c3a98112d7" + }, + { + "path": "svg/google-play-games.svg", + "mode": "100644", + "type": "blob", + "sha": "8e5115636e523b80a75fba663a07543a4414e840", + "size": 1081, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e5115636e523b80a75fba663a07543a4414e840" + }, + { + "path": "svg/google-play.svg", + "mode": "100644", + "type": "blob", + "sha": "e50f5dcbf774f9bf4a84f75a774930e3d6cf1417", + "size": 531, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e50f5dcbf774f9bf4a84f75a774930e3d6cf1417" + }, + { + "path": "svg/google-podcasts.svg", + "mode": "100644", + "type": "blob", + "sha": "1b7edfdab6917a4f8e7c4e5b569cc2c707ad968b", + "size": 429, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b7edfdab6917a4f8e7c4e5b569cc2c707ad968b" + }, + { + "path": "svg/google-scholar.svg", + "mode": "100644", + "type": "blob", + "sha": "2260cba4940c75c64a8cf4b1c3c9fbccfbbc7623", + "size": 355, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2260cba4940c75c64a8cf4b1c3c9fbccfbbc7623" + }, + { + "path": "svg/google-search-console.svg", + "mode": "100644", + "type": "blob", + "sha": "fc5a0504ae115db9d5fa76905bc61a9a82d6e2f0", + "size": 1021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc5a0504ae115db9d5fa76905bc61a9a82d6e2f0" + }, + { + "path": "svg/google-sheets.svg", + "mode": "100644", + "type": "blob", + "sha": "d12894ae913519c262693324f5719f8b849bd8ee", + "size": 3663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d12894ae913519c262693324f5719f8b849bd8ee" + }, + { + "path": "svg/google-shopping.svg", + "mode": "100644", + "type": "blob", + "sha": "fef8ebbdf7f1991306fa4fb56dfb6cf6352b239c", + "size": 1476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fef8ebbdf7f1991306fa4fb56dfb6cf6352b239c" + }, + { + "path": "svg/google-sites.svg", + "mode": "100644", + "type": "blob", + "sha": "cbe64d3a3c7bc51de78b1c0cd6e13de30c630dd5", + "size": 312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbe64d3a3c7bc51de78b1c0cd6e13de30c630dd5" + }, + { + "path": "svg/google-slides.svg", + "mode": "100644", + "type": "blob", + "sha": "f7c2393a501e9691f9272e62a260b975e4628bd7", + "size": 3619, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7c2393a501e9691f9272e62a260b975e4628bd7" + }, + { + "path": "svg/google-street-view.svg", + "mode": "100644", + "type": "blob", + "sha": "ea8eb12b57a50a442ed03d50f5b95d9a8fdae122", + "size": 13600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea8eb12b57a50a442ed03d50f5b95d9a8fdae122" + }, + { + "path": "svg/google-tag-manager.svg", + "mode": "100755", + "type": "blob", + "sha": "2bad94c7f74c2e47b5a40df2c6bf7d08706a0aa8", + "size": 546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bad94c7f74c2e47b5a40df2c6bf7d08706a0aa8" + }, + { + "path": "svg/google-translate.svg", + "mode": "100644", + "type": "blob", + "sha": "1d68f677a22b16ba301d3f577ad536112b440417", + "size": 1963, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d68f677a22b16ba301d3f577ad536112b440417" + }, + { + "path": "svg/google-tv.svg", + "mode": "100644", + "type": "blob", + "sha": "7aba45256bf5b25a9a84ca11d87800391c3377ab", + "size": 606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aba45256bf5b25a9a84ca11d87800391c3377ab" + }, + { + "path": "svg/google-voice.svg", + "mode": "100755", + "type": "blob", + "sha": "bf7afe6c08cda55096c3a8d0bcc9a50aeb32a805", + "size": 942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf7afe6c08cda55096c3a8d0bcc9a50aeb32a805" + }, + { + "path": "svg/google-wallet.svg", + "mode": "100644", + "type": "blob", + "sha": "9159d4061945ad208af2b64e6aab99a7a6f9ce6c", + "size": 986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9159d4061945ad208af2b64e6aab99a7a6f9ce6c" + }, + { + "path": "svg/google-wifi.svg", + "mode": "100644", + "type": "blob", + "sha": "8eedc56f666055328566195aa3d5eb03ef5b38ee", + "size": 1193, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8eedc56f666055328566195aa3d5eb03ef5b38ee" + }, + { + "path": "svg/google.svg", + "mode": "100755", + "type": "blob", + "sha": "e9576f74e81e6b6bef315f1efc824a732985415c", + "size": 817, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9576f74e81e6b6bef315f1efc824a732985415c" + }, + { + "path": "svg/gopeed.svg", + "mode": "100644", + "type": "blob", + "sha": "5d7a2a02d9380a4de1bd1669736e1c1d01546d77", + "size": 4149, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d7a2a02d9380a4de1bd1669736e1c1d01546d77" + }, + { + "path": "svg/gose.svg", + "mode": "100644", + "type": "blob", + "sha": "9ff40e2926868d940b559a03bc353946ec90fc54", + "size": 1441, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ff40e2926868d940b559a03bc353946ec90fc54" + }, + { + "path": "svg/gotify.svg", + "mode": "100755", + "type": "blob", + "sha": "17fdb798e0b3fa5ec0e033cdc4983b5ff4992429", + "size": 7434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17fdb798e0b3fa5ec0e033cdc4983b5ff4992429" + }, + { + "path": "svg/gotosocial.svg", + "mode": "100755", + "type": "blob", + "sha": "a5da8163991616404f96f1cfda046fce86df826f", + "size": 6417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5da8163991616404f96f1cfda046fce86df826f" + }, + { + "path": "svg/gpt4free.svg", + "mode": "100644", + "type": "blob", + "sha": "ee8da468def1150e703ab375c205ab37d0da9686", + "size": 4507, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee8da468def1150e703ab375c205ab37d0da9686" + }, + { + "path": "svg/grafana.svg", + "mode": "100755", + "type": "blob", + "sha": "5b8e59cf07912e802e6fdd1e8c175dee915bed36", + "size": 4233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b8e59cf07912e802e6fdd1e8c175dee915bed36" + }, + { + "path": "svg/gramps-web.svg", + "mode": "100644", + "type": "blob", + "sha": "800ac41115d6ffde0f5d3dc4c0f49006368cf9ae", + "size": 4997, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/800ac41115d6ffde0f5d3dc4c0f49006368cf9ae" + }, + { + "path": "svg/gramps.svg", + "mode": "100755", + "type": "blob", + "sha": "1faa6d391f40e0ff376a26e9fc442890705c4b09", + "size": 5537, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1faa6d391f40e0ff376a26e9fc442890705c4b09" + }, + { + "path": "svg/grandstream.svg", + "mode": "100644", + "type": "blob", + "sha": "c4027650e508912de0ec894a75400568bf24ae47", + "size": 7729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4027650e508912de0ec894a75400568bf24ae47" + }, + { + "path": "svg/grav-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1c3246adacb2ed331f903876057856a44aef6f25", + "size": 2053, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c3246adacb2ed331f903876057856a44aef6f25" + }, + { + "path": "svg/grav.svg", + "mode": "100755", + "type": "blob", + "sha": "9da4cd6d468747b813c27903976854b2fb0ba431", + "size": 2056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9da4cd6d468747b813c27903976854b2fb0ba431" + }, + { + "path": "svg/graylog.svg", + "mode": "100644", + "type": "blob", + "sha": "40972780235281ae5ba96ad57463dd975b786287", + "size": 1154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40972780235281ae5ba96ad57463dd975b786287" + }, + { + "path": "svg/greenbone-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b462bd9a868f5dcabcfa7e442b04deb3257a835f", + "size": 17858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b462bd9a868f5dcabcfa7e442b04deb3257a835f" + }, + { + "path": "svg/greenbone.svg", + "mode": "100644", + "type": "blob", + "sha": "62da1f84098237177b248a3c84bd195f871d7dba", + "size": 17753, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62da1f84098237177b248a3c84bd195f871d7dba" + }, + { + "path": "svg/grimoire.svg", + "mode": "100755", + "type": "blob", + "sha": "5ccead2c9997cc009c9c273dd69b0266bb0d4776", + "size": 202102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ccead2c9997cc009c9c273dd69b0266bb0d4776" + }, + { + "path": "svg/grist.svg", + "mode": "100755", + "type": "blob", + "sha": "e678feb295d59e986fd1a0caf5fe4fcd4a35c962", + "size": 1964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e678feb295d59e986fd1a0caf5fe4fcd4a35c962" + }, + { + "path": "svg/grocy.svg", + "mode": "100755", + "type": "blob", + "sha": "5f706373b70c43c124ac57daf1f219303d2c569b", + "size": 888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f706373b70c43c124ac57daf1f219303d2c569b" + }, + { + "path": "svg/grok-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d3c836a2bdcc71e3edb9e820b6be4ffa3f58395a", + "size": 964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3c836a2bdcc71e3edb9e820b6be4ffa3f58395a" + }, + { + "path": "svg/grok.svg", + "mode": "100644", + "type": "blob", + "sha": "b37e25417c2a36f186b815732a1ca64f0313a9d9", + "size": 964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b37e25417c2a36f186b815732a1ca64f0313a9d9" + }, + { + "path": "svg/guacamole-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7218992fc6bf603d83c6a371e7b034f4d79d3611", + "size": 55346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7218992fc6bf603d83c6a371e7b034f4d79d3611" + }, + { + "path": "svg/guacamole.svg", + "mode": "100644", + "type": "blob", + "sha": "5cbdc855a334dda6673de2bfd71fb6e438182689", + "size": 55328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cbdc855a334dda6673de2bfd71fb6e438182689" + }, + { + "path": "svg/habitica-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "ffb4b65976d29af2b775d2fb62d8b38d138d3f21", + "size": 2215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffb4b65976d29af2b775d2fb62d8b38d138d3f21" + }, + { + "path": "svg/habitica.svg", + "mode": "100644", + "type": "blob", + "sha": "b54bac52ecb0ef7e701488bad117fb5abd4bad16", + "size": 2215, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b54bac52ecb0ef7e701488bad117fb5abd4bad16" + }, + { + "path": "svg/hacker-news.svg", + "mode": "100755", + "type": "blob", + "sha": "0d27c9c0546aa0bc4e460a15a09f3b7a754c7f15", + "size": 325, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d27c9c0546aa0bc4e460a15a09f3b7a754c7f15" + }, + { + "path": "svg/hammond-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ca33721f649c3658a6e3a04a0b3bcec946e15850", + "size": 549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca33721f649c3658a6e3a04a0b3bcec946e15850" + }, + { + "path": "svg/hammond.svg", + "mode": "100644", + "type": "blob", + "sha": "a5b5dfc0ae9b9b447b2db96e89e652001fc35e94", + "size": 549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5b5dfc0ae9b9b447b2db96e89e652001fc35e94" + }, + { + "path": "svg/handbrake.svg", + "mode": "100644", + "type": "blob", + "sha": "0625b4c086e9c2dca04e0a3019bc31f7c9607b68", + "size": 12340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0625b4c086e9c2dca04e0a3019bc31f7c9607b68" + }, + { + "path": "svg/haproxy.svg", + "mode": "100755", + "type": "blob", + "sha": "268b017dea4ca8988e5e04c432a2d1713f4d850e", + "size": 6845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/268b017dea4ca8988e5e04c432a2d1713f4d850e" + }, + { + "path": "svg/haptic-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3866bda387ae1ae3ac93ee00c76c4dffd2f00a95", + "size": 2210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3866bda387ae1ae3ac93ee00c76c4dffd2f00a95" + }, + { + "path": "svg/haptic.svg", + "mode": "100755", + "type": "blob", + "sha": "f3ff52fbd0db9c6cfdfa1c07145d9670da696072", + "size": 2153, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3ff52fbd0db9c6cfdfa1c07145d9670da696072" + }, + { + "path": "svg/harbor.svg", + "mode": "100644", + "type": "blob", + "sha": "bc0e6e7d088a888e76702715cddf18b838eabc7d", + "size": 6036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc0e6e7d088a888e76702715cddf18b838eabc7d" + }, + { + "path": "svg/harvester.svg", + "mode": "100644", + "type": "blob", + "sha": "1a85c6397f1415a749b5851d9e511c3be2fe6301", + "size": 1974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a85c6397f1415a749b5851d9e511c3be2fe6301" + }, + { + "path": "svg/hasheous.svg", + "mode": "100644", + "type": "blob", + "sha": "aa5cbbaf802ad53f8484bb3cb4029f2c8b723dd0", + "size": 580357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa5cbbaf802ad53f8484bb3cb4029f2c8b723dd0" + }, + { + "path": "svg/hashicorp-boundary.svg", + "mode": "100755", + "type": "blob", + "sha": "a8a88d439e4c77fc09e00c134bbdd71487b6f9d6", + "size": 408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8a88d439e4c77fc09e00c134bbdd71487b6f9d6" + }, + { + "path": "svg/hashicorp-consul.svg", + "mode": "100755", + "type": "blob", + "sha": "4c1984a81806daf38cc189353622f95eae928840", + "size": 2137, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c1984a81806daf38cc189353622f95eae928840" + }, + { + "path": "svg/hashicorp-nomad.svg", + "mode": "100755", + "type": "blob", + "sha": "02ed2c430361b28acc969e9a532d08c43f38618c", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02ed2c430361b28acc969e9a532d08c43f38618c" + }, + { + "path": "svg/hashicorp-packer.svg", + "mode": "100755", + "type": "blob", + "sha": "5c06769e7b5da4229235b26547fb00ffc6cb5ef7", + "size": 335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c06769e7b5da4229235b26547fb00ffc6cb5ef7" + }, + { + "path": "svg/hashicorp-terraform.svg", + "mode": "100755", + "type": "blob", + "sha": "606c00fc6e7e5898c304ca72882426df29696180", + "size": 313, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/606c00fc6e7e5898c304ca72882426df29696180" + }, + { + "path": "svg/hashicorp-vagrant.svg", + "mode": "100755", + "type": "blob", + "sha": "04169924f513a8eeaaa7e5e9a8570897a3b214db", + "size": 226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04169924f513a8eeaaa7e5e9a8570897a3b214db" + }, + { + "path": "svg/hashicorp-vault.svg", + "mode": "100755", + "type": "blob", + "sha": "e5721c82f27f42b0488098b31f17aae585fd73dc", + "size": 329, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5721c82f27f42b0488098b31f17aae585fd73dc" + }, + { + "path": "svg/hashicorp-waypoint.svg", + "mode": "100755", + "type": "blob", + "sha": "d6c6b8b75bf21f21d8bd5f1c9b1f7a2a52ed99ff", + "size": 261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6c6b8b75bf21f21d8bd5f1c9b1f7a2a52ed99ff" + }, + { + "path": "svg/hastypaste.svg", + "mode": "100644", + "type": "blob", + "sha": "c71869af4e72963855e2b8d7586c15827ad6880a", + "size": 1035, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c71869af4e72963855e2b8d7586c15827ad6880a" + }, + { + "path": "svg/hasura.svg", + "mode": "100644", + "type": "blob", + "sha": "387dd1940ebaa26e9d6dc735e42c01c58027e486", + "size": 1262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/387dd1940ebaa26e9d6dc735e42c01c58027e486" + }, + { + "path": "svg/hathway.svg", + "mode": "100644", + "type": "blob", + "sha": "47c580632285557833436fd114a5db2fc505c989", + "size": 6375, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47c580632285557833436fd114a5db2fc505c989" + }, + { + "path": "svg/hatsh-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ea6b91b1a828cb3afcb4f3100efb093400fa9697", + "size": 1388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea6b91b1a828cb3afcb4f3100efb093400fa9697" + }, + { + "path": "svg/hatsh.svg", + "mode": "100644", + "type": "blob", + "sha": "495208df05b544eb25331deb8c2589177ff79113", + "size": 1370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/495208df05b544eb25331deb8c2589177ff79113" + }, + { + "path": "svg/hbo-light.svg", + "mode": "100644", + "type": "blob", + "sha": "0aecd4f3fad64f76ea0137be1c75f5ec5a0d6ed7", + "size": 1029, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0aecd4f3fad64f76ea0137be1c75f5ec5a0d6ed7" + }, + { + "path": "svg/hbo.svg", + "mode": "100755", + "type": "blob", + "sha": "bad7abb713d95b986ac7762adb6fe5d5517a0cee", + "size": 1005, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bad7abb713d95b986ac7762adb6fe5d5517a0cee" + }, + { + "path": "svg/hdhomerun-light.svg", + "mode": "100644", + "type": "blob", + "sha": "9b126300593ea69e17b04e41b6f2d80cd916b1c7", + "size": 950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b126300593ea69e17b04e41b6f2d80cd916b1c7" + }, + { + "path": "svg/hdhomerun.svg", + "mode": "100755", + "type": "blob", + "sha": "77b7adb7dd058f8fef4a38987ba10f3ebefedc57", + "size": 919, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77b7adb7dd058f8fef4a38987ba10f3ebefedc57" + }, + { + "path": "svg/headlamp-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "31f29f82ecd8244e06b65efe754b1ed0a8508840", + "size": 1229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31f29f82ecd8244e06b65efe754b1ed0a8508840" + }, + { + "path": "svg/headlamp.svg", + "mode": "100644", + "type": "blob", + "sha": "d7d8975ed600b95c276fc50f09c1cbfab8a1ec8a", + "size": 1230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7d8975ed600b95c276fc50f09c1cbfab8a1ec8a" + }, + { + "path": "svg/headscale.svg", + "mode": "100755", + "type": "blob", + "sha": "c8b6f6769bb3d213caeb657a28b1cc6288475c2e", + "size": 858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8b6f6769bb3d213caeb657a28b1cc6288475c2e" + }, + { + "path": "svg/healthchecks.svg", + "mode": "100755", + "type": "blob", + "sha": "8215747f3dd478137cccd52724feb620fb27c9d3", + "size": 538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8215747f3dd478137cccd52724feb620fb27c9d3" + }, + { + "path": "svg/hedgedoc.svg", + "mode": "100755", + "type": "blob", + "sha": "be6d3c68d124e50d74bf9690b25fb3a14c69187c", + "size": 2039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be6d3c68d124e50d74bf9690b25fb3a14c69187c" + }, + { + "path": "svg/heimdall-light.svg", + "mode": "100644", + "type": "blob", + "sha": "998abcd6ce2d62f589433419459f1a81ccf6af3c", + "size": 1346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/998abcd6ce2d62f589433419459f1a81ccf6af3c" + }, + { + "path": "svg/heimdall.svg", + "mode": "100755", + "type": "blob", + "sha": "7c3113d230ef006e95bca34e83767df0f853c38e", + "size": 1334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c3113d230ef006e95bca34e83767df0f853c38e" + }, + { + "path": "svg/helium-token.svg", + "mode": "100644", + "type": "blob", + "sha": "04fc9ac7901486a251a6fd18f101b4138242eb27", + "size": 1194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04fc9ac7901486a251a6fd18f101b4138242eb27" + }, + { + "path": "svg/helm.svg", + "mode": "100644", + "type": "blob", + "sha": "408f52ab9255c5c0c7ffdaa3dfc2984faff3cd64", + "size": 2179, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/408f52ab9255c5c0c7ffdaa3dfc2984faff3cd64" + }, + { + "path": "svg/hemmelig-light.svg", + "mode": "100644", + "type": "blob", + "sha": "830d92320befa080ef7ace8792c25445fc3c34db", + "size": 8821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/830d92320befa080ef7ace8792c25445fc3c34db" + }, + { + "path": "svg/hemmelig.svg", + "mode": "100644", + "type": "blob", + "sha": "d261d61be8ce87455ffb3267de59a805927166fc", + "size": 8824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d261d61be8ce87455ffb3267de59a805927166fc" + }, + { + "path": "svg/hetzner-h.svg", + "mode": "100644", + "type": "blob", + "sha": "c2a7c951dbf5b8aa25fb3541aa1f874746a35abd", + "size": 9592, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2a7c951dbf5b8aa25fb3541aa1f874746a35abd" + }, + { + "path": "svg/hetzner.svg", + "mode": "100644", + "type": "blob", + "sha": "33ff1b6c1639db483a5f228ffcbe002f63b9d80f", + "size": 1958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33ff1b6c1639db483a5f228ffcbe002f63b9d80f" + }, + { + "path": "svg/hexo.svg", + "mode": "100644", + "type": "blob", + "sha": "694487cefecf3e4646065ecf1bed1e13ae367430", + "size": 304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/694487cefecf3e4646065ecf1bed1e13ae367430" + }, + { + "path": "svg/hexos.svg", + "mode": "100644", + "type": "blob", + "sha": "f11fc097525027affb51210350d10008a417e382", + "size": 1369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f11fc097525027affb51210350d10008a417e382" + }, + { + "path": "svg/heyform.svg", + "mode": "100755", + "type": "blob", + "sha": "b0f3f7fc528f21c08269efc36941207af0208959", + "size": 907, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0f3f7fc528f21c08269efc36941207af0208959" + }, + { + "path": "svg/hi-anime.svg", + "mode": "100644", + "type": "blob", + "sha": "783efa5988396da57306531118a5b8f799a24ef0", + "size": 20137, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/783efa5988396da57306531118a5b8f799a24ef0" + }, + { + "path": "svg/hifiberry.svg", + "mode": "100644", + "type": "blob", + "sha": "133b454710ceef962957c75e32bd8cabb370f6b0", + "size": 1240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/133b454710ceef962957c75e32bd8cabb370f6b0" + }, + { + "path": "svg/hikvision.svg", + "mode": "100644", + "type": "blob", + "sha": "ca3053e6dc75fd56f3453812c2047318fb570930", + "size": 591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca3053e6dc75fd56f3453812c2047318fb570930" + }, + { + "path": "svg/hilook.svg", + "mode": "100644", + "type": "blob", + "sha": "78efdf5226690115483d280480a5d74b5d2074fc", + "size": 1494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78efdf5226690115483d280480a5d74b5d2074fc" + }, + { + "path": "svg/hivedav.svg", + "mode": "100755", + "type": "blob", + "sha": "bcba607fa56a276031d2dc92557b0b88291eb46f", + "size": 12013, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcba607fa56a276031d2dc92557b0b88291eb46f" + }, + { + "path": "svg/hoarder-light.svg", + "mode": "100644", + "type": "blob", + "sha": "65c5969b3197069e7154f730b1be6c79b0f13525", + "size": 572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65c5969b3197069e7154f730b1be6c79b0f13525" + }, + { + "path": "svg/hoarder.svg", + "mode": "100755", + "type": "blob", + "sha": "51ca9403182f2ce10fc36a679555f9d41e9ff5e3", + "size": 560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51ca9403182f2ce10fc36a679555f9d41e9ff5e3" + }, + { + "path": "svg/hollo-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1fa4b27cbceb9648c0361641a60db8528ab27ad9", + "size": 1542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fa4b27cbceb9648c0361641a60db8528ab27ad9" + }, + { + "path": "svg/hollo.svg", + "mode": "100755", + "type": "blob", + "sha": "b6f8868880e234c32041c203cd4edb8e44722c1b", + "size": 1530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6f8868880e234c32041c203cd4edb8e44722c1b" + }, + { + "path": "svg/homarr.svg", + "mode": "100755", + "type": "blob", + "sha": "d3f858caf029782351aee61573c9de0805908e14", + "size": 1236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3f858caf029782351aee61573c9de0805908e14" + }, + { + "path": "svg/home-assistant-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "bb8be680ca3ed5301c6415c119f1490f9e7e13f0", + "size": 940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb8be680ca3ed5301c6415c119f1490f9e7e13f0" + }, + { + "path": "svg/home-assistant.svg", + "mode": "100755", + "type": "blob", + "sha": "f6d0660d09d7fc99381050ec4ae47cc6f9538fca", + "size": 879, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6d0660d09d7fc99381050ec4ae47cc6f9538fca" + }, + { + "path": "svg/homebox.svg", + "mode": "100755", + "type": "blob", + "sha": "7e8f75654341f51934e2300ebdfe57804ad47b97", + "size": 2756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e8f75654341f51934e2300ebdfe57804ad47b97" + }, + { + "path": "svg/homebridge.svg", + "mode": "100755", + "type": "blob", + "sha": "c7d7ae7f144e3b1e9572a36df3557fd23d92fe33", + "size": 1952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7d7ae7f144e3b1e9572a36df3557fd23d92fe33" + }, + { + "path": "svg/homelabids.svg", + "mode": "100644", + "type": "blob", + "sha": "457a03b8b2fe75c88e1a4324493720de5fa9892c", + "size": 4958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/457a03b8b2fe75c88e1a4324493720de5fa9892c" + }, + { + "path": "svg/homer.svg", + "mode": "100755", + "type": "blob", + "sha": "b7d18757c646f958a5d79f18999c06860bebdf98", + "size": 4151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7d18757c646f958a5d79f18999c06860bebdf98" + }, + { + "path": "svg/homey.svg", + "mode": "100644", + "type": "blob", + "sha": "3286a60fd49baf56a66cbf7159e8708f44f4222f", + "size": 171137, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3286a60fd49baf56a66cbf7159e8708f44f4222f" + }, + { + "path": "svg/honda-jet.svg", + "mode": "100644", + "type": "blob", + "sha": "93ee50501e53c0716e570d5d279a2d6c6880935b", + "size": 4599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93ee50501e53c0716e570d5d279a2d6c6880935b" + }, + { + "path": "svg/hoobs.svg", + "mode": "100644", + "type": "blob", + "sha": "5fee42ace797bd663f90e8f64883fced49ca4894", + "size": 1486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fee42ace797bd663f90e8f64883fced49ca4894" + }, + { + "path": "svg/hoppscotch.svg", + "mode": "100755", + "type": "blob", + "sha": "804574f4767e097dbde72746e614075961ce4231", + "size": 4956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/804574f4767e097dbde72746e614075961ce4231" + }, + { + "path": "svg/hostinger.svg", + "mode": "100644", + "type": "blob", + "sha": "2a601a32ae9a107c63abf4091e72bc0418d21dcf", + "size": 433, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a601a32ae9a107c63abf4091e72bc0418d21dcf" + }, + { + "path": "svg/hotio.svg", + "mode": "100644", + "type": "blob", + "sha": "4dc3d9b145338cc6c281d167d1a0413a4bf971f0", + "size": 1769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4dc3d9b145338cc6c281d167d1a0413a4bf971f0" + }, + { + "path": "svg/hp.svg", + "mode": "100644", + "type": "blob", + "sha": "fde96ba21a3f6f3f5ef6e82eb94c5943e406a21c", + "size": 644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fde96ba21a3f6f3f5ef6e82eb94c5943e406a21c" + }, + { + "path": "svg/html-light.svg", + "mode": "100644", + "type": "blob", + "sha": "11639a06fd1ac3de01f45e2f67be5ba164498a2c", + "size": 642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11639a06fd1ac3de01f45e2f67be5ba164498a2c" + }, + { + "path": "svg/html.svg", + "mode": "100644", + "type": "blob", + "sha": "dfec75d90997018b1ea6b530bebb2a8966db0b5b", + "size": 630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfec75d90997018b1ea6b530bebb2a8966db0b5b" + }, + { + "path": "svg/huawei.svg", + "mode": "100644", + "type": "blob", + "sha": "d1f6705ab06fd8d8c0423b7774e611530e03cc5c", + "size": 2622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1f6705ab06fd8d8c0423b7774e611530e03cc5c" + }, + { + "path": "svg/hubitat.svg", + "mode": "100644", + "type": "blob", + "sha": "d42171fdb57161bf31def482f56ec4a1f90ed055", + "size": 3938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d42171fdb57161bf31def482f56ec4a1f90ed055" + }, + { + "path": "svg/hubzilla.svg", + "mode": "100755", + "type": "blob", + "sha": "ce44c572c6392f5aa7eb0ffa86addc3c39aeb87c", + "size": 673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce44c572c6392f5aa7eb0ffa86addc3c39aeb87c" + }, + { + "path": "svg/hugging-face.svg", + "mode": "100644", + "type": "blob", + "sha": "6d7d17f5989976a3255fb911b797fbb0e7feee9b", + "size": 18681, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d7d17f5989976a3255fb911b797fbb0e7feee9b" + }, + { + "path": "svg/huginn.svg", + "mode": "100755", + "type": "blob", + "sha": "b7f78b9633c6b6eae99530939faec3cbf5ae7ca9", + "size": 3555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7f78b9633c6b6eae99530939faec3cbf5ae7ca9" + }, + { + "path": "svg/hugo.svg", + "mode": "100755", + "type": "blob", + "sha": "4b515de6eeb33d809e11f923f21240177d49b9e7", + "size": 10606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b515de6eeb33d809e11f923f21240177d49b9e7" + }, + { + "path": "svg/hulu.svg", + "mode": "100755", + "type": "blob", + "sha": "e85f3bce552017c204dabc3337ad1b85a59ae8b3", + "size": 819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e85f3bce552017c204dabc3337ad1b85a59ae8b3" + }, + { + "path": "svg/humhub.svg", + "mode": "100755", + "type": "blob", + "sha": "a811a89184e2d0fbc7e986cf41dbe7b202cccf6c", + "size": 718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a811a89184e2d0fbc7e986cf41dbe7b202cccf6c" + }, + { + "path": "svg/hydra.svg", + "mode": "100644", + "type": "blob", + "sha": "5f35a429508de0218cd86d5de5a6f627037f501e", + "size": 14099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f35a429508de0218cd86d5de5a6f627037f501e" + }, + { + "path": "svg/hyperpipe-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4777f6533fadf864173e52f41915caa5f276a5e9", + "size": 822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4777f6533fadf864173e52f41915caa5f276a5e9" + }, + { + "path": "svg/hyperpipe.svg", + "mode": "100755", + "type": "blob", + "sha": "91a669aa6a6eefc047c886fa161bf1e6a024d22c", + "size": 825, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91a669aa6a6eefc047c886fa161bf1e6a024d22c" + }, + { + "path": "svg/hyprland.svg", + "mode": "100644", + "type": "blob", + "sha": "112138251b3bca171a035b53bae49ad951115c48", + "size": 858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/112138251b3bca171a035b53bae49ad951115c48" + }, + { + "path": "svg/i-librarian.svg", + "mode": "100644", + "type": "blob", + "sha": "50de0ee9233946fc58c8f55817b954200ac1d322", + "size": 7716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50de0ee9233946fc58c8f55817b954200ac1d322" + }, + { + "path": "svg/i2p-light.svg", + "mode": "100644", + "type": "blob", + "sha": "655f269eaf56dd66cc4f30fa99f400169b8aae0b", + "size": 2318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/655f269eaf56dd66cc4f30fa99f400169b8aae0b" + }, + { + "path": "svg/i2p.svg", + "mode": "100644", + "type": "blob", + "sha": "9ce6cd0a89041061c5a6ba2bd96afbcbcd07318a", + "size": 2318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ce6cd0a89041061c5a6ba2bd96afbcbcd07318a" + }, + { + "path": "svg/i2pd.svg", + "mode": "100644", + "type": "blob", + "sha": "d8f214349baa6079bd9400b93cae83a1994aa154", + "size": 18856, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8f214349baa6079bd9400b93cae83a1994aa154" + }, + { + "path": "svg/ical.svg", + "mode": "100644", + "type": "blob", + "sha": "6d94924f7c9b4cc362ebe72734db7bd94b708030", + "size": 3260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d94924f7c9b4cc362ebe72734db7bd94b708030" + }, + { + "path": "svg/icecast.svg", + "mode": "100644", + "type": "blob", + "sha": "980eda16153f8df35842363b09ce7113d33cbdf9", + "size": 4764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/980eda16153f8df35842363b09ce7113d33cbdf9" + }, + { + "path": "svg/icinga-full-light.svg", + "mode": "100644", + "type": "blob", + "sha": "97159ad22a8c18641118a84ab7cf7d61749756fc", + "size": 4595, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97159ad22a8c18641118a84ab7cf7d61749756fc" + }, + { + "path": "svg/icinga-full.svg", + "mode": "100644", + "type": "blob", + "sha": "37b653e07557dd1f2fc526d3884ea0f14d6e66ab", + "size": 4053, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37b653e07557dd1f2fc526d3884ea0f14d6e66ab" + }, + { + "path": "svg/icinga-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ad13b91de934d30bb5f83ab87405d2927b67958f", + "size": 1820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad13b91de934d30bb5f83ab87405d2927b67958f" + }, + { + "path": "svg/icinga.svg", + "mode": "100755", + "type": "blob", + "sha": "fbe0d99e59d4043dcb112246b1e974ae1bc3cd5d", + "size": 1796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbe0d99e59d4043dcb112246b1e974ae1bc3cd5d" + }, + { + "path": "svg/icloud.svg", + "mode": "100644", + "type": "blob", + "sha": "9d69abdfc41d5a4fb1fb594d094f48178df0ff76", + "size": 991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d69abdfc41d5a4fb1fb594d094f48178df0ff76" + }, + { + "path": "svg/idealo.svg", + "mode": "100644", + "type": "blob", + "sha": "dbc5ed49e70185152e628d7a6f207b4c7e5d3185", + "size": 660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbc5ed49e70185152e628d7a6f207b4c7e5d3185" + }, + { + "path": "svg/ideco.svg", + "mode": "100644", + "type": "blob", + "sha": "57c5deacaa8c1d3e9b09383d9c1f9177d850d11f", + "size": 631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57c5deacaa8c1d3e9b09383d9c1f9177d850d11f" + }, + { + "path": "svg/idrac.svg", + "mode": "100644", + "type": "blob", + "sha": "1ebea5b441b6ab76026b0238ad4df85b37ac977c", + "size": 1126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ebea5b441b6ab76026b0238ad4df85b37ac977c" + }, + { + "path": "svg/idrive.svg", + "mode": "100644", + "type": "blob", + "sha": "1709fd58aad0a567df8ec8b5381d4e65306cca62", + "size": 8637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1709fd58aad0a567df8ec8b5381d4e65306cca62" + }, + { + "path": "svg/ilo.svg", + "mode": "100644", + "type": "blob", + "sha": "fde96ba21a3f6f3f5ef6e82eb94c5943e406a21c", + "size": 644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fde96ba21a3f6f3f5ef6e82eb94c5943e406a21c" + }, + { + "path": "svg/immich-frame-light.svg", + "mode": "100644", + "type": "blob", + "sha": "541542a42ae022d004b5b2a6c009cf3d25691c6a", + "size": 4497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/541542a42ae022d004b5b2a6c009cf3d25691c6a" + }, + { + "path": "svg/immich-frame.svg", + "mode": "100755", + "type": "blob", + "sha": "ae9a08e1e17b264d0e6914324b465943883d310e", + "size": 4497, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae9a08e1e17b264d0e6914324b465943883d310e" + }, + { + "path": "svg/immich-kiosk-light.svg", + "mode": "100644", + "type": "blob", + "sha": "94bc84084795a7ebd33d35dd86421afff4c0d2a8", + "size": 6975, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94bc84084795a7ebd33d35dd86421afff4c0d2a8" + }, + { + "path": "svg/immich-kiosk.svg", + "mode": "100755", + "type": "blob", + "sha": "c01003de046bfdb227b69b062e2e512fa65cfabb", + "size": 9102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c01003de046bfdb227b69b062e2e512fa65cfabb" + }, + { + "path": "svg/immich-power-tools.svg", + "mode": "100644", + "type": "blob", + "sha": "3078d13b69d5b17f3f70c7473bbea13cef143291", + "size": 681, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3078d13b69d5b17f3f70c7473bbea13cef143291" + }, + { + "path": "svg/immich-public-proxy.svg", + "mode": "100644", + "type": "blob", + "sha": "f0fd867284abec7888879ef37db705ee88f75713", + "size": 5075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0fd867284abec7888879ef37db705ee88f75713" + }, + { + "path": "svg/immich.svg", + "mode": "100755", + "type": "blob", + "sha": "5c758ff59976abb323908952c9003216bd7acb75", + "size": 1172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c758ff59976abb323908952c9003216bd7acb75" + }, + { + "path": "svg/incus.svg", + "mode": "100644", + "type": "blob", + "sha": "c85412ef96fd1f73b5cc08252583bcc397862e7f", + "size": 3845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c85412ef96fd1f73b5cc08252583bcc397862e7f" + }, + { + "path": "svg/infinite-craft.svg", + "mode": "100644", + "type": "blob", + "sha": "2e9122399fce9f2c8583eb9340fa267e43e6e313", + "size": 4327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e9122399fce9f2c8583eb9340fa267e43e6e313" + }, + { + "path": "svg/infisical.svg", + "mode": "100644", + "type": "blob", + "sha": "80f70d3ec48e90aac09c78624422692ce32d7229", + "size": 4742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80f70d3ec48e90aac09c78624422692ce32d7229" + }, + { + "path": "svg/influxdb.svg", + "mode": "100755", + "type": "blob", + "sha": "a6ed507ea8be5ef719d2e6fb98d0bbe27b538c28", + "size": 1257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6ed507ea8be5ef719d2e6fb98d0bbe27b538c28" + }, + { + "path": "svg/infoblox.svg", + "mode": "100644", + "type": "blob", + "sha": "7edac36ef19b405502c731c7ee9f782444449fab", + "size": 1410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7edac36ef19b405502c731c7ee9f782444449fab" + }, + { + "path": "svg/infomaniak-k.svg", + "mode": "100644", + "type": "blob", + "sha": "c991cb101ffab24ec568d9ca0bc3879929785a9b", + "size": 703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c991cb101ffab24ec568d9ca0bc3879929785a9b" + }, + { + "path": "svg/infomaniak-kdrive-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "a83da18507a27802f28266de77455eeae34c81a7", + "size": 3799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a83da18507a27802f28266de77455eeae34c81a7" + }, + { + "path": "svg/infomaniak-kdrive-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ab7a9f45ad6245287e40d8400c9a3221cf3059ff", + "size": 3829, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab7a9f45ad6245287e40d8400c9a3221cf3059ff" + }, + { + "path": "svg/infomaniak-kmeet-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "059c85553d34e26e081bc8853710134cea80f5ba", + "size": 18194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/059c85553d34e26e081bc8853710134cea80f5ba" + }, + { + "path": "svg/infomaniak-kmeet-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e42fad470d203d48f6a5874586c0ff2ec1449403", + "size": 18224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e42fad470d203d48f6a5874586c0ff2ec1449403" + }, + { + "path": "svg/infomaniak-swisstransfer-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d6e2a34b1839759b795ceabc945a2c3a1c8bddb4", + "size": 13586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6e2a34b1839759b795ceabc945a2c3a1c8bddb4" + }, + { + "path": "svg/infomaniak-swisstransfer-light.svg", + "mode": "100644", + "type": "blob", + "sha": "80c70d38cf61bbc9965454365711848c67463754", + "size": 13113, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80c70d38cf61bbc9965454365711848c67463754" + }, + { + "path": "svg/inoreader.svg", + "mode": "100755", + "type": "blob", + "sha": "1a28ed2646081d2597ee1663c4bcd49ae8d95c18", + "size": 299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a28ed2646081d2597ee1663c4bcd49ae8d95c18" + }, + { + "path": "svg/instagram.svg", + "mode": "100755", + "type": "blob", + "sha": "3806a5aaa4be5338ec5d76eabff39a37acc06359", + "size": 3285, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3806a5aaa4be5338ec5d76eabff39a37acc06359" + }, + { + "path": "svg/intellij.svg", + "mode": "100644", + "type": "blob", + "sha": "1d43efb1614e8407dabf19bd7398109b8b101379", + "size": 3586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d43efb1614e8407dabf19bd7398109b8b101379" + }, + { + "path": "svg/inventree.svg", + "mode": "100755", + "type": "blob", + "sha": "4886979b295f628505e678f255e9445deb92ffaa", + "size": 1765, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4886979b295f628505e678f255e9445deb92ffaa" + }, + { + "path": "svg/invidious.svg", + "mode": "100755", + "type": "blob", + "sha": "820ddff5c5a959de58d20b3cc449b3bb2fdcab79", + "size": 2744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/820ddff5c5a959de58d20b3cc449b3bb2fdcab79" + }, + { + "path": "svg/invisioncommunity.svg", + "mode": "100644", + "type": "blob", + "sha": "22c52292a1bbf29365135ed4f8a8ad102b2b5ec9", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22c52292a1bbf29365135ed4f8a8ad102b2b5ec9" + }, + { + "path": "svg/invoice-ninja-light.svg", + "mode": "100644", + "type": "blob", + "sha": "edd4509dc4b683cd90f809e23ebf14a3779dbf42", + "size": 1462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edd4509dc4b683cd90f809e23ebf14a3779dbf42" + }, + { + "path": "svg/invoice-ninja.svg", + "mode": "100755", + "type": "blob", + "sha": "9cf958f0cae4dcdddc8df986ad6420694bb44e1b", + "size": 1447, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cf958f0cae4dcdddc8df986ad6420694bb44e1b" + }, + { + "path": "svg/invoke-ai.svg", + "mode": "100644", + "type": "blob", + "sha": "0249e52b58caa3bd90f2db1e1701c49ced352daa", + "size": 198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0249e52b58caa3bd90f2db1e1701c49ced352daa" + }, + { + "path": "svg/iobroker.svg", + "mode": "100644", + "type": "blob", + "sha": "96a16f1a108c6669887a00f1318638a88cfd8296", + "size": 902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96a16f1a108c6669887a00f1318638a88cfd8296" + }, + { + "path": "svg/ionos.svg", + "mode": "100644", + "type": "blob", + "sha": "8c429ccb039ce1897295fe516d47bee31c7e367f", + "size": 217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c429ccb039ce1897295fe516d47bee31c7e367f" + }, + { + "path": "svg/ipboard.svg", + "mode": "100644", + "type": "blob", + "sha": "22c52292a1bbf29365135ed4f8a8ad102b2b5ec9", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22c52292a1bbf29365135ed4f8a8ad102b2b5ec9" + }, + { + "path": "svg/ipfs-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1b90c3136b874021e570675c11528f3280dd29a1", + "size": 2012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b90c3136b874021e570675c11528f3280dd29a1" + }, + { + "path": "svg/ipfs.svg", + "mode": "100644", + "type": "blob", + "sha": "5972af4b91c5a3fe9cdebdb2ae0c7c56ec4e0319", + "size": 2024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5972af4b91c5a3fe9cdebdb2ae0c7c56ec4e0319" + }, + { + "path": "svg/ispconfig.svg", + "mode": "100644", + "type": "blob", + "sha": "9a81ec6040e72e9cf424974f0fbeb962ca3813be", + "size": 1162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a81ec6040e72e9cf424974f0fbeb962ca3813be" + }, + { + "path": "svg/issabel-pbx-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "024ad10748532965645d567a7cfc6f2c953ff7ae", + "size": 2780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/024ad10748532965645d567a7cfc6f2c953ff7ae" + }, + { + "path": "svg/issabel-pbx-wordmark-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "245aaa73703ae7c44460496473458d81c58da210", + "size": 5504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/245aaa73703ae7c44460496473458d81c58da210" + }, + { + "path": "svg/issabel-pbx-wordmark.svg", + "mode": "100644", + "type": "blob", + "sha": "3d5f68651750ee87a730c72115437663bf2c10d1", + "size": 5501, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d5f68651750ee87a730c72115437663bf2c10d1" + }, + { + "path": "svg/issabel-pbx.svg", + "mode": "100644", + "type": "blob", + "sha": "3809c2fb9f507dd22f320306e7c87fb08687adb9", + "size": 2777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3809c2fb9f507dd22f320306e7c87fb08687adb9" + }, + { + "path": "svg/it-tools-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4a67c9a4ddde84c42d67b67e464562385fb3dda8", + "size": 6889, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a67c9a4ddde84c42d67b67e464562385fb3dda8" + }, + { + "path": "svg/it-tools.svg", + "mode": "100755", + "type": "blob", + "sha": "2aeb93e034655f312283e0163642ac161fbf5e28", + "size": 6892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2aeb93e034655f312283e0163642ac161fbf5e28" + }, + { + "path": "svg/italki.svg", + "mode": "100644", + "type": "blob", + "sha": "d85c0686bc62ac88ccef3c9ed07df7193da11d28", + "size": 4485, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d85c0686bc62ac88ccef3c9ed07df7193da11d28" + }, + { + "path": "svg/jackett-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bd63e507b0f15c567b0a122e4981082aa6f24e12", + "size": 746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd63e507b0f15c567b0a122e4981082aa6f24e12" + }, + { + "path": "svg/jackett.svg", + "mode": "100755", + "type": "blob", + "sha": "6f8591ac4eb6d66d22832724259a8381ea3a04d4", + "size": 727, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f8591ac4eb6d66d22832724259a8381ea3a04d4" + }, + { + "path": "svg/jaeger.svg", + "mode": "100644", + "type": "blob", + "sha": "ffb929ec3055b1a7d4cece6cf46a4a00089aa50a", + "size": 17189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffb929ec3055b1a7d4cece6cf46a4a00089aa50a" + }, + { + "path": "svg/jamf.svg", + "mode": "100644", + "type": "blob", + "sha": "b1129c0331c95d03d0a4e41045b5aa147d275796", + "size": 581, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1129c0331c95d03d0a4e41045b5aa147d275796" + }, + { + "path": "svg/jamstack.svg", + "mode": "100644", + "type": "blob", + "sha": "a9cbe33346200254782ea480348ea76678e3ddb9", + "size": 359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9cbe33346200254782ea480348ea76678e3ddb9" + }, + { + "path": "svg/java.svg", + "mode": "100644", + "type": "blob", + "sha": "d7fe6555829f651a26c10a59d0cc628c1ac9ce2b", + "size": 3164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7fe6555829f651a26c10a59d0cc628c1ac9ce2b" + }, + { + "path": "svg/javascript-light.svg", + "mode": "100644", + "type": "blob", + "sha": "18c9427066c846349fc96fde42c0a7d9c333a445", + "size": 691, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18c9427066c846349fc96fde42c0a7d9c333a445" + }, + { + "path": "svg/javascript.svg", + "mode": "100644", + "type": "blob", + "sha": "97cf150db8cbf7551207a8b246b1e9cf70192c07", + "size": 679, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97cf150db8cbf7551207a8b246b1e9cf70192c07" + }, + { + "path": "svg/jeedom.svg", + "mode": "100644", + "type": "blob", + "sha": "7e5d6ad984b0fd74a61ef8eaf0e86f95375fbf1f", + "size": 3200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e5d6ad984b0fd74a61ef8eaf0e86f95375fbf1f" + }, + { + "path": "svg/jekyll.svg", + "mode": "100755", + "type": "blob", + "sha": "ee073521e0979251a8705a134c5612581a9ef9ba", + "size": 2163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee073521e0979251a8705a134c5612581a9ef9ba" + }, + { + "path": "svg/jellyfin-vue.svg", + "mode": "100644", + "type": "blob", + "sha": "6da3b98b147d15c01119a328cb2faf03845eae84", + "size": 1351, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6da3b98b147d15c01119a328cb2faf03845eae84" + }, + { + "path": "svg/jellyfin.svg", + "mode": "100755", + "type": "blob", + "sha": "c62f1041c1c6978c2a0f22df904d4f33cb13b3e2", + "size": 896, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c62f1041c1c6978c2a0f22df904d4f33cb13b3e2" + }, + { + "path": "svg/jellyseerr.svg", + "mode": "100755", + "type": "blob", + "sha": "ed1b4ed34245dcf880eddf177cc7c15b01d76857", + "size": 5836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed1b4ed34245dcf880eddf177cc7c15b01d76857" + }, + { + "path": "svg/jellystat-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "ecdd62ad6d7fab5e7ff069c9dd3aae3c107a5a35", + "size": 7095, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecdd62ad6d7fab5e7ff069c9dd3aae3c107a5a35" + }, + { + "path": "svg/jellystat.svg", + "mode": "100755", + "type": "blob", + "sha": "e8b5ba886aba02eae565f609cf7570c8857e1393", + "size": 6994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8b5ba886aba02eae565f609cf7570c8857e1393" + }, + { + "path": "svg/jelu.svg", + "mode": "100644", + "type": "blob", + "sha": "97154c5920f4df179ffa83fe39067825e22156ac", + "size": 1746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97154c5920f4df179ffa83fe39067825e22156ac" + }, + { + "path": "svg/jenkins.svg", + "mode": "100755", + "type": "blob", + "sha": "5558aec4de051538758352358843309f3fd539b9", + "size": 16163, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5558aec4de051538758352358843309f3fd539b9" + }, + { + "path": "svg/jetbrains-toolbox.svg", + "mode": "100644", + "type": "blob", + "sha": "a4a61a9459538ae809799a4fedcdef5d14e5a5d2", + "size": 572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4a61a9459538ae809799a4fedcdef5d14e5a5d2" + }, + { + "path": "svg/jetbrains-youtrack.svg", + "mode": "100644", + "type": "blob", + "sha": "955919c5c57dd1c15b523fb5c5a881c2057b7edc", + "size": 2218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/955919c5c57dd1c15b523fb5c5a881c2057b7edc" + }, + { + "path": "svg/jetkvm-full.svg", + "mode": "100644", + "type": "blob", + "sha": "e27d061c2008b61f48d9b05b819b8b8f37abb411", + "size": 6299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e27d061c2008b61f48d9b05b819b8b8f37abb411" + }, + { + "path": "svg/jetkvm.svg", + "mode": "100644", + "type": "blob", + "sha": "51528f228ad151db49e3247c9ab789ec6663603d", + "size": 3276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51528f228ad151db49e3247c9ab789ec6663603d" + }, + { + "path": "svg/jfrog.svg", + "mode": "100644", + "type": "blob", + "sha": "eaafabe762d11d801215c0af733b9749ebb24580", + "size": 3322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaafabe762d11d801215c0af733b9749ebb24580" + }, + { + "path": "svg/jio.svg", + "mode": "100644", + "type": "blob", + "sha": "418e1a2d07914e21070ab367316be19b42231b28", + "size": 7718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/418e1a2d07914e21070ab367316be19b42231b28" + }, + { + "path": "svg/jira.svg", + "mode": "100755", + "type": "blob", + "sha": "087cff9d8bc32c3fbbb21f4936cee1b792039ef4", + "size": 1038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/087cff9d8bc32c3fbbb21f4936cee1b792039ef4" + }, + { + "path": "svg/jitsi-meet.svg", + "mode": "100755", + "type": "blob", + "sha": "cdaa4e976bb7b2c076d8353d63b85fc6fae8bcf6", + "size": 13006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdaa4e976bb7b2c076d8353d63b85fc6fae8bcf6" + }, + { + "path": "svg/jitsi.svg", + "mode": "100644", + "type": "blob", + "sha": "e9186363344075aa4df35661255a96370b3432aa", + "size": 17605, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9186363344075aa4df35661255a96370b3432aa" + }, + { + "path": "svg/joomla.svg", + "mode": "100644", + "type": "blob", + "sha": "7701f2e7ff69d1ad987f4ac4ff1dbc41b7d57f16", + "size": 1210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7701f2e7ff69d1ad987f4ac4ff1dbc41b7d57f16" + }, + { + "path": "svg/joplin.svg", + "mode": "100755", + "type": "blob", + "sha": "7bfdeb3528cea79ef850f54bc2d9bab9f8eedd3d", + "size": 2881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bfdeb3528cea79ef850f54bc2d9bab9f8eedd3d" + }, + { + "path": "svg/jotty.svg", + "mode": "100644", + "type": "blob", + "sha": "f118c727cca56938ba7b588aea2a93dca86041da", + "size": 476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f118c727cca56938ba7b588aea2a93dca86041da" + }, + { + "path": "svg/jujutsu-vcs.svg", + "mode": "100644", + "type": "blob", + "sha": "153ffd54f354f214d7d4bd3891f150accf6dfdf9", + "size": 7006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/153ffd54f354f214d7d4bd3891f150accf6dfdf9" + }, + { + "path": "svg/julia.svg", + "mode": "100644", + "type": "blob", + "sha": "35209ec0dfb75f58f76571e168923da733cc5dc7", + "size": 588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35209ec0dfb75f58f76571e168923da733cc5dc7" + }, + { + "path": "svg/jupyter.svg", + "mode": "100755", + "type": "blob", + "sha": "ca8b4f89d3caa2886ad4c2687eafb280e819562c", + "size": 5598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca8b4f89d3caa2886ad4c2687eafb280e819562c" + }, + { + "path": "svg/jwt-io-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f10d573bfe7ef0eebb6979e17cd3b869faa2382a", + "size": 1111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f10d573bfe7ef0eebb6979e17cd3b869faa2382a" + }, + { + "path": "svg/jwt-io.svg", + "mode": "100755", + "type": "blob", + "sha": "ff1333aecbcfed56af825d72fdbd48d9052ae67b", + "size": 1099, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff1333aecbcfed56af825d72fdbd48d9052ae67b" + }, + { + "path": "svg/kagi.svg", + "mode": "100644", + "type": "blob", + "sha": "0731e7a161e272ebc5de94c17e1849adb8c3a35c", + "size": 1153, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0731e7a161e272ebc5de94c17e1849adb8c3a35c" + }, + { + "path": "svg/kali-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "6e31b32cc463d87cc31b5483a6359bb772524c0c", + "size": 9386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e31b32cc463d87cc31b5483a6359bb772524c0c" + }, + { + "path": "svg/kamatera.svg", + "mode": "100644", + "type": "blob", + "sha": "38cf1f5c126db4dd7578d8ec1a13bb65f6180f6b", + "size": 929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38cf1f5c126db4dd7578d8ec1a13bb65f6180f6b" + }, + { + "path": "svg/kanboard-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f8a89571f0f900950aeed09103b3f89688e1cc7a", + "size": 1078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8a89571f0f900950aeed09103b3f89688e1cc7a" + }, + { + "path": "svg/kanboard.svg", + "mode": "100755", + "type": "blob", + "sha": "8ca9628b966f9bdf351d4c8ae708c2e8cd679adc", + "size": 1081, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ca9628b966f9bdf351d4c8ae708c2e8cd679adc" + }, + { + "path": "svg/kanidm.svg", + "mode": "100755", + "type": "blob", + "sha": "ba26637a09cf3749ae7eba70a6d409afd9261b6e", + "size": 14171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba26637a09cf3749ae7eba70a6d409afd9261b6e" + }, + { + "path": "svg/kapowarr.svg", + "mode": "100755", + "type": "blob", + "sha": "25d817364c97f4bdd2e652bf8a2c3ebe463e6f7d", + "size": 8742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25d817364c97f4bdd2e652bf8a2c3ebe463e6f7d" + }, + { + "path": "svg/karakeep-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "51ca9403182f2ce10fc36a679555f9d41e9ff5e3", + "size": 560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51ca9403182f2ce10fc36a679555f9d41e9ff5e3" + }, + { + "path": "svg/karakeep.svg", + "mode": "100644", + "type": "blob", + "sha": "65c5969b3197069e7154f730b1be6c79b0f13525", + "size": 572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65c5969b3197069e7154f730b1be6c79b0f13525" + }, + { + "path": "svg/kasm-workspaces.svg", + "mode": "100644", + "type": "blob", + "sha": "3fc3f5b0f8b6f88d299c4d1b5412ea316ed02b61", + "size": 587, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fc3f5b0f8b6f88d299c4d1b5412ea316ed02b61" + }, + { + "path": "svg/kasm.svg", + "mode": "100644", + "type": "blob", + "sha": "3fc3f5b0f8b6f88d299c4d1b5412ea316ed02b61", + "size": 587, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fc3f5b0f8b6f88d299c4d1b5412ea316ed02b61" + }, + { + "path": "svg/kasten-k10.svg", + "mode": "100644", + "type": "blob", + "sha": "03e0570032a786241c83fa1021b2a23237701f0e", + "size": 823, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03e0570032a786241c83fa1021b2a23237701f0e" + }, + { + "path": "svg/kaufland.svg", + "mode": "100644", + "type": "blob", + "sha": "c9dd1e13f273d1458431fcb2e4355decff3b98f5", + "size": 2539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9dd1e13f273d1458431fcb2e4355decff3b98f5" + }, + { + "path": "svg/kavita.svg", + "mode": "100755", + "type": "blob", + "sha": "864d48443670e9fae206a852aa1d71702cee4475", + "size": 1996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/864d48443670e9fae206a852aa1d71702cee4475" + }, + { + "path": "svg/kbin.svg", + "mode": "100755", + "type": "blob", + "sha": "9ef7ed4ed39646fe325b1eacdd71679c9f4a358a", + "size": 1013, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ef7ed4ed39646fe325b1eacdd71679c9f4a358a" + }, + { + "path": "svg/keenetic-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "6889ee3ddff5de636c36b67aee144a52f131bd5d", + "size": 1239, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6889ee3ddff5de636c36b67aee144a52f131bd5d" + }, + { + "path": "svg/keenetic.svg", + "mode": "100644", + "type": "blob", + "sha": "18d6df29c1f3bff8e7d5349adfb622ab2216515f", + "size": 930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18d6df29c1f3bff8e7d5349adfb622ab2216515f" + }, + { + "path": "svg/keepassxc.svg", + "mode": "100755", + "type": "blob", + "sha": "bba6774628cd2b832359796d2fb653bc55c230e6", + "size": 4893, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bba6774628cd2b832359796d2fb653bc55c230e6" + }, + { + "path": "svg/keila.svg", + "mode": "100755", + "type": "blob", + "sha": "83634b5965178b208a7bd11f1fa92cb606098839", + "size": 688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83634b5965178b208a7bd11f1fa92cb606098839" + }, + { + "path": "svg/kerberos.svg", + "mode": "100644", + "type": "blob", + "sha": "694d4f3ed39233c7c55273a99fba9b89b76533e4", + "size": 5861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/694d4f3ed39233c7c55273a99fba9b89b76533e4" + }, + { + "path": "svg/kestra.svg", + "mode": "100755", + "type": "blob", + "sha": "ece441fd4a718707bf4181897d9acf626d2cd659", + "size": 1288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ece441fd4a718707bf4181897d9acf626d2cd659" + }, + { + "path": "svg/keycloak.svg", + "mode": "100755", + "type": "blob", + "sha": "3e8115efc160742cda84171b4bd4414ec59f6af5", + "size": 3960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e8115efc160742cda84171b4bd4414ec59f6af5" + }, + { + "path": "svg/keyoxide-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "e810305024e931f7af56e1ddedb00e898de00d58", + "size": 13751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e810305024e931f7af56e1ddedb00e898de00d58" + }, + { + "path": "svg/keyoxide.svg", + "mode": "100644", + "type": "blob", + "sha": "b944081a4214c19b3e9ee44afef5d794ef3cd726", + "size": 15076, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b944081a4214c19b3e9ee44afef5d794ef3cd726" + }, + { + "path": "svg/kibana.svg", + "mode": "100644", + "type": "blob", + "sha": "bb22e215f6bd2dfea92c2823cb66ed2310fc58d9", + "size": 439, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb22e215f6bd2dfea92c2823cb66ed2310fc58d9" + }, + { + "path": "svg/kick-light.svg", + "mode": "100644", + "type": "blob", + "sha": "78b29a189f46a5c7f0e1420444b726800cc5f595", + "size": 351, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78b29a189f46a5c7f0e1420444b726800cc5f595" + }, + { + "path": "svg/kick.svg", + "mode": "100644", + "type": "blob", + "sha": "90b0e444eff7c071e5f18afe6cd70041468c7653", + "size": 339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90b0e444eff7c071e5f18afe6cd70041468c7653" + }, + { + "path": "svg/kimai.svg", + "mode": "100755", + "type": "blob", + "sha": "3bd8f31a6e0b9a05d66a703683fc3dcd6c48e746", + "size": 2944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bd8f31a6e0b9a05d66a703683fc3dcd6c48e746" + }, + { + "path": "svg/kimi-ai.svg", + "mode": "100644", + "type": "blob", + "sha": "5d0e2061e105359d92b6f0a207b0abb60528173e", + "size": 1956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d0e2061e105359d92b6f0a207b0abb60528173e" + }, + { + "path": "svg/kinto.svg", + "mode": "100644", + "type": "blob", + "sha": "6ae1e4fce37d7f5c7cfe17c5682b7de985ad76a8", + "size": 6752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ae1e4fce37d7f5c7cfe17c5682b7de985ad76a8" + }, + { + "path": "svg/kitana.svg", + "mode": "100644", + "type": "blob", + "sha": "ba29c9d448b9a90716eab16e6e019c7aa8040dae", + "size": 541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba29c9d448b9a90716eab16e6e019c7aa8040dae" + }, + { + "path": "svg/kitchenowl.svg", + "mode": "100644", + "type": "blob", + "sha": "7220392742dbebce749fc6aede1feea88cf3ed60", + "size": 6039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7220392742dbebce749fc6aede1feea88cf3ed60" + }, + { + "path": "svg/kiwix-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a225bbda8326b3bc5125e5ccc7d3cdb21b25455c", + "size": 1170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a225bbda8326b3bc5125e5ccc7d3cdb21b25455c" + }, + { + "path": "svg/kiwix.svg", + "mode": "100644", + "type": "blob", + "sha": "f35ec6af43ceb720aa4777f90fbb809c687dffac", + "size": 1173, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f35ec6af43ceb720aa4777f90fbb809c687dffac" + }, + { + "path": "svg/kleinanzeigen.svg", + "mode": "100644", + "type": "blob", + "sha": "39521b64aa838936e105b8238eb3aafc150af988", + "size": 1356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39521b64aa838936e105b8238eb3aafc150af988" + }, + { + "path": "svg/kleopatra.svg", + "mode": "100644", + "type": "blob", + "sha": "7a7496135193e62502ff8f6497e91add402279be", + "size": 6709, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a7496135193e62502ff8f6497e91add402279be" + }, + { + "path": "svg/klipper.svg", + "mode": "100755", + "type": "blob", + "sha": "83a90dde3194b600ca268bfa0af15ea1f6ceaf52", + "size": 2353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83a90dde3194b600ca268bfa0af15ea1f6ceaf52" + }, + { + "path": "svg/knx.svg", + "mode": "100644", + "type": "blob", + "sha": "221862887e58efd450efada14218a404ee708277", + "size": 4238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/221862887e58efd450efada14218a404ee708277" + }, + { + "path": "svg/ko-fi.svg", + "mode": "100644", + "type": "blob", + "sha": "7d7e07c989492efd047fefc929388e3d53fc7c39", + "size": 1628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d7e07c989492efd047fefc929388e3d53fc7c39" + }, + { + "path": "svg/ko-insight.svg", + "mode": "100644", + "type": "blob", + "sha": "989fdb446f17e8af8015440b06e81e5f3f796465", + "size": 3518, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/989fdb446f17e8af8015440b06e81e5f3f796465" + }, + { + "path": "svg/kodi.svg", + "mode": "100755", + "type": "blob", + "sha": "211b23f73eb42e8cf5e0d26e196e7d3d38292123", + "size": 1376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/211b23f73eb42e8cf5e0d26e196e7d3d38292123" + }, + { + "path": "svg/koel.svg", + "mode": "100644", + "type": "blob", + "sha": "41d20c4de5f22c4e370742f68485e02c8624fd5e", + "size": 2774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41d20c4de5f22c4e370742f68485e02c8624fd5e" + }, + { + "path": "svg/koillection-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f0565eeba7e46fb8a3ec3a552e45dd7a2ad437dc", + "size": 10094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0565eeba7e46fb8a3ec3a552e45dd7a2ad437dc" + }, + { + "path": "svg/koillection.svg", + "mode": "100644", + "type": "blob", + "sha": "b8c8d142ec1a947bf4f11b34039076de98261111", + "size": 10184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8c8d142ec1a947bf4f11b34039076de98261111" + }, + { + "path": "svg/komga.svg", + "mode": "100755", + "type": "blob", + "sha": "ebe25d6857709f5f36b5f05910561301d126b148", + "size": 2019, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebe25d6857709f5f36b5f05910561301d126b148" + }, + { + "path": "svg/komodo.svg", + "mode": "100644", + "type": "blob", + "sha": "db490472ac96febfee972c1084ce74cc3876a549", + "size": 117183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db490472ac96febfee972c1084ce74cc3876a549" + }, + { + "path": "svg/kontoj.svg", + "mode": "100755", + "type": "blob", + "sha": "5b73512146a7fa24f678673ed7e537dce270bc6e", + "size": 703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b73512146a7fa24f678673ed7e537dce270bc6e" + }, + { + "path": "svg/kook.svg", + "mode": "100644", + "type": "blob", + "sha": "6bbfb6002dd0669e6a9f0555891203e7e1883e5a", + "size": 978, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bbfb6002dd0669e6a9f0555891203e7e1883e5a" + }, + { + "path": "svg/kopia.svg", + "mode": "100755", + "type": "blob", + "sha": "46372195613f55df6993134deff9e7c18465699c", + "size": 354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46372195613f55df6993134deff9e7c18465699c" + }, + { + "path": "svg/kotlin.svg", + "mode": "100644", + "type": "blob", + "sha": "57ec2f002281d3df121fc824e29863e6323bdf8d", + "size": 1458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57ec2f002281d3df121fc824e29863e6323bdf8d" + }, + { + "path": "svg/kpn.svg", + "mode": "100644", + "type": "blob", + "sha": "fc4ac049e39d5831c7b0b3f0ddeae40d9de54d5b", + "size": 2227, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc4ac049e39d5831c7b0b3f0ddeae40d9de54d5b" + }, + { + "path": "svg/krakend.svg", + "mode": "100755", + "type": "blob", + "sha": "54faa421e0ee289867b3c267b4c0ba43ea834f11", + "size": 3405, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54faa421e0ee289867b3c267b4c0ba43ea834f11" + }, + { + "path": "svg/krusader.svg", + "mode": "100644", + "type": "blob", + "sha": "68fb29535857f4eb97c2f95cb2086b1e5e18d104", + "size": 4001, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68fb29535857f4eb97c2f95cb2086b1e5e18d104" + }, + { + "path": "svg/ksuite.svg", + "mode": "100644", + "type": "blob", + "sha": "74d8f46b50e27ffb873c8bd0fcfd21749175afd3", + "size": 2323, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74d8f46b50e27ffb873c8bd0fcfd21749175afd3" + }, + { + "path": "svg/kubernetes-dashboard.svg", + "mode": "100644", + "type": "blob", + "sha": "6214f5d00372cb1936e74d231bf0eb8d1faf4ca7", + "size": 6040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6214f5d00372cb1936e74d231bf0eb8d1faf4ca7" + }, + { + "path": "svg/kubernetes.svg", + "mode": "100644", + "type": "blob", + "sha": "6214f5d00372cb1936e74d231bf0eb8d1faf4ca7", + "size": 6040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6214f5d00372cb1936e74d231bf0eb8d1faf4ca7" + }, + { + "path": "svg/kubuntu-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "5e018f52a1470529b9631f35e398698e3a57cd12", + "size": 2397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e018f52a1470529b9631f35e398698e3a57cd12" + }, + { + "path": "svg/kutt.svg", + "mode": "100644", + "type": "blob", + "sha": "b1f87d969ddf6517ffe927375c3be20e18de50d5", + "size": 2070, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1f87d969ddf6517ffe927375c3be20e18de50d5" + }, + { + "path": "svg/kyoo.svg", + "mode": "100755", + "type": "blob", + "sha": "090bafaa0f2843b8ced99921dad9bfda90ff073e", + "size": 1532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/090bafaa0f2843b8ced99921dad9bfda90ff073e" + }, + { + "path": "svg/lancommander-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2a10aecffc13f38875f92048f97a433ba98e1cd6", + "size": 509, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a10aecffc13f38875f92048f97a433ba98e1cd6" + }, + { + "path": "svg/lancommander.svg", + "mode": "100755", + "type": "blob", + "sha": "15dd5362ca5e73671fdd98891019c249560b0644", + "size": 512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15dd5362ca5e73671fdd98891019c249560b0644" + }, + { + "path": "svg/laravel.svg", + "mode": "100644", + "type": "blob", + "sha": "008e5b8a96f714851f8da9936ae26f2513472f17", + "size": 3908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/008e5b8a96f714851f8da9936ae26f2513472f17" + }, + { + "path": "svg/lark.svg", + "mode": "100644", + "type": "blob", + "sha": "5bb586b22662fb68affbe8e29775f561674486ae", + "size": 4614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bb586b22662fb68affbe8e29775f561674486ae" + }, + { + "path": "svg/lastpass.svg", + "mode": "100755", + "type": "blob", + "sha": "af0b874e94287231d0e71025b9ceac45a3fafe12", + "size": 584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af0b874e94287231d0e71025b9ceac45a3fafe12" + }, + { + "path": "svg/leanote.svg", + "mode": "100644", + "type": "blob", + "sha": "fec1d5f583bdc513e5d590171eba81d1df215fad", + "size": 1137, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fec1d5f583bdc513e5d590171eba81d1df215fad" + }, + { + "path": "svg/leantime.svg", + "mode": "100755", + "type": "blob", + "sha": "bee487668a88594a396fea919a4d46b9c15784ef", + "size": 506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bee487668a88594a396fea919a4d46b9c15784ef" + }, + { + "path": "svg/leetcode-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "2f4041a6599f47d00bfd178b7d81e44be7213c31", + "size": 2571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f4041a6599f47d00bfd178b7d81e44be7213c31" + }, + { + "path": "svg/leetcode.svg", + "mode": "100644", + "type": "blob", + "sha": "c6b7e0157490d3385a63b778dbc345d9abfdab71", + "size": 2574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6b7e0157490d3385a63b778dbc345d9abfdab71" + }, + { + "path": "svg/lemmy-light.svg", + "mode": "100755", + "type": "blob", + "sha": "d8c9cee74254e56a0f2c885350c78bb85b892261", + "size": 2501, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8c9cee74254e56a0f2c885350c78bb85b892261" + }, + { + "path": "svg/lemmy.svg", + "mode": "100644", + "type": "blob", + "sha": "cbdd16e4dee53875b45c7363a76863f72b8bbdf5", + "size": 2555, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbdd16e4dee53875b45c7363a76863f72b8bbdf5" + }, + { + "path": "svg/lets-encrypt.svg", + "mode": "100755", + "type": "blob", + "sha": "a74c5a4a0b586eb5f7e0d0ddd2361a0a8f160d05", + "size": 1326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a74c5a4a0b586eb5f7e0d0ddd2361a0a8f160d05" + }, + { + "path": "svg/lexmark.svg", + "mode": "100644", + "type": "blob", + "sha": "0886af85ec9493c3978bd40a3a418d23d2ee96ef", + "size": 385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0886af85ec9493c3978bd40a3a418d23d2ee96ef" + }, + { + "path": "svg/libation.svg", + "mode": "100644", + "type": "blob", + "sha": "bf9949601368d1eb96b774718d30bcd7bebcd005", + "size": 1213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf9949601368d1eb96b774718d30bcd7bebcd005" + }, + { + "path": "svg/librechat.svg", + "mode": "100644", + "type": "blob", + "sha": "e2d7701669772b509088607875fb30f8c748c15d", + "size": 5756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2d7701669772b509088607875fb30f8c748c15d" + }, + { + "path": "svg/libreddit-light.svg", + "mode": "100644", + "type": "blob", + "sha": "281b3960a16446849e33883f27eecd1e4b4b9131", + "size": 1812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/281b3960a16446849e33883f27eecd1e4b4b9131" + }, + { + "path": "svg/libreddit.svg", + "mode": "100644", + "type": "blob", + "sha": "8af3cccc9a32a0bf3bc20805d36513547d4f0db2", + "size": 1767, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8af3cccc9a32a0bf3bc20805d36513547d4f0db2" + }, + { + "path": "svg/librenms.svg", + "mode": "100644", + "type": "blob", + "sha": "4b3745a156f9648bc58925ba83742cdaa5210c26", + "size": 1237, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b3745a156f9648bc58925ba83742cdaa5210c26" + }, + { + "path": "svg/libreoffice-light.svg", + "mode": "100644", + "type": "blob", + "sha": "10719417070d8b63c284900649a397e48cb1612a", + "size": 697, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10719417070d8b63c284900649a397e48cb1612a" + }, + { + "path": "svg/libreoffice.svg", + "mode": "100755", + "type": "blob", + "sha": "a0195d6c25449d99053a3004fc015a1c7e0bfebd", + "size": 673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0195d6c25449d99053a3004fc015a1c7e0bfebd" + }, + { + "path": "svg/librespeed-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a5031aab404f3d48724c7320a25885e4f9aca480", + "size": 3932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5031aab404f3d48724c7320a25885e4f9aca480" + }, + { + "path": "svg/librespeed.svg", + "mode": "100755", + "type": "blob", + "sha": "cb28e21d49b29e4d3a485ad638e3d001e3b29e69", + "size": 3854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb28e21d49b29e4d3a485ad638e3d001e3b29e69" + }, + { + "path": "svg/librewolf.svg", + "mode": "100755", + "type": "blob", + "sha": "5133dfbc592338b9b8d07662618fa92875f82e05", + "size": 1885, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5133dfbc592338b9b8d07662618fa92875f82e05" + }, + { + "path": "svg/librum.svg", + "mode": "100755", + "type": "blob", + "sha": "c9213cc9b83c8e698d513f0b65a5fb87454bc119", + "size": 418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9213cc9b83c8e698d513f0b65a5fb87454bc119" + }, + { + "path": "svg/lichess-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "228a4848d448e87813074846ab9029c1fb88ab1d", + "size": 2577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/228a4848d448e87813074846ab9029c1fb88ab1d" + }, + { + "path": "svg/lichess.svg", + "mode": "100644", + "type": "blob", + "sha": "004c805c140e7d8f6f35bbb33e32cc15cd57c14f", + "size": 2577, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/004c805c140e7d8f6f35bbb33e32cc15cd57c14f" + }, + { + "path": "svg/lidarr.svg", + "mode": "100755", + "type": "blob", + "sha": "0332ddf2dfc701e4a32021482f8d097d83bc9d84", + "size": 43360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0332ddf2dfc701e4a32021482f8d097d83bc9d84" + }, + { + "path": "svg/lidl.svg", + "mode": "100644", + "type": "blob", + "sha": "24ba6e42208bf7d6bb75021d219f5ff5c1fe169d", + "size": 1353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24ba6e42208bf7d6bb75021d219f5ff5c1fe169d" + }, + { + "path": "svg/lighttpd.svg", + "mode": "100644", + "type": "blob", + "sha": "72ccd8263cb897ba26b9e071238137b95b6617cd", + "size": 467, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72ccd8263cb897ba26b9e071238137b95b6617cd" + }, + { + "path": "svg/limesurvey.svg", + "mode": "100755", + "type": "blob", + "sha": "70bd7eb9afd3088c9dabd7845b4bbe6979c36195", + "size": 3217, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70bd7eb9afd3088c9dabd7845b4bbe6979c36195" + }, + { + "path": "svg/linear-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "be290ce12ceaf6d6c4a87240f19bc6defc76dde6", + "size": 1057, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be290ce12ceaf6d6c4a87240f19bc6defc76dde6" + }, + { + "path": "svg/linear.svg", + "mode": "100644", + "type": "blob", + "sha": "bb830fd5ead3d7907cd98d7474b4c0666ada634b", + "size": 1060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb830fd5ead3d7907cd98d7474b4c0666ada634b" + }, + { + "path": "svg/linguacafe.svg", + "mode": "100755", + "type": "blob", + "sha": "ad9a2b532bff7e3a06b9e0d5dcd449ec2487c41b", + "size": 1576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad9a2b532bff7e3a06b9e0d5dcd449ec2487c41b" + }, + { + "path": "svg/linkace.svg", + "mode": "100755", + "type": "blob", + "sha": "18d76da7170c21a89e68369312f43f0e80edf88e", + "size": 839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18d76da7170c21a89e68369312f43f0e80edf88e" + }, + { + "path": "svg/linkding.svg", + "mode": "100755", + "type": "blob", + "sha": "131fe177349e828e0078bc0738a17916e2761cd4", + "size": 541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/131fe177349e828e0078bc0738a17916e2761cd4" + }, + { + "path": "svg/linkedin.svg", + "mode": "100755", + "type": "blob", + "sha": "3bc0d474f48364116eb5dd65b5d1d7bb6270f2c0", + "size": 627, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bc0d474f48364116eb5dd65b5d1d7bb6270f2c0" + }, + { + "path": "svg/linkstack.svg", + "mode": "100755", + "type": "blob", + "sha": "e30b0a3127740bbf4a1bca5079d0348a6275e928", + "size": 2976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e30b0a3127740bbf4a1bca5079d0348a6275e928" + }, + { + "path": "svg/linode.svg", + "mode": "100644", + "type": "blob", + "sha": "57b8b0ca662f4e302f90c96519b255b2c331ef5e", + "size": 4802, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57b8b0ca662f4e302f90c96519b255b2c331ef5e" + }, + { + "path": "svg/linux-mint.svg", + "mode": "100644", + "type": "blob", + "sha": "f86a66d928ff853dfee8737edec33c8962865687", + "size": 528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f86a66d928ff853dfee8737edec33c8962865687" + }, + { + "path": "svg/linux.svg", + "mode": "100755", + "type": "blob", + "sha": "70c7a5ab4007d3b2ffcdd11e9343146190a33c1e", + "size": 72354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70c7a5ab4007d3b2ffcdd11e9343146190a33c1e" + }, + { + "path": "svg/linuxdo.svg", + "mode": "100644", + "type": "blob", + "sha": "f648f5427d4afcc0883680f52fedb494d5566695", + "size": 533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f648f5427d4afcc0883680f52fedb494d5566695" + }, + { + "path": "svg/linuxgsm.svg", + "mode": "100755", + "type": "blob", + "sha": "eef97bc132c0a1c4f720573ddce24f8feae97f63", + "size": 2471, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eef97bc132c0a1c4f720573ddce24f8feae97f63" + }, + { + "path": "svg/linuxserver-io.svg", + "mode": "100755", + "type": "blob", + "sha": "b7a0586dfdb26bc21938e1fdbf27dc31b5676b1a", + "size": 6674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7a0586dfdb26bc21938e1fdbf27dc31b5676b1a" + }, + { + "path": "svg/liremdb.svg", + "mode": "100644", + "type": "blob", + "sha": "b44db6ac81aeb3dff06332cfe639e00164887adf", + "size": 1570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b44db6ac81aeb3dff06332cfe639e00164887adf" + }, + { + "path": "svg/listenbrainz.svg", + "mode": "100644", + "type": "blob", + "sha": "9d379a83b4d60301dfb0eb594e8fdc6e49145870", + "size": 17388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d379a83b4d60301dfb0eb594e8fdc6e49145870" + }, + { + "path": "svg/listmonk.svg", + "mode": "100755", + "type": "blob", + "sha": "778263b766bd9eb4d548abb3f8c4e2405def5e40", + "size": 204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/778263b766bd9eb4d548abb3f8c4e2405def5e40" + }, + { + "path": "svg/lite-speed.svg", + "mode": "100644", + "type": "blob", + "sha": "c576ad51a8ffcabf6da29c4d674c66f366d8af2a", + "size": 2638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c576ad51a8ffcabf6da29c4d674c66f366d8af2a" + }, + { + "path": "svg/littlelink-custom.svg", + "mode": "100644", + "type": "blob", + "sha": "94b2df0cc836d3495da88fdb175275ae7ddcb9b5", + "size": 8504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94b2df0cc836d3495da88fdb175275ae7ddcb9b5" + }, + { + "path": "svg/livebook.svg", + "mode": "100644", + "type": "blob", + "sha": "4876457397bca9bb14f97177b28e5fa810c36bfd", + "size": 7278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4876457397bca9bb14f97177b28e5fa810c36bfd" + }, + { + "path": "svg/lldap-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "a818b5ce5fe633dedb1f4d99f219f46dac984a34", + "size": 1662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a818b5ce5fe633dedb1f4d99f219f46dac984a34" + }, + { + "path": "svg/lldap.svg", + "mode": "100644", + "type": "blob", + "sha": "2e1e7c4d777b15f9fb74bade095091d1e24a04e7", + "size": 1662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e1e7c4d777b15f9fb74bade095091d1e24a04e7" + }, + { + "path": "svg/lms-mixtape.svg", + "mode": "100644", + "type": "blob", + "sha": "c1a99e7d41ddeedafb2348baf60a0b19dcb5e0ad", + "size": 3715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1a99e7d41ddeedafb2348baf60a0b19dcb5e0ad" + }, + { + "path": "svg/lnbits.svg", + "mode": "100644", + "type": "blob", + "sha": "f4f206a09f55ff1f507dac0c5905205a93b18002", + "size": 296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4f206a09f55ff1f507dac0c5905205a93b18002" + }, + { + "path": "svg/lobe-chat.svg", + "mode": "100644", + "type": "blob", + "sha": "3fc837d0cb44b31eb1504f1ba8532de86ba7686b", + "size": 3146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3fc837d0cb44b31eb1504f1ba8532de86ba7686b" + }, + { + "path": "svg/local-content-share.svg", + "mode": "100644", + "type": "blob", + "sha": "71ba14061f8d207943221791ed28275c26f5081d", + "size": 126229, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71ba14061f8d207943221791ed28275c26f5081d" + }, + { + "path": "svg/local-xpose.svg", + "mode": "100644", + "type": "blob", + "sha": "67feca9856a49dd02499c367e8f93ee7dc2eee51", + "size": 8039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67feca9856a49dd02499c367e8f93ee7dc2eee51" + }, + { + "path": "svg/locals-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1d141dc19e93b922e7cfa2e70c7e418c647da91b", + "size": 420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d141dc19e93b922e7cfa2e70c7e418c647da91b" + }, + { + "path": "svg/locals.svg", + "mode": "100644", + "type": "blob", + "sha": "84fac3b2b7d59747062ebb4ea4a861a2ce6076cd", + "size": 408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84fac3b2b7d59747062ebb4ea4a861a2ce6076cd" + }, + { + "path": "svg/lodestone.svg", + "mode": "100755", + "type": "blob", + "sha": "d29eaf6b9f8a47a708a9db2486498fe66f044a20", + "size": 4524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d29eaf6b9f8a47a708a9db2486498fe66f044a20" + }, + { + "path": "svg/logitech-gaming.svg", + "mode": "100644", + "type": "blob", + "sha": "048989496911cc5d40107db19f38d34ceba9be99", + "size": 548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/048989496911cc5d40107db19f38d34ceba9be99" + }, + { + "path": "svg/logitech-legacy.svg", + "mode": "100644", + "type": "blob", + "sha": "b1a2903e686c165fe9af56f0c900850c9770d0d0", + "size": 6024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1a2903e686c165fe9af56f0c900850c9770d0d0" + }, + { + "path": "svg/logitech-light.svg", + "mode": "100644", + "type": "blob", + "sha": "546ed200c51a9a379904b36a557479425e1e0085", + "size": 988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/546ed200c51a9a379904b36a557479425e1e0085" + }, + { + "path": "svg/logitech.svg", + "mode": "100644", + "type": "blob", + "sha": "1adc7d112e90601e7f59a5a009e8a18c7b2164fd", + "size": 988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1adc7d112e90601e7f59a5a009e8a18c7b2164fd" + }, + { + "path": "svg/logseq.svg", + "mode": "100755", + "type": "blob", + "sha": "1ef293972dda807109977ec3047112a981f99f95", + "size": 733, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ef293972dda807109977ec3047112a981f99f95" + }, + { + "path": "svg/logstash.svg", + "mode": "100644", + "type": "blob", + "sha": "0994521a57f0675133ebc2914e02466ed6d763b1", + "size": 392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0994521a57f0675133ebc2914e02466ed6d763b1" + }, + { + "path": "svg/logto.svg", + "mode": "100755", + "type": "blob", + "sha": "ef2cc3cc15a3759414fa56764ceac3e0778559fa", + "size": 1204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef2cc3cc15a3759414fa56764ceac3e0778559fa" + }, + { + "path": "svg/loki.svg", + "mode": "100755", + "type": "blob", + "sha": "25538f20e538208137125c9cf3c27ad7c7539bb5", + "size": 4994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25538f20e538208137125c9cf3c27ad7c7539bb5" + }, + { + "path": "svg/longhorn.svg", + "mode": "100644", + "type": "blob", + "sha": "0c20fd3b9c5797374438470feae814b180f790fd", + "size": 1533, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c20fd3b9c5797374438470feae814b180f790fd" + }, + { + "path": "svg/lostack.svg", + "mode": "100644", + "type": "blob", + "sha": "04d852cbb23e129e44bf851b92b21285b94cd752", + "size": 2777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04d852cbb23e129e44bf851b92b21285b94cd752" + }, + { + "path": "svg/loxone-full.svg", + "mode": "100644", + "type": "blob", + "sha": "dc8f69db6b5f47d67c8ee5ee6ec4945897edfb7c", + "size": 2160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc8f69db6b5f47d67c8ee5ee6ec4945897edfb7c" + }, + { + "path": "svg/loxone.svg", + "mode": "100644", + "type": "blob", + "sha": "194d155d61eea19fa69eac571f7ebe5444488390", + "size": 2282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/194d155d61eea19fa69eac571f7ebe5444488390" + }, + { + "path": "svg/lua.svg", + "mode": "100644", + "type": "blob", + "sha": "10240873d0562205b1bbe56168c20db3d621c0fa", + "size": 1441, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10240873d0562205b1bbe56168c20db3d621c0fa" + }, + { + "path": "svg/lubuntu-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "d6e020653c9f983bd1d2b6f608be225d7e577612", + "size": 1178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6e020653c9f983bd1d2b6f608be225d7e577612" + }, + { + "path": "svg/ludus-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "2e3bae5de506ea03856f769b7caa67609ba6e1ae", + "size": 21136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e3bae5de506ea03856f769b7caa67609ba6e1ae" + }, + { + "path": "svg/ludus.svg", + "mode": "100644", + "type": "blob", + "sha": "742e321488c5126e5895aa91add746129e9848c9", + "size": 21136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/742e321488c5126e5895aa91add746129e9848c9" + }, + { + "path": "svg/lunalytics.svg", + "mode": "100644", + "type": "blob", + "sha": "2d8813b48a79cb58e3b24da57d37224b9d33b7ec", + "size": 4432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d8813b48a79cb58e3b24da57d37224b9d33b7ec" + }, + { + "path": "svg/lunasea.svg", + "mode": "100755", + "type": "blob", + "sha": "d3a6a3654840369c84ae1363cdc3eeb1ee0afe36", + "size": 435, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3a6a3654840369c84ae1363cdc3eeb1ee0afe36" + }, + { + "path": "svg/luxriot.svg", + "mode": "100644", + "type": "blob", + "sha": "af19a964fafdcaa94a58263daf5aea4d94f80593", + "size": 3112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af19a964fafdcaa94a58263daf5aea4d94f80593" + }, + { + "path": "svg/lynx-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c1fb778db94c82dbc5f5112af0e3f69969834873", + "size": 23668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1fb778db94c82dbc5f5112af0e3f69969834873" + }, + { + "path": "svg/lynx.svg", + "mode": "100644", + "type": "blob", + "sha": "7fe02737a1f05e0cc9f575b4999e2223a1d10621", + "size": 23671, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fe02737a1f05e0cc9f575b4999e2223a1d10621" + }, + { + "path": "svg/lyrion-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "824a5581bf7b41c4ed44baaefab8bac439b807a9", + "size": 1369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/824a5581bf7b41c4ed44baaefab8bac439b807a9" + }, + { + "path": "svg/lyrion.svg", + "mode": "100644", + "type": "blob", + "sha": "f0972854fe57e0b8efc6844a43ccc31fcf289497", + "size": 1373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0972854fe57e0b8efc6844a43ccc31fcf289497" + }, + { + "path": "svg/macmon.svg", + "mode": "100644", + "type": "blob", + "sha": "6d35000916e21344b8e9073df347367aba69fcad", + "size": 1017, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d35000916e21344b8e9073df347367aba69fcad" + }, + { + "path": "svg/mail-in-a-box.svg", + "mode": "100755", + "type": "blob", + "sha": "0a9b15f7a9f75a50b62285199c939eba3c41725b", + "size": 1760, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a9b15f7a9f75a50b62285199c939eba3c41725b" + }, + { + "path": "svg/mailchimp-light.svg", + "mode": "100644", + "type": "blob", + "sha": "55b216de65308d33845cefaafb84f4568d85c7f2", + "size": 3597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55b216de65308d33845cefaafb84f4568d85c7f2" + }, + { + "path": "svg/mailchimp.svg", + "mode": "100755", + "type": "blob", + "sha": "3043695e492e8a32400375f12cf645febcb8d4eb", + "size": 3597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3043695e492e8a32400375f12cf645febcb8d4eb" + }, + { + "path": "svg/mailcow.svg", + "mode": "100755", + "type": "blob", + "sha": "ee864435d0b79c0b8102054eb4cf0b914c5e0db3", + "size": 6732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee864435d0b79c0b8102054eb4cf0b914c5e0db3" + }, + { + "path": "svg/mailfence.svg", + "mode": "100644", + "type": "blob", + "sha": "dc9540007c252d94bcc9da68c975ea2b7b3a536f", + "size": 1006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc9540007c252d94bcc9da68c975ea2b7b3a536f" + }, + { + "path": "svg/mailgun.svg", + "mode": "100755", + "type": "blob", + "sha": "d008efd764e151592e56a3774570ef7726978b6c", + "size": 751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d008efd764e151592e56a3774570ef7726978b6c" + }, + { + "path": "svg/mailjet.svg", + "mode": "100755", + "type": "blob", + "sha": "4c6e040601cc845081f9d9fa347133fbb3d432da", + "size": 494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c6e040601cc845081f9d9fa347133fbb3d432da" + }, + { + "path": "svg/mailpit.svg", + "mode": "100644", + "type": "blob", + "sha": "58675a267bbc21f8daeeb3bd74f5776071a55c10", + "size": 828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58675a267bbc21f8daeeb3bd74f5776071a55c10" + }, + { + "path": "svg/mainsail.svg", + "mode": "100755", + "type": "blob", + "sha": "6104c91b7b8b4aa679cb6a7c5993ffcdd9c73b5c", + "size": 330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6104c91b7b8b4aa679cb6a7c5993ffcdd9c73b5c" + }, + { + "path": "svg/maintainerr.svg", + "mode": "100755", + "type": "blob", + "sha": "78a3079a65e341c722b9a8c79243b83ae1756dda", + "size": 68637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78a3079a65e341c722b9a8c79243b83ae1756dda" + }, + { + "path": "svg/maker-world-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "f8ec816200096f84f523dfc2d80d91afff6c4bc7", + "size": 1106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8ec816200096f84f523dfc2d80d91afff6c4bc7" + }, + { + "path": "svg/maker-world.svg", + "mode": "100644", + "type": "blob", + "sha": "b407d932962bd0b90b82908128e16228d65496c9", + "size": 1105, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b407d932962bd0b90b82908128e16228d65496c9" + }, + { + "path": "svg/manga-dex.svg", + "mode": "100644", + "type": "blob", + "sha": "8c273d3679b6fb0e19f1d08314ff76bb83d2a7e5", + "size": 5138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c273d3679b6fb0e19f1d08314ff76bb83d2a7e5" + }, + { + "path": "svg/manjaro-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "0cc4e90ed28e78c328b936e2c8fcb516233cda41", + "size": 170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cc4e90ed28e78c328b936e2c8fcb516233cda41" + }, + { + "path": "svg/many-notes.svg", + "mode": "100644", + "type": "blob", + "sha": "cdb69b58172059c5f8489fc20c997515359117e0", + "size": 2673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdb69b58172059c5f8489fc20c997515359117e0" + }, + { + "path": "svg/manyfold.svg", + "mode": "100755", + "type": "blob", + "sha": "09ee1878d731d1cdee81f5864d69a07e8273e82c", + "size": 36784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09ee1878d731d1cdee81f5864d69a07e8273e82c" + }, + { + "path": "svg/maptiler.svg", + "mode": "100644", + "type": "blob", + "sha": "1f7ff549c2577502285a94b68c054babd767d1b0", + "size": 1133, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f7ff549c2577502285a94b68c054babd767d1b0" + }, + { + "path": "svg/mariadb.svg", + "mode": "100755", + "type": "blob", + "sha": "33794b126980c67899d4b0152aa0731d2da4fc45", + "size": 2387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33794b126980c67899d4b0152aa0731d2da4fc45" + }, + { + "path": "svg/marimo.svg", + "mode": "100644", + "type": "blob", + "sha": "054560a6eb5646a6befb998e0d4eaf7bee35110a", + "size": 15248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/054560a6eb5646a6befb998e0d4eaf7bee35110a" + }, + { + "path": "svg/marktplaats.svg", + "mode": "100644", + "type": "blob", + "sha": "3d9c83d99741106bf8223a1622ab6989ab5cb006", + "size": 487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d9c83d99741106bf8223a1622ab6989ab5cb006" + }, + { + "path": "svg/mastodon.svg", + "mode": "100755", + "type": "blob", + "sha": "d425c0c18657b8f4124fbea6acf4f00787d3658e", + "size": 1421, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d425c0c18657b8f4124fbea6acf4f00787d3658e" + }, + { + "path": "svg/matomo.svg", + "mode": "100755", + "type": "blob", + "sha": "13d0a04f5c7598d3f4163e9c990afe5e1cfea2b3", + "size": 2312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13d0a04f5c7598d3f4163e9c990afe5e1cfea2b3" + }, + { + "path": "svg/matrix-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c6353752c18577f2c644a9ae2710e8fb11c4f2b8", + "size": 921, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6353752c18577f2c644a9ae2710e8fb11c4f2b8" + }, + { + "path": "svg/matrix-synapse-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1e7ca275248a97b371a9c996cca27052eeb3f97c", + "size": 301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e7ca275248a97b371a9c996cca27052eeb3f97c" + }, + { + "path": "svg/matrix-synapse.svg", + "mode": "100644", + "type": "blob", + "sha": "d33d61d1a9bbb0db95e1596e42b345381521791c", + "size": 289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d33d61d1a9bbb0db95e1596e42b345381521791c" + }, + { + "path": "svg/matrix.svg", + "mode": "100755", + "type": "blob", + "sha": "ad3d664d37ab61f3bcd8f473c0527469b5a9576b", + "size": 924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad3d664d37ab61f3bcd8f473c0527469b5a9576b" + }, + { + "path": "svg/matter-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c80d48723f6016b7f07944e155160fbb2ce600f2", + "size": 534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c80d48723f6016b7f07944e155160fbb2ce600f2" + }, + { + "path": "svg/matter.svg", + "mode": "100644", + "type": "blob", + "sha": "30dd95540e05186c7cf81c438f4860e63d66510d", + "size": 537, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30dd95540e05186c7cf81c438f4860e63d66510d" + }, + { + "path": "svg/matterbridge.svg", + "mode": "100644", + "type": "blob", + "sha": "f9d9b3fe465ccaf601ec37cd7f56572da4e0854b", + "size": 4171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9d9b3fe465ccaf601ec37cd7f56572da4e0854b" + }, + { + "path": "svg/mattermost.svg", + "mode": "100755", + "type": "blob", + "sha": "11c1feeea3653ca6cf172c42f4bc64d0e61725da", + "size": 819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11c1feeea3653ca6cf172c42f4bc64d0e61725da" + }, + { + "path": "svg/mautic.svg", + "mode": "100755", + "type": "blob", + "sha": "d3db3fec9d1342c98d3d6bd16ba4122458597330", + "size": 664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3db3fec9d1342c98d3d6bd16ba4122458597330" + }, + { + "path": "svg/max.svg", + "mode": "100755", + "type": "blob", + "sha": "1c4c2f97180c8e4bedc32d2b1f530d74d135da92", + "size": 978, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c4c2f97180c8e4bedc32d2b1f530d74d135da92" + }, + { + "path": "svg/mayan-edms-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3c1a125c3eb2e4bc136e2bcb1be25bb0a5dc4f7b", + "size": 5608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c1a125c3eb2e4bc136e2bcb1be25bb0a5dc4f7b" + }, + { + "path": "svg/mayan-edms.svg", + "mode": "100755", + "type": "blob", + "sha": "d93c9b7f47dc9ccabfcb8d76b02dba11b17991d0", + "size": 5589, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d93c9b7f47dc9ccabfcb8d76b02dba11b17991d0" + }, + { + "path": "svg/maybe.svg", + "mode": "100755", + "type": "blob", + "sha": "6fe1f99626e70c73deada3ece7af18e6d981873f", + "size": 1366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fe1f99626e70c73deada3ece7af18e6d981873f" + }, + { + "path": "svg/mbin.svg", + "mode": "100755", + "type": "blob", + "sha": "2d48329041a82ea4f3b799b64d0bee77f02aef04", + "size": 1337, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d48329041a82ea4f3b799b64d0bee77f02aef04" + }, + { + "path": "svg/mealie.svg", + "mode": "100755", + "type": "blob", + "sha": "1655a049a595299d8ae412fb409f4e86213041eb", + "size": 1238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1655a049a595299d8ae412fb409f4e86213041eb" + }, + { + "path": "svg/medama.svg", + "mode": "100755", + "type": "blob", + "sha": "d61dbddb73d1bf4ee5a182b335019293b4df6033", + "size": 1218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d61dbddb73d1bf4ee5a182b335019293b4df6033" + }, + { + "path": "svg/media-manager.svg", + "mode": "100644", + "type": "blob", + "sha": "70e3e36a4958dbf894625238551fa458b9572c13", + "size": 4390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70e3e36a4958dbf894625238551fa458b9572c13" + }, + { + "path": "svg/mediathekview.svg", + "mode": "100644", + "type": "blob", + "sha": "500b6dd538a05ce998276e37c5dcaf26460d7921", + "size": 6802, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/500b6dd538a05ce998276e37c5dcaf26460d7921" + }, + { + "path": "svg/mediawiki.svg", + "mode": "100644", + "type": "blob", + "sha": "4067b48408bcf3ccb3b9bbf77d4ebc02a2f93d9e", + "size": 10487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4067b48408bcf3ccb3b9bbf77d4ebc02a2f93d9e" + }, + { + "path": "svg/medium-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "c1999c2cc4c84d2e7816fc424e087ceac4b07b80", + "size": 546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1999c2cc4c84d2e7816fc424e087ceac4b07b80" + }, + { + "path": "svg/medium-light.svg", + "mode": "100755", + "type": "blob", + "sha": "aa40ce1be8f02f33e0b0a8fccd40cac70d18161f", + "size": 591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa40ce1be8f02f33e0b0a8fccd40cac70d18161f" + }, + { + "path": "svg/mediux.svg", + "mode": "100755", + "type": "blob", + "sha": "df2477965eb8e69bd1624b6ab039e2877b8b9a1f", + "size": 1176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df2477965eb8e69bd1624b6ab039e2877b8b9a1f" + }, + { + "path": "svg/medusa-light.svg", + "mode": "100644", + "type": "blob", + "sha": "117b1f96be4bdab0a75297c018813b6dc589b729", + "size": 463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/117b1f96be4bdab0a75297c018813b6dc589b729" + }, + { + "path": "svg/medusa.svg", + "mode": "100755", + "type": "blob", + "sha": "dc47190e6810e80dc319535c0fecb31be63ba5de", + "size": 466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc47190e6810e80dc319535c0fecb31be63ba5de" + }, + { + "path": "svg/mega-nz-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "2b0a4e3c4bfe5d511ef68bc2ac41f93975834a2c", + "size": 252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b0a4e3c4bfe5d511ef68bc2ac41f93975834a2c" + }, + { + "path": "svg/mega-nz.svg", + "mode": "100644", + "type": "blob", + "sha": "6efb1249bdf8919d369f2fa50cd7cdba95c89864", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6efb1249bdf8919d369f2fa50cd7cdba95c89864" + }, + { + "path": "svg/meilisearch.svg", + "mode": "100755", + "type": "blob", + "sha": "4bb02a99f52e2b01dcdc1bfa792ee85cb4c34de6", + "size": 1255, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4bb02a99f52e2b01dcdc1bfa792ee85cb4c34de6" + }, + { + "path": "svg/memories-light.svg", + "mode": "100644", + "type": "blob", + "sha": "cac848cc636ddc1c778139900f59d8daadddc95a", + "size": 4571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cac848cc636ddc1c778139900f59d8daadddc95a" + }, + { + "path": "svg/memories.svg", + "mode": "100755", + "type": "blob", + "sha": "bdd382e66b8502e5062ddeac6d2a7d0430a6c6f3", + "size": 4547, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdd382e66b8502e5062ddeac6d2a7d0430a6c6f3" + }, + { + "path": "svg/meraki.svg", + "mode": "100644", + "type": "blob", + "sha": "1ae286c550b608a233de680debf7cd5ede51e1c4", + "size": 2817, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ae286c550b608a233de680debf7cd5ede51e1c4" + }, + { + "path": "svg/mercusys.svg", + "mode": "100644", + "type": "blob", + "sha": "9c38eec81477fe95879d7815987ee33feb3b61e0", + "size": 7895, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c38eec81477fe95879d7815987ee33feb3b61e0" + }, + { + "path": "svg/mergeable-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "cd09a053388510bd0e14cc5d95a7df02d064d012", + "size": 815, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd09a053388510bd0e14cc5d95a7df02d064d012" + }, + { + "path": "svg/mergeable.svg", + "mode": "100755", + "type": "blob", + "sha": "be1e4b5ff6c01b4794673f4940a7d6d385006839", + "size": 821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be1e4b5ff6c01b4794673f4940a7d6d385006839" + }, + { + "path": "svg/meshping-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4dc2aedbf4dbc61571dfbeb2f299bc256802f09b", + "size": 844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4dc2aedbf4dbc61571dfbeb2f299bc256802f09b" + }, + { + "path": "svg/meshping.svg", + "mode": "100755", + "type": "blob", + "sha": "d7fa6ad6ff3e39b80af123f87f7a570b2cb8cc59", + "size": 832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7fa6ad6ff3e39b80af123f87f7a570b2cb8cc59" + }, + { + "path": "svg/meshtastic.svg", + "mode": "100644", + "type": "blob", + "sha": "451ae8562bf7c5fca37580a5ec5888dbad6c8e42", + "size": 1118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/451ae8562bf7c5fca37580a5ec5888dbad6c8e42" + }, + { + "path": "svg/meta.svg", + "mode": "100644", + "type": "blob", + "sha": "fcead56e320505c716fb136f52f148686da12942", + "size": 1918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcead56e320505c716fb136f52f148686da12942" + }, + { + "path": "svg/metabase.svg", + "mode": "100755", + "type": "blob", + "sha": "a0f2994b8674b3c2547e278bc22126c9fd935fbb", + "size": 1590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0f2994b8674b3c2547e278bc22126c9fd935fbb" + }, + { + "path": "svg/metabrainz.svg", + "mode": "100644", + "type": "blob", + "sha": "7739f855b79c56dfab061ad9a2555359710c3a1f", + "size": 21057, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7739f855b79c56dfab061ad9a2555359710c3a1f" + }, + { + "path": "svg/metallb.svg", + "mode": "100644", + "type": "blob", + "sha": "80f8653ea4292d54d319b5661403b9acbaaa112c", + "size": 958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80f8653ea4292d54d319b5661403b9acbaaa112c" + }, + { + "path": "svg/metube.svg", + "mode": "100755", + "type": "blob", + "sha": "f2c8877cd725554e7bcf50a3867ab889224e0d76", + "size": 865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2c8877cd725554e7bcf50a3867ab889224e0d76" + }, + { + "path": "svg/microsoft-365-admin-center.svg", + "mode": "100644", + "type": "blob", + "sha": "355d76f9f3265d03e848839784cbf7da5f6ad262", + "size": 2095, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/355d76f9f3265d03e848839784cbf7da5f6ad262" + }, + { + "path": "svg/microsoft-365.svg", + "mode": "100755", + "type": "blob", + "sha": "d2bb40d578c0d122ddd93cad9f34304876b84faf", + "size": 3208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2bb40d578c0d122ddd93cad9f34304876b84faf" + }, + { + "path": "svg/microsoft-access.svg", + "mode": "100755", + "type": "blob", + "sha": "f11974c519247be5c6f75d8e2ac71e3cd7af3462", + "size": 1643, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f11974c519247be5c6f75d8e2ac71e3cd7af3462" + }, + { + "path": "svg/microsoft-azure.svg", + "mode": "100644", + "type": "blob", + "sha": "8c50bac898f9911c04a90b67175a7adaada914c4", + "size": 1662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c50bac898f9911c04a90b67175a7adaada914c4" + }, + { + "path": "svg/microsoft-bing.svg", + "mode": "100755", + "type": "blob", + "sha": "9941e5d495d06fcd99c34ab6098332d8d0c847b5", + "size": 2985, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9941e5d495d06fcd99c34ab6098332d8d0c847b5" + }, + { + "path": "svg/microsoft-copilot.svg", + "mode": "100755", + "type": "blob", + "sha": "e98e891e4b98d30b22e287a78824f4ea14234190", + "size": 3296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e98e891e4b98d30b22e287a78824f4ea14234190" + }, + { + "path": "svg/microsoft-defender.svg", + "mode": "100644", + "type": "blob", + "sha": "bcf9988ddb1d39e05c537a772e00c37fafe33046", + "size": 1964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcf9988ddb1d39e05c537a772e00c37fafe33046" + }, + { + "path": "svg/microsoft-edge.svg", + "mode": "100755", + "type": "blob", + "sha": "82159a6adbcf4d1d44891e178567a38572090d6a", + "size": 4074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82159a6adbcf4d1d44891e178567a38572090d6a" + }, + { + "path": "svg/microsoft-excel.svg", + "mode": "100755", + "type": "blob", + "sha": "bd8133d066e7b92625d1e53641ae2f3169ee137d", + "size": 1785, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd8133d066e7b92625d1e53641ae2f3169ee137d" + }, + { + "path": "svg/microsoft-exchange.svg", + "mode": "100644", + "type": "blob", + "sha": "fba7bfa9681178b057a626097c9863d15f75d191", + "size": 1288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fba7bfa9681178b057a626097c9863d15f75d191" + }, + { + "path": "svg/microsoft-intune.svg", + "mode": "100644", + "type": "blob", + "sha": "eb23892c39e322585265fbc688f3b981c99cd3e7", + "size": 6162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb23892c39e322585265fbc688f3b981c99cd3e7" + }, + { + "path": "svg/microsoft-office.svg", + "mode": "100644", + "type": "blob", + "sha": "d91834d4ad5c930d67a3611892b45bc1285f6bba", + "size": 3010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d91834d4ad5c930d67a3611892b45bc1285f6bba" + }, + { + "path": "svg/microsoft-onedrive.svg", + "mode": "100755", + "type": "blob", + "sha": "a6de70f6d02049ce1d2d5a0e93b3b84fa5ccd2c4", + "size": 823, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6de70f6d02049ce1d2d5a0e93b3b84fa5ccd2c4" + }, + { + "path": "svg/microsoft-onenote.svg", + "mode": "100755", + "type": "blob", + "sha": "ed22f95977d6a8b9d7b870224cb5f584e2efb607", + "size": 1663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed22f95977d6a8b9d7b870224cb5f584e2efb607" + }, + { + "path": "svg/microsoft-outlook.svg", + "mode": "100755", + "type": "blob", + "sha": "1db09e04a1240ad08d0777a8a0ca87b26ae613e8", + "size": 4365, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1db09e04a1240ad08d0777a8a0ca87b26ae613e8" + }, + { + "path": "svg/microsoft-power-automate.svg", + "mode": "100644", + "type": "blob", + "sha": "afb80137000ab702f4072c7a4527369f6f30f028", + "size": 2253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afb80137000ab702f4072c7a4527369f6f30f028" + }, + { + "path": "svg/microsoft-powerpoint.svg", + "mode": "100755", + "type": "blob", + "sha": "40c971bc89b04242dd1ee4b87f5752e041fa1b70", + "size": 2090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40c971bc89b04242dd1ee4b87f5752e041fa1b70" + }, + { + "path": "svg/microsoft-sharepoint.svg", + "mode": "100755", + "type": "blob", + "sha": "ecdbb71746588aa76c8f987a56907344a3ffd677", + "size": 2483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecdbb71746588aa76c8f987a56907344a3ffd677" + }, + { + "path": "svg/microsoft-sql-server-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4d474df0dc1e436b23018bc840316d5c2e94430a", + "size": 14748, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d474df0dc1e436b23018bc840316d5c2e94430a" + }, + { + "path": "svg/microsoft-sql-server.svg", + "mode": "100644", + "type": "blob", + "sha": "b23e83d4bd3676b7f8e19824eae6f33ac7b7b279", + "size": 14715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b23e83d4bd3676b7f8e19824eae6f33ac7b7b279" + }, + { + "path": "svg/microsoft-teams.svg", + "mode": "100755", + "type": "blob", + "sha": "0ed11a944be2b73e514d298270b053c64bbc928c", + "size": 2421, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ed11a944be2b73e514d298270b053c64bbc928c" + }, + { + "path": "svg/microsoft-to-do.svg", + "mode": "100755", + "type": "blob", + "sha": "05596ecfaaa5900535061833c7951e1b43b0ba7a", + "size": 736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05596ecfaaa5900535061833c7951e1b43b0ba7a" + }, + { + "path": "svg/microsoft-windows.svg", + "mode": "100755", + "type": "blob", + "sha": "9d1adb5e5555457e6896a3665868b2941fc93e2f", + "size": 209, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d1adb5e5555457e6896a3665868b2941fc93e2f" + }, + { + "path": "svg/microsoft-word.svg", + "mode": "100755", + "type": "blob", + "sha": "65d2be7b0e7ede908d47b37e19906f5c10726769", + "size": 1859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65d2be7b0e7ede908d47b37e19906f5c10726769" + }, + { + "path": "svg/microsoft.svg", + "mode": "100755", + "type": "blob", + "sha": "5a10e110b58c67a54ccaf597b915653d6e042210", + "size": 387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a10e110b58c67a54ccaf597b915653d6e042210" + }, + { + "path": "svg/mikrotik-light.svg", + "mode": "100644", + "type": "blob", + "sha": "03c041a61714cdda5c69807e99292dfa2934d679", + "size": 1322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03c041a61714cdda5c69807e99292dfa2934d679" + }, + { + "path": "svg/mikrotik.svg", + "mode": "100644", + "type": "blob", + "sha": "cb3a19472ae4a8d111ecd308432406efc4ef7baf", + "size": 1322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb3a19472ae4a8d111ecd308432406efc4ef7baf" + }, + { + "path": "svg/minecraft.svg", + "mode": "100755", + "type": "blob", + "sha": "b9972a5d499362d7f1fd57cdbe1ef53a7906f4a5", + "size": 88959, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9972a5d499362d7f1fd57cdbe1ef53a7906f4a5" + }, + { + "path": "svg/miniflux-light.svg", + "mode": "100644", + "type": "blob", + "sha": "97cd7c2d70f4b29389ebb36b0016d2571038adc1", + "size": 914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97cd7c2d70f4b29389ebb36b0016d2571038adc1" + }, + { + "path": "svg/miniflux.svg", + "mode": "100755", + "type": "blob", + "sha": "188af49378806ff4599f38fe038b90bff366aae0", + "size": 902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/188af49378806ff4599f38fe038b90bff366aae0" + }, + { + "path": "svg/minio-light.svg", + "mode": "100644", + "type": "blob", + "sha": "fdbdd616db11189f532f7f9d4f31fa6dfb54de24", + "size": 771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdbdd616db11189f532f7f9d4f31fa6dfb54de24" + }, + { + "path": "svg/minio.svg", + "mode": "100755", + "type": "blob", + "sha": "14063e5bb429bd48fbdc8a83acbf5299854139f3", + "size": 774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14063e5bb429bd48fbdc8a83acbf5299854139f3" + }, + { + "path": "svg/miro.svg", + "mode": "100644", + "type": "blob", + "sha": "a0bc33786f085711f43a4c714804a57d358a08f3", + "size": 614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0bc33786f085711f43a4c714804a57d358a08f3" + }, + { + "path": "svg/misskey-light.svg", + "mode": "100644", + "type": "blob", + "sha": "358ceb670d9840adf34d6eb83a4215dc3211566d", + "size": 1615, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/358ceb670d9840adf34d6eb83a4215dc3211566d" + }, + { + "path": "svg/misskey.svg", + "mode": "100755", + "type": "blob", + "sha": "062246ebfc544d205b9018faf995a4a071fa4c42", + "size": 1603, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/062246ebfc544d205b9018faf995a4a071fa4c42" + }, + { + "path": "svg/mistral-ai.svg", + "mode": "100644", + "type": "blob", + "sha": "ccad4e9e180a8f32ef38662e4063f0622876e01d", + "size": 4343, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccad4e9e180a8f32ef38662e4063f0622876e01d" + }, + { + "path": "svg/mitra.svg", + "mode": "100755", + "type": "blob", + "sha": "ccc767b4f0178239bee4f20bb88f0870bb641915", + "size": 1821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccc767b4f0178239bee4f20bb88f0870bb641915" + }, + { + "path": "svg/mixpost.svg", + "mode": "100755", + "type": "blob", + "sha": "f9b801bfd043f82162b0964b19af53c7bff8ab1b", + "size": 610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9b801bfd043f82162b0964b19af53c7bff8ab1b" + }, + { + "path": "svg/mkdocs-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f777efdc2f63baccfa02240182b00805ed16f29f", + "size": 2722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f777efdc2f63baccfa02240182b00805ed16f29f" + }, + { + "path": "svg/mkdocs.svg", + "mode": "100644", + "type": "blob", + "sha": "35de7d8ddcb29bbbf92757f38510f7a6b8a81651", + "size": 2668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35de7d8ddcb29bbbf92757f38510f7a6b8a81651" + }, + { + "path": "svg/ml-flow-wordmark-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "a457b6bfde41f7056c2a5f0964f58c03a4c22c9a", + "size": 2599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a457b6bfde41f7056c2a5f0964f58c03a4c22c9a" + }, + { + "path": "svg/ml-flow-wordmark.svg", + "mode": "100644", + "type": "blob", + "sha": "00c2b02bf548281677a4dff44b64f5c0a22a960f", + "size": 2603, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00c2b02bf548281677a4dff44b64f5c0a22a960f" + }, + { + "path": "svg/mobilizon.svg", + "mode": "100755", + "type": "blob", + "sha": "d88efe3f6d43b8e2c3baa883afcce8f86a362bb8", + "size": 864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d88efe3f6d43b8e2c3baa883afcce8f86a362bb8" + }, + { + "path": "svg/mobotix-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8733bb3fd31944fe088736ce3863dd6776364352", + "size": 3139, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8733bb3fd31944fe088736ce3863dd6776364352" + }, + { + "path": "svg/mobotix.svg", + "mode": "100644", + "type": "blob", + "sha": "fdd8bd31737dff09e76212026ff3f625a3ff6be3", + "size": 3127, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdd8bd31737dff09e76212026ff3f625a3ff6be3" + }, + { + "path": "svg/modrinth.svg", + "mode": "100644", + "type": "blob", + "sha": "533d302c378a703c7487f5d715cd47567c19a05c", + "size": 1387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/533d302c378a703c7487f5d715cd47567c19a05c" + }, + { + "path": "svg/mojeek.svg", + "mode": "100644", + "type": "blob", + "sha": "eee5a9fc83ed14f3c6d34b9129dd31623de608d3", + "size": 4016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eee5a9fc83ed14f3c6d34b9129dd31623de608d3" + }, + { + "path": "svg/monero.svg", + "mode": "100644", + "type": "blob", + "sha": "dd086b1c10df56189daa873b3e0783e13b9cad1c", + "size": 865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd086b1c10df56189daa873b3e0783e13b9cad1c" + }, + { + "path": "svg/mongodb.svg", + "mode": "100755", + "type": "blob", + "sha": "8660ced217758e701e9941a09a375d2ca453538c", + "size": 710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8660ced217758e701e9941a09a375d2ca453538c" + }, + { + "path": "svg/monica-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7eca4e8c6d1b971c21daefcd923bf802d290239c", + "size": 1511, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7eca4e8c6d1b971c21daefcd923bf802d290239c" + }, + { + "path": "svg/monica.svg", + "mode": "100755", + "type": "blob", + "sha": "8be0b1736440c8ee817e180bd8d8f3a4f0600c6a", + "size": 1517, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8be0b1736440c8ee817e180bd8d8f3a4f0600c6a" + }, + { + "path": "svg/monkeytype.svg", + "mode": "100644", + "type": "blob", + "sha": "9b37c2ff4cf49b5c805c3fc5d8c6c67e338d1f19", + "size": 3764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b37c2ff4cf49b5c805c3fc5d8c6c67e338d1f19" + }, + { + "path": "svg/moodist-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "ed50bce2ec86e948402bd647037d290dc3223576", + "size": 636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed50bce2ec86e948402bd647037d290dc3223576" + }, + { + "path": "svg/moodist.svg", + "mode": "100644", + "type": "blob", + "sha": "9c1d7141a3a126d480c285451e58c43d01dabfb6", + "size": 636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c1d7141a3a126d480c285451e58c43d01dabfb6" + }, + { + "path": "svg/moodle-light.svg", + "mode": "100644", + "type": "blob", + "sha": "aa9f106efa6b51c79b144840d1eaf20e978ad8a3", + "size": 955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa9f106efa6b51c79b144840d1eaf20e978ad8a3" + }, + { + "path": "svg/moodle.svg", + "mode": "100644", + "type": "blob", + "sha": "9750ed93139be3fa874fb7d3e977b4f3e1cc66cc", + "size": 955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9750ed93139be3fa874fb7d3e977b4f3e1cc66cc" + }, + { + "path": "svg/morphos.svg", + "mode": "100755", + "type": "blob", + "sha": "cedbced5215f3dc7ecdb170b3213ddb420fb3862", + "size": 12828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cedbced5215f3dc7ecdb170b3213ddb420fb3862" + }, + { + "path": "svg/morss.svg", + "mode": "100644", + "type": "blob", + "sha": "e686c0700587f15f0b3bc0ec944251614fad4f6d", + "size": 510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e686c0700587f15f0b3bc0ec944251614fad4f6d" + }, + { + "path": "svg/mosquitto.svg", + "mode": "100755", + "type": "blob", + "sha": "3b7b5066ba51121d8db9400c63a13c2c508285f4", + "size": 1510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b7b5066ba51121d8db9400c63a13c2c508285f4" + }, + { + "path": "svg/motioneye-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "67eddf6631e9b77bcd098c28dfbb89fde50ebd89", + "size": 2327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67eddf6631e9b77bcd098c28dfbb89fde50ebd89" + }, + { + "path": "svg/motioneye.svg", + "mode": "100755", + "type": "blob", + "sha": "9f0aad1d59d28f2b1cec7720d78a3dcdcc07c560", + "size": 3347, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f0aad1d59d28f2b1cec7720d78a3dcdcc07c560" + }, + { + "path": "svg/mousehole-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "cfadeb9fbdf06cca452f5e803dfb4167fcb3b699", + "size": 1733, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfadeb9fbdf06cca452f5e803dfb4167fcb3b699" + }, + { + "path": "svg/mousehole.svg", + "mode": "100644", + "type": "blob", + "sha": "d5132553f76f4392d22ac273f832f8c684079221", + "size": 1720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5132553f76f4392d22ac273f832f8c684079221" + }, + { + "path": "svg/movie-pilot.svg", + "mode": "100644", + "type": "blob", + "sha": "43800df311047dcd0d7228f881d11c6e2656f539", + "size": 10310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43800df311047dcd0d7228f881d11c6e2656f539" + }, + { + "path": "svg/mqtt.svg", + "mode": "100755", + "type": "blob", + "sha": "ec6c330377a678b67bf18a33660b13d282045fe8", + "size": 531, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec6c330377a678b67bf18a33660b13d282045fe8" + }, + { + "path": "svg/mstream.svg", + "mode": "100644", + "type": "blob", + "sha": "66570c667812ad0216bbd6a934c72fd60dcc3f1c", + "size": 490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66570c667812ad0216bbd6a934c72fd60dcc3f1c" + }, + { + "path": "svg/mtlynch-picoshare.svg", + "mode": "100644", + "type": "blob", + "sha": "93174fa783b64987a5fcc201ea6bef53e2348efc", + "size": 1453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93174fa783b64987a5fcc201ea6bef53e2348efc" + }, + { + "path": "svg/mullvad-browser.svg", + "mode": "100644", + "type": "blob", + "sha": "d206370ccb039809f10261ae73cd1757f99234dd", + "size": 1515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d206370ccb039809f10261ae73cd1757f99234dd" + }, + { + "path": "svg/mullvad-vpn.svg", + "mode": "100755", + "type": "blob", + "sha": "c2ce3956c83ab4744adcbfdd0c651e7e599d87b7", + "size": 2404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2ce3956c83ab4744adcbfdd0c651e7e599d87b7" + }, + { + "path": "svg/mullvad.svg", + "mode": "100644", + "type": "blob", + "sha": "c8fcf5fabd70581c7b80f4b9959644636d480587", + "size": 2040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8fcf5fabd70581c7b80f4b9959644636d480587" + }, + { + "path": "svg/multi-scrobbler.svg", + "mode": "100755", + "type": "blob", + "sha": "1568f9b6d20fb7007434232dc65c1f089034e2a7", + "size": 1230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1568f9b6d20fb7007434232dc65c1f089034e2a7" + }, + { + "path": "svg/mumble-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bb57339de0cc7fc2db3d68473616480ae6c250e3", + "size": 2946, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb57339de0cc7fc2db3d68473616480ae6c250e3" + }, + { + "path": "svg/mumble.svg", + "mode": "100755", + "type": "blob", + "sha": "29a864264ea19da74837d7d76a7abd8895d9fce6", + "size": 2850, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29a864264ea19da74837d7d76a7abd8895d9fce6" + }, + { + "path": "svg/musescore.svg", + "mode": "100644", + "type": "blob", + "sha": "79a0cc84c337a09aab274c4029c2a776ecf0d94d", + "size": 2854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79a0cc84c337a09aab274c4029c2a776ecf0d94d" + }, + { + "path": "svg/music-assistant-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b6e98ac3629f5362a326770362d8c12af12f76dc", + "size": 317, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6e98ac3629f5362a326770362d8c12af12f76dc" + }, + { + "path": "svg/music-assistant.svg", + "mode": "100755", + "type": "blob", + "sha": "e4b1979f1cbb590b3d299883afa96e7c4192d12c", + "size": 302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4b1979f1cbb590b3d299883afa96e7c4192d12c" + }, + { + "path": "svg/musicbrainz.svg", + "mode": "100644", + "type": "blob", + "sha": "fd8503eb32ee02f89928c52bf86b8f33e689c02f", + "size": 10455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd8503eb32ee02f89928c52bf86b8f33e689c02f" + }, + { + "path": "svg/myheats-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ea650b51bf0eeef3035bb537b761be140f6f485c", + "size": 2844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea650b51bf0eeef3035bb537b761be140f6f485c" + }, + { + "path": "svg/myheats.svg", + "mode": "100755", + "type": "blob", + "sha": "194b3e74b9f45f566962b034c467eb644323d14e", + "size": 2700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/194b3e74b9f45f566962b034c467eb644323d14e" + }, + { + "path": "svg/mympd.svg", + "mode": "100644", + "type": "blob", + "sha": "b072ad86988c9df0f8e58f91576314b1c1c0ee2f", + "size": 499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b072ad86988c9df0f8e58f91576314b1c1c0ee2f" + }, + { + "path": "svg/myspeed.svg", + "mode": "100644", + "type": "blob", + "sha": "81c0d17fabbbcecb06871b933441334c67f4402a", + "size": 4098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81c0d17fabbbcecb06871b933441334c67f4402a" + }, + { + "path": "svg/mysql.svg", + "mode": "100755", + "type": "blob", + "sha": "3245e8832f9ece1812a9b9295c50720993c01460", + "size": 2200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3245e8832f9ece1812a9b9295c50720993c01460" + }, + { + "path": "svg/mysterium.svg", + "mode": "100644", + "type": "blob", + "sha": "5b7ae49bb433383c1abaecd15796ecdd69a73984", + "size": 2177, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b7ae49bb433383c1abaecd15796ecdd69a73984" + }, + { + "path": "svg/n8n.svg", + "mode": "100755", + "type": "blob", + "sha": "dfc163f84cddaea6a620c1c4071b129ba065f524", + "size": 1248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfc163f84cddaea6a620c1c4071b129ba065f524" + }, + { + "path": "svg/nagios.svg", + "mode": "100644", + "type": "blob", + "sha": "1d23e64a34311703830d73f4b5de8baad65b3651", + "size": 1554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d23e64a34311703830d73f4b5de8baad65b3651" + }, + { + "path": "svg/name-silo.svg", + "mode": "100644", + "type": "blob", + "sha": "5e1695766dc7381a8c454850ce8ebfb9a9f6f298", + "size": 901, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e1695766dc7381a8c454850ce8ebfb9a9f6f298" + }, + { + "path": "svg/namecheap.svg", + "mode": "100644", + "type": "blob", + "sha": "cfca4e03551c9e4e9db0d111b81b1122fd7a6177", + "size": 3762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfca4e03551c9e4e9db0d111b81b1122fd7a6177" + }, + { + "path": "svg/nasa.svg", + "mode": "100755", + "type": "blob", + "sha": "602f7153c1854a1e65e13e191bf1b333c1b07c13", + "size": 5563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/602f7153c1854a1e65e13e191bf1b333c1b07c13" + }, + { + "path": "svg/natwest.svg", + "mode": "100644", + "type": "blob", + "sha": "d6b2a4aa533051b70eb2f1b0189f50a631accbd5", + "size": 6951, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6b2a4aa533051b70eb2f1b0189f50a631accbd5" + }, + { + "path": "svg/navidrome-light.svg", + "mode": "100644", + "type": "blob", + "sha": "841ffe325c93a95de6e9d1f3b34823c402bf97c8", + "size": 758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/841ffe325c93a95de6e9d1f3b34823c402bf97c8" + }, + { + "path": "svg/navidrome.svg", + "mode": "100755", + "type": "blob", + "sha": "fc91ecb0d3fa82e19eaa4a8123cbd89781f1cb29", + "size": 710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc91ecb0d3fa82e19eaa4a8123cbd89781f1cb29" + }, + { + "path": "svg/neko-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f4dc33c16171605cc9395bffd7641341ae85441a", + "size": 3610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4dc33c16171605cc9395bffd7641341ae85441a" + }, + { + "path": "svg/neko.svg", + "mode": "100755", + "type": "blob", + "sha": "ce5bd3bd417749b9d3de19312d42339334849a4b", + "size": 3598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce5bd3bd417749b9d3de19312d42339334849a4b" + }, + { + "path": "svg/neo4j.svg", + "mode": "100644", + "type": "blob", + "sha": "50358d4634c63cd3164f3c867602ab7b22b261d3", + "size": 2680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50358d4634c63cd3164f3c867602ab7b22b261d3" + }, + { + "path": "svg/neocities.svg", + "mode": "100644", + "type": "blob", + "sha": "f9d217b9ca592471505775f0da90f70019bd01e6", + "size": 40258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9d217b9ca592471505775f0da90f70019bd01e6" + }, + { + "path": "svg/neodb.svg", + "mode": "100755", + "type": "blob", + "sha": "d92eb87033e58e85615f87b5bf06738f40e3b316", + "size": 1491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d92eb87033e58e85615f87b5bf06738f40e3b316" + }, + { + "path": "svg/neon-tech.svg", + "mode": "100644", + "type": "blob", + "sha": "1859b1e035bf009f896518e92d60ccd44dc15476", + "size": 2008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1859b1e035bf009f896518e92d60ccd44dc15476" + }, + { + "path": "svg/neonlink.svg", + "mode": "100644", + "type": "blob", + "sha": "6cc784cfd6f006c0accc78c019c278c32bc91028", + "size": 430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cc784cfd6f006c0accc78c019c278c32bc91028" + }, + { + "path": "svg/netalertx-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c77b3bb250d27119068a794195eba9c7df93503e", + "size": 1992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c77b3bb250d27119068a794195eba9c7df93503e" + }, + { + "path": "svg/netalertx.svg", + "mode": "100755", + "type": "blob", + "sha": "8738fb40c841de3ce288d1b1a7d9c488d9d3f17a", + "size": 1908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8738fb40c841de3ce288d1b1a7d9c488d9d3f17a" + }, + { + "path": "svg/netapp-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2ed3030b7b05f9f85b8b89a91844c468675ccd47", + "size": 183, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ed3030b7b05f9f85b8b89a91844c468675ccd47" + }, + { + "path": "svg/netapp.svg", + "mode": "100644", + "type": "blob", + "sha": "c57c21a584ba8d343677987e4ff752fc19ad89e9", + "size": 171, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c57c21a584ba8d343677987e4ff752fc19ad89e9" + }, + { + "path": "svg/netatmo.svg", + "mode": "100644", + "type": "blob", + "sha": "cae48b8033cd80000f7c3c2fb4a8bbb62588ea31", + "size": 3771, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cae48b8033cd80000f7c3c2fb4a8bbb62588ea31" + }, + { + "path": "svg/netbird.svg", + "mode": "100755", + "type": "blob", + "sha": "66660ca7eb498e6507955af7ff76a2bb41da0809", + "size": 576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66660ca7eb498e6507955af7ff76a2bb41da0809" + }, + { + "path": "svg/netboot.svg", + "mode": "100644", + "type": "blob", + "sha": "70a6bfd84b73dd63012e2c358ebd7ed63795e9c8", + "size": 6853, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70a6bfd84b73dd63012e2c358ebd7ed63795e9c8" + }, + { + "path": "svg/netbootxyz.svg", + "mode": "100644", + "type": "blob", + "sha": "15660481b54d2e5d85e3a0b973731622b3eb0b29", + "size": 10604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15660481b54d2e5d85e3a0b973731622b3eb0b29" + }, + { + "path": "svg/netbox-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "ea269e66d2a710ff2971e206c1513d55f333be14", + "size": 4224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea269e66d2a710ff2971e206c1513d55f333be14" + }, + { + "path": "svg/netbox-full-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "9d4bbfd6898822be7be18a52a146ef264aade366", + "size": 15508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d4bbfd6898822be7be18a52a146ef264aade366" + }, + { + "path": "svg/netbox-full.svg", + "mode": "100644", + "type": "blob", + "sha": "155c25de84a3604d27e4db13cbb02120ba8f46c6", + "size": 15505, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/155c25de84a3604d27e4db13cbb02120ba8f46c6" + }, + { + "path": "svg/netbox.svg", + "mode": "100644", + "type": "blob", + "sha": "5320bc50dfc6a4f1a98d8db78f94833222f90467", + "size": 4221, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5320bc50dfc6a4f1a98d8db78f94833222f90467" + }, + { + "path": "svg/netdata.svg", + "mode": "100755", + "type": "blob", + "sha": "2f6c0be5da431e7050817f7037903bdc59a87902", + "size": 253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f6c0be5da431e7050817f7037903bdc59a87902" + }, + { + "path": "svg/netflix.svg", + "mode": "100755", + "type": "blob", + "sha": "24db0832b3e3d2cc2f7bcb0e4784f192f72eb146", + "size": 3354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24db0832b3e3d2cc2f7bcb0e4784f192f72eb146" + }, + { + "path": "svg/netgear-light.svg", + "mode": "100644", + "type": "blob", + "sha": "9b90c0b3f24d5212dac0e2e2cab22bda645371ad", + "size": 1743, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b90c0b3f24d5212dac0e2e2cab22bda645371ad" + }, + { + "path": "svg/netgear.svg", + "mode": "100755", + "type": "blob", + "sha": "4b6f15d9e67bb28ff2926e9c52800263a5c1c566", + "size": 1659, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b6f15d9e67bb28ff2926e9c52800263a5c1c566" + }, + { + "path": "svg/netlify.svg", + "mode": "100755", + "type": "blob", + "sha": "ca39da5864a14ff0834e030c9eb8d65af1383c97", + "size": 2953, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca39da5864a14ff0834e030c9eb8d65af1383c97" + }, + { + "path": "svg/netsurf-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e7797d49660e62d0f2e69fa9ffff4cb2da7dd626", + "size": 1033, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7797d49660e62d0f2e69fa9ffff4cb2da7dd626" + }, + { + "path": "svg/netsurf.svg", + "mode": "100644", + "type": "blob", + "sha": "7c711ef1b9c6c2e081115d7cf814e57fa751b268", + "size": 985, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c711ef1b9c6c2e081115d7cf814e57fa751b268" + }, + { + "path": "svg/network-ups-tools.svg", + "mode": "100755", + "type": "blob", + "sha": "c69315a6febcf709c1e7a55f761908fcf3c6a557", + "size": 3800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c69315a6febcf709c1e7a55f761908fcf3c6a557" + }, + { + "path": "svg/networking-toolbox-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "021195dbae704857d9f063ac4a100c31b6cf6c23", + "size": 1628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/021195dbae704857d9f063ac4a100c31b6cf6c23" + }, + { + "path": "svg/networking-toolbox.svg", + "mode": "100644", + "type": "blob", + "sha": "e73d498f04aab206336445c34723d6bd6ba81e4c", + "size": 1628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e73d498f04aab206336445c34723d6bd6ba81e4c" + }, + { + "path": "svg/newegg.svg", + "mode": "100644", + "type": "blob", + "sha": "de65e49cac5e1e0cca25114e262f653d185b7b90", + "size": 5941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de65e49cac5e1e0cca25114e262f653d185b7b90" + }, + { + "path": "svg/newsblur.svg", + "mode": "100755", + "type": "blob", + "sha": "b3d0e0244f8473f36b42c762911bd35ca185a699", + "size": 3853, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3d0e0244f8473f36b42c762911bd35ca185a699" + }, + { + "path": "svg/newshosting-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "6b4d3892d0f6f714e35000b4da50f7e72faf709f", + "size": 1532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b4d3892d0f6f714e35000b4da50f7e72faf709f" + }, + { + "path": "svg/newshosting.svg", + "mode": "100644", + "type": "blob", + "sha": "4f944a0abaa31fb35b12be26fda8792c49849297", + "size": 27052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f944a0abaa31fb35b12be26fda8792c49849297" + }, + { + "path": "svg/nextcloud-blue.svg", + "mode": "100644", + "type": "blob", + "sha": "cb4993670c9707380304056b4ab373056606189d", + "size": 708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb4993670c9707380304056b4ab373056606189d" + }, + { + "path": "svg/nextcloud-calendar.svg", + "mode": "100644", + "type": "blob", + "sha": "5a60ef1810b193071f65c94bd9f7b74052451a68", + "size": 653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a60ef1810b193071f65c94bd9f7b74052451a68" + }, + { + "path": "svg/nextcloud-contacts.svg", + "mode": "100644", + "type": "blob", + "sha": "b1db2daa56be16a3908e3b6214b6c99e3fbdf330", + "size": 1803, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1db2daa56be16a3908e3b6214b6c99e3fbdf330" + }, + { + "path": "svg/nextcloud-cookbook.svg", + "mode": "100644", + "type": "blob", + "sha": "3457917387598cbafdfe42f4adb81f6d0b1ca5ee", + "size": 1155, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3457917387598cbafdfe42f4adb81f6d0b1ca5ee" + }, + { + "path": "svg/nextcloud-cospend.svg", + "mode": "100644", + "type": "blob", + "sha": "d7e90df43fd808f54c798f8958edf1f3830b7ae2", + "size": 786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7e90df43fd808f54c798f8958edf1f3830b7ae2" + }, + { + "path": "svg/nextcloud-deck.svg", + "mode": "100644", + "type": "blob", + "sha": "cdc11cad9514ad566224cd9b1511e9b7441e9d28", + "size": 537, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdc11cad9514ad566224cd9b1511e9b7441e9d28" + }, + { + "path": "svg/nextcloud-files.svg", + "mode": "100644", + "type": "blob", + "sha": "2ac3480a2a6d7d70e21c00180df20eef8db2f81c", + "size": 346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ac3480a2a6d7d70e21c00180df20eef8db2f81c" + }, + { + "path": "svg/nextcloud-ncdownloader.svg", + "mode": "100644", + "type": "blob", + "sha": "78dbe313ddb41856deda2bf08fb0d3ff081c300a", + "size": 735, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78dbe313ddb41856deda2bf08fb0d3ff081c300a" + }, + { + "path": "svg/nextcloud-news.svg", + "mode": "100755", + "type": "blob", + "sha": "3caebc983ef267abc8d39789c78e96da3521e901", + "size": 614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3caebc983ef267abc8d39789c78e96da3521e901" + }, + { + "path": "svg/nextcloud-notes.svg", + "mode": "100644", + "type": "blob", + "sha": "11f28ff24622444bf062af13126a14cad76838b5", + "size": 352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11f28ff24622444bf062af13126a14cad76838b5" + }, + { + "path": "svg/nextcloud-photos.svg", + "mode": "100644", + "type": "blob", + "sha": "eab58e9fce4f168da410ce32a1777b731d6a79aa", + "size": 443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eab58e9fce4f168da410ce32a1777b731d6a79aa" + }, + { + "path": "svg/nextcloud-social.svg", + "mode": "100755", + "type": "blob", + "sha": "8e7734f9470d6dcc824644069921c1d13b1d27bf", + "size": 309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e7734f9470d6dcc824644069921c1d13b1d27bf" + }, + { + "path": "svg/nextcloud-tables.svg", + "mode": "100755", + "type": "blob", + "sha": "98e2ff1bf6ac9570e3a99c20658ee5a55e218a82", + "size": 271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98e2ff1bf6ac9570e3a99c20658ee5a55e218a82" + }, + { + "path": "svg/nextcloud-tasks.svg", + "mode": "100644", + "type": "blob", + "sha": "8d91edf012624a0973623dcf2e562af83e40924a", + "size": 489, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d91edf012624a0973623dcf2e562af83e40924a" + }, + { + "path": "svg/nextcloud-timemanager.svg", + "mode": "100644", + "type": "blob", + "sha": "3498798a5139c439a17900f6be7aae92df30b29c", + "size": 600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3498798a5139c439a17900f6be7aae92df30b29c" + }, + { + "path": "svg/nextcloud-white.svg", + "mode": "100644", + "type": "blob", + "sha": "e57b18a255582102417fd9851b1f4df18cc7e623", + "size": 708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e57b18a255582102417fd9851b1f4df18cc7e623" + }, + { + "path": "svg/nextcloud.svg", + "mode": "100755", + "type": "blob", + "sha": "841b9d987f91331c13a481a76c4f18005a28dd35", + "size": 739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/841b9d987f91331c13a481a76c4f18005a28dd35" + }, + { + "path": "svg/nextcloudpi.svg", + "mode": "100755", + "type": "blob", + "sha": "26b46a50fbed368bd2dd44035df4b8c581aa3da5", + "size": 3179, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26b46a50fbed368bd2dd44035df4b8c581aa3da5" + }, + { + "path": "svg/nextdns.svg", + "mode": "100644", + "type": "blob", + "sha": "b7b392bdb29f7df4f6b6544a6f6f746b7b050082", + "size": 923, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7b392bdb29f7df4f6b6544a6f6f746b7b050082" + }, + { + "path": "svg/nexterm.svg", + "mode": "100755", + "type": "blob", + "sha": "7063239201421cf372795253d69f9d2820648c4c", + "size": 459, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7063239201421cf372795253d69f9d2820648c4c" + }, + { + "path": "svg/nextjs-light.svg", + "mode": "100644", + "type": "blob", + "sha": "44c35dbc6d900082b6c947a070a50e9336a37ac9", + "size": 544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44c35dbc6d900082b6c947a070a50e9336a37ac9" + }, + { + "path": "svg/nextjs.svg", + "mode": "100644", + "type": "blob", + "sha": "e5e19bd2d2ce687aba73d77bdc804b8ec791ca21", + "size": 801, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5e19bd2d2ce687aba73d77bdc804b8ec791ca21" + }, + { + "path": "svg/nexus-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "1036856ec22bc16d6f3589907572df3c46697146", + "size": 756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1036856ec22bc16d6f3589907572df3c46697146" + }, + { + "path": "svg/nexus.svg", + "mode": "100644", + "type": "blob", + "sha": "4c75030d6395fce84b4aa92af32fe15e7178eb04", + "size": 756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c75030d6395fce84b4aa92af32fe15e7178eb04" + }, + { + "path": "svg/nginx-proxy-manager.svg", + "mode": "100755", + "type": "blob", + "sha": "0b91ca657de33f8a3ccb0337052c430a9f6b919c", + "size": 9130, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b91ca657de33f8a3ccb0337052c430a9f6b919c" + }, + { + "path": "svg/nginx.svg", + "mode": "100755", + "type": "blob", + "sha": "277be0823b9574aac1d25f1de89e57c0edda8cb9", + "size": 877, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/277be0823b9574aac1d25f1de89e57c0edda8cb9" + }, + { + "path": "svg/nicotine-plus.svg", + "mode": "100644", + "type": "blob", + "sha": "433e2c55f1ee230a149d23eee9973746240c4ff9", + "size": 797, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/433e2c55f1ee230a149d23eee9973746240c4ff9" + }, + { + "path": "svg/nightscout-light.svg", + "mode": "100644", + "type": "blob", + "sha": "00566f3e3e258a7353c7c51445cbfa343d402920", + "size": 3817, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00566f3e3e258a7353c7c51445cbfa343d402920" + }, + { + "path": "svg/nightscout.svg", + "mode": "100755", + "type": "blob", + "sha": "076f9c186379af5223af537409ca2de2409bb596", + "size": 3798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/076f9c186379af5223af537409ca2de2409bb596" + }, + { + "path": "svg/nintendo-switch.svg", + "mode": "100755", + "type": "blob", + "sha": "f7f115d0a39ea8f29b3eb63321239993232a2048", + "size": 1686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7f115d0a39ea8f29b3eb63321239993232a2048" + }, + { + "path": "svg/nitter.svg", + "mode": "100644", + "type": "blob", + "sha": "a31dbca0a37f3b78aaec25dc82f14f3355a04d5f", + "size": 713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a31dbca0a37f3b78aaec25dc82f14f3355a04d5f" + }, + { + "path": "svg/nixos.svg", + "mode": "100755", + "type": "blob", + "sha": "fdba8d83c0a6af3da704e6805bd2e9b3bcad1c54", + "size": 716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdba8d83c0a6af3da704e6805bd2e9b3bcad1c54" + }, + { + "path": "svg/nocodb.svg", + "mode": "100755", + "type": "blob", + "sha": "3aa0405bdf0d847aa784e4e640aa7fe6d1d75354", + "size": 1075, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3aa0405bdf0d847aa784e4e640aa7fe6d1d75354" + }, + { + "path": "svg/node-red.svg", + "mode": "100755", + "type": "blob", + "sha": "b400f3afcf57ee4ed3de1b531dbfbe8c6928ba34", + "size": 1052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b400f3afcf57ee4ed3de1b531dbfbe8c6928ba34" + }, + { + "path": "svg/nodebb.svg", + "mode": "100755", + "type": "blob", + "sha": "27b38bd87a143c2653c2112a0dd4f5b2cc6070f2", + "size": 1298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27b38bd87a143c2653c2112a0dd4f5b2cc6070f2" + }, + { + "path": "svg/nodejs-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "d0588ec9e2d2cd337a6a104f5bc0f6962ed35a52", + "size": 2578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0588ec9e2d2cd337a6a104f5bc0f6962ed35a52" + }, + { + "path": "svg/nodejs.svg", + "mode": "100644", + "type": "blob", + "sha": "b82de339061bcb736d91eb13c7b933bcf6a9a1f4", + "size": 1697, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b82de339061bcb736d91eb13c7b933bcf6a9a1f4" + }, + { + "path": "svg/noisedash.svg", + "mode": "100644", + "type": "blob", + "sha": "145b6d13089c81fcb16f68ad8f976e389dcd77e3", + "size": 539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/145b6d13089c81fcb16f68ad8f976e389dcd77e3" + }, + { + "path": "svg/nomad.svg", + "mode": "100644", + "type": "blob", + "sha": "1dd1186547472f9fe00850170221ecb27ba81622", + "size": 505, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dd1186547472f9fe00850170221ecb27ba81622" + }, + { + "path": "svg/nomie.svg", + "mode": "100644", + "type": "blob", + "sha": "d8b4aa41e7b553ca3641fe6b57cb905ccc51b0d7", + "size": 3921, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8b4aa41e7b553ca3641fe6b57cb905ccc51b0d7" + }, + { + "path": "svg/nordvpn.svg", + "mode": "100755", + "type": "blob", + "sha": "a6fd55066c1a29998472cafbf78157b85858f34e", + "size": 298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6fd55066c1a29998472cafbf78157b85858f34e" + }, + { + "path": "svg/note-mark.svg", + "mode": "100755", + "type": "blob", + "sha": "3a5a1c98cf6e8aee1999b3a13091403b30ff5204", + "size": 1553, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a5a1c98cf6e8aee1999b3a13091403b30ff5204" + }, + { + "path": "svg/notebook-lm-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d0f5ea777cd671c17ff345aaabf3ec6bf9e0b658", + "size": 749, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0f5ea777cd671c17ff345aaabf3ec6bf9e0b658" + }, + { + "path": "svg/notebook-lm.svg", + "mode": "100644", + "type": "blob", + "sha": "f51f85cd102d6eed21eda0ed3c72d390a6234664", + "size": 736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f51f85cd102d6eed21eda0ed3c72d390a6234664" + }, + { + "path": "svg/notesnook-light.svg", + "mode": "100644", + "type": "blob", + "sha": "dea9a8fa201651339e22be9c42d082f10b537dad", + "size": 1308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dea9a8fa201651339e22be9c42d082f10b537dad" + }, + { + "path": "svg/notesnook.svg", + "mode": "100755", + "type": "blob", + "sha": "bc5543b630200e5478608fb043b42109b1aa3b78", + "size": 1260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc5543b630200e5478608fb043b42109b1aa3b78" + }, + { + "path": "svg/notifiarr.svg", + "mode": "100644", + "type": "blob", + "sha": "8de8f7a2ec5b8628006631972f05ce6d402c8cd4", + "size": 30080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8de8f7a2ec5b8628006631972f05ce6d402c8cd4" + }, + { + "path": "svg/notion-calendar.svg", + "mode": "100644", + "type": "blob", + "sha": "618aea1b6cc7c82d2c081771f3b4b17d4b06e80e", + "size": 4527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/618aea1b6cc7c82d2c081771f3b4b17d4b06e80e" + }, + { + "path": "svg/notion-light.svg", + "mode": "100644", + "type": "blob", + "sha": "26700991f963c176a7bd4edf927e90f297a179f5", + "size": 1156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26700991f963c176a7bd4edf927e90f297a179f5" + }, + { + "path": "svg/notion-mail.svg", + "mode": "100644", + "type": "blob", + "sha": "3c83175522d1ae17a04cb7731cd0da3267563a71", + "size": 1014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c83175522d1ae17a04cb7731cd0da3267563a71" + }, + { + "path": "svg/notion.svg", + "mode": "100755", + "type": "blob", + "sha": "a05302fc1219e2c850b5af5a61f35ce65535e44f", + "size": 1141, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a05302fc1219e2c850b5af5a61f35ce65535e44f" + }, + { + "path": "svg/npm.svg", + "mode": "100644", + "type": "blob", + "sha": "bcab7683d4871cdc7cef5dc49c7942be192197ea", + "size": 455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcab7683d4871cdc7cef5dc49c7942be192197ea" + }, + { + "path": "svg/ntfy.svg", + "mode": "100755", + "type": "blob", + "sha": "223a3f78126554335cb69e55882831ac8a28aa4d", + "size": 1505, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/223a3f78126554335cb69e55882831ac8a28aa4d" + }, + { + "path": "svg/nu-nl.svg", + "mode": "100644", + "type": "blob", + "sha": "0e9b421888317cd86f5381f869646407baa8c8c4", + "size": 2016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e9b421888317cd86f5381f869646407baa8c8c4" + }, + { + "path": "svg/nut-webgui.svg", + "mode": "100644", + "type": "blob", + "sha": "8e48984e1277f71874323041479eee0bc42b6acc", + "size": 1273, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e48984e1277f71874323041479eee0bc42b6acc" + }, + { + "path": "svg/nut.svg", + "mode": "100755", + "type": "blob", + "sha": "b708da34a07d4a00a050857a2623768872585915", + "size": 3793, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b708da34a07d4a00a050857a2623768872585915" + }, + { + "path": "svg/nutanix.svg", + "mode": "100644", + "type": "blob", + "sha": "76f8045a8f19f980940b6bfa15df24dd8aee29be", + "size": 1160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76f8045a8f19f980940b6bfa15df24dd8aee29be" + }, + { + "path": "svg/nvidia.svg", + "mode": "100755", + "type": "blob", + "sha": "c4087bc57b9c4c8c28db6639225b4bcc13847cce", + "size": 818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4087bc57b9c4c8c28db6639225b4bcc13847cce" + }, + { + "path": "svg/nzbget.svg", + "mode": "100644", + "type": "blob", + "sha": "59dd568dd97458904951aee8a15dfd8e5b09885b", + "size": 1775, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59dd568dd97458904951aee8a15dfd8e5b09885b" + }, + { + "path": "svg/nzbhydra2-light.svg", + "mode": "100644", + "type": "blob", + "sha": "425dc7f08c3e1993be2a85b0a7d89cc1e4bb6e6f", + "size": 12565, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/425dc7f08c3e1993be2a85b0a7d89cc1e4bb6e6f" + }, + { + "path": "svg/nzbhydra2.svg", + "mode": "100644", + "type": "blob", + "sha": "604d483ed6d0ab1257252ce0751e983e0e8e5fd8", + "size": 12556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/604d483ed6d0ab1257252ce0751e983e0e8e5fd8" + }, + { + "path": "svg/oauth2-proxy.svg", + "mode": "100644", + "type": "blob", + "sha": "720e7cbdb34f23da55d9130c5d1107e68adc1cee", + "size": 1176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/720e7cbdb34f23da55d9130c5d1107e68adc1cee" + }, + { + "path": "svg/obico.svg", + "mode": "100644", + "type": "blob", + "sha": "e5c6ed7dbd7497baaaffa1005843d6ab9751dbb9", + "size": 1128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5c6ed7dbd7497baaaffa1005843d6ab9751dbb9" + }, + { + "path": "svg/obsidian.svg", + "mode": "100755", + "type": "blob", + "sha": "1ff1e67ac458a955ef371261a4b3c496a1136f31", + "size": 4806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ff1e67ac458a955ef371261a4b3c496a1136f31" + }, + { + "path": "svg/obtainium.svg", + "mode": "100755", + "type": "blob", + "sha": "7e631900003b642a35cfc043dd0d19b6b917e851", + "size": 1575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e631900003b642a35cfc043dd0d19b6b917e851" + }, + { + "path": "svg/octoprint.svg", + "mode": "100755", + "type": "blob", + "sha": "4770728056bf4f45e12d9b8b812857dc9ec3c5d7", + "size": 1573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4770728056bf4f45e12d9b8b812857dc9ec3c5d7" + }, + { + "path": "svg/ocular.svg", + "mode": "100644", + "type": "blob", + "sha": "3bd80ed6ba354f81fe7fbcb3816e03d2724c8a32", + "size": 424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bd80ed6ba354f81fe7fbcb3816e03d2724c8a32" + }, + { + "path": "svg/oculus-light.svg", + "mode": "100644", + "type": "blob", + "sha": "864aa84fee0844471231cc4913e9655caee30319", + "size": 870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/864aa84fee0844471231cc4913e9655caee30319" + }, + { + "path": "svg/oculus.svg", + "mode": "100644", + "type": "blob", + "sha": "09bb16125dbc4fdd98f981a963ff6ce1b31879cd", + "size": 840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09bb16125dbc4fdd98f981a963ff6ce1b31879cd" + }, + { + "path": "svg/odoo.svg", + "mode": "100644", + "type": "blob", + "sha": "d8664aac4ecbdcd7f4dac549f705d0c9fad3c5ff", + "size": 572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8664aac4ecbdcd7f4dac549f705d0c9fad3c5ff" + }, + { + "path": "svg/odysee-full-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "5b871eb2b57e4810ae739ddc2cedd9de3c267edb", + "size": 5976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b871eb2b57e4810ae739ddc2cedd9de3c267edb" + }, + { + "path": "svg/odysee-full-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bcc4b8b7b8865cd1f4087596145486952bd92dbe", + "size": 5994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcc4b8b7b8865cd1f4087596145486952bd92dbe" + }, + { + "path": "svg/odysee.svg", + "mode": "100644", + "type": "blob", + "sha": "7a56a7230431c3fd343fd38f51a6a79c7eca0f69", + "size": 3014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a56a7230431c3fd343fd38f51a6a79c7eca0f69" + }, + { + "path": "svg/office-365.svg", + "mode": "100644", + "type": "blob", + "sha": "104d5ee295057c91ff861efaf223dfd686fc3490", + "size": 397, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/104d5ee295057c91ff861efaf223dfd686fc3490" + }, + { + "path": "svg/oh-my-posh-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "67d904c3c3d467728841a1d090649845d487a81c", + "size": 1138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67d904c3c3d467728841a1d090649845d487a81c" + }, + { + "path": "svg/oh-my-posh.svg", + "mode": "100644", + "type": "blob", + "sha": "5923154683123488257732d6768c421f215d1a1a", + "size": 1102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5923154683123488257732d6768c421f215d1a1a" + }, + { + "path": "svg/olivetin-light.svg", + "mode": "100644", + "type": "blob", + "sha": "fd9ed8b734e57bf9a46fd117a79ebd7900f79dab", + "size": 1482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd9ed8b734e57bf9a46fd117a79ebd7900f79dab" + }, + { + "path": "svg/olivetin.svg", + "mode": "100755", + "type": "blob", + "sha": "03632141dd1e24f6207ccfed0b47d3017b41a879", + "size": 1461, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03632141dd1e24f6207ccfed0b47d3017b41a879" + }, + { + "path": "svg/ollama-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "32d9271e6340c3dddd066f686e50219ac1b6971c", + "size": 8811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32d9271e6340c3dddd066f686e50219ac1b6971c" + }, + { + "path": "svg/ollama.svg", + "mode": "100644", + "type": "blob", + "sha": "a09cedab08306c5418a61124f4b67eee9e0715bd", + "size": 8811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a09cedab08306c5418a61124f4b67eee9e0715bd" + }, + { + "path": "svg/omada.svg", + "mode": "100755", + "type": "blob", + "sha": "2275de9cc0ef5de94558da265ec6cd6731b828d9", + "size": 3145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2275de9cc0ef5de94558da265ec6cd6731b828d9" + }, + { + "path": "svg/ombi.svg", + "mode": "100755", + "type": "blob", + "sha": "69b15652875c80b0db8c8c70981bac6240434cd2", + "size": 6057, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69b15652875c80b0db8c8c70981bac6240434cd2" + }, + { + "path": "svg/omnic-forge-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "aff4007b760660540bcff3084a46a23dfe03e924", + "size": 1277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aff4007b760660540bcff3084a46a23dfe03e924" + }, + { + "path": "svg/omnic-forge.svg", + "mode": "100644", + "type": "blob", + "sha": "8a571372221de8aeaf1e064a93d43642bc9138e6", + "size": 1264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a571372221de8aeaf1e064a93d43642bc9138e6" + }, + { + "path": "svg/omnidb.svg", + "mode": "100644", + "type": "blob", + "sha": "dfecc742e209d75519bd92f845232aa5f4a18cee", + "size": 2788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfecc742e209d75519bd92f845232aa5f4a18cee" + }, + { + "path": "svg/omnivore.svg", + "mode": "100755", + "type": "blob", + "sha": "fdd595cc823b80eaa121cb7740b4c0008841418c", + "size": 773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdd595cc823b80eaa121cb7740b4c0008841418c" + }, + { + "path": "svg/onedev-light.svg", + "mode": "100644", + "type": "blob", + "sha": "5032850f10f743e2dcadf1e21f7c2b01e4889369", + "size": 2180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5032850f10f743e2dcadf1e21f7c2b01e4889369" + }, + { + "path": "svg/onedev.svg", + "mode": "100755", + "type": "blob", + "sha": "09eb946ae47c00a9c5e7d92ef0bf441ee5abf4a4", + "size": 2144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09eb946ae47c00a9c5e7d92ef0bf441ee5abf4a4" + }, + { + "path": "svg/oneuptime-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b56efb95fb5bb9e10bcd3a3770e8b16c67639d36", + "size": 1861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b56efb95fb5bb9e10bcd3a3770e8b16c67639d36" + }, + { + "path": "svg/oneuptime.svg", + "mode": "100755", + "type": "blob", + "sha": "37c7336ed9e869efee1db789b248e174452b2c42", + "size": 1864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37c7336ed9e869efee1db789b248e174452b2c42" + }, + { + "path": "svg/onlyfans-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b24d45054feec82c9f760df161725a36a9180e72", + "size": 540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b24d45054feec82c9f760df161725a36a9180e72" + }, + { + "path": "svg/onlyfans.svg", + "mode": "100644", + "type": "blob", + "sha": "b11a2af1566a4e07d4498fb861774abd215f4315", + "size": 541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b11a2af1566a4e07d4498fb861774abd215f4315" + }, + { + "path": "svg/onlyoffice.svg", + "mode": "100644", + "type": "blob", + "sha": "3cfe033df9322ab79e8efe0483b99a44dde0ce4d", + "size": 1476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cfe033df9322ab79e8efe0483b99a44dde0ce4d" + }, + { + "path": "svg/onshape-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "021e06d1cfc2128000bf75b0aa260d471fae21cd", + "size": 1032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/021e06d1cfc2128000bf75b0aa260d471fae21cd" + }, + { + "path": "svg/onshape.svg", + "mode": "100644", + "type": "blob", + "sha": "fc10bf5712969f632d7687ae93e6b9f3221a47c6", + "size": 1055, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc10bf5712969f632d7687ae93e6b9f3221a47c6" + }, + { + "path": "svg/ookla-speedtest.svg", + "mode": "100644", + "type": "blob", + "sha": "51fe464abcf42637a50efd3e8909c08fc7e321ef", + "size": 1146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51fe464abcf42637a50efd3e8909c08fc7e321ef" + }, + { + "path": "svg/open-classrooms.svg", + "mode": "100644", + "type": "blob", + "sha": "a80e8436d976a01bff7b79eaca4c83c2ef7436ea", + "size": 3699, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a80e8436d976a01bff7b79eaca4c83c2ef7436ea" + }, + { + "path": "svg/open-cloud-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "3b8895b0f2d7605c647e4c9ab92da6e11a6f3289", + "size": 751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b8895b0f2d7605c647e4c9ab92da6e11a6f3289" + }, + { + "path": "svg/open-cloud.svg", + "mode": "100644", + "type": "blob", + "sha": "9705438f93d1bd64bd559e6ae2b43697c17baef6", + "size": 751, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9705438f93d1bd64bd559e6ae2b43697c17baef6" + }, + { + "path": "svg/open-observe.svg", + "mode": "100644", + "type": "blob", + "sha": "f20934db685efc1077f9e740eab47474a087e60a", + "size": 5126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f20934db685efc1077f9e740eab47474a087e60a" + }, + { + "path": "svg/open-regex.svg", + "mode": "100644", + "type": "blob", + "sha": "081c291da0b3126306ef6e04d7f3c43d94b1c82d", + "size": 4420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/081c291da0b3126306ef6e04d7f3c43d94b1c82d" + }, + { + "path": "svg/open-resume.svg", + "mode": "100644", + "type": "blob", + "sha": "3390211bcc3d826749c54cb4699c362b114a7961", + "size": 807, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3390211bcc3d826749c54cb4699c362b114a7961" + }, + { + "path": "svg/open-router-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "38a95925bd65767d0337cd03dcd21030bcc4636f", + "size": 563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38a95925bd65767d0337cd03dcd21030bcc4636f" + }, + { + "path": "svg/open-router.svg", + "mode": "100644", + "type": "blob", + "sha": "78ed1c767866c58d60222b14e3cbb0c6ed21b06c", + "size": 569, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78ed1c767866c58d60222b14e3cbb0c6ed21b06c" + }, + { + "path": "svg/open-source-initiative.svg", + "mode": "100755", + "type": "blob", + "sha": "6c051f19d847d123036cecf5575cfcce6e4c8861", + "size": 440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c051f19d847d123036cecf5575cfcce6e4c8861" + }, + { + "path": "svg/open-wb.svg", + "mode": "100644", + "type": "blob", + "sha": "c07e993c10aae936051ea740df431296687f6045", + "size": 27007, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c07e993c10aae936051ea740df431296687f6045" + }, + { + "path": "svg/open-webui-light.svg", + "mode": "100644", + "type": "blob", + "sha": "06f676458a2091993503abd5b8de8b62def5a96d", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06f676458a2091993503abd5b8de8b62def5a96d" + }, + { + "path": "svg/open-webui.svg", + "mode": "100644", + "type": "blob", + "sha": "b10742f3fdd8e8f583c1a677f8753bc3e6ea067b", + "size": 293, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b10742f3fdd8e8f583c1a677f8753bc3e6ea067b" + }, + { + "path": "svg/openai-light.svg", + "mode": "100644", + "type": "blob", + "sha": "67e79e275b2113f066e97a5bd3ae5ea95d2e50c1", + "size": 1309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67e79e275b2113f066e97a5bd3ae5ea95d2e50c1" + }, + { + "path": "svg/openai.svg", + "mode": "100644", + "type": "blob", + "sha": "eea5a3aa8f88194e3098b824a123ce6e6567c803", + "size": 1279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eea5a3aa8f88194e3098b824a123ce6e6567c803" + }, + { + "path": "svg/openchangelog-light.svg", + "mode": "100644", + "type": "blob", + "sha": "41e953325f0d993cb3b3a57ae6a382f5fa3511e2", + "size": 1146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41e953325f0d993cb3b3a57ae6a382f5fa3511e2" + }, + { + "path": "svg/openchangelog.svg", + "mode": "100755", + "type": "blob", + "sha": "f09aba5ce751a7220a712d5c8a305eca969387e0", + "size": 1134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f09aba5ce751a7220a712d5c8a305eca969387e0" + }, + { + "path": "svg/opencode-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "a4e4339586e48ebd0c41258118b23c48f832a46b", + "size": 981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4e4339586e48ebd0c41258118b23c48f832a46b" + }, + { + "path": "svg/opencode.svg", + "mode": "100644", + "type": "blob", + "sha": "cbfcccf51ab7c47061cd722e9e52e1f10cd39f24", + "size": 981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbfcccf51ab7c47061cd722e9e52e1f10cd39f24" + }, + { + "path": "svg/opencost.svg", + "mode": "100644", + "type": "blob", + "sha": "623ed9856cfe846ba010ec3db1e2759db4118f40", + "size": 5238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/623ed9856cfe846ba010ec3db1e2759db4118f40" + }, + { + "path": "svg/openeats-light.svg", + "mode": "100644", + "type": "blob", + "sha": "457c747b2a98e63059e49812f7d2f9706a11444e", + "size": 5426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/457c747b2a98e63059e49812f7d2f9706a11444e" + }, + { + "path": "svg/openeats.svg", + "mode": "100644", + "type": "blob", + "sha": "4b13e76f2308d01775969e5f8e39a969bb39a9cf", + "size": 5402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b13e76f2308d01775969e5f8e39a969bb39a9cf" + }, + { + "path": "svg/openemr-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d4d2eca3b15c9d53a6116bf29b3df2f315f468e5", + "size": 1204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d4d2eca3b15c9d53a6116bf29b3df2f315f468e5" + }, + { + "path": "svg/openemr.svg", + "mode": "100755", + "type": "blob", + "sha": "b8cdddda86f094dd02ffa2003074cc14b43b67c0", + "size": 1185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8cdddda86f094dd02ffa2003074cc14b43b67c0" + }, + { + "path": "svg/opengist-light.svg", + "mode": "100644", + "type": "blob", + "sha": "90e07819a84081601152396bdea6db3c3e3f6a59", + "size": 2266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90e07819a84081601152396bdea6db3c3e3f6a59" + }, + { + "path": "svg/opengist.svg", + "mode": "100644", + "type": "blob", + "sha": "e1ff1e93cbba8500e155e238ea790e74ce0f960a", + "size": 2249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1ff1e93cbba8500e155e238ea790e74ce0f960a" + }, + { + "path": "svg/openhab.svg", + "mode": "100644", + "type": "blob", + "sha": "62c61151c7c62b288370aa350be13d84e0f8079c", + "size": 427, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62c61151c7c62b288370aa350be13d84e0f8079c" + }, + { + "path": "svg/openldap.svg", + "mode": "100755", + "type": "blob", + "sha": "8f4b364bc9939e7e8cfdfdc4fce6af26996da0f5", + "size": 2352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f4b364bc9939e7e8cfdfdc4fce6af26996da0f5" + }, + { + "path": "svg/openlist.svg", + "mode": "100644", + "type": "blob", + "sha": "854a8ed150016e8a66b8976ab0063792b55030ef", + "size": 6118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/854a8ed150016e8a66b8976ab0063792b55030ef" + }, + { + "path": "svg/openmediavault.svg", + "mode": "100755", + "type": "blob", + "sha": "8bce4dd7f8ebe5a34cd5697a2d78e69cacfd28c6", + "size": 1710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bce4dd7f8ebe5a34cd5697a2d78e69cacfd28c6" + }, + { + "path": "svg/openoffice.svg", + "mode": "100644", + "type": "blob", + "sha": "510392b613bc5311bbefaf503c646dd9839940fc", + "size": 2529, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/510392b613bc5311bbefaf503c646dd9839940fc" + }, + { + "path": "svg/openpanel-light.svg", + "mode": "100644", + "type": "blob", + "sha": "50f326377ade7b7e70e1285f588de97e81bc95d3", + "size": 811, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50f326377ade7b7e70e1285f588de97e81bc95d3" + }, + { + "path": "svg/openpanel.svg", + "mode": "100755", + "type": "blob", + "sha": "69c825b603b2ead421ad36ae0afa85f4b36ae55f", + "size": 799, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69c825b603b2ead421ad36ae0afa85f4b36ae55f" + }, + { + "path": "svg/openproject.svg", + "mode": "100644", + "type": "blob", + "sha": "6fbaab97a00e6cc85219412a747609c9e66e586b", + "size": 994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fbaab97a00e6cc85219412a747609c9e66e586b" + }, + { + "path": "svg/openreads.svg", + "mode": "100755", + "type": "blob", + "sha": "246d16b64700d16f2eaae3eb6dca232d34094083", + "size": 3419, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/246d16b64700d16f2eaae3eb6dca232d34094083" + }, + { + "path": "svg/opensearch.svg", + "mode": "100644", + "type": "blob", + "sha": "2e694a860c96a9ab2e4fd70d5996e3a690ea36a7", + "size": 828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e694a860c96a9ab2e4fd70d5996e3a690ea36a7" + }, + { + "path": "svg/openshift-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "09cde3368e87dd8091449e5adc2580bdc264a575", + "size": 2557, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09cde3368e87dd8091449e5adc2580bdc264a575" + }, + { + "path": "svg/openshift.svg", + "mode": "100644", + "type": "blob", + "sha": "3d5b28c272d2f9abaa92e82ec1acc5a23debf9ab", + "size": 2877, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d5b28c272d2f9abaa92e82ec1acc5a23debf9ab" + }, + { + "path": "svg/openspeedtest.svg", + "mode": "100755", + "type": "blob", + "sha": "d0a3eeec42ce39c597c31aa82df71e7674105438", + "size": 8781, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0a3eeec42ce39c597c31aa82df71e7674105438" + }, + { + "path": "svg/openstack.svg", + "mode": "100644", + "type": "blob", + "sha": "0479a7540af4aeb4970dccf09295c2d04cf9aab4", + "size": 967, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0479a7540af4aeb4970dccf09295c2d04cf9aab4" + }, + { + "path": "svg/openstreetmap.svg", + "mode": "100644", + "type": "blob", + "sha": "c76666e72b4016c8cb8d0f46457961f1d95f5dfc", + "size": 46914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c76666e72b4016c8cb8d0f46457961f1d95f5dfc" + }, + { + "path": "svg/opensuse.svg", + "mode": "100644", + "type": "blob", + "sha": "de132f718568ad04bf93e2e952e4082cfe136646", + "size": 1709, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de132f718568ad04bf93e2e952e4082cfe136646" + }, + { + "path": "svg/opentalk.svg", + "mode": "100755", + "type": "blob", + "sha": "1c01c7d3c713bd0a3bb320bc5f52a96088e21907", + "size": 734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c01c7d3c713bd0a3bb320bc5f52a96088e21907" + }, + { + "path": "svg/opentofu.svg", + "mode": "100755", + "type": "blob", + "sha": "f96d28a19ee5d57f5f7a55d9a73a89e0f79290ec", + "size": 1743, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f96d28a19ee5d57f5f7a55d9a73a89e0f79290ec" + }, + { + "path": "svg/openvas.svg", + "mode": "100644", + "type": "blob", + "sha": "62da1f84098237177b248a3c84bd195f871d7dba", + "size": 17753, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62da1f84098237177b248a3c84bd195f871d7dba" + }, + { + "path": "svg/openvpn.svg", + "mode": "100755", + "type": "blob", + "sha": "2ca4cfa9340205756c01452d8aaedda91b4c70c4", + "size": 640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ca4cfa9340205756c01452d8aaedda91b4c70c4" + }, + { + "path": "svg/openwebrx-plus-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d688c04817f7e1f855a9cc05bcd1a0110870b80d", + "size": 3745, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d688c04817f7e1f855a9cc05bcd1a0110870b80d" + }, + { + "path": "svg/openwebrx-plus.svg", + "mode": "100644", + "type": "blob", + "sha": "e202b495ed8c19d71a940507dbfc315bab144fc2", + "size": 3778, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e202b495ed8c19d71a940507dbfc315bab144fc2" + }, + { + "path": "svg/openwrt.svg", + "mode": "100755", + "type": "blob", + "sha": "d99971b9ab2b07f17a66c77cd6ad125ba9ca4c24", + "size": 1288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d99971b9ab2b07f17a66c77cd6ad125ba9ca4c24" + }, + { + "path": "svg/openziti.svg", + "mode": "100644", + "type": "blob", + "sha": "36d5b582ef2f232b6131653bba56e3fdff0eaa5f", + "size": 1939, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36d5b582ef2f232b6131653bba56e3fdff0eaa5f" + }, + { + "path": "svg/opera-touch.svg", + "mode": "100644", + "type": "blob", + "sha": "13dfad3cb2be7eb2e517f11fcf58340851a8eb05", + "size": 1516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13dfad3cb2be7eb2e517f11fcf58340851a8eb05" + }, + { + "path": "svg/opera.svg", + "mode": "100755", + "type": "blob", + "sha": "610c227c04a28bfe4380d17ae2fd09a0eb224483", + "size": 1725, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/610c227c04a28bfe4380d17ae2fd09a0eb224483" + }, + { + "path": "svg/opnform.svg", + "mode": "100755", + "type": "blob", + "sha": "806f973dd21080c964b96b0acccfc41e5ce76ada", + "size": 629, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/806f973dd21080c964b96b0acccfc41e5ce76ada" + }, + { + "path": "svg/opnsense.svg", + "mode": "100755", + "type": "blob", + "sha": "65e6a58aeb26f766e1987fcbab0580c627cc0eef", + "size": 2386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65e6a58aeb26f766e1987fcbab0580c627cc0eef" + }, + { + "path": "svg/oracle-cloud.svg", + "mode": "100644", + "type": "blob", + "sha": "04c8d4136f478092e3e2f6f3c87af07f265b62ae", + "size": 166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04c8d4136f478092e3e2f6f3c87af07f265b62ae" + }, + { + "path": "svg/oracle.svg", + "mode": "100644", + "type": "blob", + "sha": "04c8d4136f478092e3e2f6f3c87af07f265b62ae", + "size": 166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04c8d4136f478092e3e2f6f3c87af07f265b62ae" + }, + { + "path": "svg/orange.svg", + "mode": "100644", + "type": "blob", + "sha": "57f44368dd5ee544c893ed45236146ea8ae19bcc", + "size": 1576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57f44368dd5ee544c893ed45236146ea8ae19bcc" + }, + { + "path": "svg/orb.svg", + "mode": "100644", + "type": "blob", + "sha": "826b51b6ffeabfb3dad161fc062ed26b4149aa1d", + "size": 6180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/826b51b6ffeabfb3dad161fc062ed26b4149aa1d" + }, + { + "path": "svg/oreilly-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "617b3511eae37a2c6871b5204e35a2642916ba5f", + "size": 1729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/617b3511eae37a2c6871b5204e35a2642916ba5f" + }, + { + "path": "svg/oreilly.svg", + "mode": "100644", + "type": "blob", + "sha": "6669ab5afb66308084a6154d7b669ba1d0f47c30", + "size": 1732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6669ab5afb66308084a6154d7b669ba1d0f47c30" + }, + { + "path": "svg/origin.svg", + "mode": "100644", + "type": "blob", + "sha": "429fbbedf0a591d697bd73162ed627bfcd4493fe", + "size": 1123, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/429fbbedf0a591d697bd73162ed627bfcd4493fe" + }, + { + "path": "svg/oscarr-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c2d5f73078f1d7dbb287eaa3382b10f6f6036ac6", + "size": 1948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c2d5f73078f1d7dbb287eaa3382b10f6f6036ac6" + }, + { + "path": "svg/oscarr.svg", + "mode": "100644", + "type": "blob", + "sha": "6046c7ace7a7f8d355675a4f43f74e2a580f1936", + "size": 1929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6046c7ace7a7f8d355675a4f43f74e2a580f1936" + }, + { + "path": "svg/osticket.svg", + "mode": "100644", + "type": "blob", + "sha": "583bbf90780368c0e586dbef3428892dea9188f7", + "size": 2120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/583bbf90780368c0e586dbef3428892dea9188f7" + }, + { + "path": "svg/osu.svg", + "mode": "100644", + "type": "blob", + "sha": "03055b866bb5e7a5372c66403d907a61ad3d60de", + "size": 6127, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03055b866bb5e7a5372c66403d907a61ad3d60de" + }, + { + "path": "svg/otter-wiki-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "aff096f4f362ef11a32073e07a68b0fd5ca34b32", + "size": 15687, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aff096f4f362ef11a32073e07a68b0fd5ca34b32" + }, + { + "path": "svg/otter-wiki.svg", + "mode": "100644", + "type": "blob", + "sha": "a0ea6e48c782ca8feff1e948e053a011dcdf2336", + "size": 15675, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0ea6e48c782ca8feff1e948e053a011dcdf2336" + }, + { + "path": "svg/our-shopping-list.svg", + "mode": "100644", + "type": "blob", + "sha": "684f7eb40ec958dfa86ae0b76fb32864a914073b", + "size": 4055, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/684f7eb40ec958dfa86ae0b76fb32864a914073b" + }, + { + "path": "svg/outline-light.svg", + "mode": "100644", + "type": "blob", + "sha": "cab58ad1cec9f682c0cb9ee5c34803d5c7f4d750", + "size": 845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cab58ad1cec9f682c0cb9ee5c34803d5c7f4d750" + }, + { + "path": "svg/outline.svg", + "mode": "100755", + "type": "blob", + "sha": "5cbfb7b625bfa0fba0c322b08fc7b22d52b24840", + "size": 845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cbfb7b625bfa0fba0c322b08fc7b22d52b24840" + }, + { + "path": "svg/overleaf.svg", + "mode": "100755", + "type": "blob", + "sha": "81d7dc109942319147b062fb558145927dd5d742", + "size": 608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81d7dc109942319147b062fb558145927dd5d742" + }, + { + "path": "svg/overseerr.svg", + "mode": "100755", + "type": "blob", + "sha": "074453277df9bdf9c40578419097d8df000c1efc", + "size": 1486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/074453277df9bdf9c40578419097d8df000c1efc" + }, + { + "path": "svg/ovh.svg", + "mode": "100644", + "type": "blob", + "sha": "9daa90514754672b05501989100933b855a87757", + "size": 378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9daa90514754672b05501989100933b855a87757" + }, + { + "path": "svg/ovirt-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4dfa79f5b60c90ba1b22c148c0276b59168fd800", + "size": 2059, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4dfa79f5b60c90ba1b22c148c0276b59168fd800" + }, + { + "path": "svg/ovirt.svg", + "mode": "100644", + "type": "blob", + "sha": "2fc085c184da5928d7fe7a835abacd0dadf531be", + "size": 1951, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fc085c184da5928d7fe7a835abacd0dadf531be" + }, + { + "path": "svg/owncast.svg", + "mode": "100755", + "type": "blob", + "sha": "b15843080d06319adaf7bcdcc6516ea2ba93a34e", + "size": 5296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b15843080d06319adaf7bcdcc6516ea2ba93a34e" + }, + { + "path": "svg/owncloud.svg", + "mode": "100755", + "type": "blob", + "sha": "40c369fc97800e34c69fd9003916eff369afc55d", + "size": 1610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40c369fc97800e34c69fd9003916eff369afc55d" + }, + { + "path": "svg/owntone.svg", + "mode": "100755", + "type": "blob", + "sha": "fb157eb845a71a87ed40f3d88892675f7af9b072", + "size": 1668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb157eb845a71a87ed40f3d88892675f7af9b072" + }, + { + "path": "svg/owntracks.svg", + "mode": "100644", + "type": "blob", + "sha": "7c24a243c78f9279b0ecb76549917541e6029fa1", + "size": 1832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c24a243c78f9279b0ecb76549917541e6029fa1" + }, + { + "path": "svg/oxker-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b3a62d5a9bcb9723c762b575e7e80125100fbe90", + "size": 8640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3a62d5a9bcb9723c762b575e7e80125100fbe90" + }, + { + "path": "svg/oxker.svg", + "mode": "100755", + "type": "blob", + "sha": "7563ff110523e52ae75c819030d0176445aa3b8d", + "size": 8592, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7563ff110523e52ae75c819030d0176445aa3b8d" + }, + { + "path": "svg/p-cal.svg", + "mode": "100644", + "type": "blob", + "sha": "a4b0186e60ae88974a791421b8a37535cd6d5723", + "size": 1962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4b0186e60ae88974a791421b8a37535cd6d5723" + }, + { + "path": "svg/p1ib.svg", + "mode": "100644", + "type": "blob", + "sha": "78a597da22340d3e0317746cd5e9cff230b6fd6f", + "size": 4737, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78a597da22340d3e0317746cd5e9cff230b6fd6f" + }, + { + "path": "svg/packetfence-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "88b9c0ba34922a090982caad22c767a97b205547", + "size": 2412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88b9c0ba34922a090982caad22c767a97b205547" + }, + { + "path": "svg/packetfence-full-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7efe8679b2dc9291ddb57f99d7b2a3eb4ad09fa9", + "size": 10260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7efe8679b2dc9291ddb57f99d7b2a3eb4ad09fa9" + }, + { + "path": "svg/packetfence-full.svg", + "mode": "100644", + "type": "blob", + "sha": "a9561fb245c1ce031beff84247561165bd16a9d1", + "size": 10140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9561fb245c1ce031beff84247561165bd16a9d1" + }, + { + "path": "svg/packetfence.svg", + "mode": "100644", + "type": "blob", + "sha": "d055a1e3e3e32d41fc02d70743aff1c8e36adfd2", + "size": 2358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d055a1e3e3e32d41fc02d70743aff1c8e36adfd2" + }, + { + "path": "svg/pagerduty.svg", + "mode": "100644", + "type": "blob", + "sha": "8d04e39710f881fa1092a408e419ac4a3d85b596", + "size": 904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d04e39710f881fa1092a408e419ac4a3d85b596" + }, + { + "path": "svg/palemoon.svg", + "mode": "100644", + "type": "blob", + "sha": "7c0c44a1ea9de26b27ae1826e5eb42b882aae05e", + "size": 982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c0c44a1ea9de26b27ae1826e5eb42b882aae05e" + }, + { + "path": "svg/palo-alto.svg", + "mode": "100644", + "type": "blob", + "sha": "37095cb768c4313579be673be6f682570cbb67c9", + "size": 410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37095cb768c4313579be673be6f682570cbb67c9" + }, + { + "path": "svg/pangolin.svg", + "mode": "100644", + "type": "blob", + "sha": "573b796bda7c20424dc8946fe956c68c8da861b0", + "size": 1670, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/573b796bda7c20424dc8946fe956c68c8da861b0" + }, + { + "path": "svg/paperless-ng.svg", + "mode": "100644", + "type": "blob", + "sha": "9527d5d496c27c5b0c9e9d760c45cae6bae327b2", + "size": 688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9527d5d496c27c5b0c9e9d760c45cae6bae327b2" + }, + { + "path": "svg/paperless-ngx.svg", + "mode": "100755", + "type": "blob", + "sha": "cdf02c8ac1c705f73a53c884f88142b256307de4", + "size": 629, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdf02c8ac1c705f73a53c884f88142b256307de4" + }, + { + "path": "svg/paperless.svg", + "mode": "100644", + "type": "blob", + "sha": "2d6dcaa087e7d0022eee5ff4d5141000356280ce", + "size": 468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d6dcaa087e7d0022eee5ff4d5141000356280ce" + }, + { + "path": "svg/papermark-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f93c827764ee4ac91889d8970c3d98b29ff13bf5", + "size": 865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f93c827764ee4ac91889d8970c3d98b29ff13bf5" + }, + { + "path": "svg/papermark.svg", + "mode": "100755", + "type": "blob", + "sha": "47b136246e69733a1a5fc1dfc64eaa88119a0a96", + "size": 850, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47b136246e69733a1a5fc1dfc64eaa88119a0a96" + }, + { + "path": "svg/papermerge-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2f64ef35190f306896aa8040cfe5f1de1ee125db", + "size": 2666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f64ef35190f306896aa8040cfe5f1de1ee125db" + }, + { + "path": "svg/papermerge.svg", + "mode": "100755", + "type": "blob", + "sha": "ca8b41fa125362ec88f07a5aefda21109674b4ce", + "size": 2570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca8b41fa125362ec88f07a5aefda21109674b4ce" + }, + { + "path": "svg/papra.svg", + "mode": "100644", + "type": "blob", + "sha": "69e9cab6432188a9b3766ffcdf01992e69ea451a", + "size": 864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69e9cab6432188a9b3766ffcdf01992e69ea451a" + }, + { + "path": "svg/parseable.svg", + "mode": "100755", + "type": "blob", + "sha": "ae180d7e7c40f031476eb0db4eaee1fd74f0f6e4", + "size": 854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae180d7e7c40f031476eb0db4eaee1fd74f0f6e4" + }, + { + "path": "svg/part-db-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b17b3b96a88f5a1c21434ab46de0b9f7257a1e6c", + "size": 2357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b17b3b96a88f5a1c21434ab46de0b9f7257a1e6c" + }, + { + "path": "svg/part-db.svg", + "mode": "100644", + "type": "blob", + "sha": "08d4c7fc4475459a534dd73014c11914bdea6196", + "size": 2345, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08d4c7fc4475459a534dd73014c11914bdea6196" + }, + { + "path": "svg/partkeepr.svg", + "mode": "100644", + "type": "blob", + "sha": "af53269af09f9ff94a3e6dec1f07bacaf1d78bcf", + "size": 653, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af53269af09f9ff94a3e6dec1f07bacaf1d78bcf" + }, + { + "path": "svg/passbolt.svg", + "mode": "100755", + "type": "blob", + "sha": "06f40a0c7c307a2f798a4d279f839704bdc3390d", + "size": 707, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06f40a0c7c307a2f798a4d279f839704bdc3390d" + }, + { + "path": "svg/passwork.svg", + "mode": "100644", + "type": "blob", + "sha": "0308bbaab7fe5a1e0adb0b26cb645e0436d25b29", + "size": 1148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0308bbaab7fe5a1e0adb0b26cb645e0436d25b29" + }, + { + "path": "svg/pastebin-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7653ef97c7b054299a1edbce428508de06d261dc", + "size": 4548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7653ef97c7b054299a1edbce428508de06d261dc" + }, + { + "path": "svg/pastebin.svg", + "mode": "100644", + "type": "blob", + "sha": "8bb60f199167e760f47d835beb6d16de225adb45", + "size": 4530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bb60f199167e760f47d835beb6d16de225adb45" + }, + { + "path": "svg/patchmon.svg", + "mode": "100644", + "type": "blob", + "sha": "9ab6c92929044ca55d0a48da8832b95a910849f8", + "size": 3875, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ab6c92929044ca55d0a48da8832b95a910849f8" + }, + { + "path": "svg/patreon-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7cc7f8f24f1c3c0ecd55bbbf5ef27e3f182074cf", + "size": 460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cc7f8f24f1c3c0ecd55bbbf5ef27e3f182074cf" + }, + { + "path": "svg/patreon.svg", + "mode": "100644", + "type": "blob", + "sha": "6432e763d5d3e5ae0384470f16b73c84145fd679", + "size": 460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6432e763d5d3e5ae0384470f16b73c84145fd679" + }, + { + "path": "svg/payload-light.svg", + "mode": "100644", + "type": "blob", + "sha": "4de9e68bec14e3347149c8ae27dc3d143accb9bd", + "size": 369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4de9e68bec14e3347149c8ae27dc3d143accb9bd" + }, + { + "path": "svg/payload.svg", + "mode": "100755", + "type": "blob", + "sha": "1882ae5e4ca476d3251705e25b4bc1ebb91c48ad", + "size": 330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1882ae5e4ca476d3251705e25b4bc1ebb91c48ad" + }, + { + "path": "svg/paymenter.svg", + "mode": "100644", + "type": "blob", + "sha": "09da007c5dd4aa04a3418e90d01e488c57d9b14b", + "size": 1408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09da007c5dd4aa04a3418e90d01e488c57d9b14b" + }, + { + "path": "svg/paypal.svg", + "mode": "100644", + "type": "blob", + "sha": "64053f7ebc171207250c4da65f5ad46d058ee00f", + "size": 969, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64053f7ebc171207250c4da65f5ad46d058ee00f" + }, + { + "path": "svg/pdfding-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8d55bc4dca1d9fd477751948596856be37799eb1", + "size": 773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d55bc4dca1d9fd477751948596856be37799eb1" + }, + { + "path": "svg/pdfding.svg", + "mode": "100755", + "type": "blob", + "sha": "b8e33d4eb880640958bbb7e61f3e00872ff4a912", + "size": 773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8e33d4eb880640958bbb7e61f3e00872ff4a912" + }, + { + "path": "svg/peacock-light.svg", + "mode": "100644", + "type": "blob", + "sha": "24bfbc5eff543d63c8ef59fa1b24b5e3fba7f47c", + "size": 1151, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24bfbc5eff543d63c8ef59fa1b24b5e3fba7f47c" + }, + { + "path": "svg/peacock.svg", + "mode": "100755", + "type": "blob", + "sha": "e9e48051bd89315b3e77c7096ded0d6709e1fa17", + "size": 1139, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9e48051bd89315b3e77c7096ded0d6709e1fa17" + }, + { + "path": "svg/peanut-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e22fb2fefb095e24fd0e8af69d998493a588a1d0", + "size": 4857, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e22fb2fefb095e24fd0e8af69d998493a588a1d0" + }, + { + "path": "svg/peanut.svg", + "mode": "100755", + "type": "blob", + "sha": "1146bc7b7dc8be215dd68a2a92f67f6ea09d206e", + "size": 4821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1146bc7b7dc8be215dd68a2a92f67f6ea09d206e" + }, + { + "path": "svg/peertube.svg", + "mode": "100755", + "type": "blob", + "sha": "bbfe2c4d815f7d0e4ac7e07979d40ce971f71bc6", + "size": 301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbfe2c4d815f7d0e4ac7e07979d40ce971f71bc6" + }, + { + "path": "svg/pelican-panel.svg", + "mode": "100755", + "type": "blob", + "sha": "07ed9d8464e52ea8eb281e4191bc9f1008504e2a", + "size": 7393, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07ed9d8464e52ea8eb281e4191bc9f1008504e2a" + }, + { + "path": "svg/penpot-light.svg", + "mode": "100644", + "type": "blob", + "sha": "fde411e8b0685ad3f3cec2229d7eff4e80f95e93", + "size": 688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fde411e8b0685ad3f3cec2229d7eff4e80f95e93" + }, + { + "path": "svg/penpot.svg", + "mode": "100755", + "type": "blob", + "sha": "9b424b4076389bff7e0990efcb88f2e777e34fd7", + "size": 676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b424b4076389bff7e0990efcb88f2e777e34fd7" + }, + { + "path": "svg/peppermint.svg", + "mode": "100755", + "type": "blob", + "sha": "6f062076ee0801af0e0238da740349c60d37e467", + "size": 5857, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f062076ee0801af0e0238da740349c60d37e467" + }, + { + "path": "svg/pepperminty-wiki.svg", + "mode": "100755", + "type": "blob", + "sha": "95574adde6afcf61beb9ca8e2f1592f14cdefffa", + "size": 16544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95574adde6afcf61beb9ca8e2f1592f14cdefffa" + }, + { + "path": "svg/perlite.svg", + "mode": "100644", + "type": "blob", + "sha": "2a6175a66138d4cc33cb5d88fe8811faff0f9b8e", + "size": 10072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a6175a66138d4cc33cb5d88fe8811faff0f9b8e" + }, + { + "path": "svg/perplexity-book-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "fbc24e06eb1967ba495acd7823e8c141f9af5a8c", + "size": 1120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbc24e06eb1967ba495acd7823e8c141f9af5a8c" + }, + { + "path": "svg/perplexity-book-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d899aaf99cc68168ff04bf5858ddcfd747ab8f36", + "size": 1118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d899aaf99cc68168ff04bf5858ddcfd747ab8f36" + }, + { + "path": "svg/perplexity-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "858c8c459d9ae5863af11dcf7b0eac3c74846e4f", + "size": 7663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/858c8c459d9ae5863af11dcf7b0eac3c74846e4f" + }, + { + "path": "svg/perplexity-light.svg", + "mode": "100644", + "type": "blob", + "sha": "92d58abc64522eb030a64a1364a5fb61f35566b5", + "size": 7660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92d58abc64522eb030a64a1364a5fb61f35566b5" + }, + { + "path": "svg/pfsense-light.svg", + "mode": "100644", + "type": "blob", + "sha": "04be212d9dcac78615e89a0e53a6d73fe5842da4", + "size": 1404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04be212d9dcac78615e89a0e53a6d73fe5842da4" + }, + { + "path": "svg/pfsense.svg", + "mode": "100755", + "type": "blob", + "sha": "f97a3f4220caa71cad6dfb89a5fbab62d824b72c", + "size": 1404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f97a3f4220caa71cad6dfb89a5fbab62d824b72c" + }, + { + "path": "svg/pg-back-web.svg", + "mode": "100755", + "type": "blob", + "sha": "b4bfe32264d22438683d7e6e6c9ec502163af5b5", + "size": 4805, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4bfe32264d22438683d7e6e6c9ec502163af5b5" + }, + { + "path": "svg/pgadmin.svg", + "mode": "100644", + "type": "blob", + "sha": "3f6340fd997f8a7c0f08069bcec10f1aa7a28457", + "size": 3944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f6340fd997f8a7c0f08069bcec10f1aa7a28457" + }, + { + "path": "svg/pgbackweb-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "abff8196d09be34ecd56a4c1848f912cc0b1fd6a", + "size": 7302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abff8196d09be34ecd56a4c1848f912cc0b1fd6a" + }, + { + "path": "svg/pgbackweb-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d2dd26c02fc56c1f278a94b7aaf56a82ca905c12", + "size": 7356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2dd26c02fc56c1f278a94b7aaf56a82ca905c12" + }, + { + "path": "svg/phanpy.svg", + "mode": "100755", + "type": "blob", + "sha": "81648c204b268602154b472166388e3e253a1877", + "size": 831, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81648c204b268602154b472166388e3e253a1877" + }, + { + "path": "svg/phase-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "08f076ae155cd531f7d4ecf467cd8a1438b068b5", + "size": 868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08f076ae155cd531f7d4ecf467cd8a1438b068b5" + }, + { + "path": "svg/phase.svg", + "mode": "100644", + "type": "blob", + "sha": "39f95768e97076e275b4e61a2aaef90725e33d89", + "size": 868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/39f95768e97076e275b4e61a2aaef90725e33d89" + }, + { + "path": "svg/phoneinfoga-light.svg", + "mode": "100644", + "type": "blob", + "sha": "1989cbde8547d44090fc584c86985e2bbf28a17c", + "size": 10535, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1989cbde8547d44090fc584c86985e2bbf28a17c" + }, + { + "path": "svg/phoneinfoga.svg", + "mode": "100644", + "type": "blob", + "sha": "de7e05f1760d37a69b851e19eb01859b8f4a0b91", + "size": 10516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de7e05f1760d37a69b851e19eb01859b8f4a0b91" + }, + { + "path": "svg/phorge-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ffd027e3f647ac94244081e574bdfe7124cc785d", + "size": 575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffd027e3f647ac94244081e574bdfe7124cc785d" + }, + { + "path": "svg/phorge.svg", + "mode": "100755", + "type": "blob", + "sha": "4ee8f39394c2948e7aede2fd718c45d4da98dd6c", + "size": 563, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ee8f39394c2948e7aede2fd718c45d4da98dd6c" + }, + { + "path": "svg/phoscon-light.svg", + "mode": "100644", + "type": "blob", + "sha": "77dd2ffc2363cedff367360c1c975654fcb97952", + "size": 448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77dd2ffc2363cedff367360c1c975654fcb97952" + }, + { + "path": "svg/phoscon.svg", + "mode": "100644", + "type": "blob", + "sha": "90558c58ff4cab020966fa9485cf3175ec662676", + "size": 448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90558c58ff4cab020966fa9485cf3175ec662676" + }, + { + "path": "svg/photonix-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f91955f8bfb196a01e700876f6e4891ed873ebf3", + "size": 1431, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f91955f8bfb196a01e700876f6e4891ed873ebf3" + }, + { + "path": "svg/photonix.svg", + "mode": "100644", + "type": "blob", + "sha": "1556ca6aaf90f4c2badff9f8c5be57b63b57c767", + "size": 1416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1556ca6aaf90f4c2badff9f8c5be57b63b57c767" + }, + { + "path": "svg/photopea.svg", + "mode": "100755", + "type": "blob", + "sha": "4ff97a07b008c0fa322687f494594a151cca9f7b", + "size": 571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ff97a07b008c0fa322687f494594a151cca9f7b" + }, + { + "path": "svg/photoprism-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7e2d5d0447e2d1dbb5d2030c1fc7cdb6a4ad990a", + "size": 782, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e2d5d0447e2d1dbb5d2030c1fc7cdb6a4ad990a" + }, + { + "path": "svg/photoprism.svg", + "mode": "100755", + "type": "blob", + "sha": "1b60ff82ec618686b1ee2dc547fe49f8f70dd1e7", + "size": 773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b60ff82ec618686b1ee2dc547fe49f8f70dd1e7" + }, + { + "path": "svg/photostructure-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "06dd0bbc9ec60dc022fb12d898fb9b04f8c3e090", + "size": 1923, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06dd0bbc9ec60dc022fb12d898fb9b04f8c3e090" + }, + { + "path": "svg/photostructure.svg", + "mode": "100644", + "type": "blob", + "sha": "36332821d96173d1595727025dc558e9d16f138f", + "size": 1884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36332821d96173d1595727025dc558e9d16f138f" + }, + { + "path": "svg/photoview.svg", + "mode": "100755", + "type": "blob", + "sha": "c3aae178923cf999db563bf59f0f7a94c32a4e04", + "size": 906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3aae178923cf999db563bf59f0f7a94c32a4e04" + }, + { + "path": "svg/php-light.svg", + "mode": "100644", + "type": "blob", + "sha": "027593bc8d3c53a60e21de10949009beb3a880a1", + "size": 5615, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/027593bc8d3c53a60e21de10949009beb3a880a1" + }, + { + "path": "svg/php.svg", + "mode": "100644", + "type": "blob", + "sha": "5338046b37b8a1f2577d467d1e2ca83e9c4bdedb", + "size": 5948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5338046b37b8a1f2577d467d1e2ca83e9c4bdedb" + }, + { + "path": "svg/phpmyadmin.svg", + "mode": "100644", + "type": "blob", + "sha": "54d5b812067cf02be3ff0aa7b9b05cb4091db02c", + "size": 13298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54d5b812067cf02be3ff0aa7b9b05cb4091db02c" + }, + { + "path": "svg/pi-hole.svg", + "mode": "100755", + "type": "blob", + "sha": "5b023fc6a8e4f2c0fffc6ed84d3147668059bcbe", + "size": 1434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b023fc6a8e4f2c0fffc6ed84d3147668059bcbe" + }, + { + "path": "svg/pia.svg", + "mode": "100644", + "type": "blob", + "sha": "2d3bb398c32cb7ebfb0b8ac585c478e130f18189", + "size": 4006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d3bb398c32cb7ebfb0b8ac585c478e130f18189" + }, + { + "path": "svg/picsur-light.svg", + "mode": "100644", + "type": "blob", + "sha": "135b4b1ed8ce2ea2f1954109d40e14ebcd6d4e11", + "size": 659, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/135b4b1ed8ce2ea2f1954109d40e14ebcd6d4e11" + }, + { + "path": "svg/picsur.svg", + "mode": "100644", + "type": "blob", + "sha": "fac2d5929e97aac1d7feeacf9dc899f9158b3581", + "size": 662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fac2d5929e97aac1d7feeacf9dc899f9158b3581" + }, + { + "path": "svg/pigallery2-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "3f4f48cee87a150e7976c66fbb2fb5c0386531e1", + "size": 5500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f4f48cee87a150e7976c66fbb2fb5c0386531e1" + }, + { + "path": "svg/pigallery2.svg", + "mode": "100644", + "type": "blob", + "sha": "d697d5a02e307d1c0c7e3c3a24d0af6e2de9cc07", + "size": 5500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d697d5a02e307d1c0c7e3c3a24d0af6e2de9cc07" + }, + { + "path": "svg/pikapods.svg", + "mode": "100755", + "type": "blob", + "sha": "e3995ee073d3fc7851ac1f30dee0c90e18f9c4d6", + "size": 978, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3995ee073d3fc7851ac1f30dee0c90e18f9c4d6" + }, + { + "path": "svg/pikvm-light.svg", + "mode": "100644", + "type": "blob", + "sha": "eff2ef8b8a612777ea75780fb973046abf585de2", + "size": 5315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eff2ef8b8a612777ea75780fb973046abf585de2" + }, + { + "path": "svg/pikvm.svg", + "mode": "100644", + "type": "blob", + "sha": "8d9b89dae2527569b6cefb53586f98fcab0c76dc", + "size": 5315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d9b89dae2527569b6cefb53586f98fcab0c76dc" + }, + { + "path": "svg/pingdom-light.svg", + "mode": "100644", + "type": "blob", + "sha": "81720abba84c18cb14ee8b42f7cf4597c510edcb", + "size": 575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81720abba84c18cb14ee8b42f7cf4597c510edcb" + }, + { + "path": "svg/pingdom.svg", + "mode": "100644", + "type": "blob", + "sha": "79667bc9e6b10b5840180de2565724c7e7f88874", + "size": 578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79667bc9e6b10b5840180de2565724c7e7f88874" + }, + { + "path": "svg/pingvin-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b8b2cab7f6d0891908355080a134a57cce5a94f1", + "size": 974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8b2cab7f6d0891908355080a134a57cce5a94f1" + }, + { + "path": "svg/pingvin-share-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b8b2cab7f6d0891908355080a134a57cce5a94f1", + "size": 974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8b2cab7f6d0891908355080a134a57cce5a94f1" + }, + { + "path": "svg/pingvin-share.svg", + "mode": "100755", + "type": "blob", + "sha": "9f3dca9eaa62a788c65715bf8d2032b7993df4c9", + "size": 973, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f3dca9eaa62a788c65715bf8d2032b7993df4c9" + }, + { + "path": "svg/pingvin.svg", + "mode": "100644", + "type": "blob", + "sha": "c802c25751c5387161154b090de37aa1502e371c", + "size": 971, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c802c25751c5387161154b090de37aa1502e371c" + }, + { + "path": "svg/pinkary.svg", + "mode": "100755", + "type": "blob", + "sha": "96dbb5ae315f9bc4d6a1abbf9e22dfe5388ef828", + "size": 1393, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96dbb5ae315f9bc4d6a1abbf9e22dfe5388ef828" + }, + { + "path": "svg/pinterest.svg", + "mode": "100755", + "type": "blob", + "sha": "d8ba79288445fbc34cbb4348752f87645eb20047", + "size": 992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8ba79288445fbc34cbb4348752f87645eb20047" + }, + { + "path": "svg/pioneer-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a5fb8554ce14cf08fb6342478713ed31605da770", + "size": 395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5fb8554ce14cf08fb6342478713ed31605da770" + }, + { + "path": "svg/pioneer.svg", + "mode": "100644", + "type": "blob", + "sha": "db4db690b39c5af3cf6492ec45a2a37a950eae73", + "size": 395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db4db690b39c5af3cf6492ec45a2a37a950eae73" + }, + { + "path": "svg/piped.svg", + "mode": "100755", + "type": "blob", + "sha": "2b7b6972b9b83646240b1f118f78def79a56584a", + "size": 3315, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b7b6972b9b83646240b1f118f78def79a56584a" + }, + { + "path": "svg/pirate-proxy.svg", + "mode": "100644", + "type": "blob", + "sha": "f08fd35bae746efd95f50aa183f6ce95b164871e", + "size": 100271, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f08fd35bae746efd95f50aa183f6ce95b164871e" + }, + { + "path": "svg/piwigo.svg", + "mode": "100755", + "type": "blob", + "sha": "dfebc994594d42c7dec34688c6aa168a26a7ea99", + "size": 791, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfebc994594d42c7dec34688c6aa168a26a7ea99" + }, + { + "path": "svg/pixelfed.svg", + "mode": "100755", + "type": "blob", + "sha": "3aa9932258e0ed890582fafee5758301dd580a87", + "size": 7202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3aa9932258e0ed890582fafee5758301dd580a87" + }, + { + "path": "svg/plane.svg", + "mode": "100755", + "type": "blob", + "sha": "f108a08612219675431ef3d3e424185f230936d6", + "size": 330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f108a08612219675431ef3d3e424185f230936d6" + }, + { + "path": "svg/planka-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "37088b98393355ddf9e493a87d807e9767f787df", + "size": 2160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37088b98393355ddf9e493a87d807e9767f787df" + }, + { + "path": "svg/planka.svg", + "mode": "100755", + "type": "blob", + "sha": "1915a037cf3cbca01dc9a0bb01c0792079620573", + "size": 2160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1915a037cf3cbca01dc9a0bb01c0792079620573" + }, + { + "path": "svg/plantuml.svg", + "mode": "100644", + "type": "blob", + "sha": "dae2e98354240f38fd807713ad9508dbdaa5dce0", + "size": 2808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dae2e98354240f38fd807713ad9508dbdaa5dce0" + }, + { + "path": "svg/platzi.svg", + "mode": "100644", + "type": "blob", + "sha": "c90a1f1d150d0525dec939d804667c7403d3cb8a", + "size": 558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c90a1f1d150d0525dec939d804667c7403d3cb8a" + }, + { + "path": "svg/plausible.svg", + "mode": "100755", + "type": "blob", + "sha": "a370bf0bdcbddd563af3fbbaaad91ffa8682360b", + "size": 1279, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a370bf0bdcbddd563af3fbbaaad91ffa8682360b" + }, + { + "path": "svg/playstation.svg", + "mode": "100755", + "type": "blob", + "sha": "118573f8b38e219c6c91c0544fcb64e1a8906a49", + "size": 1240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/118573f8b38e219c6c91c0544fcb64e1a8906a49" + }, + { + "path": "svg/pleroma.svg", + "mode": "100755", + "type": "blob", + "sha": "b53250f87fe60fb793fc7f094606e8b19192407f", + "size": 510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b53250f87fe60fb793fc7f094606e8b19192407f" + }, + { + "path": "svg/plesk.svg", + "mode": "100644", + "type": "blob", + "sha": "950790c5e0f6d137f9d5ac472c1b81b0b9089c52", + "size": 1929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/950790c5e0f6d137f9d5ac472c1b81b0b9089c52" + }, + { + "path": "svg/plex-alt-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7adfa57da50bf84b7cb071e46b6d6c70a4599745", + "size": 1993, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7adfa57da50bf84b7cb071e46b6d6c70a4599745" + }, + { + "path": "svg/plex-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "db3b3336b66970c56f56046fcbcd38cfd6675a3b", + "size": 1975, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db3b3336b66970c56f56046fcbcd38cfd6675a3b" + }, + { + "path": "svg/plex-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3ca7a54152438acca89fb19301d233728b48b7a0", + "size": 188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ca7a54152438acca89fb19301d233728b48b7a0" + }, + { + "path": "svg/plex-rewind.svg", + "mode": "100755", + "type": "blob", + "sha": "296ab2afd2702eb82de569f71b500c6fe9e06f8f", + "size": 1172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/296ab2afd2702eb82de569f71b500c6fe9e06f8f" + }, + { + "path": "svg/plex.svg", + "mode": "100755", + "type": "blob", + "sha": "ae62ba73bc72bd6956051eec87b932ea91d9fec6", + "size": 191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae62ba73bc72bd6956051eec87b932ea91d9fec6" + }, + { + "path": "svg/plexrequests-light.svg", + "mode": "100644", + "type": "blob", + "sha": "62771924e83ac46b9731d06976690fd433e97263", + "size": 186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62771924e83ac46b9731d06976690fd433e97263" + }, + { + "path": "svg/plexrequests.svg", + "mode": "100644", + "type": "blob", + "sha": "7aac93d44a9401f0e2233c11a3120746dd4531b8", + "size": 174, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aac93d44a9401f0e2233c11a3120746dd4531b8" + }, + { + "path": "svg/plume.svg", + "mode": "100644", + "type": "blob", + "sha": "316123aae0aac0ab8b668321cd31c8e99a484aef", + "size": 645, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/316123aae0aac0ab8b668321cd31c8e99a484aef" + }, + { + "path": "svg/pluralsight.svg", + "mode": "100644", + "type": "blob", + "sha": "440bb3efa9dec795551f7a5b27039d7dce2d7ff6", + "size": 1296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/440bb3efa9dec795551f7a5b27039d7dce2d7ff6" + }, + { + "path": "svg/pocket-casts-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "4be1b218cb1f27fc35f3062725e5bfaa99fa3937", + "size": 597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4be1b218cb1f27fc35f3062725e5bfaa99fa3937" + }, + { + "path": "svg/pocket-casts.svg", + "mode": "100755", + "type": "blob", + "sha": "24cc3fc253eb63f88669ca56e7f70b89219325d7", + "size": 597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24cc3fc253eb63f88669ca56e7f70b89219325d7" + }, + { + "path": "svg/pocket-id-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3da95465c480c26adaa1b3c27a28a3d53af91d18", + "size": 404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3da95465c480c26adaa1b3c27a28a3d53af91d18" + }, + { + "path": "svg/pocket-id.svg", + "mode": "100755", + "type": "blob", + "sha": "b76d638de1a9783acc9408535851ffad4d24d482", + "size": 389, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b76d638de1a9783acc9408535851ffad4d24d482" + }, + { + "path": "svg/pocketbase-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "8b21dca230091ca25fb3d2f0bb9a6c51d70d0854", + "size": 1747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b21dca230091ca25fb3d2f0bb9a6c51d70d0854" + }, + { + "path": "svg/pocketbase.svg", + "mode": "100644", + "type": "blob", + "sha": "4f5df8aa8222543612b151bc05d3506a89f8d83f", + "size": 1714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f5df8aa8222543612b151bc05d3506a89f8d83f" + }, + { + "path": "svg/podfetch-light.svg", + "mode": "100644", + "type": "blob", + "sha": "0aaa5ce2b17382b9b5454ec716be3c313f472941", + "size": 394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0aaa5ce2b17382b9b5454ec716be3c313f472941" + }, + { + "path": "svg/podfetch.svg", + "mode": "100755", + "type": "blob", + "sha": "31cdf01253ed09d9181ea51439855aa3a5903da8", + "size": 376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31cdf01253ed09d9181ea51439855aa3a5903da8" + }, + { + "path": "svg/podify.svg", + "mode": "100644", + "type": "blob", + "sha": "18af8d3f96446ef106a04c36ca62be392d9a8c6c", + "size": 1544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18af8d3f96446ef106a04c36ca62be392d9a8c6c" + }, + { + "path": "svg/podman.svg", + "mode": "100755", + "type": "blob", + "sha": "bef0430e56b0fc3a2b8325ded5eec03633ece08f", + "size": 12245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bef0430e56b0fc3a2b8325ded5eec03633ece08f" + }, + { + "path": "svg/policycontroller.svg", + "mode": "100644", + "type": "blob", + "sha": "8e6ce8025eadf40c66cfe93c026504aa03036379", + "size": 5005, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e6ce8025eadf40c66cfe93c026504aa03036379" + }, + { + "path": "svg/poly.svg", + "mode": "100644", + "type": "blob", + "sha": "90c18d816935f08ebba8fdddd1eeb0cbf09acfd1", + "size": 1630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90c18d816935f08ebba8fdddd1eeb0cbf09acfd1" + }, + { + "path": "svg/polywork.svg", + "mode": "100644", + "type": "blob", + "sha": "622d6cc22164d642435130ae6bff756aa1734cf7", + "size": 1389, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/622d6cc22164d642435130ae6bff756aa1734cf7" + }, + { + "path": "svg/portainer-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "c5636135c5f80b181e648726110bb8bd1f147460", + "size": 1370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5636135c5f80b181e648726110bb8bd1f147460" + }, + { + "path": "svg/portainer-be-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "8b3b7bd5430bf07ff80c140e09ac27bbfa86f508", + "size": 677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b3b7bd5430bf07ff80c140e09ac27bbfa86f508" + }, + { + "path": "svg/portainer-be.svg", + "mode": "100644", + "type": "blob", + "sha": "3243c31b3341a80b5b73a19672fcd513fd38aa13", + "size": 675, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3243c31b3341a80b5b73a19672fcd513fd38aa13" + }, + { + "path": "svg/portainer-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "6e8805c40a9ee42ba7ee04e3b35fd058efffde19", + "size": 677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e8805c40a9ee42ba7ee04e3b35fd058efffde19" + }, + { + "path": "svg/portainer.svg", + "mode": "100644", + "type": "blob", + "sha": "cc677152e29202bc112d5dc4d1b2d93a5005865c", + "size": 675, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc677152e29202bc112d5dc4d1b2d93a5005865c" + }, + { + "path": "svg/portracker-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "34e6eea8480609a2f59722d8ff57835473c6b2e6", + "size": 4065, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34e6eea8480609a2f59722d8ff57835473c6b2e6" + }, + { + "path": "svg/portracker.svg", + "mode": "100644", + "type": "blob", + "sha": "f4ca346dd1dedf10b253f2bac3c9b9e793f8433d", + "size": 4065, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4ca346dd1dedf10b253f2bac3c9b9e793f8433d" + }, + { + "path": "svg/portus.svg", + "mode": "100644", + "type": "blob", + "sha": "5a56e3807d41eefaef2a9bf380c52edd5f3f98e7", + "size": 5620, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a56e3807d41eefaef2a9bf380c52edd5f3f98e7" + }, + { + "path": "svg/postal.svg", + "mode": "100755", + "type": "blob", + "sha": "881185dd5732a67bc1f24b2cf58eaca264f63d96", + "size": 938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/881185dd5732a67bc1f24b2cf58eaca264f63d96" + }, + { + "path": "svg/poste.svg", + "mode": "100644", + "type": "blob", + "sha": "bfa092eae45db6c9f239a9114d6fc25d1a298786", + "size": 1022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfa092eae45db6c9f239a9114d6fc25d1a298786" + }, + { + "path": "svg/postgres.svg", + "mode": "100644", + "type": "blob", + "sha": "3f6340fd997f8a7c0f08069bcec10f1aa7a28457", + "size": 3944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f6340fd997f8a7c0f08069bcec10f1aa7a28457" + }, + { + "path": "svg/postgresql.svg", + "mode": "100755", + "type": "blob", + "sha": "abacb8f80a2dac0208f2a11792b59eae689db58a", + "size": 2888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abacb8f80a2dac0208f2a11792b59eae689db58a" + }, + { + "path": "svg/postgresus.svg", + "mode": "100644", + "type": "blob", + "sha": "eccb5cbcf79a120d1c566826d6c6af77531b8671", + "size": 12807, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eccb5cbcf79a120d1c566826d6c6af77531b8671" + }, + { + "path": "svg/posthog-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b64d4d39cedb465ed203da1f4a394f1950d083ea", + "size": 1977, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b64d4d39cedb465ed203da1f4a394f1950d083ea" + }, + { + "path": "svg/posthog.svg", + "mode": "100755", + "type": "blob", + "sha": "0cd0fc3e99ddbbd65801ec6fd61c68b39b904627", + "size": 1941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cd0fc3e99ddbbd65801ec6fd61c68b39b904627" + }, + { + "path": "svg/postiz-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "071737c5823ea4110cdbc3d30c0b5c6824a025b9", + "size": 2321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/071737c5823ea4110cdbc3d30c0b5c6824a025b9" + }, + { + "path": "svg/postiz.svg", + "mode": "100755", + "type": "blob", + "sha": "9a5e7ef3b82faa51e5b17cd3919c216221e9ea38", + "size": 2327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a5e7ef3b82faa51e5b17cd3919c216221e9ea38" + }, + { + "path": "svg/powerbi.svg", + "mode": "100644", + "type": "blob", + "sha": "6dfa2b863e3b7221bfda6c8ec35c0503e39d1faf", + "size": 1777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6dfa2b863e3b7221bfda6c8ec35c0503e39d1faf" + }, + { + "path": "svg/powerdns.svg", + "mode": "100644", + "type": "blob", + "sha": "f012310cf8c9d45e9a50a480e51b6a87838f1876", + "size": 830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f012310cf8c9d45e9a50a480e51b6a87838f1876" + }, + { + "path": "svg/premiumize.svg", + "mode": "100644", + "type": "blob", + "sha": "805ff9c4686c2502de749151431f2bfab62f6496", + "size": 558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/805ff9c4686c2502de749151431f2bfab62f6496" + }, + { + "path": "svg/pretix.svg", + "mode": "100644", + "type": "blob", + "sha": "7514e74b10c8d179c9c4daa87238df0c6aabc885", + "size": 1379, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7514e74b10c8d179c9c4daa87238df0c6aabc885" + }, + { + "path": "svg/price-buddy.svg", + "mode": "100644", + "type": "blob", + "sha": "e20ed0b78aa52c0d9879f5ac9cfe862771848057", + "size": 2882, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e20ed0b78aa52c0d9879f5ac9cfe862771848057" + }, + { + "path": "svg/primal.svg", + "mode": "100644", + "type": "blob", + "sha": "709d25daa7d53c4cb960b63b05e7798594c71531", + "size": 2727, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/709d25daa7d53c4cb960b63b05e7798594c71531" + }, + { + "path": "svg/prime-video-alt-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "954e61e45f47f60958d1b11a622aed18bb7fff55", + "size": 17660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/954e61e45f47f60958d1b11a622aed18bb7fff55" + }, + { + "path": "svg/prime-video-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "711e4d61c073b8489b486e3231e7085334089852", + "size": 17654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/711e4d61c073b8489b486e3231e7085334089852" + }, + { + "path": "svg/prime-video-light.svg", + "mode": "100644", + "type": "blob", + "sha": "df0798b7d011be789676f31348ab949b3da5e3c0", + "size": 6824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df0798b7d011be789676f31348ab949b3da5e3c0" + }, + { + "path": "svg/prime-video.svg", + "mode": "100644", + "type": "blob", + "sha": "5f03ae71052fbd335bcbf04d542478c5b281f72e", + "size": 6824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f03ae71052fbd335bcbf04d542478c5b281f72e" + }, + { + "path": "svg/printables.svg", + "mode": "100644", + "type": "blob", + "sha": "d99e2b0b453accb47ed0af32f44fd09793ae7472", + "size": 1143, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d99e2b0b453accb47ed0af32f44fd09793ae7472" + }, + { + "path": "svg/printer.svg", + "mode": "100644", + "type": "blob", + "sha": "4d70cbb976e299539e96fa4acf78ed9e6257e930", + "size": 11371, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d70cbb976e299539e96fa4acf78ed9e6257e930" + }, + { + "path": "svg/pritunl.svg", + "mode": "100644", + "type": "blob", + "sha": "5299c1d8b4ad900704a27fc7d064d81ae47cc426", + "size": 1551, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5299c1d8b4ad900704a27fc7d064d81ae47cc426" + }, + { + "path": "svg/privacyidea.svg", + "mode": "100644", + "type": "blob", + "sha": "b74a982cb8035fcb834a613ba6ba69acc9498568", + "size": 2667, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b74a982cb8035fcb834a613ba6ba69acc9498568" + }, + { + "path": "svg/private-internet-access.svg", + "mode": "100755", + "type": "blob", + "sha": "91e3bf4cb4bb9f6b61b9be626acfa645e685d269", + "size": 3474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91e3bf4cb4bb9f6b61b9be626acfa645e685d269" + }, + { + "path": "svg/privatebin.svg", + "mode": "100755", + "type": "blob", + "sha": "9087856b9ad0a08661f57550582ea78f61c5862e", + "size": 732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9087856b9ad0a08661f57550582ea78f61c5862e" + }, + { + "path": "svg/profilarr.svg", + "mode": "100644", + "type": "blob", + "sha": "e62ea75ac0a8e48c28ff4499d4473d060973d9a4", + "size": 1417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e62ea75ac0a8e48c28ff4499d4473d060973d9a4" + }, + { + "path": "svg/projectsend.svg", + "mode": "100755", + "type": "blob", + "sha": "3a6f420c6d56f7c82d75e9879acf000f63bc4862", + "size": 851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a6f420c6d56f7c82d75e9879acf000f63bc4862" + }, + { + "path": "svg/prometheus.svg", + "mode": "100755", + "type": "blob", + "sha": "da19fd6162b9ab0a0a8e211b09cf9dd82ab41e0b", + "size": 764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da19fd6162b9ab0a0a8e211b09cf9dd82ab41e0b" + }, + { + "path": "svg/proton-calendar.svg", + "mode": "100755", + "type": "blob", + "sha": "864a8e915664c448b90682ae854e7a08354475d7", + "size": 1713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/864a8e915664c448b90682ae854e7a08354475d7" + }, + { + "path": "svg/proton-docs.svg", + "mode": "100644", + "type": "blob", + "sha": "ddd8f1cb3878ae68eb3b3d5d496e9c90388313fc", + "size": 1327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddd8f1cb3878ae68eb3b3d5d496e9c90388313fc" + }, + { + "path": "svg/proton-drive.svg", + "mode": "100755", + "type": "blob", + "sha": "46f29f633a40f9d9687266a0921947024e8111bc", + "size": 1181, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46f29f633a40f9d9687266a0921947024e8111bc" + }, + { + "path": "svg/proton-lumo.svg", + "mode": "100644", + "type": "blob", + "sha": "d653fd840f799f9ebf2c42ca669a493dc4ef2903", + "size": 9816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d653fd840f799f9ebf2c42ca669a493dc4ef2903" + }, + { + "path": "svg/proton-mail.svg", + "mode": "100644", + "type": "blob", + "sha": "a5b547d7d7bad90ce4aed9b7a83ac53107b81309", + "size": 1174, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5b547d7d7bad90ce4aed9b7a83ac53107b81309" + }, + { + "path": "svg/proton-pass.svg", + "mode": "100755", + "type": "blob", + "sha": "3ccf7ca907e31026a6a65919b59559f4e776f89b", + "size": 3325, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ccf7ca907e31026a6a65919b59559f4e776f89b" + }, + { + "path": "svg/proton-vpn.svg", + "mode": "100755", + "type": "blob", + "sha": "9ccb3c1a1a05c85923c7cb97062b2c70ddf0d634", + "size": 1033, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ccb3c1a1a05c85923c7cb97062b2c70ddf0d634" + }, + { + "path": "svg/proton-wallet.svg", + "mode": "100644", + "type": "blob", + "sha": "5ecf66c1fd37e926f42e580150ca0623584a8e64", + "size": 1824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ecf66c1fd37e926f42e580150ca0623584a8e64" + }, + { + "path": "svg/prowlarr.svg", + "mode": "100755", + "type": "blob", + "sha": "04cfaf7af2ab4d45ad1bd66e366b3a58f9766694", + "size": 9043, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04cfaf7af2ab4d45ad1bd66e366b3a58f9766694" + }, + { + "path": "svg/proxmox-light.svg", + "mode": "100644", + "type": "blob", + "sha": "078c3c284b6cc8bc722929af137a659484cafcb8", + "size": 1208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/078c3c284b6cc8bc722929af137a659484cafcb8" + }, + { + "path": "svg/proxmox.svg", + "mode": "100755", + "type": "blob", + "sha": "fa1d9420db1637c3c98295afd4b15176d5f03ab5", + "size": 1196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa1d9420db1637c3c98295afd4b15176d5f03ab5" + }, + { + "path": "svg/prtg.svg", + "mode": "100644", + "type": "blob", + "sha": "286b2d5d27fab563172719b6e6960abcb9da2ecd", + "size": 1417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/286b2d5d27fab563172719b6e6960abcb9da2ecd" + }, + { + "path": "svg/prusa-research.svg", + "mode": "100644", + "type": "blob", + "sha": "fd8418b0d3589f8e6c510f0b8f0da7c538175298", + "size": 6828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd8418b0d3589f8e6c510f0b8f0da7c538175298" + }, + { + "path": "svg/pterodactyl.svg", + "mode": "100755", + "type": "blob", + "sha": "c59ed05d9528e1c46c4456247c924d9ac575d548", + "size": 9692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c59ed05d9528e1c46c4456247c924d9ac575d548" + }, + { + "path": "svg/public-pool.svg", + "mode": "100644", + "type": "blob", + "sha": "20f5db03011d96b28ad29fb3d4f5d0f4458c1256", + "size": 126722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20f5db03011d96b28ad29fb3d4f5d0f4458c1256" + }, + { + "path": "svg/pufferpanel.svg", + "mode": "100644", + "type": "blob", + "sha": "e1f15ed2142ecded7f47c15f407aaa0923584c86", + "size": 25904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1f15ed2142ecded7f47c15f407aaa0923584c86" + }, + { + "path": "svg/pulsarr.svg", + "mode": "100644", + "type": "blob", + "sha": "067bc7b2f34c1bff442147d979f14eeaf61b9a81", + "size": 9693, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/067bc7b2f34c1bff442147d979f14eeaf61b9a81" + }, + { + "path": "svg/pulse.svg", + "mode": "100644", + "type": "blob", + "sha": "dddadd0d06ba94401b6a98982af9269e9186bd52", + "size": 884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dddadd0d06ba94401b6a98982af9269e9186bd52" + }, + { + "path": "svg/purelymail.svg", + "mode": "100644", + "type": "blob", + "sha": "e2ceafb070affe1cd74df773cd082bc2e0526fad", + "size": 1023, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2ceafb070affe1cd74df773cd082bc2e0526fad" + }, + { + "path": "svg/pushfish.svg", + "mode": "100644", + "type": "blob", + "sha": "488055f5fbe9a8169ddbd91af091191706325c77", + "size": 1520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/488055f5fbe9a8169ddbd91af091191706325c77" + }, + { + "path": "svg/pushover.svg", + "mode": "100755", + "type": "blob", + "sha": "3b369fc85986ccd584082a7a0c8395bf9f19c6fc", + "size": 955, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b369fc85986ccd584082a7a0c8395bf9f19c6fc" + }, + { + "path": "svg/putty.svg", + "mode": "100644", + "type": "blob", + "sha": "1487581a276d491ba316cd4866f58cb7a7956470", + "size": 2329, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1487581a276d491ba316cd4866f58cb7a7956470" + }, + { + "path": "svg/pydio.svg", + "mode": "100644", + "type": "blob", + "sha": "ddd2ac5e6ab2d4236908da808af3ed0a47470f41", + "size": 645, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddd2ac5e6ab2d4236908da808af3ed0a47470f41" + }, + { + "path": "svg/pyload.svg", + "mode": "100755", + "type": "blob", + "sha": "596f3fbf3fd9bd42853092ba3c3f7d082709360c", + "size": 7514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/596f3fbf3fd9bd42853092ba3c3f7d082709360c" + }, + { + "path": "svg/python.svg", + "mode": "100755", + "type": "blob", + "sha": "d234388057704c79ae0f9596a65ac56aa6fc1f39", + "size": 1469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d234388057704c79ae0f9596a65ac56aa6fc1f39" + }, + { + "path": "svg/qbittorrent.svg", + "mode": "100755", + "type": "blob", + "sha": "e865b54a9faf45dec5fdecbff8e88802c30a586e", + "size": 1549, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e865b54a9faf45dec5fdecbff8e88802c30a586e" + }, + { + "path": "svg/qd-today.svg", + "mode": "100644", + "type": "blob", + "sha": "9a22746f30071dd26ac3c2570b09401257504425", + "size": 6831, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a22746f30071dd26ac3c2570b09401257504425" + }, + { + "path": "svg/qdirstat.svg", + "mode": "100644", + "type": "blob", + "sha": "fb831cc61ccf4706a27b7dd74c93135694fe0570", + "size": 2223, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb831cc61ccf4706a27b7dd74c93135694fe0570" + }, + { + "path": "svg/qdrant.svg", + "mode": "100644", + "type": "blob", + "sha": "6fad065b405924e76d1e7e0a02a78068ac7cf6db", + "size": 2092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fad065b405924e76d1e7e0a02a78068ac7cf6db" + }, + { + "path": "svg/qinglong.svg", + "mode": "100644", + "type": "blob", + "sha": "9efc2c168e4f95424f043fb4e8d4bd2a4e7004a1", + "size": 48257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9efc2c168e4f95424f043fb4e8d4bd2a4e7004a1" + }, + { + "path": "svg/qnap.svg", + "mode": "100755", + "type": "blob", + "sha": "72f4ca0f64bf85967af1f17055dc8a0329ee5da3", + "size": 445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72f4ca0f64bf85967af1f17055dc8a0329ee5da3" + }, + { + "path": "svg/quay.svg", + "mode": "100644", + "type": "blob", + "sha": "3ca26f30e878ca6e6561bb7f87b90a6876b48cb7", + "size": 865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ca26f30e878ca6e6561bb7f87b90a6876b48cb7" + }, + { + "path": "svg/questdb.svg", + "mode": "100644", + "type": "blob", + "sha": "6b7d4d7164f172f3f28201cb0995bba4ac663baf", + "size": 2673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b7d4d7164f172f3f28201cb0995bba4ac663baf" + }, + { + "path": "svg/quetre.svg", + "mode": "100644", + "type": "blob", + "sha": "6e591b8f0ccdf13bf0a447c2edb15f9596713c19", + "size": 1266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e591b8f0ccdf13bf0a447c2edb15f9596713c19" + }, + { + "path": "svg/qui.svg", + "mode": "100644", + "type": "blob", + "sha": "87c2bdee452861d7e39a093d4603e643ac64334b", + "size": 1339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87c2bdee452861d7e39a093d4603e643ac64334b" + }, + { + "path": "svg/quickshare.svg", + "mode": "100644", + "type": "blob", + "sha": "42d8b166003e5316df0695f503568b040199a31e", + "size": 3769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42d8b166003e5316df0695f503568b040199a31e" + }, + { + "path": "svg/quickwit.svg", + "mode": "100755", + "type": "blob", + "sha": "0e174f4d2f1bbaa98cd2c2bc508958e473a7f809", + "size": 801, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e174f4d2f1bbaa98cd2c2bc508958e473a7f809" + }, + { + "path": "svg/quizlet.svg", + "mode": "100644", + "type": "blob", + "sha": "5d1deaabbf9f62cbbcfe0f62d407b37af3b632c4", + "size": 2530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d1deaabbf9f62cbbcfe0f62d407b37af3b632c4" + }, + { + "path": "svg/qutebrowser.svg", + "mode": "100644", + "type": "blob", + "sha": "75bf366a471694fdd5326a096804f980d2438ed5", + "size": 4927, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75bf366a471694fdd5326a096804f980d2438ed5" + }, + { + "path": "svg/qwen.svg", + "mode": "100644", + "type": "blob", + "sha": "255e278e3f5bcd6e1fa4b1a36898f9bdfe56718a", + "size": 1594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/255e278e3f5bcd6e1fa4b1a36898f9bdfe56718a" + }, + { + "path": "svg/qwik.svg", + "mode": "100644", + "type": "blob", + "sha": "f6dd4fe72da4ec4049af135456e073b9f690a784", + "size": 892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6dd4fe72da4ec4049af135456e073b9f690a784" + }, + { + "path": "svg/r.svg", + "mode": "100644", + "type": "blob", + "sha": "4b47dd6d63903248f7116b2396479402f2914da9", + "size": 1286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b47dd6d63903248f7116b2396479402f2914da9" + }, + { + "path": "svg/rabbitmq.svg", + "mode": "100644", + "type": "blob", + "sha": "a7d332b5e106ff97c53282097c4d52f0f7d1c448", + "size": 736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7d332b5e106ff97c53282097c4d52f0f7d1c448" + }, + { + "path": "svg/radarr-4k.svg", + "mode": "100644", + "type": "blob", + "sha": "31fcf0d2b6628c9e83d711962f5daf4be12c9c7e", + "size": 1514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31fcf0d2b6628c9e83d711962f5daf4be12c9c7e" + }, + { + "path": "svg/radarr.svg", + "mode": "100755", + "type": "blob", + "sha": "a61c56a740b3afed0d2d781ee0d478947c0dd5ad", + "size": 778, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a61c56a740b3afed0d2d781ee0d478947c0dd5ad" + }, + { + "path": "svg/radicale.svg", + "mode": "100755", + "type": "blob", + "sha": "69aeb56c34b008574fd85cd0b5cd12f676823756", + "size": 550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69aeb56c34b008574fd85cd0b5cd12f676823756" + }, + { + "path": "svg/rainloop.svg", + "mode": "100644", + "type": "blob", + "sha": "58585c62e6bf2f8149f1a79a1c1e7e0680309325", + "size": 1550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58585c62e6bf2f8149f1a79a1c1e7e0680309325" + }, + { + "path": "svg/rallly.svg", + "mode": "100755", + "type": "blob", + "sha": "8b575a1b5f49d0ad1a57ce832e058f795ad770cc", + "size": 1200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b575a1b5f49d0ad1a57ce832e058f795ad770cc" + }, + { + "path": "svg/ramp-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "f9dd75cf6231263ba6a3d9eef0fc66961ad5de83", + "size": 763, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9dd75cf6231263ba6a3d9eef0fc66961ad5de83" + }, + { + "path": "svg/ramp.svg", + "mode": "100644", + "type": "blob", + "sha": "2a1cd713bf4fc89ab19c226e4e874f1def871465", + "size": 763, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a1cd713bf4fc89ab19c226e4e874f1def871465" + }, + { + "path": "svg/rancher.svg", + "mode": "100755", + "type": "blob", + "sha": "575da44f4abd2f6aa1fc6c82afd6424eb7ec45ef", + "size": 940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/575da44f4abd2f6aa1fc6c82afd6424eb7ec45ef" + }, + { + "path": "svg/raspberry-pi-light.svg", + "mode": "100644", + "type": "blob", + "sha": "48920aac010c861cf6ed6b1d622bcb8ad9271e06", + "size": 4567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48920aac010c861cf6ed6b1d622bcb8ad9271e06" + }, + { + "path": "svg/raspberry-pi.svg", + "mode": "100755", + "type": "blob", + "sha": "939e45e3760318060bc5c133f5fb98a7e6ea40fa", + "size": 4552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/939e45e3760318060bc5c133f5fb98a7e6ea40fa" + }, + { + "path": "svg/rclone.svg", + "mode": "100755", + "type": "blob", + "sha": "c306502a6e83ad19755d77649c7bc7f625d08a2c", + "size": 1092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c306502a6e83ad19755d77649c7bc7f625d08a2c" + }, + { + "path": "svg/rdt-client.svg", + "mode": "100644", + "type": "blob", + "sha": "506fffb2f7d2a73a5f035d2144acff4cafe99ef9", + "size": 4326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/506fffb2f7d2a73a5f035d2144acff4cafe99ef9" + }, + { + "path": "svg/reactive-resume-light.svg", + "mode": "100644", + "type": "blob", + "sha": "64e35bd55f11950b558143021664dd42a67899dc", + "size": 715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64e35bd55f11950b558143021664dd42a67899dc" + }, + { + "path": "svg/reactive-resume.svg", + "mode": "100755", + "type": "blob", + "sha": "fc15645c248d24f812864c86078a7defca3f319f", + "size": 700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc15645c248d24f812864c86078a7defca3f319f" + }, + { + "path": "svg/reactjs.svg", + "mode": "100644", + "type": "blob", + "sha": "ea77a618d94860afd4c44deb76108e2706d4531d", + "size": 366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea77a618d94860afd4c44deb76108e2706d4531d" + }, + { + "path": "svg/readarr.svg", + "mode": "100755", + "type": "blob", + "sha": "05d6e50891f376aa392a8576b7b6320aeadc1d40", + "size": 1695, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05d6e50891f376aa392a8576b7b6320aeadc1d40" + }, + { + "path": "svg/readeck.svg", + "mode": "100755", + "type": "blob", + "sha": "510a5e405cd94167d61219da9f1f0a837c8fa48a", + "size": 499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/510a5e405cd94167d61219da9f1f0a837c8fa48a" + }, + { + "path": "svg/readthedocs-light.svg", + "mode": "100644", + "type": "blob", + "sha": "5939177838b1f01095c9ad4913c65aafea5978b7", + "size": 1861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5939177838b1f01095c9ad4913c65aafea5978b7" + }, + { + "path": "svg/readthedocs.svg", + "mode": "100644", + "type": "blob", + "sha": "564dc3626aecb5e48b11f99d79de9c011c0f0d0a", + "size": 1861, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/564dc3626aecb5e48b11f99d79de9c011c0f0d0a" + }, + { + "path": "svg/readwise-reader-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "6bbb9cad7694e35378c118a0904c1024f2c2f032", + "size": 1505, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bbb9cad7694e35378c118a0904c1024f2c2f032" + }, + { + "path": "svg/readwise-reader.svg", + "mode": "100644", + "type": "blob", + "sha": "0e38e547610df314e1b9cf23a8e5bf76a9c37f15", + "size": 1009, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e38e547610df314e1b9cf23a8e5bf76a9c37f15" + }, + { + "path": "svg/real-debrid.svg", + "mode": "100644", + "type": "blob", + "sha": "506fffb2f7d2a73a5f035d2144acff4cafe99ef9", + "size": 4326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/506fffb2f7d2a73a5f035d2144acff4cafe99ef9" + }, + { + "path": "svg/recalbox.svg", + "mode": "100644", + "type": "blob", + "sha": "b96d2dd13a6eb6787e956be331f66b5a1892effa", + "size": 3769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b96d2dd13a6eb6787e956be331f66b5a1892effa" + }, + { + "path": "svg/receipt-wrangler.svg", + "mode": "100755", + "type": "blob", + "sha": "a83d33cdbb1df93683ae0d968fae08de8ec9f630", + "size": 559, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a83d33cdbb1df93683ae0d968fae08de8ec9f630" + }, + { + "path": "svg/recipesage.svg", + "mode": "100755", + "type": "blob", + "sha": "6c988c6e91d64ae6a4c3db966299324200f86b28", + "size": 1502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c988c6e91d64ae6a4c3db966299324200f86b28" + }, + { + "path": "svg/recyclarr.svg", + "mode": "100644", + "type": "blob", + "sha": "8284198abaa30301b71d6614f0b7430b2e0d8add", + "size": 4257, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8284198abaa30301b71d6614f0b7430b2e0d8add" + }, + { + "path": "svg/reddit.svg", + "mode": "100755", + "type": "blob", + "sha": "47a95897de47dfc15060ca50614216fb792f27aa", + "size": 973, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47a95897de47dfc15060ca50614216fb792f27aa" + }, + { + "path": "svg/redhat-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "12c1840fc9f3cab044c283417e547b421205bc14", + "size": 1017, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12c1840fc9f3cab044c283417e547b421205bc14" + }, + { + "path": "svg/redict.svg", + "mode": "100755", + "type": "blob", + "sha": "8b95c617a18bac90a050bc5c448dd0295ec4c096", + "size": 3145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b95c617a18bac90a050bc5c448dd0295ec4c096" + }, + { + "path": "svg/redis.svg", + "mode": "100644", + "type": "blob", + "sha": "1981b3463a399c38ca2337b57b43bc4671bf4f6d", + "size": 2682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1981b3463a399c38ca2337b57b43bc4671bf4f6d" + }, + { + "path": "svg/redlib-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d5975c05dda3c9bb04c6b2cbdca4e7109d4dff57", + "size": 362, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5975c05dda3c9bb04c6b2cbdca4e7109d4dff57" + }, + { + "path": "svg/redlib.svg", + "mode": "100755", + "type": "blob", + "sha": "db84949caaae943a7f5243e59d20678de6a08322", + "size": 316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db84949caaae943a7f5243e59d20678de6a08322" + }, + { + "path": "svg/redmine.svg", + "mode": "100644", + "type": "blob", + "sha": "f62ac1edf3411503b0dc64f852d234efc7db3dc8", + "size": 3887, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f62ac1edf3411503b0dc64f852d234efc7db3dc8" + }, + { + "path": "svg/rekor.svg", + "mode": "100644", + "type": "blob", + "sha": "74274128d4f5a8a7d8ce39a464c07b8e41f11b01", + "size": 4844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74274128d4f5a8a7d8ce39a464c07b8e41f11b01" + }, + { + "path": "svg/release-argus.svg", + "mode": "100644", + "type": "blob", + "sha": "2a13166c955643bae72de614a10c8bba8b2b27ba", + "size": 1308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a13166c955643bae72de614a10c8bba8b2b27ba" + }, + { + "path": "svg/remmina.svg", + "mode": "100644", + "type": "blob", + "sha": "ee5467b6ba02b42b931023743487ddd7ea546ffa", + "size": 4132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee5467b6ba02b42b931023743487ddd7ea546ffa" + }, + { + "path": "svg/remnawave.svg", + "mode": "100644", + "type": "blob", + "sha": "8cefe4877568cfcf8eb64a4b3781bf4796b81e30", + "size": 1321, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8cefe4877568cfcf8eb64a4b3781bf4796b81e30" + }, + { + "path": "svg/remnote.svg", + "mode": "100644", + "type": "blob", + "sha": "e83fe9181ee1db93c932e07f909e92403eb98d0f", + "size": 2382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e83fe9181ee1db93c932e07f909e92403eb98d0f" + }, + { + "path": "svg/renovate.svg", + "mode": "100644", + "type": "blob", + "sha": "9750733f7774a5af21940e8a32effc0728d0884c", + "size": 4696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9750733f7774a5af21940e8a32effc0728d0884c" + }, + { + "path": "svg/reolink.svg", + "mode": "100755", + "type": "blob", + "sha": "6635c5702742548bc1593afa350354d877d4b586", + "size": 747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6635c5702742548bc1593afa350354d877d4b586" + }, + { + "path": "svg/requestly.svg", + "mode": "100755", + "type": "blob", + "sha": "d5cd8768e1196faa983e49bc4c5ea697859821ec", + "size": 2983, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5cd8768e1196faa983e49bc4c5ea697859821ec" + }, + { + "path": "svg/requestrr.svg", + "mode": "100644", + "type": "blob", + "sha": "835f2acaa8b30c542c275da992fefb21d8504c94", + "size": 1816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/835f2acaa8b30c542c275da992fefb21d8504c94" + }, + { + "path": "svg/resiliosync-full-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "3c41beaf0a505dc5cb6456b0fb83680a3dd61efa", + "size": 9052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c41beaf0a505dc5cb6456b0fb83680a3dd61efa" + }, + { + "path": "svg/resiliosync-full.svg", + "mode": "100644", + "type": "blob", + "sha": "f3b9efc1fe9bcbd824faae3d4ecede9a513d408b", + "size": 9064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3b9efc1fe9bcbd824faae3d4ecede9a513d408b" + }, + { + "path": "svg/resiliosync.svg", + "mode": "100644", + "type": "blob", + "sha": "b10adf598f57a1afdead47d730327f093f029509", + "size": 6145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b10adf598f57a1afdead47d730327f093f029509" + }, + { + "path": "svg/restreamer.svg", + "mode": "100755", + "type": "blob", + "sha": "ec5e8e83e8bafa6602dacd2ff2a687d8a11bbf2c", + "size": 553, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec5e8e83e8bafa6602dacd2ff2a687d8a11bbf2c" + }, + { + "path": "svg/retrom.svg", + "mode": "100644", + "type": "blob", + "sha": "7e334da56b2daf0ef21a8d0f9f9d5193668cf8a7", + "size": 3117, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e334da56b2daf0ef21a8d0f9f9d5193668cf8a7" + }, + { + "path": "svg/revanced-manager.svg", + "mode": "100644", + "type": "blob", + "sha": "2c696df524b4685dbcfcb5470a3f53bce8f6c978", + "size": 2664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c696df524b4685dbcfcb5470a3f53bce8f6c978" + }, + { + "path": "svg/revolt-light.svg", + "mode": "100644", + "type": "blob", + "sha": "89926deece4b98356dce8e83d525b7fed8245ae1", + "size": 538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89926deece4b98356dce8e83d525b7fed8245ae1" + }, + { + "path": "svg/revolt.svg", + "mode": "100755", + "type": "blob", + "sha": "cafbb8125855ac3fd30824662582f925645dc1f2", + "size": 541, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cafbb8125855ac3fd30824662582f925645dc1f2" + }, + { + "path": "svg/rhasspy-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "48e0df8eef1c229e4af257067842313fad3e3996", + "size": 1912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48e0df8eef1c229e4af257067842313fad3e3996" + }, + { + "path": "svg/rhasspy.svg", + "mode": "100755", + "type": "blob", + "sha": "e7059420745d38873ba3a96f0ad55a4e2b663037", + "size": 1798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7059420745d38873ba3a96f0ad55a4e2b663037" + }, + { + "path": "svg/rhodecode.svg", + "mode": "100644", + "type": "blob", + "sha": "da77aebe05a5a575efc7a247e73f8ee3cec8e521", + "size": 5613, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da77aebe05a5a575efc7a247e73f8ee3cec8e521" + }, + { + "path": "svg/richy.svg", + "mode": "100755", + "type": "blob", + "sha": "5ed1b52a92df9d83d5b70eed9d0d4b21f021c90f", + "size": 1481, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ed1b52a92df9d83d5b70eed9d0d4b21f021c90f" + }, + { + "path": "svg/rimgo-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ebc049dba6ebf734958e7a4533242fd5a357a654", + "size": 479, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebc049dba6ebf734958e7a4533242fd5a357a654" + }, + { + "path": "svg/rimgo.svg", + "mode": "100644", + "type": "blob", + "sha": "250dec82a12a6205c0df0cd57bef01bce95ad074", + "size": 476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/250dec82a12a6205c0df0cd57bef01bce95ad074" + }, + { + "path": "svg/riot.svg", + "mode": "100644", + "type": "blob", + "sha": "047f196ffcf81c5b0743f241de6a72a8ebba11db", + "size": 2036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/047f196ffcf81c5b0743f241de6a72a8ebba11db" + }, + { + "path": "svg/ripe.svg", + "mode": "100644", + "type": "blob", + "sha": "f9a360c57072463cd0992261949eff178e690509", + "size": 3410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9a360c57072463cd0992261949eff178e690509" + }, + { + "path": "svg/riverside-fm-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a53add8591a0b9dc20447611eaae7e9bf953f2bf", + "size": 1021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a53add8591a0b9dc20447611eaae7e9bf953f2bf" + }, + { + "path": "svg/riverside-fm.svg", + "mode": "100755", + "type": "blob", + "sha": "758ef29b3178219f26fd87188f33920a30f57511", + "size": 1018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/758ef29b3178219f26fd87188f33920a30f57511" + }, + { + "path": "svg/robinhood.svg", + "mode": "100644", + "type": "blob", + "sha": "d0d456755823232f08ff7e1e14eadf2969d8b19e", + "size": 2024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0d456755823232f08ff7e1e14eadf2969d8b19e" + }, + { + "path": "svg/rocket-chat.svg", + "mode": "100755", + "type": "blob", + "sha": "550df7937a87544155ae565bbf672df749a6d037", + "size": 1308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/550df7937a87544155ae565bbf672df749a6d037" + }, + { + "path": "svg/rocky-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "ad8d0915f02ea3454104dfbefe4457ead0aa3ba9", + "size": 438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad8d0915f02ea3454104dfbefe4457ead0aa3ba9" + }, + { + "path": "svg/romm.svg", + "mode": "100644", + "type": "blob", + "sha": "966b571ac3f7f5e445c445866484061f13fa2cd9", + "size": 3469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/966b571ac3f7f5e445c445866484061f13fa2cd9" + }, + { + "path": "svg/rook.svg", + "mode": "100644", + "type": "blob", + "sha": "b1ea74b1f33e23dd3109bc0f186c6824e76ae576", + "size": 619, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1ea74b1f33e23dd3109bc0f186c6824e76ae576" + }, + { + "path": "svg/root-me-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7c1c2a6748feb0a862fe40cd2f4503f2e4ec48fb", + "size": 6788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c1c2a6748feb0a862fe40cd2f4503f2e4ec48fb" + }, + { + "path": "svg/root-me.svg", + "mode": "100644", + "type": "blob", + "sha": "b7932abc66464ba8ad65857be5bb14e0af949a69", + "size": 6776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7932abc66464ba8ad65857be5bb14e0af949a69" + }, + { + "path": "svg/rotki.svg", + "mode": "100644", + "type": "blob", + "sha": "ef57a4587911e4cc337b9babe55b1fd5ef3da285", + "size": 6512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef57a4587911e4cc337b9babe55b1fd5ef3da285" + }, + { + "path": "svg/roundcube.svg", + "mode": "100755", + "type": "blob", + "sha": "37b50d053ab3cfa4d6339b41bdcba64874d7e219", + "size": 785, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37b50d053ab3cfa4d6339b41bdcba64874d7e219" + }, + { + "path": "svg/router.svg", + "mode": "100644", + "type": "blob", + "sha": "def2546968fedeaaa3a43888fe3aec92020d70ab", + "size": 24636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/def2546968fedeaaa3a43888fe3aec92020d70ab" + }, + { + "path": "svg/rport.svg", + "mode": "100644", + "type": "blob", + "sha": "2495c66bb0318cc1825cc7bec0c7d19748cacd0e", + "size": 478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2495c66bb0318cc1825cc7bec0c7d19748cacd0e" + }, + { + "path": "svg/rss-bridge.svg", + "mode": "100755", + "type": "blob", + "sha": "416336dbf1ee48a5f8b770ad83df6507985e4245", + "size": 2303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/416336dbf1ee48a5f8b770ad83df6507985e4245" + }, + { + "path": "svg/rss-translator.svg", + "mode": "100755", + "type": "blob", + "sha": "4d8a2e61420a07b1fd1181c51cb5bcf785c5f670", + "size": 1855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d8a2e61420a07b1fd1181c51cb5bcf785c5f670" + }, + { + "path": "svg/rstudio.svg", + "mode": "100644", + "type": "blob", + "sha": "60a79416e28173ee4475441584575acde03c8eb5", + "size": 821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a79416e28173ee4475441584575acde03c8eb5" + }, + { + "path": "svg/rstudioserver.svg", + "mode": "100644", + "type": "blob", + "sha": "60a79416e28173ee4475441584575acde03c8eb5", + "size": 821, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a79416e28173ee4475441584575acde03c8eb5" + }, + { + "path": "svg/ruby.svg", + "mode": "100644", + "type": "blob", + "sha": "74000b046c317a92aded6bf20dda4ac90f36d48f", + "size": 8340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74000b046c317a92aded6bf20dda4ac90f36d48f" + }, + { + "path": "svg/rumble.svg", + "mode": "100644", + "type": "blob", + "sha": "8c8ed1ff9d0d74c23b186db3cb54f729ee9cf1ed", + "size": 848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c8ed1ff9d0d74c23b186db3cb54f729ee9cf1ed" + }, + { + "path": "svg/rundeck.svg", + "mode": "100755", + "type": "blob", + "sha": "099d7337953b4a4c3360d75db5deea57846b7791", + "size": 281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/099d7337953b4a4c3360d75db5deea57846b7791" + }, + { + "path": "svg/runonflux.svg", + "mode": "100644", + "type": "blob", + "sha": "467d032317265f42b94dcde5891c262a66f38c53", + "size": 731, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/467d032317265f42b94dcde5891c262a66f38c53" + }, + { + "path": "svg/runson-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b8fd8a1167cacd5598d8ae5532e95ff2b80e1c7b", + "size": 8534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8fd8a1167cacd5598d8ae5532e95ff2b80e1c7b" + }, + { + "path": "svg/runson.svg", + "mode": "100755", + "type": "blob", + "sha": "03c404de96e7b6af0a45ea3def9258b4279f3f8e", + "size": 8512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03c404de96e7b6af0a45ea3def9258b4279f3f8e" + }, + { + "path": "svg/rust-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "beeda2564c56421ef419dca81f5135784f093fa5", + "size": 5534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/beeda2564c56421ef419dca81f5135784f093fa5" + }, + { + "path": "svg/rust.svg", + "mode": "100644", + "type": "blob", + "sha": "5c017517df4171f9a111e236c7df70ad7ce111e4", + "size": 5534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c017517df4171f9a111e236c7df70ad7ce111e4" + }, + { + "path": "svg/rustdesk.svg", + "mode": "100644", + "type": "blob", + "sha": "81d6a8b9f470f44622ea51058cc4f594f71da69e", + "size": 1270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81d6a8b9f470f44622ea51058cc4f594f71da69e" + }, + { + "path": "svg/rutorrent.svg", + "mode": "100644", + "type": "blob", + "sha": "5d0d17dd6b1ce9f1ec398f7747f3062283e3ab33", + "size": 11758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d0d17dd6b1ce9f1ec398f7747f3062283e3ab33" + }, + { + "path": "svg/ryot-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3cff2d37cbb5958bfa79f119cca59da41c49866b", + "size": 2313, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cff2d37cbb5958bfa79f119cca59da41c49866b" + }, + { + "path": "svg/ryot.svg", + "mode": "100644", + "type": "blob", + "sha": "281f003e5fbd4451840ac895ab248289877cc73f", + "size": 2301, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/281f003e5fbd4451840ac895ab248289877cc73f" + }, + { + "path": "svg/sabnzbd-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b8d2ef7599dbd55ad3b8302ae6e57aae3288eaef", + "size": 966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8d2ef7599dbd55ad3b8302ae6e57aae3288eaef" + }, + { + "path": "svg/sabnzbd.svg", + "mode": "100755", + "type": "blob", + "sha": "22eaf51e58ee5b0c74dab3442fba8434878799ce", + "size": 921, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22eaf51e58ee5b0c74dab3442fba8434878799ce" + }, + { + "path": "svg/safari-ios.svg", + "mode": "100644", + "type": "blob", + "sha": "75f3e8915c7695d2f49c57faf24c10e13bc2b11e", + "size": 1628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75f3e8915c7695d2f49c57faf24c10e13bc2b11e" + }, + { + "path": "svg/safari.svg", + "mode": "100644", + "type": "blob", + "sha": "75f3e8915c7695d2f49c57faf24c10e13bc2b11e", + "size": 1628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75f3e8915c7695d2f49c57faf24c10e13bc2b11e" + }, + { + "path": "svg/safeline.svg", + "mode": "100644", + "type": "blob", + "sha": "099def15a3bb74e4a6a42628e9166414b895df56", + "size": 6213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/099def15a3bb74e4a6a42628e9166414b895df56" + }, + { + "path": "svg/salt-project.svg", + "mode": "100644", + "type": "blob", + "sha": "d175b78f0de16eb403dd879560da6476446e095b", + "size": 278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d175b78f0de16eb403dd879560da6476446e095b" + }, + { + "path": "svg/saltcorn.svg", + "mode": "100755", + "type": "blob", + "sha": "c79942705d6d6874c527fe2ee521edad24cecd8c", + "size": 893, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c79942705d6d6874c527fe2ee521edad24cecd8c" + }, + { + "path": "svg/samba-server.svg", + "mode": "100644", + "type": "blob", + "sha": "49b47a11d38297a8c30639a77fb3c2e227cf0771", + "size": 1354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49b47a11d38297a8c30639a77fb3c2e227cf0771" + }, + { + "path": "svg/samsung-internet.svg", + "mode": "100644", + "type": "blob", + "sha": "cf3931780acebb84ec56f692827b8368860ffedc", + "size": 633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf3931780acebb84ec56f692827b8368860ffedc" + }, + { + "path": "svg/sandstorm.svg", + "mode": "100644", + "type": "blob", + "sha": "77dd1cd83be29f673f85a0e521c0e6a610af97fd", + "size": 17947, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77dd1cd83be29f673f85a0e521c0e6a610af97fd" + }, + { + "path": "svg/schedulearn-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "fccc0d46209d2ffbbcd49a7659bd2f42a8e7a8b7", + "size": 7111, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fccc0d46209d2ffbbcd49a7659bd2f42a8e7a8b7" + }, + { + "path": "svg/schedulearn.svg", + "mode": "100644", + "type": "blob", + "sha": "bd0d5ecabf697de13291dec31ded2b27b99a9c7f", + "size": 7126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd0d5ecabf697de13291dec31ded2b27b99a9c7f" + }, + { + "path": "svg/scrcpy.svg", + "mode": "100644", + "type": "blob", + "sha": "7205ad3d77a554e405f019e1d99a87c9e3c46ca3", + "size": 10349, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7205ad3d77a554e405f019e1d99a87c9e3c46ca3" + }, + { + "path": "svg/screenconnect.svg", + "mode": "100644", + "type": "blob", + "sha": "0066438b203b82dd89391d382dc11e517c0a9d6e", + "size": 288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0066438b203b82dd89391d382dc11e517c0a9d6e" + }, + { + "path": "svg/scrutiny-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8685f4f6ad0d88d963b056b184d1d9a4fb8f47e1", + "size": 2650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8685f4f6ad0d88d963b056b184d1d9a4fb8f47e1" + }, + { + "path": "svg/scrutiny.svg", + "mode": "100755", + "type": "blob", + "sha": "0c2b4d82aeae1e74fa029d91afc4924d84815cca", + "size": 2638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c2b4d82aeae1e74fa029d91afc4924d84815cca" + }, + { + "path": "svg/seafile.svg", + "mode": "100755", + "type": "blob", + "sha": "2c91b0eaa37e11e71e7b4c23eba92637267443ab", + "size": 1387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c91b0eaa37e11e71e7b4c23eba92637267443ab" + }, + { + "path": "svg/searx.svg", + "mode": "100644", + "type": "blob", + "sha": "201136e038feac363d5156c88d90d0445de28430", + "size": 2584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/201136e038feac363d5156c88d90d0445de28430" + }, + { + "path": "svg/searxng.svg", + "mode": "100755", + "type": "blob", + "sha": "aa3d3439fd87f4d22e03815b0a9e3d3c7ff6c340", + "size": 469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa3d3439fd87f4d22e03815b0a9e3d3c7ff6c340" + }, + { + "path": "svg/secureai-tools-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a7a69fe669568fe55a4564fac45da292682ef54d", + "size": 2006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7a69fe669568fe55a4564fac45da292682ef54d" + }, + { + "path": "svg/secureai-tools.svg", + "mode": "100755", + "type": "blob", + "sha": "8a8c126be276045477e0570c04820e209104a77f", + "size": 2006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a8c126be276045477e0570c04820e209104a77f" + }, + { + "path": "svg/security-onion-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7781cff8d63fb1ab8918b0d33b2f746d59818845", + "size": 6687, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7781cff8d63fb1ab8918b0d33b2f746d59818845" + }, + { + "path": "svg/security-onion.svg", + "mode": "100644", + "type": "blob", + "sha": "e7858fe2d100f9bc4c14187ddf0addaba47d6591", + "size": 7166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7858fe2d100f9bc4c14187ddf0addaba47d6591" + }, + { + "path": "svg/seelf.svg", + "mode": "100755", + "type": "blob", + "sha": "55517215dd28d0bcfbc6470430bafbc0af496160", + "size": 1247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55517215dd28d0bcfbc6470430bafbc0af496160" + }, + { + "path": "svg/selenium.svg", + "mode": "100644", + "type": "blob", + "sha": "6f333c352632ace00580d600632b9be47fdbe1b5", + "size": 2056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f333c352632ace00580d600632b9be47fdbe1b5" + }, + { + "path": "svg/self-hosted-gateway.svg", + "mode": "100755", + "type": "blob", + "sha": "598e4568e9e9c1077580351b78bab62fa09660ca", + "size": 588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/598e4568e9e9c1077580351b78bab62fa09660ca" + }, + { + "path": "svg/selfh-st-light.svg", + "mode": "100644", + "type": "blob", + "sha": "226ec3bb504b50ba549c6857129ba965e483f0fb", + "size": 369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/226ec3bb504b50ba549c6857129ba965e483f0fb" + }, + { + "path": "svg/selfh-st.svg", + "mode": "100755", + "type": "blob", + "sha": "b0d06579526886fed066ac64476440910b7ad757", + "size": 369, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0d06579526886fed066ac64476440910b7ad757" + }, + { + "path": "svg/semaphore-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7cbbe7e19ffed5ab65df0c4d8c93f3b26b9740ec", + "size": 600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cbbe7e19ffed5ab65df0c4d8c93f3b26b9740ec" + }, + { + "path": "svg/semaphore.svg", + "mode": "100644", + "type": "blob", + "sha": "49b16266afcfc904c988e7f33faf2dc739aa043f", + "size": 591, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49b16266afcfc904c988e7f33faf2dc739aa043f" + }, + { + "path": "svg/send.svg", + "mode": "100644", + "type": "blob", + "sha": "ec4e4c5d7b26b2b8f0c0e58b8a4b03015a756f47", + "size": 966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec4e4c5d7b26b2b8f0c0e58b8a4b03015a756f47" + }, + { + "path": "svg/sendgrid.svg", + "mode": "100755", + "type": "blob", + "sha": "be566204ef03d51f849ff6106e2edd3e405f225c", + "size": 480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be566204ef03d51f849ff6106e2edd3e405f225c" + }, + { + "path": "svg/sendinblue.svg", + "mode": "100644", + "type": "blob", + "sha": "daec858eb557d17c44ee6f68aaea8c0923c9bb68", + "size": 2115, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/daec858eb557d17c44ee6f68aaea8c0923c9bb68" + }, + { + "path": "svg/sensu.svg", + "mode": "100644", + "type": "blob", + "sha": "abf467e031b479cc19951d55f066a71aa8145dba", + "size": 527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abf467e031b479cc19951d55f066a71aa8145dba" + }, + { + "path": "svg/sentry-light.svg", + "mode": "100644", + "type": "blob", + "sha": "132519f39666a2747a76849829cf6f843cbb4a3e", + "size": 945, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/132519f39666a2747a76849829cf6f843cbb4a3e" + }, + { + "path": "svg/sentry.svg", + "mode": "100755", + "type": "blob", + "sha": "87d2de5bf20f6d98e47ae24677216536172dac3c", + "size": 933, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87d2de5bf20f6d98e47ae24677216536172dac3c" + }, + { + "path": "svg/series-troxide.svg", + "mode": "100644", + "type": "blob", + "sha": "79e39aac7115c35b7d86d08b568bd079e67ee038", + "size": 5777, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79e39aac7115c35b7d86d08b568bd079e67ee038" + }, + { + "path": "svg/servarr-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3d38345d1a95af9d7ec225d75b053952d60da821", + "size": 2054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d38345d1a95af9d7ec225d75b053952d60da821" + }, + { + "path": "svg/servarr.svg", + "mode": "100755", + "type": "blob", + "sha": "66bc361ef11a37d75ae8dbd579aa1c3ba62456fb", + "size": 1976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66bc361ef11a37d75ae8dbd579aa1c3ba62456fb" + }, + { + "path": "svg/serviio-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c632e9d138c38e055a662b0bd1e076cdc9bb5073", + "size": 449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c632e9d138c38e055a662b0bd1e076cdc9bb5073" + }, + { + "path": "svg/serviio.svg", + "mode": "100644", + "type": "blob", + "sha": "5c40e51a9f1cf882e1d049de591cdcbb7157ed16", + "size": 419, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c40e51a9f1cf882e1d049de591cdcbb7157ed16" + }, + { + "path": "svg/session.svg", + "mode": "100644", + "type": "blob", + "sha": "4c89071f8af434bcb458475a8d96d38287a7ce37", + "size": 6411, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c89071f8af434bcb458475a8d96d38287a7ce37" + }, + { + "path": "svg/seznam.svg", + "mode": "100644", + "type": "blob", + "sha": "c5c76c39bf53a2548fe3aa2775e5d2245684d676", + "size": 3127, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5c76c39bf53a2548fe3aa2775e5d2245684d676" + }, + { + "path": "svg/shaarli.svg", + "mode": "100755", + "type": "blob", + "sha": "721924d67cda0e1029175784c18f7b513291b313", + "size": 2178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/721924d67cda0e1029175784c18f7b513291b313" + }, + { + "path": "svg/shell-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b15f1056f357dee7ef2968dacf63f51c94884d37", + "size": 1305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b15f1056f357dee7ef2968dacf63f51c94884d37" + }, + { + "path": "svg/shell-tips-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bca983f0c678fe7716c37933204878a253860a7d", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bca983f0c678fe7716c37933204878a253860a7d" + }, + { + "path": "svg/shell-tips.svg", + "mode": "100644", + "type": "blob", + "sha": "03b5a746b748522921dbac0447c4ee085ac1ce0f", + "size": 238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03b5a746b748522921dbac0447c4ee085ac1ce0f" + }, + { + "path": "svg/shell.svg", + "mode": "100644", + "type": "blob", + "sha": "0b03d11c6ee6eaaf927c75a35ef8362b3ad0f37b", + "size": 1305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b03d11c6ee6eaaf927c75a35ef8362b3ad0f37b" + }, + { + "path": "svg/shellhub.svg", + "mode": "100755", + "type": "blob", + "sha": "cc0e6727cae9268a6e0217b308f5389e0629355c", + "size": 1101, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc0e6727cae9268a6e0217b308f5389e0629355c" + }, + { + "path": "svg/shellngn.svg", + "mode": "100644", + "type": "blob", + "sha": "9a9286b88b269649fd9eae36f1e1d185bba4dec0", + "size": 9164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a9286b88b269649fd9eae36f1e1d185bba4dec0" + }, + { + "path": "svg/shelly.svg", + "mode": "100644", + "type": "blob", + "sha": "b24f251df32ca4a4a2e3b363c62e36a6ce071586", + "size": 1772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b24f251df32ca4a4a2e3b363c62e36a6ce071586" + }, + { + "path": "svg/shinkro.svg", + "mode": "100644", + "type": "blob", + "sha": "319e686cdd0dfef114a6270eadc98898ed262d96", + "size": 3582, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/319e686cdd0dfef114a6270eadc98898ed262d96" + }, + { + "path": "svg/shiori.svg", + "mode": "100644", + "type": "blob", + "sha": "7d493b64476d2f10f1241727fb4aad2a1369cdf8", + "size": 1824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d493b64476d2f10f1241727fb4aad2a1369cdf8" + }, + { + "path": "svg/shlink.svg", + "mode": "100755", + "type": "blob", + "sha": "e5b084e6bc94ec170bd586b32808c03f8eba4a72", + "size": 1515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5b084e6bc94ec170bd586b32808c03f8eba4a72" + }, + { + "path": "svg/shoko-server.svg", + "mode": "100755", + "type": "blob", + "sha": "32cf0b2d11598d1b15ab2f36bf14c5a0be3a6ecd", + "size": 25103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32cf0b2d11598d1b15ab2f36bf14c5a0be3a6ecd" + }, + { + "path": "svg/shoko.svg", + "mode": "100644", + "type": "blob", + "sha": "c84410de6026cb414ffe65830b57f027098dbcb2", + "size": 33775, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c84410de6026cb414ffe65830b57f027098dbcb2" + }, + { + "path": "svg/shopify.svg", + "mode": "100755", + "type": "blob", + "sha": "15da005e2ece76c9a8eb527b9503d9b4bdd19f93", + "size": 1379, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15da005e2ece76c9a8eb527b9503d9b4bdd19f93" + }, + { + "path": "svg/shortcut.svg", + "mode": "100644", + "type": "blob", + "sha": "57f2af0980a097c1d67754c072ce56a5f35b34a7", + "size": 1263, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57f2af0980a097c1d67754c072ce56a5f35b34a7" + }, + { + "path": "svg/sickbeard.svg", + "mode": "100644", + "type": "blob", + "sha": "d21beb33f22e880de0b03f7a56565ad51585f631", + "size": 16027, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d21beb33f22e880de0b03f7a56565ad51585f631" + }, + { + "path": "svg/signal.svg", + "mode": "100755", + "type": "blob", + "sha": "6f22179bc27b6df1b2f9352815a301c336e9ee9a", + "size": 1671, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f22179bc27b6df1b2f9352815a301c336e9ee9a" + }, + { + "path": "svg/signoz.svg", + "mode": "100644", + "type": "blob", + "sha": "641f7bd37a24ed3f84da8b3ce16c0c6a0cd0a5d6", + "size": 3957, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/641f7bd37a24ed3f84da8b3ce16c0c6a0cd0a5d6" + }, + { + "path": "svg/sigstore.svg", + "mode": "100644", + "type": "blob", + "sha": "e235666f5a13b249ff84943d661e912121097488", + "size": 3449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e235666f5a13b249ff84943d661e912121097488" + }, + { + "path": "svg/silae.svg", + "mode": "100644", + "type": "blob", + "sha": "468007f8a1459d0ff03d566c2a73243be22560ac", + "size": 2443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/468007f8a1459d0ff03d566c2a73243be22560ac" + }, + { + "path": "svg/simplelogin.svg", + "mode": "100644", + "type": "blob", + "sha": "78fd54df93a909edf93049b2286ba2c1bab9112a", + "size": 3309, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78fd54df93a909edf93049b2286ba2c1bab9112a" + }, + { + "path": "svg/simplex-chat.svg", + "mode": "100755", + "type": "blob", + "sha": "5819d1e24b3d3aea44b151ddde61400fc99cb732", + "size": 594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5819d1e24b3d3aea44b151ddde61400fc99cb732" + }, + { + "path": "svg/sinusbot.svg", + "mode": "100644", + "type": "blob", + "sha": "b092331cbe8e4f87b8774a66367d30f54ead137f", + "size": 1028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b092331cbe8e4f87b8774a66367d30f54ead137f" + }, + { + "path": "svg/sipeed.svg", + "mode": "100644", + "type": "blob", + "sha": "3047637873f66092d1ae9bf1771277a991bc685d", + "size": 1047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3047637873f66092d1ae9bf1771277a991bc685d" + }, + { + "path": "svg/siyuan.svg", + "mode": "100755", + "type": "blob", + "sha": "87cfee9bc7e6245f8520d1527c2b573836b333ed", + "size": 432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87cfee9bc7e6245f8520d1527c2b573836b333ed" + }, + { + "path": "svg/skype.svg", + "mode": "100644", + "type": "blob", + "sha": "710d8c8f63191902ba3f46e27cd5115e06757323", + "size": 3597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/710d8c8f63191902ba3f46e27cd5115e06757323" + }, + { + "path": "svg/slack.svg", + "mode": "100755", + "type": "blob", + "sha": "93234ea6f42ab33fcb8930e8e3423c9f7934011a", + "size": 968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93234ea6f42ab33fcb8930e8e3423c9f7934011a" + }, + { + "path": "svg/slash-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ead34da606333200f1b5c2b256fa9421568879c6", + "size": 344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ead34da606333200f1b5c2b256fa9421568879c6" + }, + { + "path": "svg/slash.svg", + "mode": "100755", + "type": "blob", + "sha": "484b0452e048eb45b1d87e5dbd38f02fba5d9790", + "size": 311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/484b0452e048eb45b1d87e5dbd38f02fba5d9790" + }, + { + "path": "svg/slice.svg", + "mode": "100644", + "type": "blob", + "sha": "c55778d433b65dcfbeb639b62c38d0a6c462830e", + "size": 910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c55778d433b65dcfbeb639b62c38d0a6c462830e" + }, + { + "path": "svg/slidev.svg", + "mode": "100644", + "type": "blob", + "sha": "cbbcf07788bd62f433506647e0fb896190e69d00", + "size": 2974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbbcf07788bd62f433506647e0fb896190e69d00" + }, + { + "path": "svg/slskd.svg", + "mode": "100755", + "type": "blob", + "sha": "93557ba879dcef9cfffa29a400f248b8a7ce7830", + "size": 1084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93557ba879dcef9cfffa29a400f248b8a7ce7830" + }, + { + "path": "svg/smartfox.svg", + "mode": "100644", + "type": "blob", + "sha": "e58152d8d646ec31c7550aa22d5e3d18177fa499", + "size": 3787, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e58152d8d646ec31c7550aa22d5e3d18177fa499" + }, + { + "path": "svg/snapcast.svg", + "mode": "100644", + "type": "blob", + "sha": "d53c5691c7eebe3a5f173e30399a77ca07dc41df", + "size": 1641, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d53c5691c7eebe3a5f173e30399a77ca07dc41df" + }, + { + "path": "svg/snapchat-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "d8f2121566d6b3717185ba868e032527725d3073", + "size": 4628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8f2121566d6b3717185ba868e032527725d3073" + }, + { + "path": "svg/snapchat.svg", + "mode": "100755", + "type": "blob", + "sha": "1b4660991ed0cc4eeaac96652fc33cb6f18c979e", + "size": 4625, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b4660991ed0cc4eeaac96652fc33cb6f18c979e" + }, + { + "path": "svg/snapdrop.svg", + "mode": "100644", + "type": "blob", + "sha": "ee0d3f4c4ef4d59b2ccb1894e0c35f352f97955f", + "size": 1074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee0d3f4c4ef4d59b2ccb1894e0c35f352f97955f" + }, + { + "path": "svg/snappymail-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8da96f08d9ffe6e074bd53010d7a8dec60353b25", + "size": 2957, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8da96f08d9ffe6e074bd53010d7a8dec60353b25" + }, + { + "path": "svg/snappymail.svg", + "mode": "100644", + "type": "blob", + "sha": "b9566ad00fc2506fdb60510a9d6e5279d2d1b9e0", + "size": 2669, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9566ad00fc2506fdb60510a9d6e5279d2d1b9e0" + }, + { + "path": "svg/snikket.svg", + "mode": "100755", + "type": "blob", + "sha": "743aad35af5c1e02ba8089932263ea73c3ef2142", + "size": 4815, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/743aad35af5c1e02ba8089932263ea73c3ef2142" + }, + { + "path": "svg/socialhome.svg", + "mode": "100755", + "type": "blob", + "sha": "8594aa59a36801142f9fcf3ddd6d2977dcfb71ee", + "size": 516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8594aa59a36801142f9fcf3ddd6d2977dcfb71ee" + }, + { + "path": "svg/sogo.svg", + "mode": "100644", + "type": "blob", + "sha": "4beff200d8d9efc8d6bb848253e0f02046ccc659", + "size": 3754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4beff200d8d9efc8d6bb848253e0f02046ccc659" + }, + { + "path": "svg/solaar.svg", + "mode": "100644", + "type": "blob", + "sha": "85293805479834ea540c8789696dc0fba9eb7f3a", + "size": 2673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85293805479834ea540c8789696dc0fba9eb7f3a" + }, + { + "path": "svg/solidtime-light.svg", + "mode": "100644", + "type": "blob", + "sha": "543cbc65c7684b90214ed5ca30280d9487682e41", + "size": 1524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/543cbc65c7684b90214ed5ca30280d9487682e41" + }, + { + "path": "svg/solidtime.svg", + "mode": "100755", + "type": "blob", + "sha": "5d9ca4130a7f659d9223346ef0086edbc76c068f", + "size": 1512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d9ca4130a7f659d9223346ef0086edbc76c068f" + }, + { + "path": "svg/sonarqube.svg", + "mode": "100755", + "type": "blob", + "sha": "b4fb93565f3d4a19ba0a0b54746c9e9af89173c2", + "size": 362, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4fb93565f3d4a19ba0a0b54746c9e9af89173c2" + }, + { + "path": "svg/sonarr-4k.svg", + "mode": "100644", + "type": "blob", + "sha": "6d4f3f213da25b33dd12816a5c3c529394685964", + "size": 3683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d4f3f213da25b33dd12816a5c3c529394685964" + }, + { + "path": "svg/sonarr-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "b635322f1286c09935aa2c4f5243306ec8ab2671", + "size": 1981, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b635322f1286c09935aa2c4f5243306ec8ab2671" + }, + { + "path": "svg/sonarr.svg", + "mode": "100755", + "type": "blob", + "sha": "d0c985c0bca0b523e654a81d97b3d2c742420360", + "size": 1978, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0c985c0bca0b523e654a81d97b3d2c742420360" + }, + { + "path": "svg/sophos-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "1108f52e3ef565d01e13dddcf998d60460d0f745", + "size": 2494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1108f52e3ef565d01e13dddcf998d60460d0f745" + }, + { + "path": "svg/sophos.svg", + "mode": "100644", + "type": "blob", + "sha": "8269d9aab47050c82b8cb086fd81a883f2095f8c", + "size": 2494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8269d9aab47050c82b8cb086fd81a883f2095f8c" + }, + { + "path": "svg/sourcegraph.svg", + "mode": "100644", + "type": "blob", + "sha": "b64ad1cda860877482eb4bdce85d6266ad7e7ba5", + "size": 804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b64ad1cda860877482eb4bdce85d6266ad7e7ba5" + }, + { + "path": "svg/spamassassin.svg", + "mode": "100644", + "type": "blob", + "sha": "f52ef79e6f72e7086d841802da09dcbb548c2419", + "size": 128707, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f52ef79e6f72e7086d841802da09dcbb548c2419" + }, + { + "path": "svg/spark.svg", + "mode": "100644", + "type": "blob", + "sha": "397d3835e134e231a02bfcf2cd78ff27e298dc86", + "size": 931, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/397d3835e134e231a02bfcf2cd78ff27e298dc86" + }, + { + "path": "svg/sparkleshare.svg", + "mode": "100644", + "type": "blob", + "sha": "e1c8d99384771d28bad414826d67af6f3f9ec63b", + "size": 2317, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1c8d99384771d28bad414826d67af6f3f9ec63b" + }, + { + "path": "svg/specifically-clementines.svg", + "mode": "100755", + "type": "blob", + "sha": "fd1ddb7258815d2a442bff3ba74f73a3412c7550", + "size": 71747, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd1ddb7258815d2a442bff3ba74f73a3412c7550" + }, + { + "path": "svg/sphinx-doc.svg", + "mode": "100644", + "type": "blob", + "sha": "e2eb3d32e0d6dced1fcbe2ea4b2e7c750a644d12", + "size": 2042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2eb3d32e0d6dced1fcbe2ea4b2e7c750a644d12" + }, + { + "path": "svg/sphinx-relay.svg", + "mode": "100644", + "type": "blob", + "sha": "19d0d857ce1eb8b5cee330c3f0d0632bb1278955", + "size": 1401, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19d0d857ce1eb8b5cee330c3f0d0632bb1278955" + }, + { + "path": "svg/sphinx.svg", + "mode": "100644", + "type": "blob", + "sha": "e2eb3d32e0d6dced1fcbe2ea4b2e7c750a644d12", + "size": 2042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2eb3d32e0d6dced1fcbe2ea4b2e7c750a644d12" + }, + { + "path": "svg/spiceworks.svg", + "mode": "100644", + "type": "blob", + "sha": "aba81ea27d9177c5c1173c72f97b52bd9d3f7b60", + "size": 6746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aba81ea27d9177c5c1173c72f97b52bd9d3f7b60" + }, + { + "path": "svg/spliit.svg", + "mode": "100644", + "type": "blob", + "sha": "6b78a2d32dcc228bc33c14c49e844628cb944b36", + "size": 1729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b78a2d32dcc228bc33c14c49e844628cb944b36" + }, + { + "path": "svg/splunk.svg", + "mode": "100644", + "type": "blob", + "sha": "08c6e9d192ca2251d2102b7bc7b3ea853b9195d0", + "size": 1208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08c6e9d192ca2251d2102b7bc7b3ea853b9195d0" + }, + { + "path": "svg/spoolman.svg", + "mode": "100755", + "type": "blob", + "sha": "f01c6bad675f905063167006c98499a167249414", + "size": 2023, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f01c6bad675f905063167006c98499a167249414" + }, + { + "path": "svg/spotify.svg", + "mode": "100755", + "type": "blob", + "sha": "ab011bf80b0a8519a327a1e0769f33f8fc9e472f", + "size": 867, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab011bf80b0a8519a327a1e0769f33f8fc9e472f" + }, + { + "path": "svg/spree-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "289dd18ee70c6b0dabe1f51fc6be243e61af832e", + "size": 2191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/289dd18ee70c6b0dabe1f51fc6be243e61af832e" + }, + { + "path": "svg/spree.svg", + "mode": "100644", + "type": "blob", + "sha": "4f406660bdea07f039b276a8c56c55438ad615fa", + "size": 2190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f406660bdea07f039b276a8c56c55438ad615fa" + }, + { + "path": "svg/springboot-initializer.svg", + "mode": "100644", + "type": "blob", + "sha": "55b7534faf60cfc2d91c698e965527e6d1e36a2b", + "size": 713, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55b7534faf60cfc2d91c698e965527e6d1e36a2b" + }, + { + "path": "svg/sqlitebrowser.svg", + "mode": "100644", + "type": "blob", + "sha": "83f71b8f9c2891db1f234733f7c53b5ceeccb70a", + "size": 6453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83f71b8f9c2891db1f234733f7c53b5ceeccb70a" + }, + { + "path": "svg/squidex.svg", + "mode": "100644", + "type": "blob", + "sha": "9492db10e980a9fcc6b2fdb3fe0495bb8277176b", + "size": 1730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9492db10e980a9fcc6b2fdb3fe0495bb8277176b" + }, + { + "path": "svg/squirrel-servers-manager.svg", + "mode": "100755", + "type": "blob", + "sha": "571b15ed023f3ddd0395ee6d076dedefc46f52ac", + "size": 186447, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/571b15ed023f3ddd0395ee6d076dedefc46f52ac" + }, + { + "path": "svg/sshwifty.svg", + "mode": "100755", + "type": "blob", + "sha": "b69348f35d029f90311ee260b5ae3129441e831b", + "size": 3609, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b69348f35d029f90311ee260b5ae3129441e831b" + }, + { + "path": "svg/sst-dev-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "01be28119b8ac6f734dfc6b9a721fae59ffc43d2", + "size": 3830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01be28119b8ac6f734dfc6b9a721fae59ffc43d2" + }, + { + "path": "svg/sst-dev.svg", + "mode": "100644", + "type": "blob", + "sha": "277206e08c64a0dfc4e98412b894c49bc43dc907", + "size": 3830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/277206e08c64a0dfc4e98412b894c49bc43dc907" + }, + { + "path": "svg/stalwart-mail-server.svg", + "mode": "100755", + "type": "blob", + "sha": "2202ba8b25dc9e628847dbd1be55db7f2dbbdae2", + "size": 461, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2202ba8b25dc9e628847dbd1be55db7f2dbbdae2" + }, + { + "path": "svg/stalwart.svg", + "mode": "100644", + "type": "blob", + "sha": "057d65a33cd22b3fd8c831ddfb7c13106dde0d29", + "size": 20722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/057d65a33cd22b3fd8c831ddfb7c13106dde0d29" + }, + { + "path": "svg/standard-notes.svg", + "mode": "100755", + "type": "blob", + "sha": "36a4a52683e7fa001ee60972494b971b04398134", + "size": 573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36a4a52683e7fa001ee60972494b971b04398134" + }, + { + "path": "svg/startpage.svg", + "mode": "100644", + "type": "blob", + "sha": "030485f3a0089417bae1108cf644c494ab185673", + "size": 5298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/030485f3a0089417bae1108cf644c494ab185673" + }, + { + "path": "svg/stash.svg", + "mode": "100644", + "type": "blob", + "sha": "67d8c74e5360be01c3779f353e1d88a8c60416eb", + "size": 455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67d8c74e5360be01c3779f353e1d88a8c60416eb" + }, + { + "path": "svg/stb-proxy.svg", + "mode": "100644", + "type": "blob", + "sha": "685b7da2e2d67116a2408bb1e0ca4cc48c1ccf78", + "size": 2395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/685b7da2e2d67116a2408bb1e0ca4cc48c1ccf78" + }, + { + "path": "svg/steam.svg", + "mode": "100755", + "type": "blob", + "sha": "50c46e3b3486ad449c52b71b67606efdff108c34", + "size": 1537, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50c46e3b3486ad449c52b71b67606efdff108c34" + }, + { + "path": "svg/step-ca.svg", + "mode": "100755", + "type": "blob", + "sha": "b2442b53a6042cc550cb378550b2ee6a1af053a9", + "size": 907, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2442b53a6042cc550cb378550b2ee6a1af053a9" + }, + { + "path": "svg/stirling-pdf.svg", + "mode": "100755", + "type": "blob", + "sha": "c62bd8eb230d7ecebc2eeecf7ff8622eadd0c03c", + "size": 1515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c62bd8eb230d7ecebc2eeecf7ff8622eadd0c03c" + }, + { + "path": "svg/storj.svg", + "mode": "100644", + "type": "blob", + "sha": "ab9d22f016f4b7395b3559a0e3afd519ee19fbb0", + "size": 4589, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab9d22f016f4b7395b3559a0e3afd519ee19fbb0" + }, + { + "path": "svg/storm.svg", + "mode": "100644", + "type": "blob", + "sha": "b56a0b7ecb290a52ba3e56f4998db1ad5f2fd467", + "size": 2890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b56a0b7ecb290a52ba3e56f4998db1ad5f2fd467" + }, + { + "path": "svg/stormkit.svg", + "mode": "100755", + "type": "blob", + "sha": "3c32649d58e35bcceceb67f1a32f2cbd5f4a57ae", + "size": 499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c32649d58e35bcceceb67f1a32f2cbd5f4a57ae" + }, + { + "path": "svg/strapi.svg", + "mode": "100644", + "type": "blob", + "sha": "97d2d0ab87be0fa7a98811d61015b3861543bd8d", + "size": 703, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97d2d0ab87be0fa7a98811d61015b3861543bd8d" + }, + { + "path": "svg/strava.svg", + "mode": "100644", + "type": "blob", + "sha": "dec1062c272e51a8f0376c3eaafdd6135dd59385", + "size": 532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dec1062c272e51a8f0376c3eaafdd6135dd59385" + }, + { + "path": "svg/stremio.svg", + "mode": "100644", + "type": "blob", + "sha": "a1f582c10545395929fa91e787b7fc4b028fbecb", + "size": 600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1f582c10545395929fa91e787b7fc4b028fbecb" + }, + { + "path": "svg/stump-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "65ec9beead2d211f271e7d8d10acdb1c6aaf4340", + "size": 78734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65ec9beead2d211f271e7d8d10acdb1c6aaf4340" + }, + { + "path": "svg/stump.svg", + "mode": "100644", + "type": "blob", + "sha": "d67ceea30fa2d254085f608c525c3069176f9d8d", + "size": 34370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d67ceea30fa2d254085f608c525c3069176f9d8d" + }, + { + "path": "svg/sub-store.svg", + "mode": "100644", + "type": "blob", + "sha": "1cf83c6c6a92e3a235d9a15aff9cf3145a225ac5", + "size": 5049, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cf83c6c6a92e3a235d9a15aff9cf3145a225ac5" + }, + { + "path": "svg/subatic.svg", + "mode": "100755", + "type": "blob", + "sha": "c63d1c69440fd166ca4e879146e84a06f62d17c3", + "size": 1494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c63d1c69440fd166ca4e879146e84a06f62d17c3" + }, + { + "path": "svg/sun-panel.svg", + "mode": "100644", + "type": "blob", + "sha": "67bade6d4bdeb8823f160e6902c662407a42e60a", + "size": 831, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67bade6d4bdeb8823f160e6902c662407a42e60a" + }, + { + "path": "svg/sunsama.svg", + "mode": "100644", + "type": "blob", + "sha": "7ec93122eb3a051768d8c2b8d132b7a90a42eef2", + "size": 1159, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ec93122eb3a051768d8c2b8d132b7a90a42eef2" + }, + { + "path": "svg/sunshine.svg", + "mode": "100644", + "type": "blob", + "sha": "a48e40489b97db5ed0dee5ae2b189cd03b998e61", + "size": 1265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a48e40489b97db5ed0dee5ae2b189cd03b998e61" + }, + { + "path": "svg/supabase.svg", + "mode": "100755", + "type": "blob", + "sha": "fc5d529810e053c17cfcc6f80ea7b0d09796a4a4", + "size": 972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc5d529810e053c17cfcc6f80ea7b0d09796a4a4" + }, + { + "path": "svg/supermicro.svg", + "mode": "100644", + "type": "blob", + "sha": "4e06c5808122e1a61fed22de62a7921e3b2f8b9a", + "size": 4786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e06c5808122e1a61fed22de62a7921e3b2f8b9a" + }, + { + "path": "svg/surveymonkey.svg", + "mode": "100755", + "type": "blob", + "sha": "30e3c5d574d0c2ca7e5c321520a5866d95f30d83", + "size": 1091, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30e3c5d574d0c2ca7e5c321520a5866d95f30d83" + }, + { + "path": "svg/suwayomi-light.svg", + "mode": "100644", + "type": "blob", + "sha": "f71f1f8fdc643450ecb82e753aad408b8f78c037", + "size": 1249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f71f1f8fdc643450ecb82e753aad408b8f78c037" + }, + { + "path": "svg/suwayomi.svg", + "mode": "100644", + "type": "blob", + "sha": "0289b481a561a439d7a598b0051b23ef0d8d22c7", + "size": 1249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0289b481a561a439d7a598b0051b23ef0d8d22c7" + }, + { + "path": "svg/svelte.svg", + "mode": "100644", + "type": "blob", + "sha": "ffe015e1586af2cab777541e9a06587e9862fcea", + "size": 1658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ffe015e1586af2cab777541e9a06587e9862fcea" + }, + { + "path": "svg/swagger.svg", + "mode": "100644", + "type": "blob", + "sha": "b4580dd7c9c79735dcfa29ea00b491aaea64c996", + "size": 2326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4580dd7c9c79735dcfa29ea00b491aaea64c996" + }, + { + "path": "svg/swarmpit.svg", + "mode": "100755", + "type": "blob", + "sha": "ac32ffd87c22e0f7727c09b5e69ead19acd6c6e3", + "size": 1474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac32ffd87c22e0f7727c09b5e69ead19acd6c6e3" + }, + { + "path": "svg/swift.svg", + "mode": "100644", + "type": "blob", + "sha": "89bbaf2c43476a245a286fd265a9e9886a9217ce", + "size": 1572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89bbaf2c43476a245a286fd265a9e9886a9217ce" + }, + { + "path": "svg/symmetricom-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bd9a0dc4d1cd69a5a6e4ca46aa09d195d7290665", + "size": 11548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd9a0dc4d1cd69a5a6e4ca46aa09d195d7290665" + }, + { + "path": "svg/symmetricom.svg", + "mode": "100644", + "type": "blob", + "sha": "5f67a4c9afe7d6e7f5718907f4387125f8082cfa", + "size": 11518, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f67a4c9afe7d6e7f5718907f4387125f8082cfa" + }, + { + "path": "svg/synapse-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c83b85bfc8461f38e7ce6f4e5722058e32384ea5", + "size": 1646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c83b85bfc8461f38e7ce6f4e5722058e32384ea5" + }, + { + "path": "svg/synapse.svg", + "mode": "100755", + "type": "blob", + "sha": "3c9660b61a1eb8a12c630518c260a0845f36ebca", + "size": 1634, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c9660b61a1eb8a12c630518c260a0845f36ebca" + }, + { + "path": "svg/syncplay.svg", + "mode": "100644", + "type": "blob", + "sha": "dca29482d50562a9ed497c3dbe8fd2cb5e0208f5", + "size": 3803, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dca29482d50562a9ed497c3dbe8fd2cb5e0208f5" + }, + { + "path": "svg/syncthing-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "e46e52a2c9610c38f9f7593cef92359a4ec48b7a", + "size": 1205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e46e52a2c9610c38f9f7593cef92359a4ec48b7a" + }, + { + "path": "svg/syncthing.svg", + "mode": "100755", + "type": "blob", + "sha": "e3dbbba4ee0de2815aeb425c954206f8cee65771", + "size": 1187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3dbbba4ee0de2815aeb425c954206f8cee65771" + }, + { + "path": "svg/synology-dsm.svg", + "mode": "100644", + "type": "blob", + "sha": "28efeeaa3100cc336bbe66d0ec0e0a0294026018", + "size": 2571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28efeeaa3100cc336bbe66d0ec0e0a0294026018" + }, + { + "path": "svg/synology-light.svg", + "mode": "100644", + "type": "blob", + "sha": "91d1e180957888838f111c4a487147140864d0b4", + "size": 4398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91d1e180957888838f111c4a487147140864d0b4" + }, + { + "path": "svg/synology.svg", + "mode": "100755", + "type": "blob", + "sha": "1627dfd9d75f6fa50bb6191057fe554f3090e371", + "size": 4338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1627dfd9d75f6fa50bb6191057fe554f3090e371" + }, + { + "path": "svg/sysreptor.svg", + "mode": "100644", + "type": "blob", + "sha": "9e7528aa1022f595efbc2d0021c9397e7f5baf36", + "size": 2483, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e7528aa1022f595efbc2d0021c9397e7f5baf36" + }, + { + "path": "svg/tabula.svg", + "mode": "100644", + "type": "blob", + "sha": "22f660e158ec3e86970bf53098d647ea1e6a861f", + "size": 5613, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22f660e158ec3e86970bf53098d647ea1e6a861f" + }, + { + "path": "svg/tacticalrmm.svg", + "mode": "100644", + "type": "blob", + "sha": "c31439fbac840c38cd173181ddff5e50ddb4ddf3", + "size": 1989, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c31439fbac840c38cd173181ddff5e50ddb4ddf3" + }, + { + "path": "svg/taiga.svg", + "mode": "100644", + "type": "blob", + "sha": "03a475c85821137b0afc71654d95626029de47de", + "size": 932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03a475c85821137b0afc71654d95626029de47de" + }, + { + "path": "svg/tailscale-light.svg", + "mode": "100644", + "type": "blob", + "sha": "dc7b922fff7bd5a2924351304701421da1d90f66", + "size": 1290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc7b922fff7bd5a2924351304701421da1d90f66" + }, + { + "path": "svg/tailscale.svg", + "mode": "100755", + "type": "blob", + "sha": "b7d6e8a1905f0eaaa2241dcbce534a3beac0d47f", + "size": 1185, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7d6e8a1905f0eaaa2241dcbce534a3beac0d47f" + }, + { + "path": "svg/tailwind.svg", + "mode": "100644", + "type": "blob", + "sha": "e746b961d1f030ee27c3ea221381da5c87c5667e", + "size": 773, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e746b961d1f030ee27c3ea221381da5c87c5667e" + }, + { + "path": "svg/talos.svg", + "mode": "100644", + "type": "blob", + "sha": "361751161bafd63124cbbf6db3799cbba72939a0", + "size": 2219, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/361751161bafd63124cbbf6db3799cbba72939a0" + }, + { + "path": "svg/tandoor-recipes.svg", + "mode": "100755", + "type": "blob", + "sha": "f828c8b9353fb1dc13721a796a794ff078ad0cc5", + "size": 4275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f828c8b9353fb1dc13721a796a794ff078ad0cc5" + }, + { + "path": "svg/tangerine-ui.svg", + "mode": "100755", + "type": "blob", + "sha": "b862aed0b63f6843878b7240223b058c4a187d9e", + "size": 3367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b862aed0b63f6843878b7240223b058c4a187d9e" + }, + { + "path": "svg/taskcafe.svg", + "mode": "100644", + "type": "blob", + "sha": "ce7007997f6bb855db2d62d2a4133b6e05de1797", + "size": 2859, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce7007997f6bb855db2d62d2a4133b6e05de1797" + }, + { + "path": "svg/tasmocompiler.svg", + "mode": "100644", + "type": "blob", + "sha": "1cb3f57e676d2517927addced57bdf6917b8e06f", + "size": 7147, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cb3f57e676d2517927addced57bdf6917b8e06f" + }, + { + "path": "svg/tasmota-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7d66ed029692a4fece85634a84fff18b30c6bd52", + "size": 470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d66ed029692a4fece85634a84fff18b30c6bd52" + }, + { + "path": "svg/tasmota.svg", + "mode": "100644", + "type": "blob", + "sha": "e53e2c319ea055d05e70e667566c7a6a29f9302f", + "size": 473, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e53e2c319ea055d05e70e667566c7a6a29f9302f" + }, + { + "path": "svg/tautulli.svg", + "mode": "100755", + "type": "blob", + "sha": "917a2a925703b6764a9cc97e8766d46c9f754376", + "size": 1050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/917a2a925703b6764a9cc97e8766d46c9f754376" + }, + { + "path": "svg/team-viewer.svg", + "mode": "100644", + "type": "blob", + "sha": "9820219416dccc5ee6e5c7499c72d3295e93a7d1", + "size": 616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9820219416dccc5ee6e5c7499c72d3295e93a7d1" + }, + { + "path": "svg/teamcity-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7d82ad8f4413b8fc5ecbca74ab1a576864cae7d8", + "size": 3021, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d82ad8f4413b8fc5ecbca74ab1a576864cae7d8" + }, + { + "path": "svg/teamcity.svg", + "mode": "100644", + "type": "blob", + "sha": "308b9169ba435df34de097d2a180ce50f0c01e72", + "size": 2943, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/308b9169ba435df34de097d2a180ce50f0c01e72" + }, + { + "path": "svg/teamspeak.svg", + "mode": "100644", + "type": "blob", + "sha": "08c1423ef7dae5d5ed90f5438c081a5f20220f06", + "size": 6641, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08c1423ef7dae5d5ed90f5438c081a5f20220f06" + }, + { + "path": "svg/teamtailor.svg", + "mode": "100644", + "type": "blob", + "sha": "0b595fde93cd7dfecbdf96fdca24a8f38bdb800e", + "size": 2270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b595fde93cd7dfecbdf96fdca24a8f38bdb800e" + }, + { + "path": "svg/telegraf.svg", + "mode": "100644", + "type": "blob", + "sha": "339bc6d0dea313307c98f90dd0da8f9863a17811", + "size": 1783, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/339bc6d0dea313307c98f90dd0da8f9863a17811" + }, + { + "path": "svg/telegram.svg", + "mode": "100755", + "type": "blob", + "sha": "e8eba0c4971ebe1e8b6cfee649cffa34a95777ba", + "size": 1007, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8eba0c4971ebe1e8b6cfee649cffa34a95777ba" + }, + { + "path": "svg/telekom.svg", + "mode": "100644", + "type": "blob", + "sha": "d74a41d2feda78b866b646b62983c99a580dde6c", + "size": 536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d74a41d2feda78b866b646b62983c99a580dde6c" + }, + { + "path": "svg/teleport.svg", + "mode": "100755", + "type": "blob", + "sha": "e80469cded5bf847456c956541106b6f3be372cf", + "size": 1565, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e80469cded5bf847456c956541106b6f3be372cf" + }, + { + "path": "svg/tenable-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "22b821d5479131f28119f985df897b0ce2286925", + "size": 1835, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22b821d5479131f28119f985df897b0ce2286925" + }, + { + "path": "svg/tenable.svg", + "mode": "100644", + "type": "blob", + "sha": "5843cd7ed6e5ce5433b1988b546599df9b0e1e0c", + "size": 1845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5843cd7ed6e5ce5433b1988b546599df9b0e1e0c" + }, + { + "path": "svg/tenda.svg", + "mode": "100644", + "type": "blob", + "sha": "bd6e5629a9a92fc75b1499a91e4e5b4e44bbfb67", + "size": 3562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd6e5629a9a92fc75b1499a91e4e5b4e44bbfb67" + }, + { + "path": "svg/terminal.svg", + "mode": "100644", + "type": "blob", + "sha": "ae2e17f6b7b9af7614ca6a2a64b369c619858b0e", + "size": 4865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae2e17f6b7b9af7614ca6a2a64b369c619858b0e" + }, + { + "path": "svg/termix.svg", + "mode": "100644", + "type": "blob", + "sha": "d7e19381fda9b6225dd52de5a8942c6848c1dd27", + "size": 9638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7e19381fda9b6225dd52de5a8942c6848c1dd27" + }, + { + "path": "svg/terraform.svg", + "mode": "100644", + "type": "blob", + "sha": "08f80b3a3849f0163018ab88233f0bb63a3abda5", + "size": 299, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08f80b3a3849f0163018ab88233f0bb63a3abda5" + }, + { + "path": "svg/teslamate-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a9a57826572a77579a2bd67d6bc4baba287da09e", + "size": 482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9a57826572a77579a2bd67d6bc4baba287da09e" + }, + { + "path": "svg/teslamate.svg", + "mode": "100755", + "type": "blob", + "sha": "f120ba7b78c7bf5d521bc6cc5ec9155f0bbe66a7", + "size": 482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f120ba7b78c7bf5d521bc6cc5ec9155f0bbe66a7" + }, + { + "path": "svg/thanos.svg", + "mode": "100644", + "type": "blob", + "sha": "b60e25b742e4e9a82e430598759c70dfb03d12ae", + "size": 760, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b60e25b742e4e9a82e430598759c70dfb03d12ae" + }, + { + "path": "svg/the-onion.svg", + "mode": "100644", + "type": "blob", + "sha": "867c1585e57fdc0236db79c8a949adbe58a6b1f5", + "size": 1011, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/867c1585e57fdc0236db79c8a949adbe58a6b1f5" + }, + { + "path": "svg/the-pirate-bay.svg", + "mode": "100644", + "type": "blob", + "sha": "d2b187560e6738594fddc64dc5d6abbf2fd6fa7a", + "size": 100262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2b187560e6738594fddc64dc5d6abbf2fd6fa7a" + }, + { + "path": "svg/the-proxy-bay.svg", + "mode": "100644", + "type": "blob", + "sha": "d2b187560e6738594fddc64dc5d6abbf2fd6fa7a", + "size": 100262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2b187560e6738594fddc64dc5d6abbf2fd6fa7a" + }, + { + "path": "svg/theia-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a37c47d03260ca1aa718f015a86b4b6a5c526aca", + "size": 1322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a37c47d03260ca1aa718f015a86b4b6a5c526aca" + }, + { + "path": "svg/theia.svg", + "mode": "100644", + "type": "blob", + "sha": "392a15b60c5ac82dcbf9eafbee67018161133825", + "size": 1297, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/392a15b60c5ac82dcbf9eafbee67018161133825" + }, + { + "path": "svg/thelounge.svg", + "mode": "100644", + "type": "blob", + "sha": "197102ce3e78e6231bbf2ce71372ae3672523bf7", + "size": 1186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/197102ce3e78e6231bbf2ce71372ae3672523bf7" + }, + { + "path": "svg/theodinproject.svg", + "mode": "100644", + "type": "blob", + "sha": "576da3f9ba3ea3018d2a4be56dc3ae41fe3a1b60", + "size": 1554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/576da3f9ba3ea3018d2a4be56dc3ae41fe3a1b60" + }, + { + "path": "svg/thin-linc.svg", + "mode": "100644", + "type": "blob", + "sha": "2c67fd803418bd1cb23171eadec1cf4bdf5c4580", + "size": 1851, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c67fd803418bd1cb23171eadec1cf4bdf5c4580" + }, + { + "path": "svg/thingsboard.svg", + "mode": "100644", + "type": "blob", + "sha": "824882e11e2b30fed4d878c6a33fbd98cecc68b0", + "size": 4891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/824882e11e2b30fed4d878c6a33fbd98cecc68b0" + }, + { + "path": "svg/threadfin.svg", + "mode": "100644", + "type": "blob", + "sha": "30b03b7765951254722e92483c12e0e2280e5c01", + "size": 635, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30b03b7765951254722e92483c12e0e2280e5c01" + }, + { + "path": "svg/threads-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e9de1f47ee464a6d2726de23bf775f6ed32b23c9", + "size": 1158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9de1f47ee464a6d2726de23bf775f6ed32b23c9" + }, + { + "path": "svg/threads.svg", + "mode": "100755", + "type": "blob", + "sha": "13d77cc4b6b99d7afd674b368735ffa54e0bc882", + "size": 1143, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13d77cc4b6b99d7afd674b368735ffa54e0bc882" + }, + { + "path": "svg/thunderbird.svg", + "mode": "100755", + "type": "blob", + "sha": "bd99a035431d262b74e851b72db637ab6a113e1b", + "size": 6141, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd99a035431d262b74e851b72db637ab6a113e1b" + }, + { + "path": "svg/tianji-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b3b1c03aebe76909aca4dc42bc4072d8adb498de", + "size": 1310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3b1c03aebe76909aca4dc42bc4072d8adb498de" + }, + { + "path": "svg/tianji.svg", + "mode": "100755", + "type": "blob", + "sha": "82211ce8fbbdb8b03aefb9c56d85c33e73faf47f", + "size": 1262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82211ce8fbbdb8b03aefb9c56d85c33e73faf47f" + }, + { + "path": "svg/ticky.svg", + "mode": "100644", + "type": "blob", + "sha": "f9a9fe6df9f8f3969da9c32624c7e4ca64519a01", + "size": 3233, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9a9fe6df9f8f3969da9c32624c7e4ca64519a01" + }, + { + "path": "svg/tidal-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "4a4bf2b37d7a5292608bc8eb04e97749582256cf", + "size": 2026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a4bf2b37d7a5292608bc8eb04e97749582256cf" + }, + { + "path": "svg/tidal.svg", + "mode": "100644", + "type": "blob", + "sha": "3f855cc0498c7d0d12f5168180d89590178472ae", + "size": 2058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f855cc0498c7d0d12f5168180d89590178472ae" + }, + { + "path": "svg/tiddlywiki-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e4e273ac5ea9a4cf3db2af50826ca864a165d48b", + "size": 1388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4e273ac5ea9a4cf3db2af50826ca864a165d48b" + }, + { + "path": "svg/tiddlywiki.svg", + "mode": "100755", + "type": "blob", + "sha": "29c5eef1ec002c8190e8735eaad12de40f8a8b93", + "size": 1376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29c5eef1ec002c8190e8735eaad12de40f8a8b93" + }, + { + "path": "svg/tiktok-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a60338f7fc1cce411dd358f3b4153ee86ff13a86", + "size": 1378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a60338f7fc1cce411dd358f3b4153ee86ff13a86" + }, + { + "path": "svg/tiktok.svg", + "mode": "100755", + "type": "blob", + "sha": "c9bfbf1149c647014ac008e7609e11a23679ae35", + "size": 1366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9bfbf1149c647014ac008e7609e11a23679ae35" + }, + { + "path": "svg/timetagger-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b3d7c604c599884e7360ba61a17359f1264b4770", + "size": 461, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3d7c604c599884e7360ba61a17359f1264b4770" + }, + { + "path": "svg/timetagger.svg", + "mode": "100644", + "type": "blob", + "sha": "d91bf22e0609c68c88d25e5ac800a357b6272d2e", + "size": 461, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d91bf22e0609c68c88d25e5ac800a357b6272d2e" + }, + { + "path": "svg/ting-isp.svg", + "mode": "100644", + "type": "blob", + "sha": "986555a6dc0bce160840bceb28d7ffa1fe8f103e", + "size": 3499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/986555a6dc0bce160840bceb28d7ffa1fe8f103e" + }, + { + "path": "svg/tiny-media-manager.svg", + "mode": "100644", + "type": "blob", + "sha": "e83aab0983b3c383d76b2c0862b5d841c25467af", + "size": 2335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e83aab0983b3c383d76b2c0862b5d841c25467af" + }, + { + "path": "svg/tinyauth.svg", + "mode": "100644", + "type": "blob", + "sha": "84d0f5a515bda94a6eca872b3ad52af67a8369d4", + "size": 19251, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84d0f5a515bda94a6eca872b3ad52af67a8369d4" + }, + { + "path": "svg/tmdb.svg", + "mode": "100755", + "type": "blob", + "sha": "329b63c3eacf6b61359933601d42a2adf5b4a37e", + "size": 2318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/329b63c3eacf6b61359933601d42a2adf5b4a37e" + }, + { + "path": "svg/todoist-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "81b99b8d2061307bffc7b2c6d603f729dbc2b811", + "size": 1305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81b99b8d2061307bffc7b2c6d603f729dbc2b811" + }, + { + "path": "svg/todoist.svg", + "mode": "100644", + "type": "blob", + "sha": "c8a2004be268f0784ebf378d95a55d2aae494910", + "size": 1296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8a2004be268f0784ebf378d95a55d2aae494910" + }, + { + "path": "svg/toggl-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "5fa5995028abc50b30dc66e408ab20c777834056", + "size": 1558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fa5995028abc50b30dc66e408ab20c777834056" + }, + { + "path": "svg/toggl.svg", + "mode": "100644", + "type": "blob", + "sha": "6232037333e9b7a70ad5c54703f13ac3eae93fc0", + "size": 1558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6232037333e9b7a70ad5c54703f13ac3eae93fc0" + }, + { + "path": "svg/tolgee.svg", + "mode": "100644", + "type": "blob", + "sha": "070bd4ec16e1e56f859b706a32c054a99decb283", + "size": 1318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/070bd4ec16e1e56f859b706a32c054a99decb283" + }, + { + "path": "svg/tooljet-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "a1e2ba49b580df36aadd1e0c8ab4ab4084ad618c", + "size": 1015, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1e2ba49b580df36aadd1e0c8ab4ab4084ad618c" + }, + { + "path": "svg/tooljet.svg", + "mode": "100755", + "type": "blob", + "sha": "70eba7d9eba2d47357c188b5071b32d194d915b6", + "size": 991, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70eba7d9eba2d47357c188b5071b32d194d915b6" + }, + { + "path": "svg/topdesk.svg", + "mode": "100644", + "type": "blob", + "sha": "a6802393c5ff6c7ef0c671d91a54ace4a1b88437", + "size": 318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6802393c5ff6c7ef0c671d91a54ace4a1b88437" + }, + { + "path": "svg/touitomamout.svg", + "mode": "100755", + "type": "blob", + "sha": "979f9932fb3f8775843f9adcba9dbb01c3d0ecb1", + "size": 3897, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/979f9932fb3f8775843f9adcba9dbb01c3d0ecb1" + }, + { + "path": "svg/tp-link.svg", + "mode": "100755", + "type": "blob", + "sha": "d6815ac158a1cbbffa617d026f4d902042f1aa06", + "size": 420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6815ac158a1cbbffa617d026f4d902042f1aa06" + }, + { + "path": "svg/tpdb.svg", + "mode": "100755", + "type": "blob", + "sha": "62b2970b0bf674a37b196960262711b445536791", + "size": 2428, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62b2970b0bf674a37b196960262711b445536791" + }, + { + "path": "svg/traccar-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "62015701fd9a81844462da26c2074d6324ba42ea", + "size": 959, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62015701fd9a81844462da26c2074d6324ba42ea" + }, + { + "path": "svg/traccar.svg", + "mode": "100755", + "type": "blob", + "sha": "9cdfc1438e02eadf675cbc9cc62aeeefd8beb8c8", + "size": 911, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cdfc1438e02eadf675cbc9cc62aeeefd8beb8c8" + }, + { + "path": "svg/trading-view-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "4edaacfdcd90c1460bcca5eed9f270b5398077ca", + "size": 677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4edaacfdcd90c1460bcca5eed9f270b5398077ca" + }, + { + "path": "svg/trading-view.svg", + "mode": "100644", + "type": "blob", + "sha": "5681fc4cd449a2cd926057e4a8ab42523b7c1735", + "size": 677, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5681fc4cd449a2cd926057e4a8ab42523b7c1735" + }, + { + "path": "svg/traefik-proxy.svg", + "mode": "100644", + "type": "blob", + "sha": "17fef556156dcd0353ab9ae979f1f09e53220c99", + "size": 1378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17fef556156dcd0353ab9ae979f1f09e53220c99" + }, + { + "path": "svg/traefik.svg", + "mode": "100755", + "type": "blob", + "sha": "dd1d701c0796545b7972cd829f35fab0286c4c3a", + "size": 2188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd1d701c0796545b7972cd829f35fab0286c4c3a" + }, + { + "path": "svg/traggo.svg", + "mode": "100644", + "type": "blob", + "sha": "cb1c96039e79e0a8b08c348805ba1417e6a21606", + "size": 43358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb1c96039e79e0a8b08c348805ba1417e6a21606" + }, + { + "path": "svg/trailarr.svg", + "mode": "100644", + "type": "blob", + "sha": "f2ba4b904b68d76eb448f1e4723de3562530a9f7", + "size": 1292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2ba4b904b68d76eb448f1e4723de3562530a9f7" + }, + { + "path": "svg/trakt.svg", + "mode": "100755", + "type": "blob", + "sha": "e9b716945727b3cb1815a7b208f6092389db2e6d", + "size": 1958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9b716945727b3cb1815a7b208f6092389db2e6d" + }, + { + "path": "svg/transmission.svg", + "mode": "100755", + "type": "blob", + "sha": "04560ee0c2df12719d941f7be9eefe60dedbc29d", + "size": 7954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04560ee0c2df12719d941f7be9eefe60dedbc29d" + }, + { + "path": "svg/trellix-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "9bff8a6493f370d7c27c136842de00ac41baa3ae", + "size": 1887, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bff8a6493f370d7c27c136842de00ac41baa3ae" + }, + { + "path": "svg/trellix.svg", + "mode": "100644", + "type": "blob", + "sha": "c383b90d5035289dbc8dfd447e245d91de85af6e", + "size": 1890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c383b90d5035289dbc8dfd447e245d91de85af6e" + }, + { + "path": "svg/trilium.svg", + "mode": "100755", + "type": "blob", + "sha": "acb2d9bbe04650240ce8f12f4b93d1ea68b6ed26", + "size": 2311, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acb2d9bbe04650240ce8f12f4b93d1ea68b6ed26" + }, + { + "path": "svg/triliumnext.svg", + "mode": "100755", + "type": "blob", + "sha": "ec00b7e9146203445fa98f349f177d35070c736c", + "size": 2344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec00b7e9146203445fa98f349f177d35070c736c" + }, + { + "path": "svg/trmnl.svg", + "mode": "100644", + "type": "blob", + "sha": "7a8db0cf1fcfdbde6322c026a4cf4243661944be", + "size": 1256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a8db0cf1fcfdbde6322c026a4cf4243661944be" + }, + { + "path": "svg/truecommand.svg", + "mode": "100644", + "type": "blob", + "sha": "0d691e363e65ef1fb3adcbf783433387e5a3d5ee", + "size": 2443, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d691e363e65ef1fb3adcbf783433387e5a3d5ee" + }, + { + "path": "svg/truenas-core.svg", + "mode": "100755", + "type": "blob", + "sha": "546c7ec899f5276b9a0f47cb65cfbcaf524624f4", + "size": 748, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/546c7ec899f5276b9a0f47cb65cfbcaf524624f4" + }, + { + "path": "svg/truenas-scale.svg", + "mode": "100755", + "type": "blob", + "sha": "02b94726e4f2ca4c9ee9d1d1b4c9b8cf535b90f8", + "size": 3407, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02b94726e4f2ca4c9ee9d1d1b4c9b8cf535b90f8" + }, + { + "path": "svg/truenas.svg", + "mode": "100644", + "type": "blob", + "sha": "a24865d9a1068c80d5a3bcf2d63c55fc254c83b5", + "size": 465, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a24865d9a1068c80d5a3bcf2d63c55fc254c83b5" + }, + { + "path": "svg/tryhackme.svg", + "mode": "100644", + "type": "blob", + "sha": "5d91a3a2a81566198e14543db23ae18f44f23f4a", + "size": 16203, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d91a3a2a81566198e14543db23ae18f44f23f4a" + }, + { + "path": "svg/tsd-proxy.svg", + "mode": "100644", + "type": "blob", + "sha": "12701f55a2057714df80c4f527a590fd45cb9617", + "size": 633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12701f55a2057714df80c4f527a590fd45cb9617" + }, + { + "path": "svg/tubesync-light.svg", + "mode": "100644", + "type": "blob", + "sha": "9cf1ac62cc7ed90e05f53e0c06d2a24042d8f1a4", + "size": 1040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cf1ac62cc7ed90e05f53e0c06d2a24042d8f1a4" + }, + { + "path": "svg/tubesync.svg", + "mode": "100755", + "type": "blob", + "sha": "2c3b28dee86cab70be4482f5f657bd1f40ceddcb", + "size": 1040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c3b28dee86cab70be4482f5f657bd1f40ceddcb" + }, + { + "path": "svg/tumblr.svg", + "mode": "100755", + "type": "blob", + "sha": "37cd1be2d0b09b0fe26ef8b6b35fd995fee8bea6", + "size": 759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37cd1be2d0b09b0fe26ef8b6b35fd995fee8bea6" + }, + { + "path": "svg/tunarr.svg", + "mode": "100644", + "type": "blob", + "sha": "68a8d76c2f412c2ace7c558efef6c5d30e8069ee", + "size": 1683, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68a8d76c2f412c2ace7c558efef6c5d30e8069ee" + }, + { + "path": "svg/tunnelix.svg", + "mode": "100644", + "type": "blob", + "sha": "93cebb9de5d4ca45ff8459e61e29740165b665cb", + "size": 9638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93cebb9de5d4ca45ff8459e61e29740165b665cb" + }, + { + "path": "svg/turbopack-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a173c90c807d7b7d98b63594ae2768b64802cc1c", + "size": 929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a173c90c807d7b7d98b63594ae2768b64802cc1c" + }, + { + "path": "svg/turbopack.svg", + "mode": "100644", + "type": "blob", + "sha": "832279123ee68aa5b0d9c77d296b10ae21fd0092", + "size": 899, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/832279123ee68aa5b0d9c77d296b10ae21fd0092" + }, + { + "path": "svg/tuta.svg", + "mode": "100644", + "type": "blob", + "sha": "8518a8ebb2a25ca6cf370788fce6d6d3ab6a7e59", + "size": 748, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8518a8ebb2a25ca6cf370788fce6d6d3ab6a7e59" + }, + { + "path": "svg/tux.svg", + "mode": "100644", + "type": "blob", + "sha": "e1391505a692ed22586299fa32c7372cbbca258c", + "size": 35988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1391505a692ed22586299fa32c7372cbbca258c" + }, + { + "path": "svg/tvdb.svg", + "mode": "100755", + "type": "blob", + "sha": "0c5b58e49865c4a7961b3706dd2388c5ec648c6b", + "size": 1091, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c5b58e49865c4a7961b3706dd2388c5ec648c6b" + }, + { + "path": "svg/tvheadend.svg", + "mode": "100644", + "type": "blob", + "sha": "2706d32949ed08c3dfadcec565fab24207d61237", + "size": 667, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2706d32949ed08c3dfadcec565fab24207d61237" + }, + { + "path": "svg/tweakers.svg", + "mode": "100644", + "type": "blob", + "sha": "493023280157227bd50b7d624f9a08faa720125e", + "size": 826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/493023280157227bd50b7d624f9a08faa720125e" + }, + { + "path": "svg/twingate-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3ad479bfe4bf03f3890585230f51660985d624f8", + "size": 438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ad479bfe4bf03f3890585230f51660985d624f8" + }, + { + "path": "svg/twingate.svg", + "mode": "100755", + "type": "blob", + "sha": "3f1808478c2745471c4a433e4f68de668a5d30d4", + "size": 438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f1808478c2745471c4a433e4f68de668a5d30d4" + }, + { + "path": "svg/twitch.svg", + "mode": "100755", + "type": "blob", + "sha": "25354bf5134a0d83b7f657976788e75f93bc63e5", + "size": 599, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25354bf5134a0d83b7f657976788e75f93bc63e5" + }, + { + "path": "svg/twitter.svg", + "mode": "100755", + "type": "blob", + "sha": "7d68f90c497b83acd64fa5dc3263b3b964d5bb34", + "size": 610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d68f90c497b83acd64fa5dc3263b3b964d5bb34" + }, + { + "path": "svg/typemill-light.svg", + "mode": "100644", + "type": "blob", + "sha": "e3e275d447531e8cb6d1af88a52e6f8cceb5bd9a", + "size": 1781, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3e275d447531e8cb6d1af88a52e6f8cceb5bd9a" + }, + { + "path": "svg/typemill.svg", + "mode": "100755", + "type": "blob", + "sha": "24fb236e7052ab14912336ea2ebf9fca2009c9c0", + "size": 1778, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24fb236e7052ab14912336ea2ebf9fca2009c9c0" + }, + { + "path": "svg/typescript.svg", + "mode": "100644", + "type": "blob", + "sha": "1437810ea3b0883883a6ca03af487a2851892457", + "size": 1418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1437810ea3b0883883a6ca03af487a2851892457" + }, + { + "path": "svg/typesense.svg", + "mode": "100644", + "type": "blob", + "sha": "694a7d7e83ba83d6195d4b73f03af1a70190472e", + "size": 22900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/694a7d7e83ba83d6195d4b73f03af1a70190472e" + }, + { + "path": "svg/typo3.svg", + "mode": "100644", + "type": "blob", + "sha": "dce1d245f4804ebe6aa142b39b65b54de0307eaa", + "size": 596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dce1d245f4804ebe6aa142b39b65b54de0307eaa" + }, + { + "path": "svg/ubiquiti-networks.svg", + "mode": "100644", + "type": "blob", + "sha": "568197dcdf15e8f2bc974a43d2984ca8b1798312", + "size": 1067, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568197dcdf15e8f2bc974a43d2984ca8b1798312" + }, + { + "path": "svg/ubiquiti-unifi.svg", + "mode": "100755", + "type": "blob", + "sha": "559fd8186990c9cb504918cb704ad0ec6797d969", + "size": 440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/559fd8186990c9cb504918cb704ad0ec6797d969" + }, + { + "path": "svg/ubiquiti.svg", + "mode": "100644", + "type": "blob", + "sha": "568197dcdf15e8f2bc974a43d2984ca8b1798312", + "size": 1067, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568197dcdf15e8f2bc974a43d2984ca8b1798312" + }, + { + "path": "svg/ubuntu-linux-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "5deb2b9deee46571dff114f8b8d20e851686fb73", + "size": 1336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5deb2b9deee46571dff114f8b8d20e851686fb73" + }, + { + "path": "svg/ubuntu-linux.svg", + "mode": "100755", + "type": "blob", + "sha": "851b8efd9c5aba8e57c12c64660f60d871eade59", + "size": 816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/851b8efd9c5aba8e57c12c64660f60d871eade59" + }, + { + "path": "svg/uc-browser.svg", + "mode": "100644", + "type": "blob", + "sha": "06667c803bbc1e0ca55971aad9e3aa836dfab519", + "size": 3763, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06667c803bbc1e0ca55971aad9e3aa836dfab519" + }, + { + "path": "svg/udemy-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d3d40d6d665d39bef4bbc2423600110c4765efa1", + "size": 460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3d40d6d665d39bef4bbc2423600110c4765efa1" + }, + { + "path": "svg/udemy.svg", + "mode": "100644", + "type": "blob", + "sha": "7190c0c59364acaffbe8baa4b1300c05d7109970", + "size": 445, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7190c0c59364acaffbe8baa4b1300c05d7109970" + }, + { + "path": "svg/ugreen.svg", + "mode": "100644", + "type": "blob", + "sha": "70b2e899cf6bcf72eca1fc67e0e498fefab06c5a", + "size": 1322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70b2e899cf6bcf72eca1fc67e0e498fefab06c5a" + }, + { + "path": "svg/ultimate-guitar-light.svg", + "mode": "100644", + "type": "blob", + "sha": "eeac5fa4fee54ce936688fda326bbf76a335ee79", + "size": 426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeac5fa4fee54ce936688fda326bbf76a335ee79" + }, + { + "path": "svg/ultimate-guitar.svg", + "mode": "100644", + "type": "blob", + "sha": "3c68f7b60b1ed1e4488766682c891166e1b375ec", + "size": 426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c68f7b60b1ed1e4488766682c891166e1b375ec" + }, + { + "path": "svg/umami-light.svg", + "mode": "100644", + "type": "blob", + "sha": "ca38843be10cdbb9db9800f568e4f2f2e4e39dbe", + "size": 306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca38843be10cdbb9db9800f568e4f2f2e4e39dbe" + }, + { + "path": "svg/umami.svg", + "mode": "100755", + "type": "blob", + "sha": "86367eaac8d7e5c40f7b20b0b2b5fb49d72d11f9", + "size": 294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86367eaac8d7e5c40f7b20b0b2b5fb49d72d11f9" + }, + { + "path": "svg/umbrel.svg", + "mode": "100755", + "type": "blob", + "sha": "6df2360335eaf97afd80b947a0c44613add21959", + "size": 1660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6df2360335eaf97afd80b947a0c44613add21959" + }, + { + "path": "svg/unbound.svg", + "mode": "100755", + "type": "blob", + "sha": "b0a06064a967c6937260b683fbdc89f1fa4d3178", + "size": 1808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0a06064a967c6937260b683fbdc89f1fa4d3178" + }, + { + "path": "svg/uncomplicated-alert-receiver.svg", + "mode": "100644", + "type": "blob", + "sha": "fd620d681900395daf332803b149372558b80058", + "size": 3348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd620d681900395daf332803b149372558b80058" + }, + { + "path": "svg/undb.svg", + "mode": "100755", + "type": "blob", + "sha": "2e3e489261b766f0de798e078e31e56a5c55087a", + "size": 5202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e3e489261b766f0de798e078e31e56a5c55087a" + }, + { + "path": "svg/unifi-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "86882ff9eecb2fd4e2cbe45f764bed2b61783816", + "size": 1070, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86882ff9eecb2fd4e2cbe45f764bed2b61783816" + }, + { + "path": "svg/unifi-drive.svg", + "mode": "100644", + "type": "blob", + "sha": "2f5977ee3f0941a9ba116d9256b8692bf26f1c3b", + "size": 1117544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f5977ee3f0941a9ba116d9256b8692bf26f1c3b" + }, + { + "path": "svg/unifi-voucher-site.svg", + "mode": "100755", + "type": "blob", + "sha": "21c47ea5516b63357307e61366be2df4716e2f68", + "size": 5527, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21c47ea5516b63357307e61366be2df4716e2f68" + }, + { + "path": "svg/unifi.svg", + "mode": "100644", + "type": "blob", + "sha": "568197dcdf15e8f2bc974a43d2984ca8b1798312", + "size": 1067, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568197dcdf15e8f2bc974a43d2984ca8b1798312" + }, + { + "path": "svg/unimus.svg", + "mode": "100644", + "type": "blob", + "sha": "f5a9aaadfe66c235a2e83f84219d084851e166d0", + "size": 1017, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5a9aaadfe66c235a2e83f84219d084851e166d0" + }, + { + "path": "svg/unity-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "c8de03c33dccb1a1a136adf34640f87a4caecac6", + "size": 754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8de03c33dccb1a1a136adf34640f87a4caecac6" + }, + { + "path": "svg/unity.svg", + "mode": "100644", + "type": "blob", + "sha": "ced6bba96e9112350975b723c90269845335759d", + "size": 754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ced6bba96e9112350975b723c90269845335759d" + }, + { + "path": "svg/university-applied-sciences-brandenburg.svg", + "mode": "100644", + "type": "blob", + "sha": "e1f43d21c15f704edc2ba85fa558d9c8d4b352ad", + "size": 485, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1f43d21c15f704edc2ba85fa558d9c8d4b352ad" + }, + { + "path": "svg/unraid.svg", + "mode": "100755", + "type": "blob", + "sha": "d637416345acbe7be5613cd10e5e0e9bd6158acf", + "size": 624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d637416345acbe7be5613cd10e5e0e9bd6158acf" + }, + { + "path": "svg/untangle.svg", + "mode": "100644", + "type": "blob", + "sha": "dfe01768cb3057a900180950250f3c3d9ea4938f", + "size": 1925, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfe01768cb3057a900180950250f3c3d9ea4938f" + }, + { + "path": "svg/ups.svg", + "mode": "100644", + "type": "blob", + "sha": "835273d6086617d52f67581ede5e1e3dd39e4771", + "size": 4039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/835273d6086617d52f67581ede5e1e3dd39e4771" + }, + { + "path": "svg/upsnap.svg", + "mode": "100755", + "type": "blob", + "sha": "e9779ae87703d03322eddad45445b54112f1c895", + "size": 8835, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9779ae87703d03322eddad45445b54112f1c895" + }, + { + "path": "svg/uptime-kuma.svg", + "mode": "100755", + "type": "blob", + "sha": "3bf6fa6539d6b078fa2583be45a759a70fde3b38", + "size": 630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bf6fa6539d6b078fa2583be45a759a70fde3b38" + }, + { + "path": "svg/uptimerobot.svg", + "mode": "100644", + "type": "blob", + "sha": "05fb46cbcd1bc3bf33121aed06ce15402cb30e3d", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05fb46cbcd1bc3bf33121aed06ce15402cb30e3d" + }, + { + "path": "svg/upvote-rss.svg", + "mode": "100644", + "type": "blob", + "sha": "7af9f38fbb08455eb9afcf93371b3ebf3f2af121", + "size": 1327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7af9f38fbb08455eb9afcf93371b3ebf3f2af121" + }, + { + "path": "svg/upwork.svg", + "mode": "100644", + "type": "blob", + "sha": "601be87b63ac233429076a6138f9f43a0a07c737", + "size": 923, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/601be87b63ac233429076a6138f9f43a0a07c737" + }, + { + "path": "svg/usermin.svg", + "mode": "100644", + "type": "blob", + "sha": "0b15dd8f3bed5c678e635e7559257d0eedd535d7", + "size": 6387, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b15dd8f3bed5c678e635e7559257d0eedd535d7" + }, + { + "path": "svg/valetudo.svg", + "mode": "100755", + "type": "blob", + "sha": "bc455983e0b7cdafa106d12e0e90545453e4b033", + "size": 2056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc455983e0b7cdafa106d12e0e90545453e4b033" + }, + { + "path": "svg/valkey.svg", + "mode": "100755", + "type": "blob", + "sha": "81d8d3b7806fed4602777c7e08a7021cb2722134", + "size": 573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81d8d3b7806fed4602777c7e08a7021cb2722134" + }, + { + "path": "svg/vault-light.svg", + "mode": "100644", + "type": "blob", + "sha": "0e90e09792247fc4de1f8085879041014f1016ec", + "size": 1489, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e90e09792247fc4de1f8085879041014f1016ec" + }, + { + "path": "svg/vault.svg", + "mode": "100644", + "type": "blob", + "sha": "63fb9bfaf9c12c96b49f68ccfd7e3e5479393295", + "size": 1393, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63fb9bfaf9c12c96b49f68ccfd7e3e5479393295" + }, + { + "path": "svg/vaultwarden-light.svg", + "mode": "100644", + "type": "blob", + "sha": "735031c8eabf19695025aa2df2895e158bd83d52", + "size": 5421, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/735031c8eabf19695025aa2df2895e158bd83d52" + }, + { + "path": "svg/vaultwarden.svg", + "mode": "100755", + "type": "blob", + "sha": "f4c992c32a815a16bf2a2bf0362c6f8726eaf0ac", + "size": 5364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4c992c32a815a16bf2a2bf0362c6f8726eaf0ac" + }, + { + "path": "svg/vector.svg", + "mode": "100755", + "type": "blob", + "sha": "e523c29ab62b2277317890177774cfd4e1ee86dc", + "size": 1633, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e523c29ab62b2277317890177774cfd4e1ee86dc" + }, + { + "path": "svg/veeam.svg", + "mode": "100644", + "type": "blob", + "sha": "54d23e0e205fafa8e6358ec22df7c5357344fd11", + "size": 206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54d23e0e205fafa8e6358ec22df7c5357344fd11" + }, + { + "path": "svg/vera-crypt.svg", + "mode": "100644", + "type": "blob", + "sha": "3bd022082458b5fbcfea33af4aa4ac9e16f12b33", + "size": 4730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bd022082458b5fbcfea33af4aa4ac9e16f12b33" + }, + { + "path": "svg/vercel-light.svg", + "mode": "100644", + "type": "blob", + "sha": "490876c56757676b0f3e0a115f1f3423929acd56", + "size": 135, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/490876c56757676b0f3e0a115f1f3423929acd56" + }, + { + "path": "svg/vercel.svg", + "mode": "100644", + "type": "blob", + "sha": "45ca605b19823c2bdd2f898fbfba1df47f18a520", + "size": 135, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45ca605b19823c2bdd2f898fbfba1df47f18a520" + }, + { + "path": "svg/verizon.svg", + "mode": "100644", + "type": "blob", + "sha": "fa3ce27bf6559e0c2c3e57b065efbdc8a9334134", + "size": 282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa3ce27bf6559e0c2c3e57b065efbdc8a9334134" + }, + { + "path": "svg/verriflo-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "683612036998e9c8c8e728fa56777b3c9fbcf78b", + "size": 1512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/683612036998e9c8c8e728fa56777b3c9fbcf78b" + }, + { + "path": "svg/verriflo.svg", + "mode": "100644", + "type": "blob", + "sha": "25991f3ee64b6bfbb1681fd65ad0f653ac88484e", + "size": 1452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25991f3ee64b6bfbb1681fd65ad0f653ac88484e" + }, + { + "path": "svg/vertiv-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "36663d39bd6ca022cdd31ef7faee12fb9021d8aa", + "size": 778, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36663d39bd6ca022cdd31ef7faee12fb9021d8aa" + }, + { + "path": "svg/vertiv.svg", + "mode": "100644", + "type": "blob", + "sha": "1ceacb0adeceb4b4826c488a1f9b52d9e091fa12", + "size": 786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ceacb0adeceb4b4826c488a1f9b52d9e091fa12" + }, + { + "path": "svg/vi.svg", + "mode": "100644", + "type": "blob", + "sha": "5bb55212fa2115eb82a6de1f882e957776205fe8", + "size": 339, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bb55212fa2115eb82a6de1f882e957776205fe8" + }, + { + "path": "svg/viber.svg", + "mode": "100644", + "type": "blob", + "sha": "8f8b501664c3f8974340c356a7e9e014e8693d01", + "size": 2191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f8b501664c3f8974340c356a7e9e014e8693d01" + }, + { + "path": "svg/victorialogs.svg", + "mode": "100644", + "type": "blob", + "sha": "72ee8f21ccaf104a6b438f7f70ce097f045ef17a", + "size": 1327, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72ee8f21ccaf104a6b438f7f70ce097f045ef17a" + }, + { + "path": "svg/victoriametrics-light.svg", + "mode": "100644", + "type": "blob", + "sha": "7e44bb4085bf6c10b3f39672c8996a1f2feda94c", + "size": 531, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e44bb4085bf6c10b3f39672c8996a1f2feda94c" + }, + { + "path": "svg/victoriametrics.svg", + "mode": "100755", + "type": "blob", + "sha": "42cca81748ebf5ac4c8fe1f0fc682096d4b7d2e4", + "size": 516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42cca81748ebf5ac4c8fe1f0fc682096d4b7d2e4" + }, + { + "path": "svg/victron-energy.svg", + "mode": "100644", + "type": "blob", + "sha": "c3a040310345e3ac9a69e5332ae093275e18e1bb", + "size": 2822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3a040310345e3ac9a69e5332ae093275e18e1bb" + }, + { + "path": "svg/vidzy.svg", + "mode": "100755", + "type": "blob", + "sha": "69cc98c8b133a222bb1a889b8694ff0e8eb214e0", + "size": 554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69cc98c8b133a222bb1a889b8694ff0e8eb214e0" + }, + { + "path": "svg/viewtube.svg", + "mode": "100644", + "type": "blob", + "sha": "04cb6e48b846be448f8c9e069771d722df17dbd9", + "size": 26882, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04cb6e48b846be448f8c9e069771d722df17dbd9" + }, + { + "path": "svg/vikunja.svg", + "mode": "100755", + "type": "blob", + "sha": "bebf78526150d64a3b38b19ef6e0caf1fba020c9", + "size": 4002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bebf78526150d64a3b38b19ef6e0caf1fba020c9" + }, + { + "path": "svg/vinchin-backup.svg", + "mode": "100644", + "type": "blob", + "sha": "ce5885c9bc6461af4ed296c739cbaf36c2b7646b", + "size": 3539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce5885c9bc6461af4ed296c739cbaf36c2b7646b" + }, + { + "path": "svg/virgin-media.svg", + "mode": "100644", + "type": "blob", + "sha": "5e15e4a3925560e9fecdc754966c1cd1c4597c8d", + "size": 258014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e15e4a3925560e9fecdc754966c1cd1c4597c8d" + }, + { + "path": "svg/virtualmin.svg", + "mode": "100644", + "type": "blob", + "sha": "54bf60c9df00499567c3da12a47a239cf0cd43e5", + "size": 5346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54bf60c9df00499567c3da12a47a239cf0cd43e5" + }, + { + "path": "svg/viseron-light.svg", + "mode": "100644", + "type": "blob", + "sha": "86d3bb4a4d278fa652fa2706806a416e14a2f377", + "size": 147759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86d3bb4a4d278fa652fa2706806a416e14a2f377" + }, + { + "path": "svg/viseron.svg", + "mode": "100755", + "type": "blob", + "sha": "6c7dde65098916f1bcb850007ba07a7f52dbf7c1", + "size": 147134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c7dde65098916f1bcb850007ba07a7f52dbf7c1" + }, + { + "path": "svg/visual-studio-code.svg", + "mode": "100755", + "type": "blob", + "sha": "451218218c3c9b3ff22a4f211c9ed8681714c4cc", + "size": 2289, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/451218218c3c9b3ff22a4f211c9ed8681714c4cc" + }, + { + "path": "svg/vitalpbx.svg", + "mode": "100644", + "type": "blob", + "sha": "17f0a9ec44c1a8efca27b771ca89143007b3423b", + "size": 357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17f0a9ec44c1a8efca27b771ca89143007b3423b" + }, + { + "path": "svg/vite.svg", + "mode": "100644", + "type": "blob", + "sha": "de4aeddc12bdfe6c668dd57c6b457a659c058914", + "size": 1524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de4aeddc12bdfe6c668dd57c6b457a659c058914" + }, + { + "path": "svg/vitest.svg", + "mode": "100644", + "type": "blob", + "sha": "a309617127d41bdb70f2a88b499b40a5896e981d", + "size": 2367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a309617127d41bdb70f2a88b499b40a5896e981d" + }, + { + "path": "svg/vito-deploy.svg", + "mode": "100644", + "type": "blob", + "sha": "79473fd90a0e74dc2a002edbd3a50832435face1", + "size": 2082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79473fd90a0e74dc2a002edbd3a50832435face1" + }, + { + "path": "svg/vivaldi.svg", + "mode": "100644", + "type": "blob", + "sha": "0159978521b628c638aa6460beea4cdeb6a387a1", + "size": 1014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0159978521b628c638aa6460beea4cdeb6a387a1" + }, + { + "path": "svg/vmware-esxi.svg", + "mode": "100644", + "type": "blob", + "sha": "f0770abd278a3999efaa1d2872238bdae261ff42", + "size": 1471, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0770abd278a3999efaa1d2872238bdae261ff42" + }, + { + "path": "svg/vmware-workstation.svg", + "mode": "100644", + "type": "blob", + "sha": "c4ab7c5b1b52f0cd2451f3aa714d3e9a2423b60d", + "size": 2205, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4ab7c5b1b52f0cd2451f3aa714d3e9a2423b60d" + }, + { + "path": "svg/vmware.svg", + "mode": "100644", + "type": "blob", + "sha": "9750c82f2c5dc291390fad72726369804f871ce6", + "size": 1082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9750c82f2c5dc291390fad72726369804f871ce6" + }, + { + "path": "svg/vn-stat.svg", + "mode": "100644", + "type": "blob", + "sha": "28123ddf9f9ad2994e03028a58be3d25b959fc59", + "size": 499, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28123ddf9f9ad2994e03028a58be3d25b959fc59" + }, + { + "path": "svg/vodafone.svg", + "mode": "100644", + "type": "blob", + "sha": "af187f0df2652c453e1dec1a5f2874838b8b4e5d", + "size": 1491, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af187f0df2652c453e1dec1a5f2874838b8b4e5d" + }, + { + "path": "svg/voilib.svg", + "mode": "100755", + "type": "blob", + "sha": "d7f42d0024bef64c6e812ae5321067d9a49ef123", + "size": 786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7f42d0024bef64c6e812ae5321067d9a49ef123" + }, + { + "path": "svg/voip-ms.svg", + "mode": "100644", + "type": "blob", + "sha": "d2acbab047634e695a15b5bfe59226f18bbde673", + "size": 306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2acbab047634e695a15b5bfe59226f18bbde673" + }, + { + "path": "svg/voltaserve-light.svg", + "mode": "100644", + "type": "blob", + "sha": "3ab781b2140f07032a9988cec66734c721c72232", + "size": 1756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ab781b2140f07032a9988cec66734c721c72232" + }, + { + "path": "svg/voltaserve.svg", + "mode": "100755", + "type": "blob", + "sha": "85e84d04186720074b9eba7dac51bacf28bb14d8", + "size": 1741, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85e84d04186720074b9eba7dac51bacf28bb14d8" + }, + { + "path": "svg/volumio-light.svg", + "mode": "100644", + "type": "blob", + "sha": "32e7f2324e265fd1dfb12bc35568d0d0f8e895df", + "size": 469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32e7f2324e265fd1dfb12bc35568d0d0f8e895df" + }, + { + "path": "svg/volumio.svg", + "mode": "100644", + "type": "blob", + "sha": "00c99ef4e27e4b746421271d0790f2d58537a36f", + "size": 469, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00c99ef4e27e4b746421271d0790f2d58537a36f" + }, + { + "path": "svg/voron.svg", + "mode": "100755", + "type": "blob", + "sha": "0c150af16e7ecd21f7337459e6c18a7cbe95717f", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c150af16e7ecd21f7337459e6c18a7cbe95717f" + }, + { + "path": "svg/vouchervault.svg", + "mode": "100644", + "type": "blob", + "sha": "c205c24eee8ddc639d812e7bfc904a3ae6ea59ab", + "size": 54453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c205c24eee8ddc639d812e7bfc904a3ae6ea59ab" + }, + { + "path": "svg/vscode.svg", + "mode": "100644", + "type": "blob", + "sha": "5cb0e77160a240f1f0b3d799bf7e09f4b2dfa93f", + "size": 3275, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cb0e77160a240f1f0b3d799bf7e09f4b2dfa93f" + }, + { + "path": "svg/vtvgo.svg", + "mode": "100644", + "type": "blob", + "sha": "2e38b5d7b68199f988ef827e752df02b6ff58e06", + "size": 5245, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e38b5d7b68199f988ef827e752df02b6ff58e06" + }, + { + "path": "svg/vuetorrent.svg", + "mode": "100755", + "type": "blob", + "sha": "6c35c8d3c360cca67e8d4f34def706ca33941ec2", + "size": 378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c35c8d3c360cca67e8d4f34def706ca33941ec2" + }, + { + "path": "svg/vultr.svg", + "mode": "100644", + "type": "blob", + "sha": "b1899a2dd5e9b84c6f4f759664e8af8119f2fbc9", + "size": 772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1899a2dd5e9b84c6f4f759664e8af8119f2fbc9" + }, + { + "path": "svg/wakapi.svg", + "mode": "100755", + "type": "blob", + "sha": "32dbc8b3fcd96bdd47105c6fe26aeab9ebeb51e1", + "size": 1463, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32dbc8b3fcd96bdd47105c6fe26aeab9ebeb51e1" + }, + { + "path": "svg/wakatime-light.svg", + "mode": "100644", + "type": "blob", + "sha": "77152a73a51f8f69ebd274de22e1c827cad031e6", + "size": 735, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77152a73a51f8f69ebd274de22e1c827cad031e6" + }, + { + "path": "svg/wakatime.svg", + "mode": "100644", + "type": "blob", + "sha": "6b18ecb9edd7abe8ca87000fb491fa1731d3a959", + "size": 720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b18ecb9edd7abe8ca87000fb491fa1731d3a959" + }, + { + "path": "svg/wallabag-light.svg", + "mode": "100644", + "type": "blob", + "sha": "89f31ac83854ed84cdd14fd79b4f407d5204debe", + "size": 2453, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89f31ac83854ed84cdd14fd79b4f407d5204debe" + }, + { + "path": "svg/wallabag.svg", + "mode": "100755", + "type": "blob", + "sha": "f726174102bff39a02844e4a12ddf2fc1a614147", + "size": 2434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f726174102bff39a02844e4a12ddf2fc1a614147" + }, + { + "path": "svg/wanderer-light.svg", + "mode": "100644", + "type": "blob", + "sha": "411d79a5829e3d3bd9f478c4aa31f88f677d6db1", + "size": 2398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/411d79a5829e3d3bd9f478c4aa31f88f677d6db1" + }, + { + "path": "svg/wanderer.svg", + "mode": "100755", + "type": "blob", + "sha": "03c3023a6ce8efe82f33298a701de88c5e32a0c2", + "size": 2395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03c3023a6ce8efe82f33298a701de88c5e32a0c2" + }, + { + "path": "svg/warpgate.svg", + "mode": "100644", + "type": "blob", + "sha": "86b18f87a59a54183840d6a47b68eedd21a0cb73", + "size": 5819, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86b18f87a59a54183840d6a47b68eedd21a0cb73" + }, + { + "path": "svg/watcharr-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c64328bca0e938a5cbd39c012614d4bf16b45c9f", + "size": 2769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c64328bca0e938a5cbd39c012614d4bf16b45c9f" + }, + { + "path": "svg/watcharr.svg", + "mode": "100644", + "type": "blob", + "sha": "d5dde8c88e6ffb4430c757480bb7fb61c4a33575", + "size": 2744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5dde8c88e6ffb4430c757480bb7fb61c4a33575" + }, + { + "path": "svg/watchtower.svg", + "mode": "100755", + "type": "blob", + "sha": "fb90363149e1db7783f14c928b030ceb81188583", + "size": 5383, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb90363149e1db7783f14c928b030ceb81188583" + }, + { + "path": "svg/waze.svg", + "mode": "100644", + "type": "blob", + "sha": "8d103fe4408350690f49ba818ca366cc803b535f", + "size": 2618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d103fe4408350690f49ba818ca366cc803b535f" + }, + { + "path": "svg/wazuh.svg", + "mode": "100644", + "type": "blob", + "sha": "78f046c88537d7a5a5280cc6152c84344467dc61", + "size": 439, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78f046c88537d7a5a5280cc6152c84344467dc61" + }, + { + "path": "svg/wd-mycloud.svg", + "mode": "100644", + "type": "blob", + "sha": "dcad0b45cea7cf0aa91f548e077542ef2785a82c", + "size": 2449, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcad0b45cea7cf0aa91f548e077542ef2785a82c" + }, + { + "path": "svg/web-check-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "f57cb12011eda88725b77d9f48ad5b6370db695a", + "size": 2864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f57cb12011eda88725b77d9f48ad5b6370db695a" + }, + { + "path": "svg/web-check.svg", + "mode": "100644", + "type": "blob", + "sha": "6733e9a78b2fdc47680617c83dee270f038b663d", + "size": 2852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6733e9a78b2fdc47680617c83dee270f038b663d" + }, + { + "path": "svg/webdb.svg", + "mode": "100644", + "type": "blob", + "sha": "02dea048aad066274ef97ef89cfd98982afef00c", + "size": 2189, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02dea048aad066274ef97ef89cfd98982afef00c" + }, + { + "path": "svg/webex.svg", + "mode": "100644", + "type": "blob", + "sha": "0c356dec2f798e125db93e87b4a045e51de03cb0", + "size": 39029, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c356dec2f798e125db93e87b4a045e51de03cb0" + }, + { + "path": "svg/webhook.svg", + "mode": "100644", + "type": "blob", + "sha": "20e09b93ecce12b9b982559bdb0d5b93ec6c3652", + "size": 1839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20e09b93ecce12b9b982559bdb0d5b93ec6c3652" + }, + { + "path": "svg/webhookd.svg", + "mode": "100644", + "type": "blob", + "sha": "cee8e77899376672189839d92d8f550d4a26c4fa", + "size": 1957, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cee8e77899376672189839d92d8f550d4a26c4fa" + }, + { + "path": "svg/webkit.svg", + "mode": "100644", + "type": "blob", + "sha": "d090a640fad7b4d009e32977c4f38e4172d2442f", + "size": 1639, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d090a640fad7b4d009e32977c4f38e4172d2442f" + }, + { + "path": "svg/webmin.svg", + "mode": "100644", + "type": "blob", + "sha": "9d45c65762a12354f844eff463203c1b026ee9fc", + "size": 50187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d45c65762a12354f844eff463203c1b026ee9fc" + }, + { + "path": "svg/webtorrent.svg", + "mode": "100644", + "type": "blob", + "sha": "7fd6234812a7f4d948d4f29beae17c8dbcb4812a", + "size": 2276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fd6234812a7f4d948d4f29beae17c8dbcb4812a" + }, + { + "path": "svg/webtrees.svg", + "mode": "100755", + "type": "blob", + "sha": "dbb5d668597a0cfe0a6abe72750eb7ce412d4e5e", + "size": 1197, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbb5d668597a0cfe0a6abe72750eb7ce412d4e5e" + }, + { + "path": "svg/wekan.svg", + "mode": "100755", + "type": "blob", + "sha": "99b07a6860295efe250ad6716c88f4cc4b78be22", + "size": 2691, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99b07a6860295efe250ad6716c88f4cc4b78be22" + }, + { + "path": "svg/wero-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "30333234a02fd2cc69fcdb85609174cd7e42694b", + "size": 1775, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30333234a02fd2cc69fcdb85609174cd7e42694b" + }, + { + "path": "svg/wero.svg", + "mode": "100644", + "type": "blob", + "sha": "0fb5e9c31a8cc3d59160850c90c0531fd494614e", + "size": 1733, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fb5e9c31a8cc3d59160850c90c0531fd494614e" + }, + { + "path": "svg/western-digital.svg", + "mode": "100644", + "type": "blob", + "sha": "dd5a5d8aaa810da46317a4491dc40a978ab9c543", + "size": 2177, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd5a5d8aaa810da46317a4491dc40a978ab9c543" + }, + { + "path": "svg/wevr-labs.svg", + "mode": "100644", + "type": "blob", + "sha": "681142aaf9d7f3fc43d67114c8829c61340cae5a", + "size": 612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/681142aaf9d7f3fc43d67114c8829c61340cae5a" + }, + { + "path": "svg/wger.svg", + "mode": "100755", + "type": "blob", + "sha": "a2e430e74274f5607f8f352342fc4947a3014d89", + "size": 1145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2e430e74274f5607f8f352342fc4947a3014d89" + }, + { + "path": "svg/whatnot.svg", + "mode": "100644", + "type": "blob", + "sha": "e439bbbbfbad9354e523ff8f7ebf1d48453c927b", + "size": 984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e439bbbbfbad9354e523ff8f7ebf1d48453c927b" + }, + { + "path": "svg/whats-up-docker.svg", + "mode": "100755", + "type": "blob", + "sha": "924f599267645d28ea09c9c3a66063554cc8519f", + "size": 96511, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/924f599267645d28ea09c9c3a66063554cc8519f" + }, + { + "path": "svg/whatsapp.svg", + "mode": "100755", + "type": "blob", + "sha": "3a6f6c815be2f234a0a2ef4d21231a41bf139d84", + "size": 2061, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a6f6c815be2f234a0a2ef4d21231a41bf139d84" + }, + { + "path": "svg/whisparr.svg", + "mode": "100644", + "type": "blob", + "sha": "369d5957fe59f464385fcf9304cf966c55ff62a0", + "size": 2338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/369d5957fe59f464385fcf9304cf966c55ff62a0" + }, + { + "path": "svg/wiki-go.svg", + "mode": "100644", + "type": "blob", + "sha": "d49305c3cdf7b1fc41283ddcb63b85ee9b706fe4", + "size": 746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d49305c3cdf7b1fc41283ddcb63b85ee9b706fe4" + }, + { + "path": "svg/wikidocs.svg", + "mode": "100755", + "type": "blob", + "sha": "1d4484a41fae517fd837f04124cd1b0e56744fd1", + "size": 566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d4484a41fae517fd837f04124cd1b0e56744fd1" + }, + { + "path": "svg/wikijs-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "683f325e2ef0fce92bd3a1985af52d5612ec3eb8", + "size": 39014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/683f325e2ef0fce92bd3a1985af52d5612ec3eb8" + }, + { + "path": "svg/wikijs.svg", + "mode": "100755", + "type": "blob", + "sha": "30f9f8e6aa0878792c7f07c0a2b32ada1e93a637", + "size": 31010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30f9f8e6aa0878792c7f07c0a2b32ada1e93a637" + }, + { + "path": "svg/wikipedia-light.svg", + "mode": "100644", + "type": "blob", + "sha": "6ec86430d5e71dd07b7e08373acc6f6b72e2e2b5", + "size": 835, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ec86430d5e71dd07b7e08373acc6f6b72e2e2b5" + }, + { + "path": "svg/wikipedia.svg", + "mode": "100755", + "type": "blob", + "sha": "a4a03a6d6d4bb86eeec5bff9a8eb4f999783b01a", + "size": 820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4a03a6d6d4bb86eeec5bff9a8eb4f999783b01a" + }, + { + "path": "svg/willow.svg", + "mode": "100755", + "type": "blob", + "sha": "822c24cf6c79ab3e5906f4d5591fb4b4147594c3", + "size": 740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/822c24cf6c79ab3e5906f4d5591fb4b4147594c3" + }, + { + "path": "svg/windmill.svg", + "mode": "100644", + "type": "blob", + "sha": "f32df0d4bfaee36fbac0186b9c78d0b65de95ded", + "size": 688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f32df0d4bfaee36fbac0186b9c78d0b65de95ded" + }, + { + "path": "svg/windows-10.svg", + "mode": "100644", + "type": "blob", + "sha": "e0a8130af1ddd88d7b4f7dff093d8011ef5c6a77", + "size": 277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0a8130af1ddd88d7b4f7dff093d8011ef5c6a77" + }, + { + "path": "svg/windows-95-light.svg", + "mode": "100644", + "type": "blob", + "sha": "bfa2488e6df90264d7ea8677a7ffbcfe57d50d67", + "size": 4940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfa2488e6df90264d7ea8677a7ffbcfe57d50d67" + }, + { + "path": "svg/windows-95.svg", + "mode": "100644", + "type": "blob", + "sha": "5b61b51097eb5acfef4a23bf98e16cb51e930451", + "size": 4916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b61b51097eb5acfef4a23bf98e16cb51e930451" + }, + { + "path": "svg/windows-retro-light.svg", + "mode": "100644", + "type": "blob", + "sha": "912a0849a3f82da1473ec075f24068ff62fbc554", + "size": 2430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/912a0849a3f82da1473ec075f24068ff62fbc554" + }, + { + "path": "svg/windows-retro.svg", + "mode": "100755", + "type": "blob", + "sha": "22fb9e0ebcd639ffee1313311e8993925e8d2bd7", + "size": 2418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22fb9e0ebcd639ffee1313311e8993925e8d2bd7" + }, + { + "path": "svg/wireguard.svg", + "mode": "100755", + "type": "blob", + "sha": "1de4ec6662be7347ab8ca9838c02a7961e81fed0", + "size": 4328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1de4ec6662be7347ab8ca9838c02a7961e81fed0" + }, + { + "path": "svg/wizarr.svg", + "mode": "100755", + "type": "blob", + "sha": "476b7ef0f3ccb8dc1f35e7bd491cc83864debfdb", + "size": 2911, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/476b7ef0f3ccb8dc1f35e7bd491cc83864debfdb" + }, + { + "path": "svg/wolfi-light.svg", + "mode": "100644", + "type": "blob", + "sha": "037118517f16f6168a38ed060c099ee125842347", + "size": 2103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/037118517f16f6168a38ed060c099ee125842347" + }, + { + "path": "svg/wolfi.svg", + "mode": "100644", + "type": "blob", + "sha": "ff971381203bc03e43e06c0abee2a375f598f4ca", + "size": 2103, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff971381203bc03e43e06c0abee2a375f598f4ca" + }, + { + "path": "svg/woocommerce.svg", + "mode": "100755", + "type": "blob", + "sha": "eea7f6556edb6daad13dc78694fe8095dab8c087", + "size": 1987, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eea7f6556edb6daad13dc78694fe8095dab8c087" + }, + { + "path": "svg/woodpecker-ci.svg", + "mode": "100644", + "type": "blob", + "sha": "64069f3003fe803edc1c4ec8757c4fd37446fbb6", + "size": 1487, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64069f3003fe803edc1c4ec8757c4fd37446fbb6" + }, + { + "path": "svg/wooting-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "7d90e648eb6e053e206ca4108e43c6c4e4f901dc", + "size": 424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d90e648eb6e053e206ca4108e43c6c4e4f901dc" + }, + { + "path": "svg/wooting.svg", + "mode": "100644", + "type": "blob", + "sha": "62e994be26a545f10f1f63222e20712c1a0453b0", + "size": 424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62e994be26a545f10f1f63222e20712c1a0453b0" + }, + { + "path": "svg/wordpress.svg", + "mode": "100755", + "type": "blob", + "sha": "ec09c0556dc1e663bdba28e2e55e789acde0a508", + "size": 1120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec09c0556dc1e663bdba28e2e55e789acde0a508" + }, + { + "path": "svg/worklenz.svg", + "mode": "100755", + "type": "blob", + "sha": "c8e8a5befe2e6cd7ceb26aebe1900897532e1737", + "size": 1451, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8e8a5befe2e6cd7ceb26aebe1900897532e1737" + }, + { + "path": "svg/wotdle-light.svg", + "mode": "100644", + "type": "blob", + "sha": "92987f6daf54dc2dbe1a34f3e41d22105631a85b", + "size": 769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92987f6daf54dc2dbe1a34f3e41d22105631a85b" + }, + { + "path": "svg/wotdle.svg", + "mode": "100644", + "type": "blob", + "sha": "d83282ea1fa7a478ca5f5d4ccbf58c35febeea8b", + "size": 769, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d83282ea1fa7a478ca5f5d4ccbf58c35febeea8b" + }, + { + "path": "svg/wownero.svg", + "mode": "100644", + "type": "blob", + "sha": "61c059e11d3c90e13987477b66445c906944d2f8", + "size": 572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61c059e11d3c90e13987477b66445c906944d2f8" + }, + { + "path": "svg/writefreely-light.svg", + "mode": "100644", + "type": "blob", + "sha": "72fca177ba8ec140880587aef21a16d6046ace8c", + "size": 2398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72fca177ba8ec140880587aef21a16d6046ace8c" + }, + { + "path": "svg/writefreely.svg", + "mode": "100755", + "type": "blob", + "sha": "7afd2562de2a45d6a8af55b2cede4c708ad4ed05", + "size": 2395, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7afd2562de2a45d6a8af55b2cede4c708ad4ed05" + }, + { + "path": "svg/x-light.svg", + "mode": "100644", + "type": "blob", + "sha": "9acf2f0762ce940045a634b0f3761f34f06fabc3", + "size": 246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9acf2f0762ce940045a634b0f3761f34f06fabc3" + }, + { + "path": "svg/x.svg", + "mode": "100755", + "type": "blob", + "sha": "e203e20eb6c1730e24cdc71370d8e9b7cd6d1562", + "size": 231, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e203e20eb6c1730e24cdc71370d8e9b7cd6d1562" + }, + { + "path": "svg/xbackbone.svg", + "mode": "100755", + "type": "blob", + "sha": "13ec72fdd08810b78e6a224bcf8a17690e106910", + "size": 1165, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13ec72fdd08810b78e6a224bcf8a17690e106910" + }, + { + "path": "svg/xbox-game-pass.svg", + "mode": "100755", + "type": "blob", + "sha": "24e4e1cb87817120152ed52d425ccf6a500bd309", + "size": 2810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24e4e1cb87817120152ed52d425ccf6a500bd309" + }, + { + "path": "svg/xbox.svg", + "mode": "100755", + "type": "blob", + "sha": "9141f41ea495952a517ea9f18c280fabbf1b2678", + "size": 1385, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9141f41ea495952a517ea9f18c280fabbf1b2678" + }, + { + "path": "svg/xbrowsersync.svg", + "mode": "100644", + "type": "blob", + "sha": "8e97a3a64095ba4e41f4d8004ac5f812fe54dbb0", + "size": 5647, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e97a3a64095ba4e41f4d8004ac5f812fe54dbb0" + }, + { + "path": "svg/xcp-ng.svg", + "mode": "100644", + "type": "blob", + "sha": "6eacaee3616eec19054ffbcaccc6f8f1a3cfaed6", + "size": 101571, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6eacaee3616eec19054ffbcaccc6f8f1a3cfaed6" + }, + { + "path": "svg/xen-orchestra.svg", + "mode": "100644", + "type": "blob", + "sha": "404007414d0c8add7eb14d916bfa08bb8773a12e", + "size": 105663, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/404007414d0c8add7eb14d916bfa08bb8773a12e" + }, + { + "path": "svg/xiaomi-global.svg", + "mode": "100644", + "type": "blob", + "sha": "562c0d66302456f5b38489e7e44441cb00695507", + "size": 1881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/562c0d66302456f5b38489e7e44441cb00695507" + }, + { + "path": "svg/xmr.svg", + "mode": "100644", + "type": "blob", + "sha": "dd086b1c10df56189daa873b3e0783e13b9cad1c", + "size": 865, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd086b1c10df56189daa873b3e0783e13b9cad1c" + }, + { + "path": "svg/xmrig.svg", + "mode": "100644", + "type": "blob", + "sha": "86983ea605cf09ce6e7e53a918b96e544d37de18", + "size": 750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86983ea605cf09ce6e7e53a918b96e544d37de18" + }, + { + "path": "svg/xpipe.svg", + "mode": "100755", + "type": "blob", + "sha": "3058243538fcf5d1b6c4f4cd89229d8f7f4c1fc0", + "size": 3353, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3058243538fcf5d1b6c4f4cd89229d8f7f4c1fc0" + }, + { + "path": "svg/xubuntu-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "ae55a5035072fb98d8f16eba84783fa4c439569a", + "size": 1413, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae55a5035072fb98d8f16eba84783fa4c439569a" + }, + { + "path": "svg/xwiki.svg", + "mode": "100755", + "type": "blob", + "sha": "a56eafd41305e9c4c39ad6ede0e31cc296f5c041", + "size": 837, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a56eafd41305e9c4c39ad6ede0e31cc296f5c041" + }, + { + "path": "svg/yac-reader.svg", + "mode": "100644", + "type": "blob", + "sha": "051c06f078cc01ef8fa3f74f9e44c94a1da5267c", + "size": 19122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/051c06f078cc01ef8fa3f74f9e44c94a1da5267c" + }, + { + "path": "svg/yacd-blue.svg", + "mode": "100644", + "type": "blob", + "sha": "659837fa65b21ec51897b6ccb1cc7b922da369e4", + "size": 29052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/659837fa65b21ec51897b6ccb1cc7b922da369e4" + }, + { + "path": "svg/yacht.svg", + "mode": "100755", + "type": "blob", + "sha": "e4c7bd0e9897a6839e535dd1933e74a3360576aa", + "size": 1434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4c7bd0e9897a6839e535dd1933e74a3360576aa" + }, + { + "path": "svg/yahoo.svg", + "mode": "100644", + "type": "blob", + "sha": "5e4b44874cfd245bee53b2e133df4bf63cec27cd", + "size": 573, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e4b44874cfd245bee53b2e133df4bf63cec27cd" + }, + { + "path": "svg/yamtrack-light.svg", + "mode": "100644", + "type": "blob", + "sha": "0c91892ec3e8e3cccad0f041ff50aa4f9a96649d", + "size": 1186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c91892ec3e8e3cccad0f041ff50aa4f9a96649d" + }, + { + "path": "svg/yamtrack.svg", + "mode": "100755", + "type": "blob", + "sha": "e24bfd9138bd667f6540c841ec6173db467693ed", + "size": 1186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e24bfd9138bd667f6540c841ec6173db467693ed" + }, + { + "path": "svg/yandex.svg", + "mode": "100644", + "type": "blob", + "sha": "0f3d9971d63c2580624ea29b9e39ad0a548ffa81", + "size": 243, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f3d9971d63c2580624ea29b9e39ad0a548ffa81" + }, + { + "path": "svg/yarr-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2e16b02552d231ff3cbb51099cd0c89cb9a614ae", + "size": 1039, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e16b02552d231ff3cbb51099cd0c89cb9a614ae" + }, + { + "path": "svg/yarr.svg", + "mode": "100755", + "type": "blob", + "sha": "1e012cfbac397ed4e5418ee83297a8fdc831dbbb", + "size": 976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e012cfbac397ed4e5418ee83297a8fdc831dbbb" + }, + { + "path": "svg/ycombinator-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "250d80287cf3a7c73c412e3724b67d45534955e7", + "size": 351, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/250d80287cf3a7c73c412e3724b67d45534955e7" + }, + { + "path": "svg/ycombinator.svg", + "mode": "100644", + "type": "blob", + "sha": "d061563cf2ec27b066dc22c1a89a404c94034fb8", + "size": 348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d061563cf2ec27b066dc22c1a89a404c94034fb8" + }, + { + "path": "svg/ynab.svg", + "mode": "100755", + "type": "blob", + "sha": "83e89516c7dd5b94f5ae0e2bcbb46793233164d1", + "size": 2238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83e89516c7dd5b94f5ae0e2bcbb46793233164d1" + }, + { + "path": "svg/your-spotify.svg", + "mode": "100755", + "type": "blob", + "sha": "26b854f8cce50d03b9153314b7cbf44caa488ade", + "size": 706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26b854f8cce50d03b9153314b7cbf44caa488ade" + }, + { + "path": "svg/yourls.svg", + "mode": "100755", + "type": "blob", + "sha": "ee7074ed50844b43d82864ee3687240faf62aaf4", + "size": 2247, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee7074ed50844b43d82864ee3687240faf62aaf4" + }, + { + "path": "svg/youtube-dl.svg", + "mode": "100755", + "type": "blob", + "sha": "8318315faa5d2d0dd8a6f2c1c34f27e3774564d1", + "size": 1044, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8318315faa5d2d0dd8a6f2c1c34f27e3774564d1" + }, + { + "path": "svg/youtube-kids.svg", + "mode": "100644", + "type": "blob", + "sha": "7348735c5febb5749a16a93de8e9b35c7c0a2fae", + "size": 3261, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7348735c5febb5749a16a93de8e9b35c7c0a2fae" + }, + { + "path": "svg/youtube-music.svg", + "mode": "100644", + "type": "blob", + "sha": "854704d485bf6347b78945f7fa1bf04fb6ef1832", + "size": 338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/854704d485bf6347b78945f7fa1bf04fb6ef1832" + }, + { + "path": "svg/youtube-tv.svg", + "mode": "100644", + "type": "blob", + "sha": "c643fe450931f53aaa88f7ac1d83afcc0a877d96", + "size": 1570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c643fe450931f53aaa88f7ac1d83afcc0a877d96" + }, + { + "path": "svg/youtube.svg", + "mode": "100755", + "type": "blob", + "sha": "13abe204c28b9cb6f1a8450d6bbed48dc0e103fb", + "size": 479, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13abe204c28b9cb6f1a8450d6bbed48dc0e103fb" + }, + { + "path": "svg/yt-dlp.svg", + "mode": "100644", + "type": "blob", + "sha": "8933679b0f92cd8706e1c4a4891ccf609a1ea0d1", + "size": 3128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8933679b0f92cd8706e1c4a4891ccf609a1ea0d1" + }, + { + "path": "svg/yts.svg", + "mode": "100644", + "type": "blob", + "sha": "15115ed9708ebac4fc9bb995f9c8b49516cefbed", + "size": 1367, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15115ed9708ebac4fc9bb995f9c8b49516cefbed" + }, + { + "path": "svg/yuno-host-light.svg", + "mode": "100644", + "type": "blob", + "sha": "b40fe92d54c036556e5959ebdfefbb244c8568e5", + "size": 4611, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b40fe92d54c036556e5959ebdfefbb244c8568e5" + }, + { + "path": "svg/yunohost.svg", + "mode": "100644", + "type": "blob", + "sha": "7343ce731b1e0bc3f33154802cedebec2af059ff", + "size": 4608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7343ce731b1e0bc3f33154802cedebec2af059ff" + }, + { + "path": "svg/z-ai.svg", + "mode": "100644", + "type": "blob", + "sha": "cb34372ae0a36e7fa5dd334d2a539a3992b6d997", + "size": 10912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb34372ae0a36e7fa5dd334d2a539a3992b6d997" + }, + { + "path": "svg/z-wave-js-ui.svg", + "mode": "100755", + "type": "blob", + "sha": "9482f7a4316dc3c21c9f8f97e72c1dcb2f557afd", + "size": 1857, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9482f7a4316dc3c21c9f8f97e72c1dcb2f557afd" + }, + { + "path": "svg/zabbix.svg", + "mode": "100755", + "type": "blob", + "sha": "2997d11224d4e05f4acc54e61205c574ccd90a56", + "size": 363, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2997d11224d4e05f4acc54e61205c574ccd90a56" + }, + { + "path": "svg/zabka.svg", + "mode": "100644", + "type": "blob", + "sha": "be822cf60547fc378f3995addda089893f238f30", + "size": 1662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be822cf60547fc378f3995addda089893f238f30" + }, + { + "path": "svg/zalo.svg", + "mode": "100644", + "type": "blob", + "sha": "57284626004f36ce405a9d8f760d912394bf08cb", + "size": 3265, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57284626004f36ce405a9d8f760d912394bf08cb" + }, + { + "path": "svg/zammad.svg", + "mode": "100755", + "type": "blob", + "sha": "026fe8b74577d93ecb93612b96ac6d9a4853e8ce", + "size": 1922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/026fe8b74577d93ecb93612b96ac6d9a4853e8ce" + }, + { + "path": "svg/zapier-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "df38a1053b4e555cb424e2b157c02f9de203ceb4", + "size": 4995, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df38a1053b4e555cb424e2b157c02f9de203ceb4" + }, + { + "path": "svg/zapier.svg", + "mode": "100644", + "type": "blob", + "sha": "12f2e035116a4c6dca5a2ee0ec38c7af6c8a6d95", + "size": 4995, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12f2e035116a4c6dca5a2ee0ec38c7af6c8a6d95" + }, + { + "path": "svg/zashboard-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "0fe02055ed4beed190f22b08987a4f3ec1120aa7", + "size": 1210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fe02055ed4beed190f22b08987a4f3ec1120aa7" + }, + { + "path": "svg/zashboard.svg", + "mode": "100644", + "type": "blob", + "sha": "1d836c52fdef772a7140273631c1eafbf7f3cb94", + "size": 1210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d836c52fdef772a7140273631c1eafbf7f3cb94" + }, + { + "path": "svg/zen-browser-dark.svg", + "mode": "100644", + "type": "blob", + "sha": "f7b5fc5712d66e02502518ac021fe4aa26708d71", + "size": 1710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7b5fc5712d66e02502518ac021fe4aa26708d71" + }, + { + "path": "svg/zen-browser.svg", + "mode": "100644", + "type": "blob", + "sha": "e5de07e7ba7e7597eac9dc6e482758671a722a82", + "size": 1710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5de07e7ba7e7597eac9dc6e482758671a722a82" + }, + { + "path": "svg/zenarmor.svg", + "mode": "100644", + "type": "blob", + "sha": "887f10b3bbbf3024a1e84eeda3407da1a7b3a9e2", + "size": 1025, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/887f10b3bbbf3024a1e84eeda3407da1a7b3a9e2" + }, + { + "path": "svg/zendesk.svg", + "mode": "100644", + "type": "blob", + "sha": "bb65eac8a140fa49fadf0d4c0dfb6e41a2f0fdab", + "size": 303, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb65eac8a140fa49fadf0d4c0dfb6e41a2f0fdab" + }, + { + "path": "svg/zerotier-light.svg", + "mode": "100644", + "type": "blob", + "sha": "a23f76482f73fce4e04f2c79036d0883d788a4ca", + "size": 471, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a23f76482f73fce4e04f2c79036d0883d788a4ca" + }, + { + "path": "svg/zerotier.svg", + "mode": "100644", + "type": "blob", + "sha": "aa4563c41363bd31bbda9bce0d75533fc38bd9bd", + "size": 471, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa4563c41363bd31bbda9bce0d75533fc38bd9bd" + }, + { + "path": "svg/zigbee2mqtt-light.svg", + "mode": "100644", + "type": "blob", + "sha": "8f9da72f47912e3c19a0871bb8cf2741bfadd233", + "size": 10083, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f9da72f47912e3c19a0871bb8cf2741bfadd233" + }, + { + "path": "svg/zigbee2mqtt.svg", + "mode": "100755", + "type": "blob", + "sha": "1ee088ed90b0eb1ada95358c32a55abdf166bd34", + "size": 9822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ee088ed90b0eb1ada95358c32a55abdf166bd34" + }, + { + "path": "svg/zimbra.svg", + "mode": "100644", + "type": "blob", + "sha": "16754eda5b7e7414d46491f5cbc6681bb54a3f9a", + "size": 5702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16754eda5b7e7414d46491f5cbc6681bb54a3f9a" + }, + { + "path": "svg/zipcaptions.svg", + "mode": "100755", + "type": "blob", + "sha": "64b118b723d07fc1e376ddbafbcb0fe91f9013a6", + "size": 1333, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64b118b723d07fc1e376ddbafbcb0fe91f9013a6" + }, + { + "path": "svg/zipline-diced.svg", + "mode": "100644", + "type": "blob", + "sha": "4c0c80f22924c43151e38c232745592726c12259", + "size": 10341, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c0c80f22924c43151e38c232745592726c12259" + }, + { + "path": "svg/zipline-light.svg", + "mode": "100644", + "type": "blob", + "sha": "d9236929448ca77a96adc3bd5ef40c4e3a607e23", + "size": 2881, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9236929448ca77a96adc3bd5ef40c4e3a607e23" + }, + { + "path": "svg/zipline.svg", + "mode": "100644", + "type": "blob", + "sha": "5068548716ced488832357761afdeff378c5419a", + "size": 2869, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5068548716ced488832357761afdeff378c5419a" + }, + { + "path": "svg/zitadel-light.svg", + "mode": "100644", + "type": "blob", + "sha": "2d016a8d055aae6560333b0c301256a1ca2badef", + "size": 6455, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d016a8d055aae6560333b0c301256a1ca2badef" + }, + { + "path": "svg/zitadel.svg", + "mode": "100755", + "type": "blob", + "sha": "6a3247474c5eee8a4a703773325666b90c3be95f", + "size": 6173, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a3247474c5eee8a4a703773325666b90c3be95f" + }, + { + "path": "svg/zohomail.svg", + "mode": "100644", + "type": "blob", + "sha": "00cc9641cdf214983d30599697bcaf8588aa91b7", + "size": 1079, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00cc9641cdf214983d30599697bcaf8588aa91b7" + }, + { + "path": "svg/zomro.svg", + "mode": "100644", + "type": "blob", + "sha": "93372f0de546bf761ec7f37e057500d422f58282", + "size": 11767, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93372f0de546bf761ec7f37e057500d422f58282" + }, + { + "path": "svg/zoom-alt.svg", + "mode": "100644", + "type": "blob", + "sha": "2967c9e7c834c4c45eb4f0885ef7a9fe6183f73c", + "size": 1191, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2967c9e7c834c4c45eb4f0885ef7a9fe6183f73c" + }, + { + "path": "svg/zoom.svg", + "mode": "100755", + "type": "blob", + "sha": "c95b30253f4c6b777749c7c53ab8ae1bf04d969e", + "size": 393, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c95b30253f4c6b777749c7c53ab8ae1bf04d969e" + }, + { + "path": "svg/zoraxy.svg", + "mode": "100755", + "type": "blob", + "sha": "8d8bbac6c308a29f616509d04785b1425661408f", + "size": 585, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d8bbac6c308a29f616509d04785b1425661408f" + }, + { + "path": "svg/zorin-linux.svg", + "mode": "100644", + "type": "blob", + "sha": "c80ce5f106a9b4611b2e8eacecd4595099eabd2d", + "size": 516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c80ce5f106a9b4611b2e8eacecd4595099eabd2d" + }, + { + "path": "svg/zot-registry.svg", + "mode": "100644", + "type": "blob", + "sha": "f38e2668f9e761dfcb0c50acd654188dfb330b92", + "size": 1575, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f38e2668f9e761dfcb0c50acd654188dfb330b92" + }, + { + "path": "svg/zulip.svg", + "mode": "100644", + "type": "blob", + "sha": "e043879fb3f9e7ecbd9a9710e13843c207614410", + "size": 740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e043879fb3f9e7ecbd9a9710e13843c207614410" + }, + { + "path": "svg/zyxel-communications-light.svg", + "mode": "100644", + "type": "blob", + "sha": "73bba4b2b973619dbbadaa614e62ffc03953a425", + "size": 1520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73bba4b2b973619dbbadaa614e62ffc03953a425" + }, + { + "path": "svg/zyxel-communications.svg", + "mode": "100644", + "type": "blob", + "sha": "4f689824a38a21cd445e416c6b1458f44112aaf8", + "size": 1508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f689824a38a21cd445e416c6b1458f44112aaf8" + }, + { + "path": "svg/zyxel-networks-light.svg", + "mode": "100644", + "type": "blob", + "sha": "c9dd143afedc7f6e8179899973809e65ad29b653", + "size": 1520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9dd143afedc7f6e8179899973809e65ad29b653" + }, + { + "path": "svg/zyxel-networks.svg", + "mode": "100644", + "type": "blob", + "sha": "64bc55cb840842c9ac834b6b2f982284e85b1d41", + "size": 1508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64bc55cb840842c9ac834b6b2f982284e85b1d41" + }, + { + "path": "tree.json", + "mode": "100644", + "type": "blob", + "sha": "7d3b51c014473450ec48587fb10d35af9f970c9c", + "size": 200228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d3b51c014473450ec48587fb10d35af9f970c9c" + }, + { + "path": "web", + "mode": "040000", + "type": "tree", + "sha": "2e5afd5642d9730d40e50ae69d75784b40efd9a9", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/2e5afd5642d9730d40e50ae69d75784b40efd9a9" + }, + { + "path": "web/.dockerignore", + "mode": "100644", + "type": "blob", + "sha": "942e0998422bda98c31ef4cfa5f3ad66559598cc", + "size": 515, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/942e0998422bda98c31ef4cfa5f3ad66559598cc" + }, + { + "path": "web/.gitignore", + "mode": "100644", + "type": "blob", + "sha": "e06c7e375dff0da138c896451d39a939a41a28bf", + "size": 576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e06c7e375dff0da138c896451d39a939a41a28bf" + }, + { + "path": "web/Dockerfile", + "mode": "100644", + "type": "blob", + "sha": "8ec5171648686c27387ad1106be0a38c1dca8a06", + "size": 320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ec5171648686c27387ad1106be0a38c1dca8a06" + }, + { + "path": "web/README.md", + "mode": "100644", + "type": "blob", + "sha": "fd9f125987392244db3dbb0f223f443427b83898", + "size": 2824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd9f125987392244db3dbb0f223f443427b83898" + }, + { + "path": "web/backend", + "mode": "040000", + "type": "tree", + "sha": "cb0d82644a51c9f5c0cb83557b78670c9bd06637", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/cb0d82644a51c9f5c0cb83557b78670c9bd06637" + }, + { + "path": "web/backend/.dockerignore", + "mode": "100644", + "type": "blob", + "sha": "b579b0435941b90c5be2f143ae5435a8b65a3b05", + "size": 8, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b579b0435941b90c5be2f143ae5435a8b65a3b05" + }, + { + "path": "web/backend/.gitkeep", + "mode": "100644", + "type": "blob", + "sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "size": 0, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391" + }, + { + "path": "web/backend/Dockerfile", + "mode": "100644", + "type": "blob", + "sha": "6011bac9d6f8b9e8a2f8d35672fe10ff7309d0b8", + "size": 567, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6011bac9d6f8b9e8a2f8d35672fe10ff7309d0b8" + }, + { + "path": "web/backend/pb_hooks", + "mode": "040000", + "type": "tree", + "sha": "d220bcde64c8e9771b80e3e0abdc48dabfe9da68", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/d220bcde64c8e9771b80e3e0abdc48dabfe9da68" + }, + { + "path": "web/backend/pb_hooks/submission_update_email.pb.js", + "mode": "100644", + "type": "blob", + "sha": "11cdd83b5b8a2ed62fb75a0c969ac38af3503abf", + "size": 11735, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11cdd83b5b8a2ed62fb75a0c969ac38af3503abf" + }, + { + "path": "web/backend/pb_migrations", + "mode": "040000", + "type": "tree", + "sha": "2266fff8d058319a298b5d47dd30313c59b4eefa", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/2266fff8d058319a298b5d47dd30313c59b4eefa" + }, + { + "path": "web/backend/pb_migrations/1759312120_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "7892f4810826f66f1efa55eed284234b1e8c75e4", + "size": 2281, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7892f4810826f66f1efa55eed284234b1e8c75e4" + }, + { + "path": "web/backend/pb_migrations/1759312125_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "5452bb0ffc2e75513a69db81ae2dd96bcddf820e", + "size": 838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5452bb0ffc2e75513a69db81ae2dd96bcddf820e" + }, + { + "path": "web/backend/pb_migrations/1759312218_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "e1463c7738b900597b1c487f290690425f2270df", + "size": 659, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1463c7738b900597b1c487f290690425f2270df" + }, + { + "path": "web/backend/pb_migrations/1759312839_created_submission.js", + "mode": "100644", + "type": "blob", + "sha": "66c73cb32b326ce3b8a5fb8d7281cee15b5115e5", + "size": 3753, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66c73cb32b326ce3b8a5fb8d7281cee15b5115e5" + }, + { + "path": "web/backend/pb_migrations/1759313082_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "df9fde6f3f6538c38f1cfa82645ad10339ed184e", + "size": 839, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df9fde6f3f6538c38f1cfa82645ad10339ed184e" + }, + { + "path": "web/backend/pb_migrations/1759313096_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "765a0f628b8e7b5d51970f11d4884049a85b9a36", + "size": 730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/765a0f628b8e7b5d51970f11d4884049a85b9a36" + }, + { + "path": "web/backend/pb_migrations/1759313140_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "3e094e424107086be4b1d2c2deb4d5415c328e09", + "size": 730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e094e424107086be4b1d2c2deb4d5415c328e09" + }, + { + "path": "web/backend/pb_migrations/1759313306_updated_submission.js", + "mode": "100644", + "type": "blob", + "sha": "f681da61edca05f40fc06c51c178cfdba880eef7", + "size": 692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f681da61edca05f40fc06c51c178cfdba880eef7" + }, + { + "path": "web/backend/pb_migrations/1759313389_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "65d3665b300a8ab325c50718d6a641c024fe31ba", + "size": 732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65d3665b300a8ab325c50718d6a641c024fe31ba" + }, + { + "path": "web/backend/pb_migrations/1759313613_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "48ab627aff9dbb9812f54fddbcb8b1086391f594", + "size": 976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48ab627aff9dbb9812f54fddbcb8b1086391f594" + }, + { + "path": "web/backend/pb_migrations/1759318802_updated_submission.js", + "mode": "100644", + "type": "blob", + "sha": "be524ebf831ebe47a451dca773f2704f4fb7a1c9", + "size": 639, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be524ebf831ebe47a451dca773f2704f4fb7a1c9" + }, + { + "path": "web/backend/pb_migrations/1759319073_updated_submissions.js", + "mode": "100644", + "type": "blob", + "sha": "cd6b8242be108f6519dae41ff92c73a95140ef69", + "size": 1691, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd6b8242be108f6519dae41ff92c73a95140ef69" + }, + { + "path": "web/backend/pb_migrations/1759319167_updated_submissions.js", + "mode": "100644", + "type": "blob", + "sha": "d2f541c53c394d0794d4dea1bf5a10b6a566addd", + "size": 1079, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2f541c53c394d0794d4dea1bf5a10b6a566addd" + }, + { + "path": "web/backend/pb_migrations/1759320673_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "2ead888766363b1046caa810746da71e02fdc9a2", + "size": 715, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ead888766363b1046caa810746da71e02fdc9a2" + }, + { + "path": "web/backend/pb_migrations/1759322469_updated_submissions.js", + "mode": "100644", + "type": "blob", + "sha": "a7d6f2b86a4eea3930af0b33bfd852822ef0043a", + "size": 932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7d6f2b86a4eea3930af0b33bfd852822ef0043a" + }, + { + "path": "web/backend/pb_migrations/1759323526_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "d474d04b8a96c40dca437203e75e163bb479c87b", + "size": 582, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d474d04b8a96c40dca437203e75e163bb479c87b" + }, + { + "path": "web/backend/pb_migrations/1759324813_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "4136376e1ac663ee7af10822a1a7c07bec65820a", + "size": 513, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4136376e1ac663ee7af10822a1a7c07bec65820a" + }, + { + "path": "web/backend/pb_migrations/1759324829_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "d4cf76271d3305aa565c742071148345b8ef52ea", + "size": 513, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d4cf76271d3305aa565c742071148345b8ef52ea" + }, + { + "path": "web/backend/pb_migrations/1759324878_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "30fb30b4ca13f4fe0539cdf5c5c4fd26e59dda16", + "size": 615, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30fb30b4ca13f4fe0539cdf5c5c4fd26e59dda16" + }, + { + "path": "web/backend/pb_migrations/1759324890_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "26027956ace124928d1ed7dfb9d631184bf839c9", + "size": 543, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26027956ace124928d1ed7dfb9d631184bf839c9" + }, + { + "path": "web/backend/pb_migrations/1759326542_updated_submissions.js", + "mode": "100644", + "type": "blob", + "sha": "4aa4d2ad7fa9a5e750f97bc1863bed098c50a2c6", + "size": 924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4aa4d2ad7fa9a5e750f97bc1863bed098c50a2c6" + }, + { + "path": "web/backend/pb_migrations/1759329927_created_community_gallery.js", + "mode": "100644", + "type": "blob", + "sha": "4951c3e7115c5683d2ee250ed7a943465c93dcd7", + "size": 1557, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4951c3e7115c5683d2ee250ed7a943465c93dcd7" + }, + { + "path": "web/backend/pb_migrations/1759329946_updated_community_gallery.js", + "mode": "100644", + "type": "blob", + "sha": "70eb5c2e88b996d4450e8de365557d30dedfbaa2", + "size": 2493, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70eb5c2e88b996d4450e8de365557d30dedfbaa2" + }, + { + "path": "web/backend/pb_migrations/1759330033_updated_community_gallery.js", + "mode": "100644", + "type": "blob", + "sha": "b94d61007df9c7fb63396427316e29fb174960b0", + "size": 2879, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b94d61007df9c7fb63396427316e29fb174960b0" + }, + { + "path": "web/backend/pb_migrations/1759330172_updated_community_gallery.js", + "mode": "100644", + "type": "blob", + "sha": "a5c2c60aa79f91471bba105e30c30651535d2f9d", + "size": 3836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5c2c60aa79f91471bba105e30c30651535d2f9d" + }, + { + "path": "web/backend/pb_migrations/1759330278_updated_community_gallery.js", + "mode": "100644", + "type": "blob", + "sha": "3302e0245bbb515a012e9d65d032ae268970c827", + "size": 4335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3302e0245bbb515a012e9d65d032ae268970c827" + }, + { + "path": "web/backend/pb_migrations/1759330318_updated_submissions.js", + "mode": "100644", + "type": "blob", + "sha": "feb17449ff6f4c237adb7ebece30d9944ff7b622", + "size": 954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/feb17449ff6f4c237adb7ebece30d9944ff7b622" + }, + { + "path": "web/backend/pb_migrations/1759332236_updated_community_gallery.js", + "mode": "100644", + "type": "blob", + "sha": "6c8154dbc5f6e9da716ccb904b5f8a1f58fe71f5", + "size": 4971, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c8154dbc5f6e9da716ccb904b5f8a1f58fe71f5" + }, + { + "path": "web/backend/pb_migrations/1759335166_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "5b3cd4ed2e5a8d7d804302e2faad21da9597dba6", + "size": 574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b3cd4ed2e5a8d7d804302e2faad21da9597dba6" + }, + { + "path": "web/backend/pb_migrations/1759335187_updated_users.js", + "mode": "100644", + "type": "blob", + "sha": "f6b9d109c729c556dfac419fe829be322079e493", + "size": 502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6b9d109c729c556dfac419fe829be322079e493" + }, + { + "path": "web/backend/pocketbase", + "mode": "100755", + "type": "blob", + "sha": "b345e9e5fc70afcf204a43000c669ee08f1637a8", + "size": 32254354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b345e9e5fc70afcf204a43000c669ee08f1637a8" + }, + { + "path": "web/biome.jsonc", + "mode": "100644", + "type": "blob", + "sha": "7b75d427d0f72e45e9f44eb3d86c5538c1ef0fc2", + "size": 806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b75d427d0f72e45e9f44eb3d86c5538c1ef0fc2" + }, + { + "path": "web/components.json", + "mode": "100644", + "type": "blob", + "sha": "b45d2ddbcf59e3621131258c2643d5cbee8153ad", + "size": 506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b45d2ddbcf59e3621131258c2643d5cbee8153ad" + }, + { + "path": "web/mise.toml", + "mode": "100644", + "type": "blob", + "sha": "d235d5ac7e03ae42358cd5da254529b9419ab016", + "size": 78, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d235d5ac7e03ae42358cd5da254529b9419ab016" + }, + { + "path": "web/netlify.toml", + "mode": "100644", + "type": "blob", + "sha": "e987a4e9e2da718c2a9b4c75bcd8512bcd3ca823", + "size": 72, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e987a4e9e2da718c2a9b4c75bcd8512bcd3ca823" + }, + { + "path": "web/next.config.ts", + "mode": "100644", + "type": "blob", + "sha": "da5fa39f8ea5973d2203ffe8ba7318180574b804", + "size": 187, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da5fa39f8ea5973d2203ffe8ba7318180574b804" + }, + { + "path": "web/package.json", + "mode": "100644", + "type": "blob", + "sha": "c3df059cfccb4a4c44d8925743dcb310d7e7ad92", + "size": 3417, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3df059cfccb4a4c44d8925743dcb310d7e7ad92" + }, + { + "path": "web/pnpm-lock.yaml", + "mode": "100644", + "type": "blob", + "sha": "0a2fa4531f6e934b4e6212e23332edf23de192ce", + "size": 176213, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a2fa4531f6e934b4e6212e23332edf23de192ce" + }, + { + "path": "web/postcss.config.mjs", + "mode": "100644", + "type": "blob", + "sha": "78452aadce7cfb86473409df77464d0525fad8ea", + "size": 78, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78452aadce7cfb86473409df77464d0525fad8ea" + }, + { + "path": "web/public", + "mode": "040000", + "type": "tree", + "sha": "7e0337732eb8038e6cfed87acdf33f8f969ca6bd", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/7e0337732eb8038e6cfed87acdf33f8f969ca6bd" + }, + { + "path": "web/public/android-chrome-192x192.png", + "mode": "100644", + "type": "blob", + "sha": "d9df979abd5862a552481abc767402ebb559a43f", + "size": 14597, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9df979abd5862a552481abc767402ebb559a43f" + }, + { + "path": "web/public/android-chrome-512x512.png", + "mode": "100644", + "type": "blob", + "sha": "f1b171c0490cbeabc8b581c7c6aa94955a52bfd5", + "size": 57220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1b171c0490cbeabc8b581c7c6aa94955a52bfd5" + }, + { + "path": "web/public/apple-touch-icon.png", + "mode": "100644", + "type": "blob", + "sha": "508a46b7fa6f82263aba3823f13faebec85073cb", + "size": 13030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/508a46b7fa6f82263aba3823f13faebec85073cb" + }, + { + "path": "web/public/favicon-16x16.png", + "mode": "100644", + "type": "blob", + "sha": "69d271c2146376280e564f366be9543349120939", + "size": 620, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69d271c2146376280e564f366be9543349120939" + }, + { + "path": "web/public/favicon-32x32.png", + "mode": "100644", + "type": "blob", + "sha": "44432c418cc268e2faef230c6413ea4d77691146", + "size": 1338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44432c418cc268e2faef230c6413ea4d77691146" + }, + { + "path": "web/public/favicon.ico", + "mode": "100644", + "type": "blob", + "sha": "bc326dc6363dfc9889b5f06b613859a995904c07", + "size": 15406, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc326dc6363dfc9889b5f06b613859a995904c07" + }, + { + "path": "web/public/og-image.png", + "mode": "100644", + "type": "blob", + "sha": "9ef04c1863b0328f523dddfc45daec476a70ef8a", + "size": 9739, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ef04c1863b0328f523dddfc45daec476a70ef8a" + }, + { + "path": "web/public/site.webmanifest", + "mode": "100644", + "type": "blob", + "sha": "3c963dc84cacbad039935b046088940827f65297", + "size": 673, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c963dc84cacbad039935b046088940827f65297" + }, + { + "path": "web/seed-db.ts", + "mode": "100644", + "type": "blob", + "sha": "06e967c6d07a7cff5e9f9e3c2311dd478a93e7d7", + "size": 6664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06e967c6d07a7cff5e9f9e3c2311dd478a93e7d7" + }, + { + "path": "web/src", + "mode": "040000", + "type": "tree", + "sha": "8e779249d67e3f5c17312a43f26e0486236047bc", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/8e779249d67e3f5c17312a43f26e0486236047bc" + }, + { + "path": "web/src/app", + "mode": "040000", + "type": "tree", + "sha": "ccff3b449ab4bd902da750c4d90af892083b33cf", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/ccff3b449ab4bd902da750c4d90af892083b33cf" + }, + { + "path": "web/src/app/actions", + "mode": "040000", + "type": "tree", + "sha": "3abe608f9a6a1409ce1c8f82bfda94f1025baf86", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/3abe608f9a6a1409ce1c8f82bfda94f1025baf86" + }, + { + "path": "web/src/app/actions/submissions.ts", + "mode": "100644", + "type": "blob", + "sha": "7656ea6bf7052935378f319658e9283037be717d", + "size": 1036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7656ea6bf7052935378f319658e9283037be717d" + }, + { + "path": "web/src/app/community", + "mode": "040000", + "type": "tree", + "sha": "b96e994150fe98e2b51ddc3adfc197df3ddb04f7", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/b96e994150fe98e2b51ddc3adfc197df3ddb04f7" + }, + { + "path": "web/src/app/community/[icon]", + "mode": "040000", + "type": "tree", + "sha": "43a0514cf3b6ad72b6c05acf5c3040ed97107904", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/43a0514cf3b6ad72b6c05acf5c3040ed97107904" + }, + { + "path": "web/src/app/community/[icon]/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "4f0f712168b9645c543b79ac98dc9ee3f145926f", + "size": 6603, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f0f712168b9645c543b79ac98dc9ee3f145926f" + }, + { + "path": "web/src/app/community/layout.tsx", + "mode": "100644", + "type": "blob", + "sha": "3d7dd7f59eedb2679abab1c8f0b62af27c376a06", + "size": 910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d7dd7f59eedb2679abab1c8f0b62af27c376a06" + }, + { + "path": "web/src/app/community/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "d56d53943a8ea53826cbc323492e2f4538317ddf", + "size": 2364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d56d53943a8ea53826cbc323492e2f4538317ddf" + }, + { + "path": "web/src/app/dashboard", + "mode": "040000", + "type": "tree", + "sha": "9287db7890674f4eab5d1442e195cd4d93d9b201", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/9287db7890674f4eab5d1442e195cd4d93d9b201" + }, + { + "path": "web/src/app/dashboard/layout.tsx", + "mode": "100644", + "type": "blob", + "sha": "3d7dd7f59eedb2679abab1c8f0b62af27c376a06", + "size": 910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d7dd7f59eedb2679abab1c8f0b62af27c376a06" + }, + { + "path": "web/src/app/dashboard/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "fd7a5d3335cc61672bc097b3233e56dfbf2f231e", + "size": 6579, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd7a5d3335cc61672bc097b3233e56dfbf2f231e" + }, + { + "path": "web/src/app/error.tsx", + "mode": "100644", + "type": "blob", + "sha": "00c703fca63021a2da0bfee83cd92547368b7608", + "size": 1517, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00c703fca63021a2da0bfee83cd92547368b7608" + }, + { + "path": "web/src/app/globals.css", + "mode": "100644", + "type": "blob", + "sha": "07ed78a82c8ff63d4349bfce02ce2d9763ff9116", + "size": 10044, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07ed78a82c8ff63d4349bfce02ce2d9763ff9116" + }, + { + "path": "web/src/app/icon.svg", + "mode": "100755", + "type": "blob", + "sha": "d3f858caf029782351aee61573c9de0805908e14", + "size": 1236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3f858caf029782351aee61573c9de0805908e14" + }, + { + "path": "web/src/app/icons", + "mode": "040000", + "type": "tree", + "sha": "dfe15ef9b4ed12df52322c5f309bdd421acde64d", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/dfe15ef9b4ed12df52322c5f309bdd421acde64d" + }, + { + "path": "web/src/app/icons/[icon]", + "mode": "040000", + "type": "tree", + "sha": "0cb3dc13b1ffc531339a4a604193245a1715fdea", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/0cb3dc13b1ffc531339a4a604193245a1715fdea" + }, + { + "path": "web/src/app/icons/[icon]/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "52fc58b7775e14e057ccf2ee274f32ef8b1771b6", + "size": 5176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52fc58b7775e14e057ccf2ee274f32ef8b1771b6" + }, + { + "path": "web/src/app/icons/layout.tsx", + "mode": "100644", + "type": "blob", + "sha": "3d7dd7f59eedb2679abab1c8f0b62af27c376a06", + "size": 910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d7dd7f59eedb2679abab1c8f0b62af27c376a06" + }, + { + "path": "web/src/app/icons/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "a20e94ef9390de15650cd0ff585d8857773e0aea", + "size": 1914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a20e94ef9390de15650cd0ff585d8857773e0aea" + }, + { + "path": "web/src/app/layout.tsx", + "mode": "100644", + "type": "blob", + "sha": "dfb899528c9b6da4275195a8d74df4c23530697c", + "size": 2855, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfb899528c9b6da4275195a8d74df4c23530697c" + }, + { + "path": "web/src/app/not-found.tsx", + "mode": "100644", + "type": "blob", + "sha": "75013a234e80a1a8035483280edd2d85ec3f9eff", + "size": 1137, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75013a234e80a1a8035483280edd2d85ec3f9eff" + }, + { + "path": "web/src/app/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "cf46ba5e44e968c1fc80b7d0dcab760a580968b5", + "size": 845, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf46ba5e44e968c1fc80b7d0dcab760a580968b5" + }, + { + "path": "web/src/app/robots.txt", + "mode": "100644", + "type": "blob", + "sha": "d52321a06fa9bcb50b4a891eadced42e8a734366", + "size": 70, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d52321a06fa9bcb50b4a891eadced42e8a734366" + }, + { + "path": "web/src/app/sitemap.ts", + "mode": "100644", + "type": "blob", + "sha": "6c5954ce9fedadaaaeb55be10e375f9fc9bdba28", + "size": 1218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c5954ce9fedadaaaeb55be10e375f9fc9bdba28" + }, + { + "path": "web/src/app/submit", + "mode": "040000", + "type": "tree", + "sha": "77090f97f14bb17850679dbf5dbc42456b40738b", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/77090f97f14bb17850679dbf5dbc42456b40738b" + }, + { + "path": "web/src/app/submit/layout.tsx", + "mode": "100644", + "type": "blob", + "sha": "3d7dd7f59eedb2679abab1c8f0b62af27c376a06", + "size": 910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d7dd7f59eedb2679abab1c8f0b62af27c376a06" + }, + { + "path": "web/src/app/submit/page.tsx", + "mode": "100644", + "type": "blob", + "sha": "7f564d77211f0f84626b9da6ef99cd69d2756b41", + "size": 2759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f564d77211f0f84626b9da6ef99cd69d2756b41" + }, + { + "path": "web/src/app/theme-provider.tsx", + "mode": "100644", + "type": "blob", + "sha": "aed8e2cca77ba6735a23086790f9652fe2ca3cfd", + "size": 295, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aed8e2cca77ba6735a23086790f9652fe2ca3cfd" + }, + { + "path": "web/src/components", + "mode": "040000", + "type": "tree", + "sha": "66d11acdd5e09d57672789da446b55b80ca11b23", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/66d11acdd5e09d57672789da446b55b80ca11b23" + }, + { + "path": "web/src/components/PostHogProvider.tsx", + "mode": "100644", + "type": "blob", + "sha": "8ddb9a26364ae81eb5d01606baa9848b4e513960", + "size": 1796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ddb9a26364ae81eb5d01606baa9848b4e513960" + }, + { + "path": "web/src/components/advanced-icon-submission-form-tanstack.tsx", + "mode": "100644", + "type": "blob", + "sha": "5ff38170b2b2f46b57f92e2e0f09e4d2964c0d07", + "size": 22941, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ff38170b2b2f46b57f92e2e0f09e4d2964c0d07" + }, + { + "path": "web/src/components/carbon.tsx", + "mode": "100644", + "type": "blob", + "sha": "1d7da3dd77f949b6a5365f2786642e674089d9e6", + "size": 1985, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d7da3dd77f949b6a5365f2786642e674089d9e6" + }, + { + "path": "web/src/components/command-menu.tsx", + "mode": "100644", + "type": "blob", + "sha": "6991989c6c068e99a3a013ee729738dc8a35f720", + "size": 5504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6991989c6c068e99a3a013ee729738dc8a35f720" + }, + { + "path": "web/src/components/community-icon-search.tsx", + "mode": "100644", + "type": "blob", + "sha": "3f1081059d3a231985dfdece2ebfb9c2791f5e7c", + "size": 13468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f1081059d3a231985dfdece2ebfb9c2791f5e7c" + }, + { + "path": "web/src/components/editable-icon-details.tsx", + "mode": "100644", + "type": "blob", + "sha": "8db40d7df3414a04dd8ba794335a9025c8f56d7f", + "size": 21356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8db40d7df3414a04dd8ba794335a9025c8f56d7f" + }, + { + "path": "web/src/components/experimental-warning.tsx", + "mode": "100644", + "type": "blob", + "sha": "9cab8d5eef561c6eb3c4ee8e9e0d4fd4dd718ade", + "size": 1145, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cab8d5eef561c6eb3c4ee8e9e0d4fd4dd718ade" + }, + { + "path": "web/src/components/footer.tsx", + "mode": "100644", + "type": "blob", + "sha": "1d0b1e0eacdf8f21d4ddb6e9d5c9a2905da83fa3", + "size": 1879, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d0b1e0eacdf8f21d4ddb6e9d5c9a2905da83fa3" + }, + { + "path": "web/src/components/header-nav.tsx", + "mode": "100644", + "type": "blob", + "sha": "666ffc082b7bde7ebc5ce0302b310aeebfb4551f", + "size": 1584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/666ffc082b7bde7ebc5ce0302b310aeebfb4551f" + }, + { + "path": "web/src/components/header-wrapper.tsx", + "mode": "100644", + "type": "blob", + "sha": "a7d8b0dd482c63a1f290c6f3e41595fa64c4eafb", + "size": 90, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7d8b0dd482c63a1f290c6f3e41595fa64c4eafb" + }, + { + "path": "web/src/components/header.tsx", + "mode": "100644", + "type": "blob", + "sha": "7b605cbaa1e469420846027932a3860e140ec51e", + "size": 9655, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b605cbaa1e469420846027932a3860e140ec51e" + }, + { + "path": "web/src/components/heart.tsx", + "mode": "100644", + "type": "blob", + "sha": "a439cfbf1606ea9f9e6c1564fad8e761ab5b5044", + "size": 3500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a439cfbf1606ea9f9e6c1564fad8e761ab5b5044" + }, + { + "path": "web/src/components/hero.tsx", + "mode": "100644", + "type": "blob", + "sha": "3867725a18f703b36a11374003455e364c8636f3", + "size": 17359, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3867725a18f703b36a11374003455e364c8636f3" + }, + { + "path": "web/src/components/icon-actions.tsx", + "mode": "100644", + "type": "blob", + "sha": "b466eee1987db09a7900a5175913cc7c24dc8d9e", + "size": 3423, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b466eee1987db09a7900a5175913cc7c24dc8d9e" + }, + { + "path": "web/src/components/icon-card.tsx", + "mode": "100644", + "type": "blob", + "sha": "d6b5b047b6ac93a8382ca2d80e35e1f8725368a5", + "size": 1336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6b5b047b6ac93a8382ca2d80e35e1f8725368a5" + }, + { + "path": "web/src/components/icon-details.tsx", + "mode": "100644", + "type": "blob", + "sha": "3047022df2f5fb8e9b2babf3cddac5ccab6cd313", + "size": 28731, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3047022df2f5fb8e9b2babf3cddac5ccab6cd313" + }, + { + "path": "web/src/components/icon-grid.tsx", + "mode": "100644", + "type": "blob", + "sha": "4a94cd86f93279f020e23f76a5a49786891c3ca8", + "size": 3016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a94cd86f93279f020e23f76a5a49786891c3ca8" + }, + { + "path": "web/src/components/icon-name-combobox.tsx", + "mode": "100644", + "type": "blob", + "sha": "76362efecacbf2c362a26b6c41d5ccc0d9dbc9f7", + "size": 3976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76362efecacbf2c362a26b6c41d5ccc0d9dbc9f7" + }, + { + "path": "web/src/components/icon-search.tsx", + "mode": "100644", + "type": "blob", + "sha": "a7ba8c8a6582cf018547487a37c571e455766467", + "size": 13990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7ba8c8a6582cf018547487a37c571e455766467" + }, + { + "path": "web/src/components/icon-submission-form.tsx", + "mode": "100644", + "type": "blob", + "sha": "76897d4679572da17fa9b52e1aa6a80fb21171be", + "size": 2559, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76897d4679572da17fa9b52e1aa6a80fb21171be" + }, + { + "path": "web/src/components/icon-submission-guidelines.tsx", + "mode": "100644", + "type": "blob", + "sha": "a7937c2284f7f7acae789da8661ecd5a3577394c", + "size": 5366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7937c2284f7f7acae789da8661ecd5a3577394c" + }, + { + "path": "web/src/components/license-notice.tsx", + "mode": "100644", + "type": "blob", + "sha": "8ca3c1a657a523b447fe45f10a368b14423264fe", + "size": 2084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ca3c1a657a523b447fe45f10a368b14423264fe" + }, + { + "path": "web/src/components/login-modal.tsx", + "mode": "100644", + "type": "blob", + "sha": "7fa3e3887f403c4a10c8b7e416815b605958c3d8", + "size": 8094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fa3e3887f403c4a10c8b7e416815b605958c3d8" + }, + { + "path": "web/src/components/magicui", + "mode": "040000", + "type": "tree", + "sha": "b8ca89421bcd1cb5596df4446586b2a775acd0a2", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/b8ca89421bcd1cb5596df4446586b2a775acd0a2" + }, + { + "path": "web/src/components/magicui/aurora-text.tsx", + "mode": "100644", + "type": "blob", + "sha": "e00fd98cb3f3b96143ed67f51c8c416bf82cd4d7", + "size": 932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e00fd98cb3f3b96143ed67f51c8c416bf82cd4d7" + }, + { + "path": "web/src/components/magicui/interactive-hover-button.tsx", + "mode": "100644", + "type": "blob", + "sha": "450eadae9e25592055a708f2228e26d7309dc078", + "size": 1305, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/450eadae9e25592055a708f2228e26d7309dc078" + }, + { + "path": "web/src/components/magicui/magic-card.tsx", + "mode": "100644", + "type": "blob", + "sha": "ea5944887d3a8b05418cc73fc654e1e3bb4aa6da", + "size": 3539, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea5944887d3a8b05418cc73fc654e1e3bb4aa6da" + }, + { + "path": "web/src/components/magicui/marquee.tsx", + "mode": "100644", + "type": "blob", + "sha": "32f0693e2b3456d2122fbab9b60ee9f93440a3ba", + "size": 1508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32f0693e2b3456d2122fbab9b60ee9f93440a3ba" + }, + { + "path": "web/src/components/magicui/number-ticker.tsx", + "mode": "100644", + "type": "blob", + "sha": "f1bbc79daead2b3f6fe9c36c413851c0cecfbf5d", + "size": 1408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1bbc79daead2b3f6fe9c36c413851c0cecfbf5d" + }, + { + "path": "web/src/components/providers.tsx", + "mode": "100644", + "type": "blob", + "sha": "f61338e52cdf2b10592ad9f3271e620c98b981c5", + "size": 610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f61338e52cdf2b10592ad9f3271e620c98b981c5" + }, + { + "path": "web/src/components/recently-added-icons.tsx", + "mode": "100644", + "type": "blob", + "sha": "9bc61836601813547079b3c4d9a014bbaaf8fe69", + "size": 4335, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bc61836601813547079b3c4d9a014bbaaf8fe69" + }, + { + "path": "web/src/components/submission-details.tsx", + "mode": "100644", + "type": "blob", + "sha": "d76d694388404d375cd15628025b73eec5f37e73", + "size": 14958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d76d694388404d375cd15628025b73eec5f37e73" + }, + { + "path": "web/src/components/submissions-data-table.tsx", + "mode": "100644", + "type": "blob", + "sha": "9248b188c10ffa0503f1216468c2e3ab6576410d", + "size": 13977, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9248b188c10ffa0503f1216468c2e3ab6576410d" + }, + { + "path": "web/src/components/theme-switcher.tsx", + "mode": "100644", + "type": "blob", + "sha": "8e5d28510e1f7b34e9249afe9f88fec41306660a", + "size": 1761, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e5d28510e1f7b34e9249afe9f88fec41306660a" + }, + { + "path": "web/src/components/ui", + "mode": "040000", + "type": "tree", + "sha": "841a19f08913e35fff5d5f62f50b132a2e131206", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/841a19f08913e35fff5d5f62f50b132a2e131206" + }, + { + "path": "web/src/components/ui/accordion.tsx", + "mode": "100644", + "type": "blob", + "sha": "4a8cca46b9c10394f5710a35892b36407ee70fc4", + "size": 2053, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a8cca46b9c10394f5710a35892b36407ee70fc4" + }, + { + "path": "web/src/components/ui/alert-dialog.tsx", + "mode": "100644", + "type": "blob", + "sha": "84ed147897e3295c19e1b0fa586e68e914849933", + "size": 3837, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84ed147897e3295c19e1b0fa586e68e914849933" + }, + { + "path": "web/src/components/ui/alert.tsx", + "mode": "100644", + "type": "blob", + "sha": "14213546e5ac051dd33c8359f261f9f76051d66f", + "size": 1614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14213546e5ac051dd33c8359f261f9f76051d66f" + }, + { + "path": "web/src/components/ui/aspect-ratio.tsx", + "mode": "100644", + "type": "blob", + "sha": "3df3fd02a6a30b60b6e1474664065b0d3437bf48", + "size": 280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3df3fd02a6a30b60b6e1474664065b0d3437bf48" + }, + { + "path": "web/src/components/ui/aurora-background.tsx", + "mode": "100644", + "type": "blob", + "sha": "1dc224e20bb6a1760122a956b122c07cfd63886a", + "size": 2929, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dc224e20bb6a1760122a956b122c07cfd63886a" + }, + { + "path": "web/src/components/ui/avatar.tsx", + "mode": "100644", + "type": "blob", + "sha": "71e428b4ca6154811e8f569d5fdd971ead095996", + "size": 1097, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71e428b4ca6154811e8f569d5fdd971ead095996" + }, + { + "path": "web/src/components/ui/badge.tsx", + "mode": "100644", + "type": "blob", + "sha": "02054139a9a72f2ce2c4defd14861b4129312950", + "size": 1631, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02054139a9a72f2ce2c4defd14861b4129312950" + }, + { + "path": "web/src/components/ui/border-beam.tsx", + "mode": "100644", + "type": "blob", + "sha": "4fbc775e1bd0a833be35a569a6a8ee502508d1a7", + "size": 2482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fbc775e1bd0a833be35a569a6a8ee502508d1a7" + }, + { + "path": "web/src/components/ui/breadcrumb.tsx", + "mode": "100644", + "type": "blob", + "sha": "eb88f32122082ae2dac61dd033939459215347f4", + "size": 2357, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb88f32122082ae2dac61dd033939459215347f4" + }, + { + "path": "web/src/components/ui/button.tsx", + "mode": "100644", + "type": "blob", + "sha": "e7a37790e0a28d8b01305de2bdb883b576900670", + "size": 2277, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7a37790e0a28d8b01305de2bdb883b576900670" + }, + { + "path": "web/src/components/ui/calendar.tsx", + "mode": "100644", + "type": "blob", + "sha": "fdb74853ac6d08830531973b36bb54404f6063e0", + "size": 2784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdb74853ac6d08830531973b36bb54404f6063e0" + }, + { + "path": "web/src/components/ui/card.tsx", + "mode": "100644", + "type": "blob", + "sha": "1700fee6eac32c2a6bfc644adc43aa5ae01064bb", + "size": 2033, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1700fee6eac32c2a6bfc644adc43aa5ae01064bb" + }, + { + "path": "web/src/components/ui/carousel.tsx", + "mode": "100644", + "type": "blob", + "sha": "0e05a77ea155fde6af5d9a4848b1d3953df6ea5a", + "size": 5556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e05a77ea155fde6af5d9a4848b1d3953df6ea5a" + }, + { + "path": "web/src/components/ui/chart.tsx", + "mode": "100644", + "type": "blob", + "sha": "debfb9d9d0849ec4129f245f9c32bbc51e7a23f9", + "size": 9681, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/debfb9d9d0849ec4129f245f9c32bbc51e7a23f9" + }, + { + "path": "web/src/components/ui/checkbox.tsx", + "mode": "100644", + "type": "blob", + "sha": "fa0e4b59fa859bf5bdf1f3f4d24f1e71926f481f", + "size": 1226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa0e4b59fa859bf5bdf1f3f4d24f1e71926f481f" + }, + { + "path": "web/src/components/ui/collapsible.tsx", + "mode": "100644", + "type": "blob", + "sha": "ae9fad04a3716b5d6f6c957b75841737eb8ed7a8", + "size": 800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae9fad04a3716b5d6f6c957b75841737eb8ed7a8" + }, + { + "path": "web/src/components/ui/command.tsx", + "mode": "100644", + "type": "blob", + "sha": "0cd419063be936219b6ffd4f0b170e4cf4a76cb6", + "size": 4723, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cd419063be936219b6ffd4f0b170e4cf4a76cb6" + }, + { + "path": "web/src/components/ui/context-menu.tsx", + "mode": "100644", + "type": "blob", + "sha": "e29ad05f96a328c7c6eca4641e550ff748805fa0", + "size": 8222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e29ad05f96a328c7c6eca4641e550ff748805fa0" + }, + { + "path": "web/src/components/ui/dialog.tsx", + "mode": "100644", + "type": "blob", + "sha": "d9ccec91d22fab844bd04340c2b07e8677955350", + "size": 3982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9ccec91d22fab844bd04340c2b07e8677955350" + }, + { + "path": "web/src/components/ui/drawer.tsx", + "mode": "100644", + "type": "blob", + "sha": "0b66bd91b220018c8871f913fa180c34f3f0c742", + "size": 4047, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b66bd91b220018c8871f913fa180c34f3f0c742" + }, + { + "path": "web/src/components/ui/dropdown-menu.tsx", + "mode": "100644", + "type": "blob", + "sha": "ec51e9cc9f824a0b067d4a66a37caa63bbdce5f5", + "size": 8284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec51e9cc9f824a0b067d4a66a37caa63bbdce5f5" + }, + { + "path": "web/src/components/ui/form.tsx", + "mode": "100644", + "type": "blob", + "sha": "524b986b3ceea3e50204597e5ad38d04f93ffb5d", + "size": 3759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/524b986b3ceea3e50204597e5ad38d04f93ffb5d" + }, + { + "path": "web/src/components/ui/hover-card.tsx", + "mode": "100644", + "type": "blob", + "sha": "e7541864c7dee7bf024ad96e7b6d0234e0b49f8b", + "size": 1532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7541864c7dee7bf024ad96e7b6d0234e0b49f8b" + }, + { + "path": "web/src/components/ui/input-otp.tsx", + "mode": "100644", + "type": "blob", + "sha": "614f70e383bf47886ddb3d71581ccd27c8b5739d", + "size": 2254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/614f70e383bf47886ddb3d71581ccd27c8b5739d" + }, + { + "path": "web/src/components/ui/input.tsx", + "mode": "100644", + "type": "blob", + "sha": "31292f1aba1cf60852c1fdd74240f90cb6f48251", + "size": 990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31292f1aba1cf60852c1fdd74240f90cb6f48251" + }, + { + "path": "web/src/components/ui/label.tsx", + "mode": "100644", + "type": "blob", + "sha": "fb5fbc3eee891a5c118bb00fd153273c16959c9e", + "size": 611, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb5fbc3eee891a5c118bb00fd153273c16959c9e" + }, + { + "path": "web/src/components/ui/menubar.tsx", + "mode": "100644", + "type": "blob", + "sha": "0ec2f6492178faa4f9ecb2ee34b51d36f820300d", + "size": 8361, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ec2f6492178faa4f9ecb2ee34b51d36f820300d" + }, + { + "path": "web/src/components/ui/multi-select.tsx", + "mode": "100644", + "type": "blob", + "sha": "aa0b66a81b038a5f60bf4ee7c522bcf7e6573abd", + "size": 35454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa0b66a81b038a5f60bf4ee7c522bcf7e6573abd" + }, + { + "path": "web/src/components/ui/navigation-menu.tsx", + "mode": "100644", + "type": "blob", + "sha": "37957ad87af0eaaa430f22cec87664ad7a123c51", + "size": 6637, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37957ad87af0eaaa430f22cec87664ad7a123c51" + }, + { + "path": "web/src/components/ui/pagination.tsx", + "mode": "100644", + "type": "blob", + "sha": "0d185410e7bbf2a1326d7af4b55f1b4b8e14d16a", + "size": 2712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d185410e7bbf2a1326d7af4b55f1b4b8e14d16a" + }, + { + "path": "web/src/components/ui/popover.tsx", + "mode": "100644", + "type": "blob", + "sha": "01e468b6783992d04775aa52376221b8fa4b0f95", + "size": 1635, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01e468b6783992d04775aa52376221b8fa4b0f95" + }, + { + "path": "web/src/components/ui/progress.tsx", + "mode": "100644", + "type": "blob", + "sha": "e7a416c375109c29e844f0ecee7e0645a03ec301", + "size": 740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7a416c375109c29e844f0ecee7e0645a03ec301" + }, + { + "path": "web/src/components/ui/radio-group.tsx", + "mode": "100644", + "type": "blob", + "sha": "5e6778cb48d88b52f09ef333e1dd5df7c30f72d2", + "size": 1466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e6778cb48d88b52f09ef333e1dd5df7c30f72d2" + }, + { + "path": "web/src/components/ui/resizable.tsx", + "mode": "100644", + "type": "blob", + "sha": "d22b86dc5fe708332b6ed5459e35ad07516baed1", + "size": 2028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d22b86dc5fe708332b6ed5459e35ad07516baed1" + }, + { + "path": "web/src/components/ui/scroll-area.tsx", + "mode": "100644", + "type": "blob", + "sha": "8e4fa13f668a62de3a4b8eaebf23eba1b0421e7d", + "size": 1645, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e4fa13f668a62de3a4b8eaebf23eba1b0421e7d" + }, + { + "path": "web/src/components/ui/select.tsx", + "mode": "100644", + "type": "blob", + "sha": "dcbbc0ca0c781dfa6d2fe4ee6f1c9c2cad905a9b", + "size": 6253, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcbbc0ca0c781dfa6d2fe4ee6f1c9c2cad905a9b" + }, + { + "path": "web/src/components/ui/separator.tsx", + "mode": "100644", + "type": "blob", + "sha": "67c73e5a50fb1f5abe8c0f6dd19f79a2676b312e", + "size": 704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67c73e5a50fb1f5abe8c0f6dd19f79a2676b312e" + }, + { + "path": "web/src/components/ui/shadcn-io", + "mode": "040000", + "type": "tree", + "sha": "819a69b3991f220c235fbd18b8a2243a26a062f1", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/819a69b3991f220c235fbd18b8a2243a26a062f1" + }, + { + "path": "web/src/components/ui/shadcn-io/combobox", + "mode": "040000", + "type": "tree", + "sha": "c117823ed75ed7c8ee3e2ed4f5dcdaf635fd8262", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/c117823ed75ed7c8ee3e2ed4f5dcdaf635fd8262" + }, + { + "path": "web/src/components/ui/shadcn-io/combobox/index.tsx", + "mode": "100644", + "type": "blob", + "sha": "4a772a6375def109c1e5fc1dbe05ce574bf688a5", + "size": 7548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a772a6375def109c1e5fc1dbe05ce574bf688a5" + }, + { + "path": "web/src/components/ui/shadcn-io/dropzone", + "mode": "040000", + "type": "tree", + "sha": "d23e4c28e0462349d1d86e32370aaa72be034565", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/d23e4c28e0462349d1d86e32370aaa72be034565" + }, + { + "path": "web/src/components/ui/shadcn-io/dropzone/index.tsx", + "mode": "100644", + "type": "blob", + "sha": "0d74a78348fea4ddd65c5c79b150e66dff9c3821", + "size": 5044, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d74a78348fea4ddd65c5c79b150e66dff9c3821" + }, + { + "path": "web/src/components/ui/sheet.tsx", + "mode": "100644", + "type": "blob", + "sha": "09b12bed1ee7112a97b994292f27c6391c327906", + "size": 4069, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09b12bed1ee7112a97b994292f27c6391c327906" + }, + { + "path": "web/src/components/ui/sidebar.tsx", + "mode": "100644", + "type": "blob", + "sha": "5f7731b62af03313580d67022b08071067f72450", + "size": 21019, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f7731b62af03313580d67022b08071067f72450" + }, + { + "path": "web/src/components/ui/skeleton.tsx", + "mode": "100644", + "type": "blob", + "sha": "d7e45f7bd315f86eabf32f2c9425223417920e60", + "size": 266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7e45f7bd315f86eabf32f2c9425223417920e60" + }, + { + "path": "web/src/components/ui/slider.tsx", + "mode": "100644", + "type": "blob", + "sha": "d6bc7a11f0a0ffc5223b65c415bd3b6a041ae7d2", + "size": 1988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6bc7a11f0a0ffc5223b65c415bd3b6a041ae7d2" + }, + { + "path": "web/src/components/ui/sonner.tsx", + "mode": "100644", + "type": "blob", + "sha": "957524edbd237ae3dce705e8f916f4d6ee2dbdd0", + "size": 564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/957524edbd237ae3dce705e8f916f4d6ee2dbdd0" + }, + { + "path": "web/src/components/ui/switch.tsx", + "mode": "100644", + "type": "blob", + "sha": "b04d2232a6cb36c9d185e25840079ff8e4a26e95", + "size": 1164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b04d2232a6cb36c9d185e25840079ff8e4a26e95" + }, + { + "path": "web/src/components/ui/table.tsx", + "mode": "100644", + "type": "blob", + "sha": "51b74dd52570a0268d78870be270dd460cef41db", + "size": 2448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51b74dd52570a0268d78870be270dd460cef41db" + }, + { + "path": "web/src/components/ui/tabs.tsx", + "mode": "100644", + "type": "blob", + "sha": "497ba5ea34247f6843e0c58ccd7da61b7c8edb46", + "size": 1969, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/497ba5ea34247f6843e0c58ccd7da61b7c8edb46" + }, + { + "path": "web/src/components/ui/textarea.tsx", + "mode": "100644", + "type": "blob", + "sha": "7f21b5e78a4c1c23bf41b6be206f3f81dc84fe99", + "size": 759, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f21b5e78a4c1c23bf41b6be206f3f81dc84fe99" + }, + { + "path": "web/src/components/ui/toggle-group.tsx", + "mode": "100644", + "type": "blob", + "sha": "5eed401b6c9c19f7b6f88e90d3cbe38783ef198b", + "size": 1925, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5eed401b6c9c19f7b6f88e90d3cbe38783ef198b" + }, + { + "path": "web/src/components/ui/toggle.tsx", + "mode": "100644", + "type": "blob", + "sha": "94ec8f589b345a8c33b165463dfda393c7255967", + "size": 1570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94ec8f589b345a8c33b165463dfda393c7255967" + }, + { + "path": "web/src/components/ui/tooltip.tsx", + "mode": "100644", + "type": "blob", + "sha": "4ee26b38a595862a5a082013d564d1ccf8452a7c", + "size": 1891, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ee26b38a595862a5a082013d564d1ccf8452a7c" + }, + { + "path": "web/src/components/user-button.tsx", + "mode": "100644", + "type": "blob", + "sha": "846468362a1527fa135aa44b0e6d102ad837e31d", + "size": 9037, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/846468362a1527fa135aa44b0e6d102ad837e31d" + }, + { + "path": "web/src/components/user-display.tsx", + "mode": "100644", + "type": "blob", + "sha": "894b131fda8d957cf145d3591311a468186f516e", + "size": 1550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/894b131fda8d957cf145d3591311a468186f516e" + }, + { + "path": "web/src/constants.ts", + "mode": "100644", + "type": "blob", + "sha": "56f09708aa57b7b22e095a61aca9e24aa415f98c", + "size": 674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/56f09708aa57b7b22e095a61aca9e24aa415f98c" + }, + { + "path": "web/src/hooks", + "mode": "040000", + "type": "tree", + "sha": "7c3c18f5f596a339042d10e7203d16cf053cebdf", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/7c3c18f5f596a339042d10e7203d16cf053cebdf" + }, + { + "path": "web/src/hooks/use-media-query.ts", + "mode": "100644", + "type": "blob", + "sha": "1107ab8ae1a89bf91fe6498f536c604423b6a6ac", + "size": 556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1107ab8ae1a89bf91fe6498f536c604423b6a6ac" + }, + { + "path": "web/src/hooks/use-mobile.ts", + "mode": "100644", + "type": "blob", + "sha": "283bbb4c71a1bcef7d92aaa194a972d254333190", + "size": 546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/283bbb4c71a1bcef7d92aaa194a972d254333190" + }, + { + "path": "web/src/hooks/use-posthog-auth.ts", + "mode": "100644", + "type": "blob", + "sha": "ba7814443b5d29440ca998e4646cf7fe47b7d40d", + "size": 1142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba7814443b5d29440ca998e4646cf7fe47b7d40d" + }, + { + "path": "web/src/hooks/use-submissions.ts", + "mode": "100644", + "type": "blob", + "sha": "924c691bd0a7cabfe8d8eb8f18f7dafedce48635", + "size": 4690, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/924c691bd0a7cabfe8d8eb8f18f7dafedce48635" + }, + { + "path": "web/src/lib", + "mode": "040000", + "type": "tree", + "sha": "2080d866a13a563aaa4a85d8aaeeee0847819164", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/2080d866a13a563aaa4a85d8aaeeee0847819164" + }, + { + "path": "web/src/lib/api.ts", + "mode": "100644", + "type": "blob", + "sha": "672e0d776afff524b6d8bee8b45f3ee71597dd8a", + "size": 4662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/672e0d776afff524b6d8bee8b45f3ee71597dd8a" + }, + { + "path": "web/src/lib/community.ts", + "mode": "100644", + "type": "blob", + "sha": "8d410f2294a7a6d7bf045de291014b05b3a383ad", + "size": 7055, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d410f2294a7a6d7bf045de291014b05b3a383ad" + }, + { + "path": "web/src/lib/errors.ts", + "mode": "100644", + "type": "blob", + "sha": "e1f6eceb67fcf26b84c4901c5d6870eb511f340b", + "size": 216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1f6eceb67fcf26b84c4901c5d6870eb511f340b" + }, + { + "path": "web/src/lib/pb.ts", + "mode": "100644", + "type": "blob", + "sha": "570a426e7fd1717b8ac2d8f79d32101b4b64b3b7", + "size": 1536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/570a426e7fd1717b8ac2d8f79d32101b4b64b3b7" + }, + { + "path": "web/src/lib/posthog-utils.ts", + "mode": "100644", + "type": "blob", + "sha": "b5be3fd1aea6ce43b016b97a5095c00601b7ce4e", + "size": 1373, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5be3fd1aea6ce43b016b97a5095c00601b7ce4e" + }, + { + "path": "web/src/lib/revalidate.ts", + "mode": "100644", + "type": "blob", + "sha": "4389ea3718f9a26801fc3f057035f2ef0fc481d4", + "size": 1106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4389ea3718f9a26801fc3f057035f2ef0fc481d4" + }, + { + "path": "web/src/lib/utils.ts", + "mode": "100644", + "type": "blob", + "sha": "37625a4bdcfed8815a38df6579bc9285b00aac90", + "size": 7249, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37625a4bdcfed8815a38df6579bc9285b00aac90" + }, + { + "path": "web/src/types", + "mode": "040000", + "type": "tree", + "sha": "4b33ce58cd7d7906fd6dfd4ec56c22e853985af3", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/4b33ce58cd7d7906fd6dfd4ec56c22e853985af3" + }, + { + "path": "web/src/types/icons.ts", + "mode": "100644", + "type": "blob", + "sha": "6671eeadd8d508d558e973bdba8261e1d5de1d38", + "size": 729, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6671eeadd8d508d558e973bdba8261e1d5de1d38" + }, + { + "path": "web/src/types/index.ts", + "mode": "100644", + "type": "blob", + "sha": "ac1d45925a128df76ab549caeab7d08b220fb96f", + "size": 24, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac1d45925a128df76ab549caeab7d08b220fb96f" + }, + { + "path": "web/tsconfig.json", + "mode": "100644", + "type": "blob", + "sha": "d7fc3a470d1574ea1f94563bd2bcd25cff50be18", + "size": 785, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7fc3a470d1574ea1f94563bd2bcd25cff50be18" + }, + { + "path": "webp", + "mode": "040000", + "type": "tree", + "sha": "375eac2920529b1cf0676973323a88bd37a56faa", + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/trees/375eac2920529b1cf0676973323a88bd37a56faa" + }, + { + "path": "webp/1337x.webp", + "mode": "100644", + "type": "blob", + "sha": "bb1d9c2614d272463b0853dbb885bc531fe047c8", + "size": 24872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb1d9c2614d272463b0853dbb885bc531fe047c8" + }, + { + "path": "webp/13ft.webp", + "mode": "100644", + "type": "blob", + "sha": "d958002d3fce9099292e02f9ea41a97a44b70233", + "size": 51270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d958002d3fce9099292e02f9ea41a97a44b70233" + }, + { + "path": "webp/1panel.webp", + "mode": "100644", + "type": "blob", + "sha": "374a352e7565666fe8ba4dd36dd871e5e470ccc7", + "size": 37632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/374a352e7565666fe8ba4dd36dd871e5e470ccc7" + }, + { + "path": "webp/1password-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "36694a171ae0e6945ddfeb0500587ee421d5e3d1", + "size": 49598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36694a171ae0e6945ddfeb0500587ee421d5e3d1" + }, + { + "path": "webp/1password.webp", + "mode": "100644", + "type": "blob", + "sha": "4d6e75dd6c29897117225706c51d9e871ca9bc59", + "size": 52336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d6e75dd6c29897117225706c51d9e871ca9bc59" + }, + { + "path": "webp/20i-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e7c4d3faf28fb5497acedbb4aaabb3927bd37653", + "size": 46396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7c4d3faf28fb5497acedbb4aaabb3927bd37653" + }, + { + "path": "webp/20i.webp", + "mode": "100644", + "type": "blob", + "sha": "749cbd08664cb66597e4cf2e7e860f2156b4c832", + "size": 51694, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/749cbd08664cb66597e4cf2e7e860f2156b4c832" + }, + { + "path": "webp/2fauth-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9004a0d19a183992144e18e56ce64d6d4d828153", + "size": 218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9004a0d19a183992144e18e56ce64d6d4d828153" + }, + { + "path": "webp/2fauth.webp", + "mode": "100644", + "type": "blob", + "sha": "1fdf5ff66a5a1a495d8f8f003778ba2c734c303b", + "size": 220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fdf5ff66a5a1a495d8f8f003778ba2c734c303b" + }, + { + "path": "webp/3cx-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0908931fe5ec48a2f718996ed11b7d5b2f68e8c0", + "size": 20726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0908931fe5ec48a2f718996ed11b7d5b2f68e8c0" + }, + { + "path": "webp/3cx.webp", + "mode": "100644", + "type": "blob", + "sha": "7e773c4c27aee2d7b61df154e3ae424913c52d00", + "size": 20734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e773c4c27aee2d7b61df154e3ae424913c52d00" + }, + { + "path": "webp/4chan.webp", + "mode": "100644", + "type": "blob", + "sha": "efa9f882c9c2c432eb838df2d73ce71e3f6f06eb", + "size": 78768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efa9f882c9c2c432eb838df2d73ce71e3f6f06eb" + }, + { + "path": "webp/5etools-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "c9ffb0058c19dc14247c74da13409bbcba5f2e53", + "size": 91264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9ffb0058c19dc14247c74da13409bbcba5f2e53" + }, + { + "path": "webp/5etools.webp", + "mode": "100644", + "type": "blob", + "sha": "68bc9402afbf87411f17c19bc7175cd7d2bd27b6", + "size": 94058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68bc9402afbf87411f17c19bc7175cd7d2bd27b6" + }, + { + "path": "webp/7zip.webp", + "mode": "100644", + "type": "blob", + "sha": "e54f8b22cd34109bdfcfd277635cd97a5a54dd52", + "size": 9864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e54f8b22cd34109bdfcfd277635cd97a5a54dd52" + }, + { + "path": "webp/a-mule.webp", + "mode": "100644", + "type": "blob", + "sha": "d7abd4be93f77df916cdc70c25997f0a320061e2", + "size": 77378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7abd4be93f77df916cdc70c25997f0a320061e2" + }, + { + "path": "webp/aboard.webp", + "mode": "100644", + "type": "blob", + "sha": "af8c356f831c1da29cf4a126d67f5c69dbc45c2d", + "size": 51300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af8c356f831c1da29cf4a126d67f5c69dbc45c2d" + }, + { + "path": "webp/act.webp", + "mode": "100644", + "type": "blob", + "sha": "9be2b6c1cc4cd9bdaf3533202ed01622b166fe6e", + "size": 41528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9be2b6c1cc4cd9bdaf3533202ed01622b166fe6e" + }, + { + "path": "webp/action1.webp", + "mode": "100644", + "type": "blob", + "sha": "6ba6f46d5d111852a52666e9c9543fd6cd3ec86e", + "size": 108158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ba6f46d5d111852a52666e9c9543fd6cd3ec86e" + }, + { + "path": "webp/activepieces.webp", + "mode": "100644", + "type": "blob", + "sha": "238091f7dc1f6c27debdb649f4bc230ab9569838", + "size": 17092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/238091f7dc1f6c27debdb649f4bc230ab9569838" + }, + { + "path": "webp/actual-budget.webp", + "mode": "100644", + "type": "blob", + "sha": "74980279ad290687a8cec96f6710fbafe6f2d0cf", + "size": 42252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74980279ad290687a8cec96f6710fbafe6f2d0cf" + }, + { + "path": "webp/adblock.webp", + "mode": "100644", + "type": "blob", + "sha": "ae3c3d0da0ab1bd4bddf121ff81512f959c30098", + "size": 53810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae3c3d0da0ab1bd4bddf121ff81512f959c30098" + }, + { + "path": "webp/adguard-home-sync.webp", + "mode": "100644", + "type": "blob", + "sha": "cdeb0f0f8bda744d0f3c7e68248ecb91eed61553", + "size": 42514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdeb0f0f8bda744d0f3c7e68248ecb91eed61553" + }, + { + "path": "webp/adguard-home.webp", + "mode": "100644", + "type": "blob", + "sha": "1e3c25359abbf1d17a0421a4bce9eec5684ebc78", + "size": 29334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e3c25359abbf1d17a0421a4bce9eec5684ebc78" + }, + { + "path": "webp/adminer.webp", + "mode": "100644", + "type": "blob", + "sha": "bb9efe5f0f9f3a59b597f18ffe09a08d5ab4efbc", + "size": 31506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb9efe5f0f9f3a59b597f18ffe09a08d5ab4efbc" + }, + { + "path": "webp/adobe.webp", + "mode": "100644", + "type": "blob", + "sha": "9cdd6955e5fe2c926ad85562997b48b63288d31d", + "size": 16376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cdd6955e5fe2c926ad85562997b48b63288d31d" + }, + { + "path": "webp/ads-b-exchange.webp", + "mode": "100644", + "type": "blob", + "sha": "c02c867c154d92832207307368c3c160c4ddb7f7", + "size": 37904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c02c867c154d92832207307368c3c160c4ddb7f7" + }, + { + "path": "webp/adsb.webp", + "mode": "100644", + "type": "blob", + "sha": "e8b507feb7e7058b728f7b2bb4717e6b3c2211ef", + "size": 32554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8b507feb7e7058b728f7b2bb4717e6b3c2211ef" + }, + { + "path": "webp/advanzia.webp", + "mode": "100644", + "type": "blob", + "sha": "c6524d913dff351647cf4500e6d4e47eb8d9c62d", + "size": 31176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6524d913dff351647cf4500e6d4e47eb8d9c62d" + }, + { + "path": "webp/adventure-log.webp", + "mode": "100644", + "type": "blob", + "sha": "f35246721b7bdd63e89e4e5575eb5f64d9163371", + "size": 65922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f35246721b7bdd63e89e4e5575eb5f64d9163371" + }, + { + "path": "webp/affine-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b837aa97734be9c6f8babbfc0df7ba1d8cec3ed2", + "size": 11340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b837aa97734be9c6f8babbfc0df7ba1d8cec3ed2" + }, + { + "path": "webp/affine.webp", + "mode": "100644", + "type": "blob", + "sha": "11fdd551e85cd4d6d6274c35d6acba8eea74bf0d", + "size": 11336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11fdd551e85cd4d6d6274c35d6acba8eea74bf0d" + }, + { + "path": "webp/agile-freaks.webp", + "mode": "100644", + "type": "blob", + "sha": "0488eccf225939c409060cc80d1ccfd34fa15ea0", + "size": 109804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0488eccf225939c409060cc80d1ccfd34fa15ea0" + }, + { + "path": "webp/agregarr.webp", + "mode": "100644", + "type": "blob", + "sha": "f5746397e76c87210f4a9993a0b34cc19930a98c", + "size": 38360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5746397e76c87210f4a9993a0b34cc19930a98c" + }, + { + "path": "webp/air-trail.webp", + "mode": "100644", + "type": "blob", + "sha": "1fc9135353c908e1e8cc9a38305bcb106847d226", + "size": 17096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fc9135353c908e1e8cc9a38305bcb106847d226" + }, + { + "path": "webp/airsonic.webp", + "mode": "100644", + "type": "blob", + "sha": "f9846afee7f991196ffd392ddd5126fdba96781c", + "size": 17090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9846afee7f991196ffd392ddd5126fdba96781c" + }, + { + "path": "webp/airtable.webp", + "mode": "100644", + "type": "blob", + "sha": "b53a592b4d5285e553092f44acbed5006aea16c2", + "size": 28724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b53a592b4d5285e553092f44acbed5006aea16c2" + }, + { + "path": "webp/airtel.webp", + "mode": "100644", + "type": "blob", + "sha": "bfa51bf7ee246b2fa080bddfbf038a3305e7904d", + "size": 24452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfa51bf7ee246b2fa080bddfbf038a3305e7904d" + }, + { + "path": "webp/airvpn.webp", + "mode": "100644", + "type": "blob", + "sha": "0de623ea388a2a0b8220b874021de27387c79ab6", + "size": 32696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0de623ea388a2a0b8220b874021de27387c79ab6" + }, + { + "path": "webp/akamai.webp", + "mode": "100644", + "type": "blob", + "sha": "46c67b299bd4513359003dc09d7ec48debdb23db", + "size": 75484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46c67b299bd4513359003dc09d7ec48debdb23db" + }, + { + "path": "webp/akaunting.webp", + "mode": "100644", + "type": "blob", + "sha": "b87e1b7dc94b3d5b3252e741c7851136c3261c4f", + "size": 21924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b87e1b7dc94b3d5b3252e741c7851136c3261c4f" + }, + { + "path": "webp/akkoma-light.webp", + "mode": "100644", + "type": "blob", + "sha": "24f9ef5a0eb5fd3c730cade49f25c7f38ad114fc", + "size": 18096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24f9ef5a0eb5fd3c730cade49f25c7f38ad114fc" + }, + { + "path": "webp/akkoma.webp", + "mode": "100644", + "type": "blob", + "sha": "e162af8a0fab9533bf3939c23bf1b27c9f5b5269", + "size": 18524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e162af8a0fab9533bf3939c23bf1b27c9f5b5269" + }, + { + "path": "webp/alarmpi.webp", + "mode": "100644", + "type": "blob", + "sha": "dfda55ac604bca1f4cfe0a9e532b53dbfe60d4df", + "size": 44036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfda55ac604bca1f4cfe0a9e532b53dbfe60d4df" + }, + { + "path": "webp/albert-heijn.webp", + "mode": "100644", + "type": "blob", + "sha": "0e3306e9d9dc74be7b4ea4e718fa2af7276b9a97", + "size": 42248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e3306e9d9dc74be7b4ea4e718fa2af7276b9a97" + }, + { + "path": "webp/alertmanager.webp", + "mode": "100644", + "type": "blob", + "sha": "adc07d010e0964eab61587973c3566802ed0b228", + "size": 25530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adc07d010e0964eab61587973c3566802ed0b228" + }, + { + "path": "webp/alexa.webp", + "mode": "100644", + "type": "blob", + "sha": "147aa7d763a3fc332f90cfb5c1d48a47ca6cf1cc", + "size": 25914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/147aa7d763a3fc332f90cfb5c1d48a47ca6cf1cc" + }, + { + "path": "webp/algo.webp", + "mode": "100644", + "type": "blob", + "sha": "534bfdca53f8b149333fe5928efb8f668ce6079a", + "size": 26634, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/534bfdca53f8b149333fe5928efb8f668ce6079a" + }, + { + "path": "webp/ali-mail.webp", + "mode": "100644", + "type": "blob", + "sha": "98b220a4e2431176e1d910f0ba78d8693cd09933", + "size": 34248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98b220a4e2431176e1d910f0ba78d8693cd09933" + }, + { + "path": "webp/aliexpress.webp", + "mode": "100644", + "type": "blob", + "sha": "cf7430eb0432817dbf5454db81586c3bc5188551", + "size": 23140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf7430eb0432817dbf5454db81586c3bc5188551" + }, + { + "path": "webp/alist.webp", + "mode": "100644", + "type": "blob", + "sha": "04f717d9361998a1d2bc7bb6f3a9697032278936", + "size": 25398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04f717d9361998a1d2bc7bb6f3a9697032278936" + }, + { + "path": "webp/aliyun.webp", + "mode": "100644", + "type": "blob", + "sha": "74e674b87840fa4d9fd04037236e926c3884c0c8", + "size": 18708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74e674b87840fa4d9fd04037236e926c3884c0c8" + }, + { + "path": "webp/alloy.webp", + "mode": "100644", + "type": "blob", + "sha": "c63a2ea611de840ec0d895e21beb6cede974b590", + "size": 38742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c63a2ea611de840ec0d895e21beb6cede974b590" + }, + { + "path": "webp/alltube-light.webp", + "mode": "100644", + "type": "blob", + "sha": "85d5fd3d3c689406d55ecd919321a8edbe64f6ba", + "size": 9624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85d5fd3d3c689406d55ecd919321a8edbe64f6ba" + }, + { + "path": "webp/alltube.webp", + "mode": "100644", + "type": "blob", + "sha": "2457a46dcd3e7e96dc8e45527b9eff5163b5cef6", + "size": 9254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2457a46dcd3e7e96dc8e45527b9eff5163b5cef6" + }, + { + "path": "webp/alma-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "6035fe6951ee973d4cfc945aefcef6c8a3b05059", + "size": 49864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6035fe6951ee973d4cfc945aefcef6c8a3b05059" + }, + { + "path": "webp/alpine-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "2ae53cd1256d5fa6b82b3c92310440bc3d9dd822", + "size": 25702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ae53cd1256d5fa6b82b3c92310440bc3d9dd822" + }, + { + "path": "webp/amazon-light.webp", + "mode": "100644", + "type": "blob", + "sha": "32c07d29fd9778b1072f3c9ff7111adc2fba4f89", + "size": 14954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32c07d29fd9778b1072f3c9ff7111adc2fba4f89" + }, + { + "path": "webp/amazon-prime.webp", + "mode": "100644", + "type": "blob", + "sha": "f82fefb8bb450df5229a621c29d8deb085b497bc", + "size": 42498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f82fefb8bb450df5229a621c29d8deb085b497bc" + }, + { + "path": "webp/amazon-web-services-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e77bcc62b89320b527a58ebc55ab74c1055f1d90", + "size": 25682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e77bcc62b89320b527a58ebc55ab74c1055f1d90" + }, + { + "path": "webp/amazon-web-services.webp", + "mode": "100644", + "type": "blob", + "sha": "6e82be1aa8f9cdbb2e7b740b01803cdfcb0490e6", + "size": 28638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e82be1aa8f9cdbb2e7b740b01803cdfcb0490e6" + }, + { + "path": "webp/amazon.webp", + "mode": "100644", + "type": "blob", + "sha": "b0f26e2ce44f46f1be509c8a04bb613b34bfe9fc", + "size": 14798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0f26e2ce44f46f1be509c8a04bb613b34bfe9fc" + }, + { + "path": "webp/amcrest-cloud.webp", + "mode": "100644", + "type": "blob", + "sha": "3462650b948617cd2bd94da99ed9dd80ab213d11", + "size": 45586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3462650b948617cd2bd94da99ed9dd80ab213d11" + }, + { + "path": "webp/amcrest.webp", + "mode": "100644", + "type": "blob", + "sha": "e1d5f5fd8f4f4b937c6ef9ef762d4927f8f599bc", + "size": 26106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1d5f5fd8f4f4b937c6ef9ef762d4927f8f599bc" + }, + { + "path": "webp/amd-light.webp", + "mode": "100644", + "type": "blob", + "sha": "783329e017aeab57a796fcda3069f02f8a823ebe", + "size": 1426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/783329e017aeab57a796fcda3069f02f8a823ebe" + }, + { + "path": "webp/amd.webp", + "mode": "100644", + "type": "blob", + "sha": "01b21e8152a93da412868247c38a6991f79fd253", + "size": 1414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01b21e8152a93da412868247c38a6991f79fd253" + }, + { + "path": "webp/ami-alt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d6a154bfb945a239578b9f4fa3179378958e4770", + "size": 62736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6a154bfb945a239578b9f4fa3179378958e4770" + }, + { + "path": "webp/ami-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "2ac943909b207ef9dcebb2c7c8d8c42ba5436b05", + "size": 71268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ac943909b207ef9dcebb2c7c8d8c42ba5436b05" + }, + { + "path": "webp/ami.webp", + "mode": "100644", + "type": "blob", + "sha": "cf5de2222e41c5c2e88800357f144dfedef714af", + "size": 60592, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf5de2222e41c5c2e88800357f144dfedef714af" + }, + { + "path": "webp/amp.webp", + "mode": "100644", + "type": "blob", + "sha": "583ad2dc08268157694f334ba3d0517706a90e4c", + "size": 24752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/583ad2dc08268157694f334ba3d0517706a90e4c" + }, + { + "path": "webp/ampache.webp", + "mode": "100644", + "type": "blob", + "sha": "c93a4af4a4ce13b49f12f9a7baf771c7cb3ec233", + "size": 41912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c93a4af4a4ce13b49f12f9a7baf771c7cb3ec233" + }, + { + "path": "webp/android-auto-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "0b3afc211ea35f4e3141a60adaab237f1449de63", + "size": 37996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b3afc211ea35f4e3141a60adaab237f1449de63" + }, + { + "path": "webp/android-auto.webp", + "mode": "100644", + "type": "blob", + "sha": "a497ff5d0732ef649967fb8296c9f2ff8120458a", + "size": 41792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a497ff5d0732ef649967fb8296c9f2ff8120458a" + }, + { + "path": "webp/android-robot.webp", + "mode": "100644", + "type": "blob", + "sha": "8f070909d8adaf969851d0fcd989df217681bff3", + "size": 32238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f070909d8adaf969851d0fcd989df217681bff3" + }, + { + "path": "webp/android.webp", + "mode": "100644", + "type": "blob", + "sha": "d5b2ed1ec97dd5150f2c24b86d8a497401f6c996", + "size": 23844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5b2ed1ec97dd5150f2c24b86d8a497401f6c996" + }, + { + "path": "webp/anghami.webp", + "mode": "100644", + "type": "blob", + "sha": "a2f6462406d023b6adc5434e0baa890a6246cf8a", + "size": 86824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2f6462406d023b6adc5434e0baa890a6246cf8a" + }, + { + "path": "webp/angular.webp", + "mode": "100644", + "type": "blob", + "sha": "667682c751ccfb0f9ccaadcaf79a2e01ebfde8bb", + "size": 37496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/667682c751ccfb0f9ccaadcaf79a2e01ebfde8bb" + }, + { + "path": "webp/anime-kai.webp", + "mode": "100644", + "type": "blob", + "sha": "4a6df615ec7f00852dce8bd2b84f966a5d3acfe4", + "size": 65964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a6df615ec7f00852dce8bd2b84f966a5d3acfe4" + }, + { + "path": "webp/anonaddy.webp", + "mode": "100644", + "type": "blob", + "sha": "2d90b4c1582921bd52c632fd695b32033bc5c239", + "size": 31108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d90b4c1582921bd52c632fd695b32033bc5c239" + }, + { + "path": "webp/ansible-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c4e9761c875b6a90a015439931cb2d1e62965a82", + "size": 10598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4e9761c875b6a90a015439931cb2d1e62965a82" + }, + { + "path": "webp/ansible.webp", + "mode": "100644", + "type": "blob", + "sha": "4b1270221c8938417d2d1e07902c006aaa38aa5d", + "size": 16924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b1270221c8938417d2d1e07902c006aaa38aa5d" + }, + { + "path": "webp/any-listen.webp", + "mode": "100644", + "type": "blob", + "sha": "1d91c328a872fde3c2da7a07bab642c7b7d2d335", + "size": 27718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d91c328a872fde3c2da7a07bab642c7b7d2d335" + }, + { + "path": "webp/anything-llm-light.webp", + "mode": "100644", + "type": "blob", + "sha": "11264ae34496c7ec541dc3a84a7aabbac689b84c", + "size": 9738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11264ae34496c7ec541dc3a84a7aabbac689b84c" + }, + { + "path": "webp/anything-llm.webp", + "mode": "100644", + "type": "blob", + "sha": "3c9bbdb04e7809375c035e5fc0804b6be0d07a3a", + "size": 15230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c9bbdb04e7809375c035e5fc0804b6be0d07a3a" + }, + { + "path": "webp/apache-airflow.webp", + "mode": "100644", + "type": "blob", + "sha": "975c633854662d7bdee0a00048e8ff64ab93fd3b", + "size": 47314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/975c633854662d7bdee0a00048e8ff64ab93fd3b" + }, + { + "path": "webp/apache-answer.webp", + "mode": "100644", + "type": "blob", + "sha": "85f933a0b27dff96d436dd76f76731eede6a573a", + "size": 8272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85f933a0b27dff96d436dd76f76731eede6a573a" + }, + { + "path": "webp/apache-cassandra.webp", + "mode": "100644", + "type": "blob", + "sha": "8c0241d6000d2aa3838cba8788da859116c14d7f", + "size": 62060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c0241d6000d2aa3838cba8788da859116c14d7f" + }, + { + "path": "webp/apache-cloudstack.webp", + "mode": "100644", + "type": "blob", + "sha": "aa369520068e52245e3fea86f2a822128af68196", + "size": 77808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa369520068e52245e3fea86f2a822128af68196" + }, + { + "path": "webp/apache-druid.webp", + "mode": "100644", + "type": "blob", + "sha": "5879d1a1c8712d39b84d1be7129abb8dd3520068", + "size": 23682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5879d1a1c8712d39b84d1be7129abb8dd3520068" + }, + { + "path": "webp/apache-openoffice.webp", + "mode": "100644", + "type": "blob", + "sha": "77c01a951d74c28ff80a4031a2b06f0115224463", + "size": 41922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77c01a951d74c28ff80a4031a2b06f0115224463" + }, + { + "path": "webp/apache-solr.webp", + "mode": "100644", + "type": "blob", + "sha": "494d8845fb734263ace7f6d8b6f1388027dfa229", + "size": 50482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/494d8845fb734263ace7f6d8b6f1388027dfa229" + }, + { + "path": "webp/apache-subversion.webp", + "mode": "100644", + "type": "blob", + "sha": "03592e6cc88307cf257db566695783361b50bb43", + "size": 53160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03592e6cc88307cf257db566695783361b50bb43" + }, + { + "path": "webp/apache-tomcat-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c728288d2e4c1ae3bf84e93dd6379ca060170c52", + "size": 85234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c728288d2e4c1ae3bf84e93dd6379ca060170c52" + }, + { + "path": "webp/apache-tomcat.webp", + "mode": "100644", + "type": "blob", + "sha": "921a42ceec98869bbb481d6fc9060aa43d5f4b1d", + "size": 90844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/921a42ceec98869bbb481d6fc9060aa43d5f4b1d" + }, + { + "path": "webp/apache.webp", + "mode": "100644", + "type": "blob", + "sha": "95a43a99ba3f27fb9a40bfdba5f0ca4b9cddc9a2", + "size": 28252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95a43a99ba3f27fb9a40bfdba5f0ca4b9cddc9a2" + }, + { + "path": "webp/apc.webp", + "mode": "100644", + "type": "blob", + "sha": "badfd8348eaeebe6c647829beab55e629cce2840", + "size": 12214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/badfd8348eaeebe6c647829beab55e629cce2840" + }, + { + "path": "webp/apiscp.webp", + "mode": "100644", + "type": "blob", + "sha": "789e7f10c33ab380178e203986990c9dd1938bec", + "size": 79238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/789e7f10c33ab380178e203986990c9dd1938bec" + }, + { + "path": "webp/app-store.webp", + "mode": "100644", + "type": "blob", + "sha": "e61a2eab80c6ec850149d7a12e965535ec879b1b", + "size": 41216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e61a2eab80c6ec850149d7a12e965535ec879b1b" + }, + { + "path": "webp/appdaemon.webp", + "mode": "100644", + "type": "blob", + "sha": "79acd42d6eae5eae2b71a25e02b0920b626f08b0", + "size": 3550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79acd42d6eae5eae2b71a25e02b0920b626f08b0" + }, + { + "path": "webp/appflowy.webp", + "mode": "100644", + "type": "blob", + "sha": "9541b976c768380d7cf7f0e1c42ad2be486f70f9", + "size": 39590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9541b976c768380d7cf7f0e1c42ad2be486f70f9" + }, + { + "path": "webp/apple-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "85749b7e5ace6f8ca0bc572ca4db8a63040b97f5", + "size": 20570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85749b7e5ace6f8ca0bc572ca4db8a63040b97f5" + }, + { + "path": "webp/apple-light.webp", + "mode": "100644", + "type": "blob", + "sha": "14cb72fc37ca6d251eff4de59ce3d72486f6169a", + "size": 4132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14cb72fc37ca6d251eff4de59ce3d72486f6169a" + }, + { + "path": "webp/apple-maps.webp", + "mode": "100644", + "type": "blob", + "sha": "3727a533be2f105f50e7095179d4b638b83e7f5d", + "size": 42262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3727a533be2f105f50e7095179d4b638b83e7f5d" + }, + { + "path": "webp/apple-music.webp", + "mode": "100644", + "type": "blob", + "sha": "0dd8941a37a89f1933bdcbdb7f1de964d9bd5edc", + "size": 29002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0dd8941a37a89f1933bdcbdb7f1de964d9bd5edc" + }, + { + "path": "webp/apple-podcasts.webp", + "mode": "100644", + "type": "blob", + "sha": "8fa4466672d390d7805dbed9b5da0541486e8d2c", + "size": 77298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fa4466672d390d7805dbed9b5da0541486e8d2c" + }, + { + "path": "webp/apple-tv-plus-light.webp", + "mode": "100644", + "type": "blob", + "sha": "018aceb9855213807d2c7b3a76d3a64397fb33a3", + "size": 8930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/018aceb9855213807d2c7b3a76d3a64397fb33a3" + }, + { + "path": "webp/apple-tv-plus.webp", + "mode": "100644", + "type": "blob", + "sha": "2bda229ceab2c5cc04f8378016b6e8aad13699af", + "size": 8924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bda229ceab2c5cc04f8378016b6e8aad13699af" + }, + { + "path": "webp/apple.webp", + "mode": "100644", + "type": "blob", + "sha": "7d2678b85c531b0909ad92e53ac125cf15528f51", + "size": 4182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d2678b85c531b0909ad92e53ac125cf15528f51" + }, + { + "path": "webp/apprise.webp", + "mode": "100644", + "type": "blob", + "sha": "978005c51f60c44b036c2fd3f7c2f8a7d458214e", + "size": 16206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/978005c51f60c44b036c2fd3f7c2f8a7d458214e" + }, + { + "path": "webp/appwrite.webp", + "mode": "100644", + "type": "blob", + "sha": "0d8d0e25aaba43af24c94c281c0000f79489c527", + "size": 14704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d8d0e25aaba43af24c94c281c0000f79489c527" + }, + { + "path": "webp/ara-records-ansible.webp", + "mode": "100644", + "type": "blob", + "sha": "e9aa3bcadafab490c908cf0a3e6d5dad1e2b1ef3", + "size": 80296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9aa3bcadafab490c908cf0a3e6d5dad1e2b1ef3" + }, + { + "path": "webp/arcane.webp", + "mode": "100644", + "type": "blob", + "sha": "bbdf698747008f6cd6527900da1c87de8b95a13a", + "size": 38922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbdf698747008f6cd6527900da1c87de8b95a13a" + }, + { + "path": "webp/arch-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "60faa8e6c651e8c4ccfffba195cd962dd9c40dbb", + "size": 23522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60faa8e6c651e8c4ccfffba195cd962dd9c40dbb" + }, + { + "path": "webp/archidekt.webp", + "mode": "100644", + "type": "blob", + "sha": "560c9b4bb48e1e6077391f275d14738c06075edc", + "size": 25220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/560c9b4bb48e1e6077391f275d14738c06075edc" + }, + { + "path": "webp/archisteamfarm.webp", + "mode": "100644", + "type": "blob", + "sha": "082bfea71cfd6e816468aa0b7d01fbfa1a465cae", + "size": 45202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/082bfea71cfd6e816468aa0b7d01fbfa1a465cae" + }, + { + "path": "webp/archivebox.webp", + "mode": "100644", + "type": "blob", + "sha": "1218a144bc9942abf76a4092ed6fb05fe8912fb6", + "size": 8380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1218a144bc9942abf76a4092ed6fb05fe8912fb6" + }, + { + "path": "webp/archiveteam-warrior-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3c33b52bc7b94769abdcc7d06696d37f310c9d23", + "size": 93932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c33b52bc7b94769abdcc7d06696d37f310c9d23" + }, + { + "path": "webp/archiveteam-warrior.webp", + "mode": "100644", + "type": "blob", + "sha": "3c0037d7c3cca8147b45a284f7b57b7efdd24549", + "size": 122460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c0037d7c3cca8147b45a284f7b57b7efdd24549" + }, + { + "path": "webp/arduino.webp", + "mode": "100644", + "type": "blob", + "sha": "143514091b7804b68b9c290c69d2f5181d811698", + "size": 28382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/143514091b7804b68b9c290c69d2f5181d811698" + }, + { + "path": "webp/argo-cd.webp", + "mode": "100644", + "type": "blob", + "sha": "9f9d51885a867c79919c78369f3492a8f84e4af2", + "size": 66522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f9d51885a867c79919c78369f3492a8f84e4af2" + }, + { + "path": "webp/ariang.webp", + "mode": "100644", + "type": "blob", + "sha": "cc45c0e4ffda0ba294ec02e83fa8e3d9e66ee1f0", + "size": 30622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc45c0e4ffda0ba294ec02e83fa8e3d9e66ee1f0" + }, + { + "path": "webp/arm.webp", + "mode": "100644", + "type": "blob", + "sha": "4dccab932f55009c58462cbabbe30260fa53d1be", + "size": 41058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4dccab932f55009c58462cbabbe30260fa53d1be" + }, + { + "path": "webp/arris-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d5f40034d3482be1551650b37947013dbe3dc7e5", + "size": 6914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5f40034d3482be1551650b37947013dbe3dc7e5" + }, + { + "path": "webp/arris.webp", + "mode": "100644", + "type": "blob", + "sha": "e6857dbc5f3e033e54dddc0455a7f0b0bdef88b2", + "size": 6718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6857dbc5f3e033e54dddc0455a7f0b0bdef88b2" + }, + { + "path": "webp/artifacthub.webp", + "mode": "100644", + "type": "blob", + "sha": "c6fc8b974bf0ea55bc6de3d0461ebd3f6935cf80", + "size": 47284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6fc8b974bf0ea55bc6de3d0461ebd3f6935cf80" + }, + { + "path": "webp/artifactory.webp", + "mode": "100644", + "type": "blob", + "sha": "8c040510f0c12b41004ac3b3b5df09da67107072", + "size": 17688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c040510f0c12b41004ac3b3b5df09da67107072" + }, + { + "path": "webp/aruba.webp", + "mode": "100644", + "type": "blob", + "sha": "c324cf05aa5f9bda08c68f5204778cd9370ec19b", + "size": 17464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c324cf05aa5f9bda08c68f5204778cd9370ec19b" + }, + { + "path": "webp/asana.webp", + "mode": "100644", + "type": "blob", + "sha": "32c760a0caa12259a3c6f6e75d5905e398701787", + "size": 41806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32c760a0caa12259a3c6f6e75d5905e398701787" + }, + { + "path": "webp/asciinema.webp", + "mode": "100644", + "type": "blob", + "sha": "bd8693f113435a11b741fc2f018994054bc9138a", + "size": 8298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd8693f113435a11b741fc2f018994054bc9138a" + }, + { + "path": "webp/asrock-rack-ipmi.webp", + "mode": "100644", + "type": "blob", + "sha": "2c6eb7ff74915d28a46c44027248495cbb6ac782", + "size": 64780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c6eb7ff74915d28a46c44027248495cbb6ac782" + }, + { + "path": "webp/asrock-rack.webp", + "mode": "100644", + "type": "blob", + "sha": "2c6eb7ff74915d28a46c44027248495cbb6ac782", + "size": 64780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c6eb7ff74915d28a46c44027248495cbb6ac782" + }, + { + "path": "webp/assetgrid.webp", + "mode": "100644", + "type": "blob", + "sha": "c5eeb8b67c9f0fb8a196c4d08cdfedd851e86a4b", + "size": 7338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5eeb8b67c9f0fb8a196c4d08cdfedd851e86a4b" + }, + { + "path": "webp/asterisk.webp", + "mode": "100644", + "type": "blob", + "sha": "cb7b22720c5737416af6e09255db41e589f32de7", + "size": 20954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb7b22720c5737416af6e09255db41e589f32de7" + }, + { + "path": "webp/astral.webp", + "mode": "100644", + "type": "blob", + "sha": "0aa331b0ba511739e2ea143149f8d987900975f3", + "size": 36104, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0aa331b0ba511739e2ea143149f8d987900975f3" + }, + { + "path": "webp/astuto-light.webp", + "mode": "100644", + "type": "blob", + "sha": "434aeb8d71b5d60084063b040423269e19cadc74", + "size": 11098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/434aeb8d71b5d60084063b040423269e19cadc74" + }, + { + "path": "webp/astuto.webp", + "mode": "100644", + "type": "blob", + "sha": "15e774eeb3a4c6fbc8c967190aa7b362f930f69f", + "size": 11092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15e774eeb3a4c6fbc8c967190aa7b362f930f69f" + }, + { + "path": "webp/asus-full.webp", + "mode": "100644", + "type": "blob", + "sha": "d851cbbf76575bb7474a07e7380f8e2c339b90e5", + "size": 52382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d851cbbf76575bb7474a07e7380f8e2c339b90e5" + }, + { + "path": "webp/asus-rog.webp", + "mode": "100644", + "type": "blob", + "sha": "351ed0a40b989b6d92ec8d8c134f2a5a8db6722c", + "size": 48262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/351ed0a40b989b6d92ec8d8c134f2a5a8db6722c" + }, + { + "path": "webp/asus-router.webp", + "mode": "100644", + "type": "blob", + "sha": "c3cb8c29d35b06f87a4a739c846946d52910ccda", + "size": 48888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3cb8c29d35b06f87a4a739c846946d52910ccda" + }, + { + "path": "webp/asus.webp", + "mode": "100644", + "type": "blob", + "sha": "3b59d565f73237a9ea8e8dc5e935bacb2c9ba3bc", + "size": 30626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b59d565f73237a9ea8e8dc5e935bacb2c9ba3bc" + }, + { + "path": "webp/asustor.webp", + "mode": "100644", + "type": "blob", + "sha": "a6d5ebc525053ac010e2b39f1ddcd15ae2253812", + "size": 36146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6d5ebc525053ac010e2b39f1ddcd15ae2253812" + }, + { + "path": "webp/at-t.webp", + "mode": "100644", + "type": "blob", + "sha": "822cb2fbdd6643349855eb46bdd9227ec5a7b852", + "size": 58234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/822cb2fbdd6643349855eb46bdd9227ec5a7b852" + }, + { + "path": "webp/atlassian-bamboo.webp", + "mode": "100644", + "type": "blob", + "sha": "b4bcf0a582eca2f1ce3354510c216bf92bae7d8c", + "size": 26286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4bcf0a582eca2f1ce3354510c216bf92bae7d8c" + }, + { + "path": "webp/atlassian-bitbucket.webp", + "mode": "100644", + "type": "blob", + "sha": "aa903f759228f3b4d23afd9da2f091909b79e40c", + "size": 17104, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa903f759228f3b4d23afd9da2f091909b79e40c" + }, + { + "path": "webp/atlassian-confluence.webp", + "mode": "100644", + "type": "blob", + "sha": "7ceaefa19835631ec63dfa933d763ebd7e3fe4ab", + "size": 34106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ceaefa19835631ec63dfa933d763ebd7e3fe4ab" + }, + { + "path": "webp/atlassian-jira.webp", + "mode": "100644", + "type": "blob", + "sha": "c22c2b967317d3c75e08771c0c3fc20dacd88186", + "size": 16486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c22c2b967317d3c75e08771c0c3fc20dacd88186" + }, + { + "path": "webp/atlassian-opsgenie.webp", + "mode": "100644", + "type": "blob", + "sha": "3c35151b3aa2804b2d8f5cc078e8e8013984e325", + "size": 27716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c35151b3aa2804b2d8f5cc078e8e8013984e325" + }, + { + "path": "webp/atlassian-trello.webp", + "mode": "100644", + "type": "blob", + "sha": "af391a0dafaecac36c2769c1b5011e306a72cff6", + "size": 9194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af391a0dafaecac36c2769c1b5011e306a72cff6" + }, + { + "path": "webp/atlassian.webp", + "mode": "100644", + "type": "blob", + "sha": "5e50a37fb99ace0b241e9dc9f4d67c10eb92c4e8", + "size": 18316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e50a37fb99ace0b241e9dc9f4d67c10eb92c4e8" + }, + { + "path": "webp/atuin-light.webp", + "mode": "100644", + "type": "blob", + "sha": "227d963c16c89ef227386e57a938aa4d740c6313", + "size": 88298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/227d963c16c89ef227386e57a938aa4d740c6313" + }, + { + "path": "webp/atuin.webp", + "mode": "100644", + "type": "blob", + "sha": "2a5d8ab0d9739896629ca7237c90c5587b3a5ddd", + "size": 101042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a5d8ab0d9739896629ca7237c90c5587b3a5ddd" + }, + { + "path": "webp/audacity.webp", + "mode": "100644", + "type": "blob", + "sha": "295960df108e5620486a0134b5e705bde6c64397", + "size": 84552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/295960df108e5620486a0134b5e705bde6c64397" + }, + { + "path": "webp/audiobookshelf.webp", + "mode": "100644", + "type": "blob", + "sha": "9713d5279440fd22bab6fc7b84eaef0c8d1062b9", + "size": 71096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9713d5279440fd22bab6fc7b84eaef0c8d1062b9" + }, + { + "path": "webp/aura.webp", + "mode": "100644", + "type": "blob", + "sha": "1e1cc976c88f372876ba67af7dcd0075b616feda", + "size": 9432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e1cc976c88f372876ba67af7dcd0075b616feda" + }, + { + "path": "webp/auracast.webp", + "mode": "100644", + "type": "blob", + "sha": "a1b5564a770689ffec88a85dba7dbf27039809b7", + "size": 43352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1b5564a770689ffec88a85dba7dbf27039809b7" + }, + { + "path": "webp/authelia.webp", + "mode": "100644", + "type": "blob", + "sha": "f20f3bd5f6991da7c647b0190fb6ad48a858fe61", + "size": 54404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f20f3bd5f6991da7c647b0190fb6ad48a858fe61" + }, + { + "path": "webp/authentik.webp", + "mode": "100644", + "type": "blob", + "sha": "9d680472f94993f386f7b4228d359485e7d4f4d5", + "size": 15834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d680472f94993f386f7b4228d359485e7d4f4d5" + }, + { + "path": "webp/authman.webp", + "mode": "100644", + "type": "blob", + "sha": "d985002fb49c285609f21c37d097013f7ff3b9ce", + "size": 108008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d985002fb49c285609f21c37d097013f7ff3b9ce" + }, + { + "path": "webp/auto-cad.webp", + "mode": "100644", + "type": "blob", + "sha": "a3407f3609b55cbc6698ab97643cb6e86b5718c8", + "size": 24072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3407f3609b55cbc6698ab97643cb6e86b5718c8" + }, + { + "path": "webp/auto-mcs.webp", + "mode": "100644", + "type": "blob", + "sha": "6ea0ae3aef3a18551e20e579a5abd735628f77ec", + "size": 33780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ea0ae3aef3a18551e20e579a5abd735628f77ec" + }, + { + "path": "webp/autobangumi-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "816c350200d39842a19103579424f85a2a15c0bc", + "size": 14832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/816c350200d39842a19103579424f85a2a15c0bc" + }, + { + "path": "webp/autobangumi.webp", + "mode": "100644", + "type": "blob", + "sha": "85b961ff262dcc0e63b8c230ac4ab25a2ffe7038", + "size": 31984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85b961ff262dcc0e63b8c230ac4ab25a2ffe7038" + }, + { + "path": "webp/autobrr.webp", + "mode": "100644", + "type": "blob", + "sha": "f0e33507a5697a0c0af461e9235736b3cb0a9038", + "size": 70924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0e33507a5697a0c0af461e9235736b3cb0a9038" + }, + { + "path": "webp/automad-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3f5be356ef2e771b9e7964d571c5dbcf87cae8a9", + "size": 5586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f5be356ef2e771b9e7964d571c5dbcf87cae8a9" + }, + { + "path": "webp/automad.webp", + "mode": "100644", + "type": "blob", + "sha": "2ad2143635bf12c107f191e7a29832ed3152aaf1", + "size": 5580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ad2143635bf12c107f191e7a29832ed3152aaf1" + }, + { + "path": "webp/avg.webp", + "mode": "100644", + "type": "blob", + "sha": "e4a0757f1523187973de1f3e6fdda6482925067e", + "size": 46068, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4a0757f1523187973de1f3e6fdda6482925067e" + }, + { + "path": "webp/avigilon.webp", + "mode": "100644", + "type": "blob", + "sha": "ef3747516b5231b1c772491dd401ed6c26cc5550", + "size": 103030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef3747516b5231b1c772491dd401ed6c26cc5550" + }, + { + "path": "webp/avm-fritzbox-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0ab9787f72fd26e5621ecbdbbca4970b86c75691", + "size": 88392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ab9787f72fd26e5621ecbdbbca4970b86c75691" + }, + { + "path": "webp/avm-fritzbox.webp", + "mode": "100644", + "type": "blob", + "sha": "dfa1399d1f72ee7bb1886cb2b7e5c9f7cc6ae579", + "size": 88872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfa1399d1f72ee7bb1886cb2b7e5c9f7cc6ae579" + }, + { + "path": "webp/aws-ecs.webp", + "mode": "100644", + "type": "blob", + "sha": "448cb624ecf9490bc47740de3c74bcb4757b8886", + "size": 28432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/448cb624ecf9490bc47740de3c74bcb4757b8886" + }, + { + "path": "webp/aws-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e77bcc62b89320b527a58ebc55ab74c1055f1d90", + "size": 25682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e77bcc62b89320b527a58ebc55ab74c1055f1d90" + }, + { + "path": "webp/aws.webp", + "mode": "100644", + "type": "blob", + "sha": "6e82be1aa8f9cdbb2e7b740b01803cdfcb0490e6", + "size": 28638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e82be1aa8f9cdbb2e7b740b01803cdfcb0490e6" + }, + { + "path": "webp/awtrix.webp", + "mode": "100644", + "type": "blob", + "sha": "cba7247429897da318eab53ef0dd006f586eeaf9", + "size": 37916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cba7247429897da318eab53ef0dd006f586eeaf9" + }, + { + "path": "webp/awwesome.webp", + "mode": "100644", + "type": "blob", + "sha": "67370600a22e7e4ad73d695cdb7b87da12093b9d", + "size": 54182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67370600a22e7e4ad73d695cdb7b87da12093b9d" + }, + { + "path": "webp/awx.webp", + "mode": "100644", + "type": "blob", + "sha": "a25d70a7f2092cabc558bf7e00d72faa13cba458", + "size": 45938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a25d70a7f2092cabc558bf7e00d72faa13cba458" + }, + { + "path": "webp/axis.webp", + "mode": "100644", + "type": "blob", + "sha": "3796c550576c6f37b27a224499fbde50a7bf23d5", + "size": 26324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3796c550576c6f37b27a224499fbde50a7bf23d5" + }, + { + "path": "webp/aya.webp", + "mode": "100644", + "type": "blob", + "sha": "6edfe0ef85ff0e3ec269ab2925d985c12ef7719e", + "size": 52652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6edfe0ef85ff0e3ec269ab2925d985c12ef7719e" + }, + { + "path": "webp/azuracast.webp", + "mode": "100644", + "type": "blob", + "sha": "053da89a429b9dc0e7b3dbb384ab9d94f66ed15b", + "size": 56020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/053da89a429b9dc0e7b3dbb384ab9d94f66ed15b" + }, + { + "path": "webp/azure-container-instances.webp", + "mode": "100644", + "type": "blob", + "sha": "9b76924155ff8f39cda6753fb249bc88c245af4d", + "size": 34528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b76924155ff8f39cda6753fb249bc88c245af4d" + }, + { + "path": "webp/azure-container-service.webp", + "mode": "100644", + "type": "blob", + "sha": "b99a0b396f8599380f9bccca04760430d88b185a", + "size": 56940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b99a0b396f8599380f9bccca04760430d88b185a" + }, + { + "path": "webp/azure-devops.webp", + "mode": "100644", + "type": "blob", + "sha": "7477a1680f67dde2f07e0a379f798d777cad8836", + "size": 23058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7477a1680f67dde2f07e0a379f798d777cad8836" + }, + { + "path": "webp/azure-dns.webp", + "mode": "100644", + "type": "blob", + "sha": "c89e7788a64c81ab338e97109fcbbc06e682372d", + "size": 108336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c89e7788a64c81ab338e97109fcbbc06e682372d" + }, + { + "path": "webp/azure.webp", + "mode": "100644", + "type": "blob", + "sha": "4a3a9c3f6ce2509987891dc00a7da709fad9c32a", + "size": 26912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a3a9c3f6ce2509987891dc00a7da709fad9c32a" + }, + { + "path": "webp/bab-technologie-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "10a20a6ac7f99ff66a77cbf8201a18a7a4d135de", + "size": 8596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10a20a6ac7f99ff66a77cbf8201a18a7a4d135de" + }, + { + "path": "webp/bab-technologie.webp", + "mode": "100644", + "type": "blob", + "sha": "f1074d9b491a587fa438d5076579e06f5618ce8f", + "size": 8590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1074d9b491a587fa438d5076579e06f5618ce8f" + }, + { + "path": "webp/babybuddy.webp", + "mode": "100644", + "type": "blob", + "sha": "6163e61d35cb56e365a8b10679b63b2fb504a7d6", + "size": 45854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6163e61d35cb56e365a8b10679b63b2fb504a7d6" + }, + { + "path": "webp/backblaze.webp", + "mode": "100644", + "type": "blob", + "sha": "55d1c646f5673ba819a24ab73156efbacfe66c31", + "size": 38614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55d1c646f5673ba819a24ab73156efbacfe66c31" + }, + { + "path": "webp/backrest-light.webp", + "mode": "100644", + "type": "blob", + "sha": "180b2b1d1e9cd3b1a325f9d6b4fceb24e6a62924", + "size": 7868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/180b2b1d1e9cd3b1a325f9d6b4fceb24e6a62924" + }, + { + "path": "webp/backrest.webp", + "mode": "100644", + "type": "blob", + "sha": "8402903eabf804eda7617f994fdb8131ba11a083", + "size": 7862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8402903eabf804eda7617f994fdb8131ba11a083" + }, + { + "path": "webp/bacula.webp", + "mode": "100644", + "type": "blob", + "sha": "7aea8baf3c35645d5e1e6eee5733032df3ff9fe9", + "size": 17256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aea8baf3c35645d5e1e6eee5733032df3ff9fe9" + }, + { + "path": "webp/badge.webp", + "mode": "100644", + "type": "blob", + "sha": "6ad540b83ee0bc5493eb6e7518521688544cc6f5", + "size": 31710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ad540b83ee0bc5493eb6e7518521688544cc6f5" + }, + { + "path": "webp/baikal.webp", + "mode": "100644", + "type": "blob", + "sha": "10fd2290540fc32178176932fa01a7a433081242", + "size": 15400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10fd2290540fc32178176932fa01a7a433081242" + }, + { + "path": "webp/bale.webp", + "mode": "100644", + "type": "blob", + "sha": "853ac074ac699d6da6c72de3042c75584a46a79a", + "size": 47884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/853ac074ac699d6da6c72de3042c75584a46a79a" + }, + { + "path": "webp/balena-cloud.webp", + "mode": "100644", + "type": "blob", + "sha": "52625bf51d372fdbad9b56cc4d65c8a6d24363b8", + "size": 41316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52625bf51d372fdbad9b56cc4d65c8a6d24363b8" + }, + { + "path": "webp/balena-etcher.webp", + "mode": "100644", + "type": "blob", + "sha": "049411e1079f941b3d7de078c533623a0f86f50d", + "size": 44248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/049411e1079f941b3d7de078c533623a0f86f50d" + }, + { + "path": "webp/ballerina.webp", + "mode": "100644", + "type": "blob", + "sha": "8432838d235d54dcacd396a76ef017c96ca8d52f", + "size": 12442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8432838d235d54dcacd396a76ef017c96ca8d52f" + }, + { + "path": "webp/bandcamp.webp", + "mode": "100644", + "type": "blob", + "sha": "1995a071d83314c08d89313e7091cd9a32412a65", + "size": 13804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1995a071d83314c08d89313e7091cd9a32412a65" + }, + { + "path": "webp/bar-assistant.webp", + "mode": "100644", + "type": "blob", + "sha": "5f7734e5d8df43b776d0d1f0993d0da7abe836b6", + "size": 31156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f7734e5d8df43b776d0d1f0993d0da7abe836b6" + }, + { + "path": "webp/barcodebuddy.webp", + "mode": "100644", + "type": "blob", + "sha": "0662b5d4663a9b5acfda6dea9a50a7f323812d17", + "size": 19970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0662b5d4663a9b5acfda6dea9a50a7f323812d17" + }, + { + "path": "webp/baserow.webp", + "mode": "100644", + "type": "blob", + "sha": "fd345dc52c684c9f538fefaec1e2f7dbb801011a", + "size": 9342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd345dc52c684c9f538fefaec1e2f7dbb801011a" + }, + { + "path": "webp/basilisk.webp", + "mode": "100644", + "type": "blob", + "sha": "28ab0423e81d79c517cf1147652e5df149f5d356", + "size": 211718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28ab0423e81d79c517cf1147652e5df149f5d356" + }, + { + "path": "webp/bastillion.webp", + "mode": "100644", + "type": "blob", + "sha": "335168eaca756c7e26c6cf38a756a8ea3947eb27", + "size": 5886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/335168eaca756c7e26c6cf38a756a8ea3947eb27" + }, + { + "path": "webp/batocera-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "d1fc571f582630f6853e98018104045054af8591", + "size": 117792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1fc571f582630f6853e98018104045054af8591" + }, + { + "path": "webp/bazarr-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "0f1c91d552c9bc29789c59cd222cfcedda4c80f9", + "size": 4158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f1c91d552c9bc29789c59cd222cfcedda4c80f9" + }, + { + "path": "webp/bazarr.webp", + "mode": "100644", + "type": "blob", + "sha": "42f2386f5ed7543cebc96b80e7da0c13f5cfd9ad", + "size": 16168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42f2386f5ed7543cebc96b80e7da0c13f5cfd9ad" + }, + { + "path": "webp/bazecor.webp", + "mode": "100644", + "type": "blob", + "sha": "511376206233e0bae9cee59b2e979ea13d990947", + "size": 46712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/511376206233e0bae9cee59b2e979ea13d990947" + }, + { + "path": "webp/be-quiet.webp", + "mode": "100644", + "type": "blob", + "sha": "2dbf6cd1500fe65b3f467b0471911da19fac004c", + "size": 29306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dbf6cd1500fe65b3f467b0471911da19fac004c" + }, + { + "path": "webp/beaver-habit-tracker-light.webp", + "mode": "100644", + "type": "blob", + "sha": "53c85107464aed03b58c43fe9d3b85578abb8e4c", + "size": 9494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53c85107464aed03b58c43fe9d3b85578abb8e4c" + }, + { + "path": "webp/beaver-habit-tracker.webp", + "mode": "100644", + "type": "blob", + "sha": "a50141c0c9b1912dd9379a5767326e65a58eaa42", + "size": 6786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a50141c0c9b1912dd9379a5767326e65a58eaa42" + }, + { + "path": "webp/bechtle.webp", + "mode": "100644", + "type": "blob", + "sha": "8fb16a6056f9f44cacec420871ee968ea10ee338", + "size": 27154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fb16a6056f9f44cacec420871ee968ea10ee338" + }, + { + "path": "webp/beef-light.webp", + "mode": "100644", + "type": "blob", + "sha": "650ae17172e6a5e4f79cdce0b061c88bd5780ec9", + "size": 47214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/650ae17172e6a5e4f79cdce0b061c88bd5780ec9" + }, + { + "path": "webp/beef.webp", + "mode": "100644", + "type": "blob", + "sha": "cd8a1824e73b5938330c355300cb288179a6872a", + "size": 44558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd8a1824e73b5938330c355300cb288179a6872a" + }, + { + "path": "webp/beets.webp", + "mode": "100644", + "type": "blob", + "sha": "6411096677a2fd664bc87b2a75959a70dbbe0cd0", + "size": 122514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6411096677a2fd664bc87b2a75959a70dbbe0cd0" + }, + { + "path": "webp/benotes.webp", + "mode": "100644", + "type": "blob", + "sha": "6c0b6f44750ef68d47f0b9b8e069f49f6f004ebf", + "size": 25806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c0b6f44750ef68d47f0b9b8e069f49f6f004ebf" + }, + { + "path": "webp/bentopdf.webp", + "mode": "100644", + "type": "blob", + "sha": "6c7d8493ebd58a03b3fe7b96bcf8e0de940207a2", + "size": 16758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c7d8493ebd58a03b3fe7b96bcf8e0de940207a2" + }, + { + "path": "webp/beszel-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a8e21325d4745705dbb5096ca07bfe2cd298c9d7", + "size": 20060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8e21325d4745705dbb5096ca07bfe2cd298c9d7" + }, + { + "path": "webp/beszel.webp", + "mode": "100644", + "type": "blob", + "sha": "a8e21325d4745705dbb5096ca07bfe2cd298c9d7", + "size": 20060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8e21325d4745705dbb5096ca07bfe2cd298c9d7" + }, + { + "path": "webp/betanin.webp", + "mode": "100644", + "type": "blob", + "sha": "c4118a6dc007e856fb2a3a366306039a9db62628", + "size": 6776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4118a6dc007e856fb2a3a366306039a9db62628" + }, + { + "path": "webp/bewcloud.webp", + "mode": "100644", + "type": "blob", + "sha": "13c0ec9f0e9287dad3c2d309fa118aa433641f5b", + "size": 26152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13c0ec9f0e9287dad3c2d309fa118aa433641f5b" + }, + { + "path": "webp/bible-gateway.webp", + "mode": "100644", + "type": "blob", + "sha": "3ecfae2ed4e1a6b274525083a66e25b0fc0dc743", + "size": 48054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ecfae2ed4e1a6b274525083a66e25b0fc0dc743" + }, + { + "path": "webp/bibliogram.webp", + "mode": "100644", + "type": "blob", + "sha": "008a043c4eaa8ec30c253f431cacaa8504bf807f", + "size": 38168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/008a043c4eaa8ec30c253f431cacaa8504bf807f" + }, + { + "path": "webp/biblioreads-light.webp", + "mode": "100644", + "type": "blob", + "sha": "66828e7c99f4e04df06ce041b6bacc389a7c4045", + "size": 7704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66828e7c99f4e04df06ce041b6bacc389a7c4045" + }, + { + "path": "webp/biblioreads.webp", + "mode": "100644", + "type": "blob", + "sha": "99cbd5a2c7d50de5b870f7ea582595b32f30766d", + "size": 7700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99cbd5a2c7d50de5b870f7ea582595b32f30766d" + }, + { + "path": "webp/biedronka.webp", + "mode": "100644", + "type": "blob", + "sha": "c32c9674d386dace5cae1ff42dae1fd49cc3b8ba", + "size": 78692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c32c9674d386dace5cae1ff42dae1fd49cc3b8ba" + }, + { + "path": "webp/bigcapital.webp", + "mode": "100644", + "type": "blob", + "sha": "062a2211e579802d52b32a52da19637e3a5ab9f2", + "size": 11094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/062a2211e579802d52b32a52da19637e3a5ab9f2" + }, + { + "path": "webp/bilibili.webp", + "mode": "100644", + "type": "blob", + "sha": "8f37b1685f71de5ce69075272f3964264613e704", + "size": 60542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f37b1685f71de5ce69075272f3964264613e704" + }, + { + "path": "webp/bing.webp", + "mode": "100644", + "type": "blob", + "sha": "31364481b37b08a505feb03e2bcb892ec26d465b", + "size": 30406, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31364481b37b08a505feb03e2bcb892ec26d465b" + }, + { + "path": "webp/binner-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "2d107fe94fd230309fc15c97f8a4a1cf03762371", + "size": 5372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d107fe94fd230309fc15c97f8a4a1cf03762371" + }, + { + "path": "webp/binner.webp", + "mode": "100644", + "type": "blob", + "sha": "9175625b713deb957b6f3ab2e1c7c1ff520ef730", + "size": 7186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9175625b713deb957b6f3ab2e1c7c1ff520ef730" + }, + { + "path": "webp/birdnet.webp", + "mode": "100644", + "type": "blob", + "sha": "ecaab129d0fc3a13eb16d2d7721a1bd82d98f362", + "size": 12750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecaab129d0fc3a13eb16d2d7721a1bd82d98f362" + }, + { + "path": "webp/bitbucket.webp", + "mode": "100644", + "type": "blob", + "sha": "fc5d6b6c4edcbd075180e646a5855dd8adde454d", + "size": 16366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc5d6b6c4edcbd075180e646a5855dd8adde454d" + }, + { + "path": "webp/bitcoin.webp", + "mode": "100644", + "type": "blob", + "sha": "2142218da2eb1b3ceb37dbe038668453b3df4cb3", + "size": 48932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2142218da2eb1b3ceb37dbe038668453b3df4cb3" + }, + { + "path": "webp/bithumen.webp", + "mode": "100644", + "type": "blob", + "sha": "50d803e0b2886f8f454f3a854e1a56f52d7b40d2", + "size": 12678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50d803e0b2886f8f454f3a854e1a56f52d7b40d2" + }, + { + "path": "webp/bitmagnet.webp", + "mode": "100644", + "type": "blob", + "sha": "f17b21f491abdcb84baaa594dc9da5e4464fd4b4", + "size": 13764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f17b21f491abdcb84baaa594dc9da5e4464fd4b4" + }, + { + "path": "webp/bitwarden.webp", + "mode": "100644", + "type": "blob", + "sha": "c4800c120d8eecb97e132bb1833eeeece0e96a7d", + "size": 22446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4800c120d8eecb97e132bb1833eeeece0e96a7d" + }, + { + "path": "webp/bitwig-studio-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "896d331eb79824eb7348ae7d86ca94aff9c22ab0", + "size": 51726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/896d331eb79824eb7348ae7d86ca94aff9c22ab0" + }, + { + "path": "webp/bitwig-studio.webp", + "mode": "100644", + "type": "blob", + "sha": "765d4c2759a54df49badf5863f06fdef25441421", + "size": 31408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/765d4c2759a54df49badf5863f06fdef25441421" + }, + { + "path": "webp/blocky.webp", + "mode": "100644", + "type": "blob", + "sha": "d7eafd733f4493a8d8cf65f2f1cccf39cfb7a1d0", + "size": 85014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7eafd733f4493a8d8cf65f2f1cccf39cfb7a1d0" + }, + { + "path": "webp/blogger.webp", + "mode": "100644", + "type": "blob", + "sha": "218ba512ae890c5b77284a282e6c1fe4a27bc318", + "size": 25566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/218ba512ae890c5b77284a282e6c1fe4a27bc318" + }, + { + "path": "webp/blue-iris.webp", + "mode": "100644", + "type": "blob", + "sha": "2f98d59dc39583d273cd654fdb1babaf0dc44c7f", + "size": 127916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f98d59dc39583d273cd654fdb1babaf0dc44c7f" + }, + { + "path": "webp/blue-letter-bible.webp", + "mode": "100644", + "type": "blob", + "sha": "669c49c02a9b871fd2e3424748a76a3dd9b53133", + "size": 43144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/669c49c02a9b871fd2e3424748a76a3dd9b53133" + }, + { + "path": "webp/bluesky.webp", + "mode": "100644", + "type": "blob", + "sha": "1a9faff1650435de282b201379db3fb12e8fb85f", + "size": 20718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a9faff1650435de282b201379db3fb12e8fb85f" + }, + { + "path": "webp/bluetooth.webp", + "mode": "100644", + "type": "blob", + "sha": "879ca91a14af61341436e07de344dceaa7fe6446", + "size": 25090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/879ca91a14af61341436e07de344dceaa7fe6446" + }, + { + "path": "webp/bluewallet.webp", + "mode": "100644", + "type": "blob", + "sha": "8f3d1dcc6cbfa39e507fd53565cfe388c3a78983", + "size": 36478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f3d1dcc6cbfa39e507fd53565cfe388c3a78983" + }, + { + "path": "webp/bobcat-miner.webp", + "mode": "100644", + "type": "blob", + "sha": "8f9af68f6c1154810619348a225d1ec0c8cdcfd3", + "size": 43580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f9af68f6c1154810619348a225d1ec0c8cdcfd3" + }, + { + "path": "webp/boinc.webp", + "mode": "100644", + "type": "blob", + "sha": "ad8d7a251223026433155a3e4fdb4d46c4417b23", + "size": 30846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad8d7a251223026433155a3e4fdb4d46c4417b23" + }, + { + "path": "webp/book-lore.webp", + "mode": "100644", + "type": "blob", + "sha": "8653ad668151032b50c46127e9712ba3b2d64cd1", + "size": 11008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8653ad668151032b50c46127e9712ba3b2d64cd1" + }, + { + "path": "webp/booklogr-light.webp", + "mode": "100644", + "type": "blob", + "sha": "4ace7d24a1f5a5ec021c6b3c0eb45c6d67d0f600", + "size": 17088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ace7d24a1f5a5ec021c6b3c0eb45c6d67d0f600" + }, + { + "path": "webp/booklogr.webp", + "mode": "100644", + "type": "blob", + "sha": "ca7c245b391422aa532fc36c2c702d708ebfbefa", + "size": 17658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca7c245b391422aa532fc36c2c702d708ebfbefa" + }, + { + "path": "webp/booksonic.webp", + "mode": "100644", + "type": "blob", + "sha": "8c9a0f451b18626195e180e177c67d7d52e84367", + "size": 26892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c9a0f451b18626195e180e177c67d7d52e84367" + }, + { + "path": "webp/bookstack.webp", + "mode": "100644", + "type": "blob", + "sha": "272e9a1cec2f44a16e7e4713c65fc74a4f316083", + "size": 127090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/272e9a1cec2f44a16e7e4713c65fc74a4f316083" + }, + { + "path": "webp/bootstrap.webp", + "mode": "100644", + "type": "blob", + "sha": "aed63c4ce53d245196e5d3dc1d41697ea04f0203", + "size": 33870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aed63c4ce53d245196e5d3dc1d41697ea04f0203" + }, + { + "path": "webp/borg.webp", + "mode": "100644", + "type": "blob", + "sha": "dded113b1919b445b2645a7e7015a46b6953afb7", + "size": 4698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dded113b1919b445b2645a7e7015a46b6953afb7" + }, + { + "path": "webp/borgmatic-light.webp", + "mode": "100644", + "type": "blob", + "sha": "33013a82ba6f6a281c3897d7dc76635449e3ce0a", + "size": 8788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33013a82ba6f6a281c3897d7dc76635449e3ce0a" + }, + { + "path": "webp/borgmatic.webp", + "mode": "100644", + "type": "blob", + "sha": "c5f013b2483a83f35c9d1a090b68c23a385b6008", + "size": 8784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5f013b2483a83f35c9d1a090b68c23a385b6008" + }, + { + "path": "webp/bottom-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "b19c832e646cb6448680b7a78049b9cd7e20c671", + "size": 74294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b19c832e646cb6448680b7a78049b9cd7e20c671" + }, + { + "path": "webp/bottom.webp", + "mode": "100644", + "type": "blob", + "sha": "7366027d2b424d2ba90370721606c9527411173e", + "size": 73608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7366027d2b424d2ba90370721606c9527411173e" + }, + { + "path": "webp/boundary.webp", + "mode": "100644", + "type": "blob", + "sha": "e65a3325b2b6bc566b1efce82b00a5d181a59171", + "size": 11000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e65a3325b2b6bc566b1efce82b00a5d181a59171" + }, + { + "path": "webp/box.webp", + "mode": "100644", + "type": "blob", + "sha": "b2c3554be8e7f3ae8fcda7344c8ae4ebd0860c7e", + "size": 37060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2c3554be8e7f3ae8fcda7344c8ae4ebd0860c7e" + }, + { + "path": "webp/boxarr.webp", + "mode": "100644", + "type": "blob", + "sha": "f45fc7539433bd7b242f0544e79d24f5f2c9335f", + "size": 156146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f45fc7539433bd7b242f0544e79d24f5f2c9335f" + }, + { + "path": "webp/brave-dev.webp", + "mode": "100644", + "type": "blob", + "sha": "a17fb4263a43cce58a035d8c4cc76333fbd3abaf", + "size": 61810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a17fb4263a43cce58a035d8c4cc76333fbd3abaf" + }, + { + "path": "webp/brave.webp", + "mode": "100644", + "type": "blob", + "sha": "f8d2eaf1c039d7e4da42188be30da6c676215c62", + "size": 58622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8d2eaf1c039d7e4da42188be30da6c676215c62" + }, + { + "path": "webp/brewpi.webp", + "mode": "100644", + "type": "blob", + "sha": "da5fd2e71a5e0a9bd30592393af4b38f8ae275b9", + "size": 31988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da5fd2e71a5e0a9bd30592393af4b38f8ae275b9" + }, + { + "path": "webp/brick-tracker.webp", + "mode": "100644", + "type": "blob", + "sha": "eb53349b0e682ce09adb3ed0fc415e30a18f234d", + "size": 43718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb53349b0e682ce09adb3ed0fc415e30a18f234d" + }, + { + "path": "webp/bright-move.webp", + "mode": "100644", + "type": "blob", + "sha": "fa99a6fab19204cfdfc2feeec4194758e1dea271", + "size": 44894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa99a6fab19204cfdfc2feeec4194758e1dea271" + }, + { + "path": "webp/brillcam.webp", + "mode": "100644", + "type": "blob", + "sha": "72d9c9f6480c3bd3fd7510c4b9b7043a4ed1d7d0", + "size": 18304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72d9c9f6480c3bd3fd7510c4b9b7043a4ed1d7d0" + }, + { + "path": "webp/broad-link.webp", + "mode": "100644", + "type": "blob", + "sha": "1f1e4556dabb389e0f26225936320a66bdeffd96", + "size": 77730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f1e4556dabb389e0f26225936320a66bdeffd96" + }, + { + "path": "webp/broadcastchannel-light.webp", + "mode": "100644", + "type": "blob", + "sha": "97d474a81cd94d3264b5af2830e9115e6eb033c2", + "size": 5420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97d474a81cd94d3264b5af2830e9115e6eb033c2" + }, + { + "path": "webp/broadcastchannel.webp", + "mode": "100644", + "type": "blob", + "sha": "b24a044d0801ebfb308790e77fc460faaf9c52d0", + "size": 5414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b24a044d0801ebfb308790e77fc460faaf9c52d0" + }, + { + "path": "webp/brocade.webp", + "mode": "100644", + "type": "blob", + "sha": "c897ee7cd548d646436415251a1434e5a051dabd", + "size": 25574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c897ee7cd548d646436415251a1434e5a051dabd" + }, + { + "path": "webp/brother.webp", + "mode": "100644", + "type": "blob", + "sha": "7d319684bd92cceab223cffacd8cc0d3ae687522", + "size": 34576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d319684bd92cceab223cffacd8cc0d3ae687522" + }, + { + "path": "webp/browserless-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a969bbb462ad7f297f89ed8414ab87493d60aadc", + "size": 3478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a969bbb462ad7f297f89ed8414ab87493d60aadc" + }, + { + "path": "webp/browserless.webp", + "mode": "100644", + "type": "blob", + "sha": "4d54e3e67987d0badebcafd639424594a5bc57b9", + "size": 3464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d54e3e67987d0badebcafd639424594a5bc57b9" + }, + { + "path": "webp/browsh.webp", + "mode": "100644", + "type": "blob", + "sha": "cc6ece842c03e1bd6df3963e548b00ee88853963", + "size": 9772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc6ece842c03e1bd6df3963e548b00ee88853963" + }, + { + "path": "webp/btcpay-server.webp", + "mode": "100644", + "type": "blob", + "sha": "38f7424fbb0e52c8556b96a4727ab39be71f5e5c", + "size": 28672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38f7424fbb0e52c8556b96a4727ab39be71f5e5c" + }, + { + "path": "webp/buddy.webp", + "mode": "100644", + "type": "blob", + "sha": "3ac6225fc152abdac5136f8ac2c14d2831ae7aa6", + "size": 24154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ac6225fc152abdac5136f8ac2c14d2831ae7aa6" + }, + { + "path": "webp/budget-board.webp", + "mode": "100644", + "type": "blob", + "sha": "5250b585000b9ccbce1efee1a2f5be05e4a5942c", + "size": 25708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5250b585000b9ccbce1efee1a2f5be05e4a5942c" + }, + { + "path": "webp/budget-zero.webp", + "mode": "100644", + "type": "blob", + "sha": "c203e48c49dc653c356aaf885ebdb5fbb4da1279", + "size": 20646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c203e48c49dc653c356aaf885ebdb5fbb4da1279" + }, + { + "path": "webp/budgetbee-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e71101903e8f61d788442217e6f43df538f056fa", + "size": 32242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e71101903e8f61d788442217e6f43df538f056fa" + }, + { + "path": "webp/budgetbee.webp", + "mode": "100644", + "type": "blob", + "sha": "bb6dc3418f2b51c010f695c0b896391cdf1d07ca", + "size": 33214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb6dc3418f2b51c010f695c0b896391cdf1d07ca" + }, + { + "path": "webp/budibase.webp", + "mode": "100644", + "type": "blob", + "sha": "2e5c498fdd654e67c0e8e9907621241876e87999", + "size": 16886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e5c498fdd654e67c0e8e9907621241876e87999" + }, + { + "path": "webp/buffalo.webp", + "mode": "100644", + "type": "blob", + "sha": "fbbfe1bdbd42b55243902f9156902d1382065dec", + "size": 20680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fbbfe1bdbd42b55243902f9156902d1382065dec" + }, + { + "path": "webp/build-better-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "6e825aa7336ffee5d0169dc583e0eb055d048633", + "size": 8984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e825aa7336ffee5d0169dc583e0eb055d048633" + }, + { + "path": "webp/build-better.webp", + "mode": "100644", + "type": "blob", + "sha": "b3e3b6056e96c0b7dcbbe4ce5bd57cc18bc206c3", + "size": 8978, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3e3b6056e96c0b7dcbbe4ce5bd57cc18bc206c3" + }, + { + "path": "webp/buildium.webp", + "mode": "100644", + "type": "blob", + "sha": "b8edf6ae5a268e748269ecdaa0926992991fbfbc", + "size": 6038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8edf6ae5a268e748269ecdaa0926992991fbfbc" + }, + { + "path": "webp/bunkerweb.webp", + "mode": "100644", + "type": "blob", + "sha": "cf77d60a49593d469a3412765ea6deb3f984c870", + "size": 18796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf77d60a49593d469a3412765ea6deb3f984c870" + }, + { + "path": "webp/bunny.webp", + "mode": "100644", + "type": "blob", + "sha": "0b7a97dafaaa1d33bfaa2f593aa7ab0e36ec21cf", + "size": 51032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b7a97dafaaa1d33bfaa2f593aa7ab0e36ec21cf" + }, + { + "path": "webp/buxfer.webp", + "mode": "100644", + "type": "blob", + "sha": "e88b89cbd4e421c8775c3c90d50857262794aa6b", + "size": 60266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e88b89cbd4e421c8775c3c90d50857262794aa6b" + }, + { + "path": "webp/bytestash.webp", + "mode": "100644", + "type": "blob", + "sha": "a7bd4b88c0922154a14772949cc63b736445992e", + "size": 25096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7bd4b88c0922154a14772949cc63b736445992e" + }, + { + "path": "webp/c.webp", + "mode": "100644", + "type": "blob", + "sha": "3caee3e6a7b4df9189c5028035605baa53dae865", + "size": 47128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3caee3e6a7b4df9189c5028035605baa53dae865" + }, + { + "path": "webp/cabernet.webp", + "mode": "100644", + "type": "blob", + "sha": "723eaf708cbe9495f55a2efcc97c9670edc89f2a", + "size": 97142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/723eaf708cbe9495f55a2efcc97c9670edc89f2a" + }, + { + "path": "webp/cabot.webp", + "mode": "100644", + "type": "blob", + "sha": "578349a30748d6b1f0a5c75af7f2488520df3a96", + "size": 11144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/578349a30748d6b1f0a5c75af7f2488520df3a96" + }, + { + "path": "webp/cachyos-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "a5d838421f9b29125d10d65a9868d5530e0c6043", + "size": 62368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5d838421f9b29125d10d65a9868d5530e0c6043" + }, + { + "path": "webp/cacti.webp", + "mode": "100644", + "type": "blob", + "sha": "ea29e40c01ddd1ecd5270bd7da67dca4d126a4e5", + "size": 77720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea29e40c01ddd1ecd5270bd7da67dca4d126a4e5" + }, + { + "path": "webp/caddy.webp", + "mode": "100644", + "type": "blob", + "sha": "dea4b75bebc942207f67700509fb30f11dec7dcc", + "size": 44848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dea4b75bebc942207f67700509fb30f11dec7dcc" + }, + { + "path": "webp/cadvisor.webp", + "mode": "100644", + "type": "blob", + "sha": "f6170434912ef6d94892bf36fe131208f59aa63e", + "size": 20120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6170434912ef6d94892bf36fe131208f59aa63e" + }, + { + "path": "webp/cal-com-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a3f0a7ac870ee7c0d205402c043378849970a923", + "size": 7728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3f0a7ac870ee7c0d205402c043378849970a923" + }, + { + "path": "webp/cal-com.webp", + "mode": "100644", + "type": "blob", + "sha": "7080ad2379559f7b505d6c8995dd0d260086a94f", + "size": 7970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7080ad2379559f7b505d6c8995dd0d260086a94f" + }, + { + "path": "webp/calckey.webp", + "mode": "100644", + "type": "blob", + "sha": "6b1d100996a2e10fab0432cb82b8d93d80890308", + "size": 14868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b1d100996a2e10fab0432cb82b8d93d80890308" + }, + { + "path": "webp/caldera.webp", + "mode": "100644", + "type": "blob", + "sha": "cc9bf26d2d002567bb9134156288e6a24090d93a", + "size": 12918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc9bf26d2d002567bb9134156288e6a24090d93a" + }, + { + "path": "webp/calibre-web-automated-book-downloader.webp", + "mode": "100644", + "type": "blob", + "sha": "9eefae9693984b184f697f83b6dc8e008e5c2040", + "size": 109060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eefae9693984b184f697f83b6dc8e008e5c2040" + }, + { + "path": "webp/calibre-web.webp", + "mode": "100644", + "type": "blob", + "sha": "04fcc1157e999352e5025d7e59b82f45fe1dfda9", + "size": 34230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04fcc1157e999352e5025d7e59b82f45fe1dfda9" + }, + { + "path": "webp/calibre.webp", + "mode": "100644", + "type": "blob", + "sha": "b6c259393ac07bb10d02354d90dce9a3656ea1df", + "size": 54386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6c259393ac07bb10d02354d90dce9a3656ea1df" + }, + { + "path": "webp/camera-ui.webp", + "mode": "100644", + "type": "blob", + "sha": "4fd3936f8db18e99074b4fb3a68943e911cd1873", + "size": 8412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fd3936f8db18e99074b4fb3a68943e911cd1873" + }, + { + "path": "webp/canonical.webp", + "mode": "100644", + "type": "blob", + "sha": "58f6656fe301c9245053ffc36769120505f50bab", + "size": 32866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58f6656fe301c9245053ffc36769120505f50bab" + }, + { + "path": "webp/canvas-lms.webp", + "mode": "100644", + "type": "blob", + "sha": "20ef26ed07880cb4042feaa7df3243e9e8851421", + "size": 38148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20ef26ed07880cb4042feaa7df3243e9e8851421" + }, + { + "path": "webp/cap-cut-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "3f4852d9d42a5c2f881262a2bf98e71b9c440555", + "size": 5220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f4852d9d42a5c2f881262a2bf98e71b9c440555" + }, + { + "path": "webp/cap-cut.webp", + "mode": "100644", + "type": "blob", + "sha": "5e553e9cc6d350c8316518c49f0d65fbc7d602c5", + "size": 5204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e553e9cc6d350c8316518c49f0d65fbc7d602c5" + }, + { + "path": "webp/capacities-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "1f892bcef438e61ef06a103be4ac11cc843764c2", + "size": 8148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f892bcef438e61ef06a103be4ac11cc843764c2" + }, + { + "path": "webp/capacities.webp", + "mode": "100644", + "type": "blob", + "sha": "ee817db904687824c4a5c2b9b612a672a60c64bc", + "size": 8144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee817db904687824c4a5c2b9b612a672a60c64bc" + }, + { + "path": "webp/caprover.webp", + "mode": "100644", + "type": "blob", + "sha": "3c82bd9c9396d3e3ce070ed10b4970471f020700", + "size": 75666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c82bd9c9396d3e3ce070ed10b4970471f020700" + }, + { + "path": "webp/cardigann-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e2f2af4e09b6015a4575ae2658e4478ed0fb5b3a", + "size": 876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2f2af4e09b6015a4575ae2658e4478ed0fb5b3a" + }, + { + "path": "webp/cardigann.webp", + "mode": "100644", + "type": "blob", + "sha": "52f9f3afa890f4678f020c12e5fa5164e66022fc", + "size": 872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52f9f3afa890f4678f020c12e5fa5164e66022fc" + }, + { + "path": "webp/carrefour.webp", + "mode": "100644", + "type": "blob", + "sha": "22ff6dbc2e1f17688f3aac5785d2773ecfb7f210", + "size": 43050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22ff6dbc2e1f17688f3aac5785d2773ecfb7f210" + }, + { + "path": "webp/casaos.webp", + "mode": "100644", + "type": "blob", + "sha": "02b23f4f2b1df51301c2a8b18a6e2fc5aff63803", + "size": 41080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02b23f4f2b1df51301c2a8b18a6e2fc5aff63803" + }, + { + "path": "webp/castopod.webp", + "mode": "100644", + "type": "blob", + "sha": "f2a738367df1f093d644cc21b834d3921c0766a5", + "size": 41418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2a738367df1f093d644cc21b834d3921c0766a5" + }, + { + "path": "webp/cc-light.webp", + "mode": "100644", + "type": "blob", + "sha": "437ed9a1e014e8a42a464ae416957c4ed6666397", + "size": 6150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/437ed9a1e014e8a42a464ae416957c4ed6666397" + }, + { + "path": "webp/cc.webp", + "mode": "100644", + "type": "blob", + "sha": "7d200e726be9e518df49617a87e3b67d1b855384", + "size": 6146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d200e726be9e518df49617a87e3b67d1b855384" + }, + { + "path": "webp/centos.webp", + "mode": "100644", + "type": "blob", + "sha": "c43453a671cc7b172fd6475e2621fca81a5beee0", + "size": 71296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c43453a671cc7b172fd6475e2621fca81a5beee0" + }, + { + "path": "webp/ceph.webp", + "mode": "100644", + "type": "blob", + "sha": "7a35f3e7bd0e55045cc562c95a0af332179c634c", + "size": 39380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a35f3e7bd0e55045cc562c95a0af332179c634c" + }, + { + "path": "webp/cert-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "93c314a399e1eb4421ed81e2746d81fd8fae487e", + "size": 107874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93c314a399e1eb4421ed81e2746d81fd8fae487e" + }, + { + "path": "webp/cert-warden-light.webp", + "mode": "100644", + "type": "blob", + "sha": "93cdd781205c00ff85bdbfe2e049b68813f3c7f8", + "size": 55968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93cdd781205c00ff85bdbfe2e049b68813f3c7f8" + }, + { + "path": "webp/cert-warden.webp", + "mode": "100644", + "type": "blob", + "sha": "52aacc613ded66e7aa47bd98db524aef6d3cb94b", + "size": 62348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52aacc613ded66e7aa47bd98db524aef6d3cb94b" + }, + { + "path": "webp/cessna.webp", + "mode": "100644", + "type": "blob", + "sha": "5c3cc3b56a7748ed33478714ea9682939dd53942", + "size": 17436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c3cc3b56a7748ed33478714ea9682939dd53942" + }, + { + "path": "webp/chainguard.webp", + "mode": "100644", + "type": "blob", + "sha": "f5849f7182a4db2ef3b962a293988da64100f63a", + "size": 56368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5849f7182a4db2ef3b962a293988da64100f63a" + }, + { + "path": "webp/changedetection.webp", + "mode": "100644", + "type": "blob", + "sha": "dd7b855476809b6a9cd8fe46a2aa779375f4ac8a", + "size": 49142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd7b855476809b6a9cd8fe46a2aa779375f4ac8a" + }, + { + "path": "webp/channels-dvr.webp", + "mode": "100644", + "type": "blob", + "sha": "e688ca365d1559f8b526fc978ae1429345822492", + "size": 10316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e688ca365d1559f8b526fc978ae1429345822492" + }, + { + "path": "webp/chaptarr.webp", + "mode": "100644", + "type": "blob", + "sha": "0d5e53515486efde7aa367cf1fa8274c0ae017ec", + "size": 73018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d5e53515486efde7aa367cf1fa8274c0ae017ec" + }, + { + "path": "webp/chart-db.webp", + "mode": "100644", + "type": "blob", + "sha": "732b4013e16330c3803198a5cc64132d2db317f8", + "size": 9170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/732b4013e16330c3803198a5cc64132d2db317f8" + }, + { + "path": "webp/chatbetter.webp", + "mode": "100644", + "type": "blob", + "sha": "4f509bb36053d2130e036d7738f57f21d7d6858e", + "size": 57236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f509bb36053d2130e036d7738f57f21d7d6858e" + }, + { + "path": "webp/chatgpt.webp", + "mode": "100644", + "type": "blob", + "sha": "6e39b8b6e75d563bf0256f8254509b1db5439b90", + "size": 60176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e39b8b6e75d563bf0256f8254509b1db5439b90" + }, + { + "path": "webp/chatpad-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "86b946a95d33300da045df5da075a85b449b9aae", + "size": 24952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86b946a95d33300da045df5da075a85b449b9aae" + }, + { + "path": "webp/chatwoot.webp", + "mode": "100644", + "type": "blob", + "sha": "9aad4fbd4199cc6eec4272b611b247b9c66c430e", + "size": 23880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9aad4fbd4199cc6eec4272b611b247b9c66c430e" + }, + { + "path": "webp/check-cle.webp", + "mode": "100644", + "type": "blob", + "sha": "586430dcb6516973d5a84e979072102b0d6d7750", + "size": 29570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/586430dcb6516973d5a84e979072102b0d6d7750" + }, + { + "path": "webp/checkmate.webp", + "mode": "100644", + "type": "blob", + "sha": "6910d35934c68ef9b059f77ed23c727b5b123487", + "size": 35828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6910d35934c68ef9b059f77ed23c727b5b123487" + }, + { + "path": "webp/checkmk.webp", + "mode": "100644", + "type": "blob", + "sha": "afa892e2dbefc0b46182773f1892222c6fe0cc7b", + "size": 16170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afa892e2dbefc0b46182773f1892222c6fe0cc7b" + }, + { + "path": "webp/cherry.webp", + "mode": "100644", + "type": "blob", + "sha": "226e990dde92214bf049984319944eb573b06158", + "size": 78204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/226e990dde92214bf049984319944eb573b06158" + }, + { + "path": "webp/chess.webp", + "mode": "100644", + "type": "blob", + "sha": "ea4d147d0090f39eb4bdb61b4c4347d1fcf219d5", + "size": 19630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea4d147d0090f39eb4bdb61b4c4347d1fcf219d5" + }, + { + "path": "webp/chevereto.webp", + "mode": "100644", + "type": "blob", + "sha": "6ca3e206d578a77729c4b3a48840fb42743e27f1", + "size": 23402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ca3e206d578a77729c4b3a48840fb42743e27f1" + }, + { + "path": "webp/chhoto-url.webp", + "mode": "100644", + "type": "blob", + "sha": "9df5650e71f20469fc656e82111643bbdffc70e2", + "size": 38792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9df5650e71f20469fc656e82111643bbdffc70e2" + }, + { + "path": "webp/chibisafe.webp", + "mode": "100644", + "type": "blob", + "sha": "2879d24903e02e8e08b2e6f2b260e0d93acdf4e8", + "size": 96702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2879d24903e02e8e08b2e6f2b260e0d93acdf4e8" + }, + { + "path": "webp/chiefonboarding.webp", + "mode": "100644", + "type": "blob", + "sha": "b99a4228bacbe098e6ff3a66fb5c460e8ad0c86a", + "size": 31618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b99a4228bacbe098e6ff3a66fb5c460e8ad0c86a" + }, + { + "path": "webp/chirpy.webp", + "mode": "100644", + "type": "blob", + "sha": "df8696958c68028f697bd0ddfb0ed4d5959aebc5", + "size": 14652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df8696958c68028f697bd0ddfb0ed4d5959aebc5" + }, + { + "path": "webp/chowdown.webp", + "mode": "100644", + "type": "blob", + "sha": "edda9665dfb973b5f2ec21910dc4a0ec08524f30", + "size": 62714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edda9665dfb973b5f2ec21910dc4a0ec08524f30" + }, + { + "path": "webp/chroma.webp", + "mode": "100644", + "type": "blob", + "sha": "2a7dfce589d0c8606ea8b31e0899ac3ae4d370ab", + "size": 32164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a7dfce589d0c8606ea8b31e0899ac3ae4d370ab" + }, + { + "path": "webp/chrome-beta.webp", + "mode": "100644", + "type": "blob", + "sha": "395241bacb44bc5d9b91925a042909915e228213", + "size": 57114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/395241bacb44bc5d9b91925a042909915e228213" + }, + { + "path": "webp/chrome-canary.webp", + "mode": "100644", + "type": "blob", + "sha": "d0a3040226acb4902c9aab4a73824563cb1ea11a", + "size": 55836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0a3040226acb4902c9aab4a73824563cb1ea11a" + }, + { + "path": "webp/chrome-dev.webp", + "mode": "100644", + "type": "blob", + "sha": "df055046920f069e9f4f22ac0541eacca04d8299", + "size": 46722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df055046920f069e9f4f22ac0541eacca04d8299" + }, + { + "path": "webp/chrome-devtools.webp", + "mode": "100644", + "type": "blob", + "sha": "6341ef2d968bf804c4f568922ea61c9b22d8df49", + "size": 52, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6341ef2d968bf804c4f568922ea61c9b22d8df49" + }, + { + "path": "webp/chrome-remote-desktop.webp", + "mode": "100644", + "type": "blob", + "sha": "d3f26da5e74f12accd62419b0b9ae4087ba91d54", + "size": 26236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3f26da5e74f12accd62419b0b9ae4087ba91d54" + }, + { + "path": "webp/chrome.webp", + "mode": "100644", + "type": "blob", + "sha": "b9a6704c42de3b8af5b83ce4f1650f416871bb09", + "size": 60014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9a6704c42de3b8af5b83ce4f1650f416871bb09" + }, + { + "path": "webp/chromecast-light.webp", + "mode": "100644", + "type": "blob", + "sha": "7e8d21fade1bb704122d7e784731c6de0efe38ba", + "size": 3272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e8d21fade1bb704122d7e784731c6de0efe38ba" + }, + { + "path": "webp/chromecast.webp", + "mode": "100644", + "type": "blob", + "sha": "2336ec11fc74d00ac569ccd3abf519f15b88139e", + "size": 3274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2336ec11fc74d00ac569ccd3abf519f15b88139e" + }, + { + "path": "webp/chromium.webp", + "mode": "100644", + "type": "blob", + "sha": "ad88ca0d7ff9afb22c76189f23f23c3c92d7fa88", + "size": 49518, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad88ca0d7ff9afb22c76189f23f23c3c92d7fa88" + }, + { + "path": "webp/chronograf.webp", + "mode": "100644", + "type": "blob", + "sha": "9b750e4ed43bd849484d6b2700fd1bab3e7d41c0", + "size": 31262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b750e4ed43bd849484d6b2700fd1bab3e7d41c0" + }, + { + "path": "webp/cilium-light.webp", + "mode": "100644", + "type": "blob", + "sha": "aa3fad4a31bb1149b748a71873958200a5e17cbc", + "size": 49480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa3fad4a31bb1149b748a71873958200a5e17cbc" + }, + { + "path": "webp/cilium.webp", + "mode": "100644", + "type": "blob", + "sha": "b98cb711ab1ba95b208727bbe904c9b2e06dc695", + "size": 65786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b98cb711ab1ba95b208727bbe904c9b2e06dc695" + }, + { + "path": "webp/cinny-light.webp", + "mode": "100644", + "type": "blob", + "sha": "78a8db885a6c9dca7ae5490782bdb6ce86588eb6", + "size": 10576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78a8db885a6c9dca7ae5490782bdb6ce86588eb6" + }, + { + "path": "webp/cinny.webp", + "mode": "100644", + "type": "blob", + "sha": "0192879281b14524a9a889f75ad2782834b8bcf7", + "size": 9860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0192879281b14524a9a889f75ad2782834b8bcf7" + }, + { + "path": "webp/ciphermail.webp", + "mode": "100644", + "type": "blob", + "sha": "4d15fa01f15ed425e95a35baf3ad9301579484a7", + "size": 24616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d15fa01f15ed425e95a35baf3ad9301579484a7" + }, + { + "path": "webp/cisco.webp", + "mode": "100644", + "type": "blob", + "sha": "69cd0d8f5a6aaebdf16a1da6e5bf052cf40e9696", + "size": 41282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69cd0d8f5a6aaebdf16a1da6e5bf052cf40e9696" + }, + { + "path": "webp/clam-av.webp", + "mode": "100644", + "type": "blob", + "sha": "f6e9e7a8abc5cd896df5898e669cbf37177f5279", + "size": 98990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6e9e7a8abc5cd896df5898e669cbf37177f5279" + }, + { + "path": "webp/clash.webp", + "mode": "100644", + "type": "blob", + "sha": "16cdf93aae480a0a49773eab25ad98d838f7d75d", + "size": 26020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16cdf93aae480a0a49773eab25ad98d838f7d75d" + }, + { + "path": "webp/claude-ai-light.webp", + "mode": "100644", + "type": "blob", + "sha": "86c5b5751729c6d24f822fc53a222921634da275", + "size": 26260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86c5b5751729c6d24f822fc53a222921634da275" + }, + { + "path": "webp/claude-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "2183eace2d74ce8076b1b1c9067003f661bad3e2", + "size": 27172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2183eace2d74ce8076b1b1c9067003f661bad3e2" + }, + { + "path": "webp/cleanuperr.webp", + "mode": "100644", + "type": "blob", + "sha": "571c9bfbc251b59f3cc3605f1d77df15b793600a", + "size": 55910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/571c9bfbc251b59f3cc3605f1d77df15b793600a" + }, + { + "path": "webp/clickhouse.webp", + "mode": "100644", + "type": "blob", + "sha": "1d99fdbf37243afaa3195e87e2f6d3ded2c0a4b5", + "size": 948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d99fdbf37243afaa3195e87e2f6d3ded2c0a4b5" + }, + { + "path": "webp/clickup.webp", + "mode": "100644", + "type": "blob", + "sha": "996be633e086b375139569fd9c0e9d1f3c1ca0e1", + "size": 30112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/996be633e086b375139569fd9c0e9d1f3c1ca0e1" + }, + { + "path": "webp/cloud66.webp", + "mode": "100644", + "type": "blob", + "sha": "ee9925ebf01cc8cbfbf6d159c045b25554e72f8d", + "size": 69344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee9925ebf01cc8cbfbf6d159c045b25554e72f8d" + }, + { + "path": "webp/cloud9-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c03ed8d5d97675e48ffcbabf97417270ae3d983e", + "size": 36496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c03ed8d5d97675e48ffcbabf97417270ae3d983e" + }, + { + "path": "webp/cloud9.webp", + "mode": "100644", + "type": "blob", + "sha": "d7b6b050d4c95adbd521f5a78105245e6af0c598", + "size": 36768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7b6b050d4c95adbd521f5a78105245e6af0c598" + }, + { + "path": "webp/cloudbeaver.webp", + "mode": "100644", + "type": "blob", + "sha": "8e347e9fc3cf1119520a14bf3e025de012bfd7b9", + "size": 58852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e347e9fc3cf1119520a14bf3e025de012bfd7b9" + }, + { + "path": "webp/cloudcmd.webp", + "mode": "100644", + "type": "blob", + "sha": "1c143e4d9116a9db328020c4ef66eada78a6778a", + "size": 75266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c143e4d9116a9db328020c4ef66eada78a6778a" + }, + { + "path": "webp/cloudflare-pages.webp", + "mode": "100644", + "type": "blob", + "sha": "3bf02fd3fc52dd377f0ba6e51afcf3c13936364b", + "size": 22124, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bf02fd3fc52dd377f0ba6e51afcf3c13936364b" + }, + { + "path": "webp/cloudflare-zero-trust.webp", + "mode": "100644", + "type": "blob", + "sha": "bcf029a8f667c11471e581f58132c61f474d0005", + "size": 128826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcf029a8f667c11471e581f58132c61f474d0005" + }, + { + "path": "webp/cloudflare.webp", + "mode": "100644", + "type": "blob", + "sha": "945321d6c175bbd8e498438c0995e841393f82ac", + "size": 41112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/945321d6c175bbd8e498438c0995e841393f82ac" + }, + { + "path": "webp/cloudpanel.webp", + "mode": "100644", + "type": "blob", + "sha": "53211dd4ae8da4e7996cf3e730eb4388363ff6a4", + "size": 37666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53211dd4ae8da4e7996cf3e730eb4388363ff6a4" + }, + { + "path": "webp/cloudreve.webp", + "mode": "100644", + "type": "blob", + "sha": "035bee8e97fe8c269f443d45dc661f383a98ed39", + "size": 50994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/035bee8e97fe8c269f443d45dc661f383a98ed39" + }, + { + "path": "webp/cloudstream.webp", + "mode": "100644", + "type": "blob", + "sha": "1c0712fed738612c91bd9dc6d59e95cd7ca98999", + "size": 36558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c0712fed738612c91bd9dc6d59e95cd7ca98999" + }, + { + "path": "webp/cobalt-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "ee6e45c58b0021db891afc38d8c91576c6bda2a8", + "size": 3334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee6e45c58b0021db891afc38d8c91576c6bda2a8" + }, + { + "path": "webp/cobalt.webp", + "mode": "100644", + "type": "blob", + "sha": "08c4ae1b6890e4d515b8fbf93081ee86631f306f", + "size": 3548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08c4ae1b6890e4d515b8fbf93081ee86631f306f" + }, + { + "path": "webp/cockpit-cms-light.webp", + "mode": "100644", + "type": "blob", + "sha": "490088f0e1675d700783ead9ee7039d045dbed5a", + "size": 12560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/490088f0e1675d700783ead9ee7039d045dbed5a" + }, + { + "path": "webp/cockpit-cms.webp", + "mode": "100644", + "type": "blob", + "sha": "af895340990718f1082ee423d0429fbc0c95f932", + "size": 11986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af895340990718f1082ee423d0429fbc0c95f932" + }, + { + "path": "webp/cockpit-light.webp", + "mode": "100644", + "type": "blob", + "sha": "648ac86355e5392504c52c38ef40fdac16f93b6d", + "size": 9126, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/648ac86355e5392504c52c38ef40fdac16f93b6d" + }, + { + "path": "webp/cockpit.webp", + "mode": "100644", + "type": "blob", + "sha": "708688d8d283717fd760a1acd4a7c739c570f0d2", + "size": 9122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/708688d8d283717fd760a1acd4a7c739c570f0d2" + }, + { + "path": "webp/code-cademy-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "74769044954bd6a9f7468f84aa8141d7a93a1449", + "size": 2486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74769044954bd6a9f7468f84aa8141d7a93a1449" + }, + { + "path": "webp/code-cademy.webp", + "mode": "100644", + "type": "blob", + "sha": "19a682f7af0eb9fd2c971a50555a408795b62cf6", + "size": 2486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19a682f7af0eb9fd2c971a50555a408795b62cf6" + }, + { + "path": "webp/code-server.webp", + "mode": "100644", + "type": "blob", + "sha": "d84a8a5f4e0327ceba5a0d9f1b2fb0ff64b05655", + "size": 36198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d84a8a5f4e0327ceba5a0d9f1b2fb0ff64b05655" + }, + { + "path": "webp/code.webp", + "mode": "100644", + "type": "blob", + "sha": "96803c3e9eac299afa23915017ea7ad75a1c8ab0", + "size": 43864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96803c3e9eac299afa23915017ea7ad75a1c8ab0" + }, + { + "path": "webp/codeberg.webp", + "mode": "100644", + "type": "blob", + "sha": "5441344bf31f2defa896d5d1281d6a73b3c62166", + "size": 31034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5441344bf31f2defa896d5d1281d6a73b3c62166" + }, + { + "path": "webp/codellm.webp", + "mode": "100644", + "type": "blob", + "sha": "c433be796f863e9bbbf4cef99ccb53c0ad9af164", + "size": 29942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c433be796f863e9bbbf4cef99ccb53c0ad9af164" + }, + { + "path": "webp/coder-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3745e570cb4f6bc8787e488eeca25c63f0187f63", + "size": 6370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3745e570cb4f6bc8787e488eeca25c63f0187f63" + }, + { + "path": "webp/coder.webp", + "mode": "100644", + "type": "blob", + "sha": "c17c08b87cffc63b9f3a6122106e870d5f1457cb", + "size": 6364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c17c08b87cffc63b9f3a6122106e870d5f1457cb" + }, + { + "path": "webp/codestats-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6b272531fc710b8b90c7eddfcb62d7038b9bc4e2", + "size": 10566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b272531fc710b8b90c7eddfcb62d7038b9bc4e2" + }, + { + "path": "webp/codestats.webp", + "mode": "100644", + "type": "blob", + "sha": "55e7a47956862ae52dbc71d3c28434fc1644f6be", + "size": 10562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55e7a47956862ae52dbc71d3c28434fc1644f6be" + }, + { + "path": "webp/codex-light.webp", + "mode": "100644", + "type": "blob", + "sha": "eeef7060ddc0e10ac70b7e49effb466e3b9d8757", + "size": 127222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeef7060ddc0e10ac70b7e49effb466e3b9d8757" + }, + { + "path": "webp/codex.webp", + "mode": "100644", + "type": "blob", + "sha": "9540d105329dda9056109f29dc7d88a83d6e62cc", + "size": 119508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9540d105329dda9056109f29dc7d88a83d6e62cc" + }, + { + "path": "webp/codimd-light.webp", + "mode": "100644", + "type": "blob", + "sha": "cc0330b777a003a01c5144b894558a4b8ef5fd05", + "size": 1188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc0330b777a003a01c5144b894558a4b8ef5fd05" + }, + { + "path": "webp/codimd.webp", + "mode": "100644", + "type": "blob", + "sha": "8be1949e2817078a0cf3e7d3808e6fa27bda73d8", + "size": 1228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8be1949e2817078a0cf3e7d3808e6fa27bda73d8" + }, + { + "path": "webp/collabora-online.webp", + "mode": "100644", + "type": "blob", + "sha": "cb2f4b1047216154f467ff7ae0873fb377ef20e8", + "size": 50784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb2f4b1047216154f467ff7ae0873fb377ef20e8" + }, + { + "path": "webp/comfy-ui.webp", + "mode": "100644", + "type": "blob", + "sha": "2ca07834886a8c6f9f8786a5c25a21a2a2161c67", + "size": 197670, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ca07834886a8c6f9f8786a5c25a21a2a2161c67" + }, + { + "path": "webp/commafeed-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fc032d7c46f4a4472bb72dc3d4d888baadc19ca5", + "size": 9000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc032d7c46f4a4472bb72dc3d4d888baadc19ca5" + }, + { + "path": "webp/commafeed.webp", + "mode": "100644", + "type": "blob", + "sha": "c3f5359ce028e4b5a4806ac32b589f05d30769dd", + "size": 11682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3f5359ce028e4b5a4806ac32b589f05d30769dd" + }, + { + "path": "webp/commento-light.webp", + "mode": "100644", + "type": "blob", + "sha": "07f52e3e4f5dac3b9ff666baa95b742e7518b83c", + "size": 13150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07f52e3e4f5dac3b9ff666baa95b742e7518b83c" + }, + { + "path": "webp/commento.webp", + "mode": "100644", + "type": "blob", + "sha": "320b8c52519717cd60d1ae2ddcb573aed3068b11", + "size": 23608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/320b8c52519717cd60d1ae2ddcb573aed3068b11" + }, + { + "path": "webp/compreface.webp", + "mode": "100644", + "type": "blob", + "sha": "20ae7a076c32d8ed536bcc80740987919befa98f", + "size": 32738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20ae7a076c32d8ed536bcc80740987919befa98f" + }, + { + "path": "webp/concourse.webp", + "mode": "100644", + "type": "blob", + "sha": "bbba488c3b0d267e22c227f2755db02ce43bf84e", + "size": 36858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbba488c3b0d267e22c227f2755db02ce43bf84e" + }, + { + "path": "webp/confix.webp", + "mode": "100644", + "type": "blob", + "sha": "3b6220348c9b88929d8a1b787518876ca2b0e2a2", + "size": 32432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b6220348c9b88929d8a1b787518876ca2b0e2a2" + }, + { + "path": "webp/confluence.webp", + "mode": "100644", + "type": "blob", + "sha": "bfd5a66f7d4bc9d002b0c657e0a3e739ab1213c0", + "size": 32686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bfd5a66f7d4bc9d002b0c657e0a3e739ab1213c0" + }, + { + "path": "webp/consul.webp", + "mode": "100644", + "type": "blob", + "sha": "278d89c7848abcc865e649bc10c681239c59ef2d", + "size": 26466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/278d89c7848abcc865e649bc10c681239c59ef2d" + }, + { + "path": "webp/contabo.webp", + "mode": "100644", + "type": "blob", + "sha": "643e5dfd5608eb3fa4626439441df57051eb81fc", + "size": 41382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/643e5dfd5608eb3fa4626439441df57051eb81fc" + }, + { + "path": "webp/control-d-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "3d049bc3c748021888f00ee6cd203b66307907ad", + "size": 16830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d049bc3c748021888f00ee6cd203b66307907ad" + }, + { + "path": "webp/control-d.webp", + "mode": "100644", + "type": "blob", + "sha": "12071f3b3c46c451f783e8df395ae09e1e62ab40", + "size": 8514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12071f3b3c46c451f783e8df395ae09e1e62ab40" + }, + { + "path": "webp/converse-light.webp", + "mode": "100644", + "type": "blob", + "sha": "07e55de58091c923decf6fffb0cf4a37a2585ad2", + "size": 7510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07e55de58091c923decf6fffb0cf4a37a2585ad2" + }, + { + "path": "webp/converse.webp", + "mode": "100644", + "type": "blob", + "sha": "fe0e09c6077fb336cb10496e5c0934f4ee926dca", + "size": 7504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe0e09c6077fb336cb10496e5c0934f4ee926dca" + }, + { + "path": "webp/convertx.webp", + "mode": "100644", + "type": "blob", + "sha": "acf3e86e5acf52d3d5008575d7d62b874239a9db", + "size": 18980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acf3e86e5acf52d3d5008575d7d62b874239a9db" + }, + { + "path": "webp/convex.webp", + "mode": "100644", + "type": "blob", + "sha": "3c9c7ad25ba9e0bb90829f08895daa2ed3f5ea5c", + "size": 31514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c9c7ad25ba9e0bb90829f08895daa2ed3f5ea5c" + }, + { + "path": "webp/cooler-control.webp", + "mode": "100644", + "type": "blob", + "sha": "517bdab5261e652f170e7253e30f88d62ac3a9c3", + "size": 26818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/517bdab5261e652f170e7253e30f88d62ac3a9c3" + }, + { + "path": "webp/coolify.webp", + "mode": "100644", + "type": "blob", + "sha": "8b0fa853d262ed34c18cbbd19a4a60a8b8b09cd9", + "size": 3708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b0fa853d262ed34c18cbbd19a4a60a8b8b09cd9" + }, + { + "path": "webp/copyparty.webp", + "mode": "100644", + "type": "blob", + "sha": "dce9c8792f3cd0a5f996cd9f487c243e6da1f7f3", + "size": 63030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dce9c8792f3cd0a5f996cd9f487c243e6da1f7f3" + }, + { + "path": "webp/copyq.webp", + "mode": "100644", + "type": "blob", + "sha": "e998552847be206ccc32f706e477d1c3d3eeeb0e", + "size": 40204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e998552847be206ccc32f706e477d1c3d3eeeb0e" + }, + { + "path": "webp/core-control.webp", + "mode": "100644", + "type": "blob", + "sha": "8c49905c94df231b43f5b4ec3303d87db8d371f6", + "size": 14454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c49905c94df231b43f5b4ec3303d87db8d371f6" + }, + { + "path": "webp/coredns.webp", + "mode": "100644", + "type": "blob", + "sha": "0007b16634d252e6b920ed3b41ff71aa0509a025", + "size": 55426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0007b16634d252e6b920ed3b41ff71aa0509a025" + }, + { + "path": "webp/coreos.webp", + "mode": "100644", + "type": "blob", + "sha": "3d38a6eb49482ce1db18efd4dd509e05d10a17dd", + "size": 37594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d38a6eb49482ce1db18efd4dd509e05d10a17dd" + }, + { + "path": "webp/cosign.webp", + "mode": "100644", + "type": "blob", + "sha": "f04e71468c064ba33377e77d3c59e8f3fd22f9d6", + "size": 68312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f04e71468c064ba33377e77d3c59e8f3fd22f9d6" + }, + { + "path": "webp/cosmos-cloud.webp", + "mode": "100644", + "type": "blob", + "sha": "f14e689d9e77828176a9bd62a1fbabdceaf81115", + "size": 148526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f14e689d9e77828176a9bd62a1fbabdceaf81115" + }, + { + "path": "webp/costco.webp", + "mode": "100644", + "type": "blob", + "sha": "c1c5908f3d4924f8160d23bbdaee10ce206476dd", + "size": 208186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1c5908f3d4924f8160d23bbdaee10ce206476dd" + }, + { + "path": "webp/couchdb.webp", + "mode": "100644", + "type": "blob", + "sha": "ee503e0e04158e25a40810c67cc14a4a84e51c55", + "size": 21454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee503e0e04158e25a40810c67cc14a4a84e51c55" + }, + { + "path": "webp/couchpotato.webp", + "mode": "100644", + "type": "blob", + "sha": "744d2e0a9c08e4ea0cca6b7efb45af104675b656", + "size": 34114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/744d2e0a9c08e4ea0cca6b7efb45af104675b656" + }, + { + "path": "webp/counter-analytics.webp", + "mode": "100644", + "type": "blob", + "sha": "144292dda72f54577754efacac1134234150288f", + "size": 14906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/144292dda72f54577754efacac1134234150288f" + }, + { + "path": "webp/counter-strike-2.webp", + "mode": "100644", + "type": "blob", + "sha": "be12e41cfcec0bc7ac6ad7bc59c918a99a404c58", + "size": 34380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be12e41cfcec0bc7ac6ad7bc59c918a99a404c58" + }, + { + "path": "webp/counter-strike-global-offensive.webp", + "mode": "100644", + "type": "blob", + "sha": "fb4fdd157b2e2a1a3e27ef1e7cebab1e65024d41", + "size": 71388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb4fdd157b2e2a1a3e27ef1e7cebab1e65024d41" + }, + { + "path": "webp/coursera.webp", + "mode": "100644", + "type": "blob", + "sha": "3f96f29ecb62145c2a1ad6767069ba2a5121be4f", + "size": 17064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f96f29ecb62145c2a1ad6767069ba2a5121be4f" + }, + { + "path": "webp/cozy.webp", + "mode": "100644", + "type": "blob", + "sha": "17894292c433c81d0b5df968a7ecdec3b0e7c267", + "size": 38084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17894292c433c81d0b5df968a7ecdec3b0e7c267" + }, + { + "path": "webp/cpanel.webp", + "mode": "100644", + "type": "blob", + "sha": "00cefd17df25fc9e96485591c11a0ee8852a5883", + "size": 25734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00cefd17df25fc9e96485591c11a0ee8852a5883" + }, + { + "path": "webp/cpp.webp", + "mode": "100644", + "type": "blob", + "sha": "e1a856fb4e2d05285673229e01012fe9e8cb715e", + "size": 46102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1a856fb4e2d05285673229e01012fe9e8cb715e" + }, + { + "path": "webp/crafty-controller.webp", + "mode": "100644", + "type": "blob", + "sha": "334d39f0686b9bffbc5c82abd0969d43daaedea0", + "size": 19154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/334d39f0686b9bffbc5c82abd0969d43daaedea0" + }, + { + "path": "webp/crater-invoice.webp", + "mode": "100644", + "type": "blob", + "sha": "62896e0c1ddc6ea4ce2c6c619a5e4ceaf08184e0", + "size": 24132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62896e0c1ddc6ea4ce2c6c619a5e4ceaf08184e0" + }, + { + "path": "webp/crazydomains.webp", + "mode": "100644", + "type": "blob", + "sha": "d060f1a3bd0c4035047a0c1cd432a22f9501b51b", + "size": 16088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d060f1a3bd0c4035047a0c1cd432a22f9501b51b" + }, + { + "path": "webp/cribl-light.webp", + "mode": "100644", + "type": "blob", + "sha": "691e8c25abab0f7e382f592fb9f1a43221afec10", + "size": 29388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/691e8c25abab0f7e382f592fb9f1a43221afec10" + }, + { + "path": "webp/cribl.webp", + "mode": "100644", + "type": "blob", + "sha": "3e0d718d46832048fe21cddefde617cb5808460b", + "size": 14894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e0d718d46832048fe21cddefde617cb5808460b" + }, + { + "path": "webp/cron-master.webp", + "mode": "100644", + "type": "blob", + "sha": "9ec956183fbbab49f9354bac5dc2870bbd79df53", + "size": 51794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ec956183fbbab49f9354bac5dc2870bbd79df53" + }, + { + "path": "webp/cronicle.webp", + "mode": "100644", + "type": "blob", + "sha": "2897ef5c778583401583e3786f7c4a6b00f3493d", + "size": 29310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2897ef5c778583401583e3786f7c4a6b00f3493d" + }, + { + "path": "webp/cross-seed-square.webp", + "mode": "100644", + "type": "blob", + "sha": "2686c5df22bb388bfa90d90d866ac43cbc5b7fda", + "size": 77726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2686c5df22bb388bfa90d90d866ac43cbc5b7fda" + }, + { + "path": "webp/cross-seed.webp", + "mode": "100644", + "type": "blob", + "sha": "260485c1014a76f640ca99bdc67013841ec04d51", + "size": 71088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/260485c1014a76f640ca99bdc67013841ec04d51" + }, + { + "path": "webp/crowdin-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "350c16ed4e7f72cb860bcf77034f0360013f3c7a", + "size": 31348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/350c16ed4e7f72cb860bcf77034f0360013f3c7a" + }, + { + "path": "webp/crowdin.webp", + "mode": "100644", + "type": "blob", + "sha": "9ef8569b848f41d675eb124eb58f6788bd549f55", + "size": 35734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ef8569b848f41d675eb124eb58f6788bd549f55" + }, + { + "path": "webp/crowdsec.webp", + "mode": "100644", + "type": "blob", + "sha": "2b83a1148716f5e133527c342435c5ce60e2066a", + "size": 75246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b83a1148716f5e133527c342435c5ce60e2066a" + }, + { + "path": "webp/crunchyroll.webp", + "mode": "100644", + "type": "blob", + "sha": "f67650ba2381665bdc3c12825f28dcd9bd0acc39", + "size": 28986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f67650ba2381665bdc3c12825f28dcd9bd0acc39" + }, + { + "path": "webp/cryptomator.webp", + "mode": "100644", + "type": "blob", + "sha": "327a20cb09aeda0d5b74f3bba9e0c4921b86138b", + "size": 58608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/327a20cb09aeda0d5b74f3bba9e0c4921b86138b" + }, + { + "path": "webp/cryptpad.webp", + "mode": "100644", + "type": "blob", + "sha": "82c61dc80ad229f798ea3ace36fdbd7c8a82b3c4", + "size": 37236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82c61dc80ad229f798ea3ace36fdbd7c8a82b3c4" + }, + { + "path": "webp/csharp.webp", + "mode": "100644", + "type": "blob", + "sha": "d81fb5091a97317affb6740dc4be83c9474b79d8", + "size": 50292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d81fb5091a97317affb6740dc4be83c9474b79d8" + }, + { + "path": "webp/css-light.webp", + "mode": "100644", + "type": "blob", + "sha": "178577bcaf76685c7670eb6a875be3a16bc480d8", + "size": 26902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/178577bcaf76685c7670eb6a875be3a16bc480d8" + }, + { + "path": "webp/css.webp", + "mode": "100644", + "type": "blob", + "sha": "aaac0212a9f7ab3c67aa53798a3d93c1c706aaa9", + "size": 27048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aaac0212a9f7ab3c67aa53798a3d93c1c706aaa9" + }, + { + "path": "webp/ctfreak.webp", + "mode": "100644", + "type": "blob", + "sha": "8beb25861fc9c9578f021a8fd4ef54fce7178f0d", + "size": 12054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8beb25861fc9c9578f021a8fd4ef54fce7178f0d" + }, + { + "path": "webp/cup.webp", + "mode": "100644", + "type": "blob", + "sha": "b0ba4dba9f3a08f9dcadb62682040685ace12dfa", + "size": 24720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0ba4dba9f3a08f9dcadb62682040685ace12dfa" + }, + { + "path": "webp/cups-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fa87feac09af8ecec5c38842ff1e9b43108ce4e2", + "size": 10438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa87feac09af8ecec5c38842ff1e9b43108ce4e2" + }, + { + "path": "webp/cups.webp", + "mode": "100644", + "type": "blob", + "sha": "d6c940093fdc99aee3678b91f71dc7732d0efa88", + "size": 10432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6c940093fdc99aee3678b91f71dc7732d0efa88" + }, + { + "path": "webp/cura.webp", + "mode": "100644", + "type": "blob", + "sha": "0645261fe928576a59fd895ae1b81bbd617a0b1c", + "size": 23674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0645261fe928576a59fd895ae1b81bbd617a0b1c" + }, + { + "path": "webp/cyber-power-full.webp", + "mode": "100644", + "type": "blob", + "sha": "c6d8a19a8d99cc77b022f7bd9cdfde9564533541", + "size": 85970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6d8a19a8d99cc77b022f7bd9cdfde9564533541" + }, + { + "path": "webp/cyberchef.webp", + "mode": "100644", + "type": "blob", + "sha": "a99e4b146859315e3b56d55731c1aa8b1ab93bfe", + "size": 6128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a99e4b146859315e3b56d55731c1aa8b1ab93bfe" + }, + { + "path": "webp/czkawka.webp", + "mode": "100644", + "type": "blob", + "sha": "d488de75949ce65629dd0ffb9e7b9a38640ac1cb", + "size": 18400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d488de75949ce65629dd0ffb9e7b9a38640ac1cb" + }, + { + "path": "webp/d-link.webp", + "mode": "100644", + "type": "blob", + "sha": "5fd1934f6cd417641e780e35241414af09221c32", + "size": 65186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fd1934f6cd417641e780e35241414af09221c32" + }, + { + "path": "webp/dagster-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "7dd6ab4fc8a882a4091d50f49aab9a814560a863", + "size": 12494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7dd6ab4fc8a882a4091d50f49aab9a814560a863" + }, + { + "path": "webp/dagster-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6debc2bebd0da1f28a343cf06e411cee51408136", + "size": 15324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6debc2bebd0da1f28a343cf06e411cee51408136" + }, + { + "path": "webp/dahua.webp", + "mode": "100644", + "type": "blob", + "sha": "5232c196ffdb862d8daf19f07589171675ab4302", + "size": 29480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5232c196ffdb862d8daf19f07589171675ab4302" + }, + { + "path": "webp/dalibo.webp", + "mode": "100644", + "type": "blob", + "sha": "43ebfb34d5b57e63635a86339cddc090224b32cd", + "size": 40366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43ebfb34d5b57e63635a86339cddc090224b32cd" + }, + { + "path": "webp/daps.webp", + "mode": "100644", + "type": "blob", + "sha": "da9732cd6708472298a2c3a39b063eee3319eb04", + "size": 53516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da9732cd6708472298a2c3a39b063eee3319eb04" + }, + { + "path": "webp/dart.webp", + "mode": "100644", + "type": "blob", + "sha": "ce8f4ae81caa124c3511442996fa83cff8526db9", + "size": 19870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce8f4ae81caa124c3511442996fa83cff8526db9" + }, + { + "path": "webp/dashboard-icons-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "633e50158b73710fd05de3d9c449c45f21877662", + "size": 24734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/633e50158b73710fd05de3d9c449c45f21877662" + }, + { + "path": "webp/dashboard-icons.webp", + "mode": "100644", + "type": "blob", + "sha": "6536a2954655f8de1c09b54efb84d385ad9830ee", + "size": 23456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6536a2954655f8de1c09b54efb84d385ad9830ee" + }, + { + "path": "webp/dashdot.webp", + "mode": "100644", + "type": "blob", + "sha": "a10b8213bc2fee9be373a960769dea64c88876ab", + "size": 45252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a10b8213bc2fee9be373a960769dea64c88876ab" + }, + { + "path": "webp/dashwise.webp", + "mode": "100644", + "type": "blob", + "sha": "fabbc7a9adafcb5eace79d3226f6f18fcf033bb7", + "size": 58918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fabbc7a9adafcb5eace79d3226f6f18fcf033bb7" + }, + { + "path": "webp/dashy.webp", + "mode": "100644", + "type": "blob", + "sha": "dcc974eb750282a130f868a27311a2882a699d5c", + "size": 63028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcc974eb750282a130f868a27311a2882a699d5c" + }, + { + "path": "webp/datadog.webp", + "mode": "100644", + "type": "blob", + "sha": "8147f2faea56b51a4b2b67140a23330ec86e54b2", + "size": 43718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8147f2faea56b51a4b2b67140a23330ec86e54b2" + }, + { + "path": "webp/davical.webp", + "mode": "100644", + "type": "blob", + "sha": "281ca109e6aa91ea6cb69f8c1b0549dde3ef78c0", + "size": 24366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/281ca109e6aa91ea6cb69f8c1b0549dde3ef78c0" + }, + { + "path": "webp/davis.webp", + "mode": "100644", + "type": "blob", + "sha": "dc4f5a535045bfa89c35d8eb036f493ac5a56194", + "size": 19888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc4f5a535045bfa89c35d8eb036f493ac5a56194" + }, + { + "path": "webp/dawarich.webp", + "mode": "100644", + "type": "blob", + "sha": "5427d575268e1f6e6ca3bcd4c4f691acbc4e969d", + "size": 46108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5427d575268e1f6e6ca3bcd4c4f691acbc4e969d" + }, + { + "path": "webp/dc-os.webp", + "mode": "100644", + "type": "blob", + "sha": "9efb7c5597494a2e69d61649faadbb29312b2732", + "size": 71290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9efb7c5597494a2e69d61649faadbb29312b2732" + }, + { + "path": "webp/dd-wrt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "65e13e663d08a46b621d98cf7889d7a324c6de31", + "size": 3650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65e13e663d08a46b621d98cf7889d7a324c6de31" + }, + { + "path": "webp/dd-wrt.webp", + "mode": "100644", + "type": "blob", + "sha": "07c2bb4c212cd3554e10e695b89f5e4761be198e", + "size": 11188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07c2bb4c212cd3554e10e695b89f5e4761be198e" + }, + { + "path": "webp/ddclient.webp", + "mode": "100644", + "type": "blob", + "sha": "9a14b83c2611b0bf360da67a6282862cf188014e", + "size": 37354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a14b83c2611b0bf360da67a6282862cf188014e" + }, + { + "path": "webp/ddns-updater.webp", + "mode": "100644", + "type": "blob", + "sha": "da75b883626810522007ef9f37ced7662155957e", + "size": 65548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da75b883626810522007ef9f37ced7662155957e" + }, + { + "path": "webp/debian-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "5907c422bda108d51a07e3cf4f28f33a8a029103", + "size": 29568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5907c422bda108d51a07e3cf4f28f33a8a029103" + }, + { + "path": "webp/deemix.webp", + "mode": "100644", + "type": "blob", + "sha": "9adbc3e1affa5ae110665d5e5ed8051f986edfd4", + "size": 46840, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9adbc3e1affa5ae110665d5e5ed8051f986edfd4" + }, + { + "path": "webp/deepl-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "96df5128b778720172fa6811eece31a400baacc7", + "size": 16288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96df5128b778720172fa6811eece31a400baacc7" + }, + { + "path": "webp/deepl.webp", + "mode": "100644", + "type": "blob", + "sha": "42024e180cda1599ee0a512d23ce5a9ce99ce882", + "size": 23956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42024e180cda1599ee0a512d23ce5a9ce99ce882" + }, + { + "path": "webp/deepseek.webp", + "mode": "100644", + "type": "blob", + "sha": "a0faf393dee2681142f6f5f86633b4b3fa8bafbe", + "size": 33110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0faf393dee2681142f6f5f86633b4b3fa8bafbe" + }, + { + "path": "webp/deezer.webp", + "mode": "100644", + "type": "blob", + "sha": "b90cb26335d0b2e81a5ef87563e152514eb8abe9", + "size": 24226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b90cb26335d0b2e81a5ef87563e152514eb8abe9" + }, + { + "path": "webp/defguard.webp", + "mode": "100644", + "type": "blob", + "sha": "22c5837efbb3d2dc2da4fb16cda959a238b037db", + "size": 22572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22c5837efbb3d2dc2da4fb16cda959a238b037db" + }, + { + "path": "webp/dell.webp", + "mode": "100644", + "type": "blob", + "sha": "1f9c59a5f710e1d6e12684a362074cb0973dc0d1", + "size": 39446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f9c59a5f710e1d6e12684a362074cb0973dc0d1" + }, + { + "path": "webp/deluge.webp", + "mode": "100644", + "type": "blob", + "sha": "f2f96b3e18b0db974ce8ea5d9b461f965d8dd533", + "size": 45690, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2f96b3e18b0db974ce8ea5d9b461f965d8dd533" + }, + { + "path": "webp/deno-light.webp", + "mode": "100644", + "type": "blob", + "sha": "034616f2e9b7f07e7207de9cced0c3778b78093f", + "size": 15142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/034616f2e9b7f07e7207de9cced0c3778b78093f" + }, + { + "path": "webp/deno.webp", + "mode": "100644", + "type": "blob", + "sha": "e969463109fc579c6e04c39dc5b932a60089ba61", + "size": 15136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e969463109fc579c6e04c39dc5b932a60089ba61" + }, + { + "path": "webp/denodo.webp", + "mode": "100644", + "type": "blob", + "sha": "832d5867e08e3393d43bb0b9d994c65f4f7f27c9", + "size": 16718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/832d5867e08e3393d43bb0b9d994c65f4f7f27c9" + }, + { + "path": "webp/denon-light.webp", + "mode": "100644", + "type": "blob", + "sha": "57ec4ba8f685131410e5b15d0bba4305cf3ae16c", + "size": 15246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57ec4ba8f685131410e5b15d0bba4305cf3ae16c" + }, + { + "path": "webp/denon.webp", + "mode": "100644", + "type": "blob", + "sha": "ff8d05a400be5ad83a575240170276c5c2629784", + "size": 15774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff8d05a400be5ad83a575240170276c5c2629784" + }, + { + "path": "webp/deployarr.webp", + "mode": "100644", + "type": "blob", + "sha": "84fb385cda12457f1ddff9d879240df1ea0b6638", + "size": 31596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84fb385cda12457f1ddff9d879240df1ea0b6638" + }, + { + "path": "webp/develancacheui.webp", + "mode": "100644", + "type": "blob", + "sha": "7ab833b5dd69f5045e119895b1fa0b29f8f36ea3", + "size": 31094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ab833b5dd69f5045e119895b1fa0b29f8f36ea3" + }, + { + "path": "webp/devtooly-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0f560fff6223dc4d50be3770e26df6b43684bdad", + "size": 8592, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f560fff6223dc4d50be3770e26df6b43684bdad" + }, + { + "path": "webp/devtooly.webp", + "mode": "100644", + "type": "blob", + "sha": "a04e6151454cb1cb44e4a53639d8ae3feadb04ab", + "size": 8576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a04e6151454cb1cb44e4a53639d8ae3feadb04ab" + }, + { + "path": "webp/dia.webp", + "mode": "100644", + "type": "blob", + "sha": "c4654fab76bc53b83cfa8790b4a0683371f692f3", + "size": 66328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4654fab76bc53b83cfa8790b4a0683371f692f3" + }, + { + "path": "webp/diagrams-net.webp", + "mode": "100644", + "type": "blob", + "sha": "2b724d35ea1661cb5b4300022ebdedadd34efdb9", + "size": 27728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b724d35ea1661cb5b4300022ebdedadd34efdb9" + }, + { + "path": "webp/diamond-aircraft.webp", + "mode": "100644", + "type": "blob", + "sha": "20e179780fe15803c0bc369f2668d753ef3d5819", + "size": 107540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20e179780fe15803c0bc369f2668d753ef3d5819" + }, + { + "path": "webp/dietpi.webp", + "mode": "100644", + "type": "blob", + "sha": "48e3fd8caaac10477997f7710c6cb070488a851e", + "size": 111368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48e3fd8caaac10477997f7710c6cb070488a851e" + }, + { + "path": "webp/digi-kam.webp", + "mode": "100644", + "type": "blob", + "sha": "9d175e56cea75640b1e41635a6a1728944e42523", + "size": 121210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d175e56cea75640b1e41635a6a1728944e42523" + }, + { + "path": "webp/digikey.webp", + "mode": "100644", + "type": "blob", + "sha": "077e50edd1d8148211b4d89662392f65ba97d87b", + "size": 28880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/077e50edd1d8148211b4d89662392f65ba97d87b" + }, + { + "path": "webp/digital-ocean.webp", + "mode": "100644", + "type": "blob", + "sha": "ff80bd6c3013c831984c53650f6a0b37693238a0", + "size": 16220, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff80bd6c3013c831984c53650f6a0b37693238a0" + }, + { + "path": "webp/dilg.webp", + "mode": "100644", + "type": "blob", + "sha": "b43aa14b52405c39f27a761946314384d60bab49", + "size": 226194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b43aa14b52405c39f27a761946314384d60bab49" + }, + { + "path": "webp/dillinger-light.webp", + "mode": "100644", + "type": "blob", + "sha": "74cd4505aeef9f3e6c6022d8b3f127adb698b538", + "size": 3390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74cd4505aeef9f3e6c6022d8b3f127adb698b538" + }, + { + "path": "webp/dillinger.webp", + "mode": "100644", + "type": "blob", + "sha": "2c4be847a01fe73c492b537b10c76f4d6a9990a8", + "size": 3464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c4be847a01fe73c492b537b10c76f4d6a9990a8" + }, + { + "path": "webp/dim-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ff6f78a62afc86062d72799212e359b0836f6a6d", + "size": 4478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff6f78a62afc86062d72799212e359b0836f6a6d" + }, + { + "path": "webp/dim.webp", + "mode": "100644", + "type": "blob", + "sha": "2cb917964912508015b43d30cd7a0980486a2980", + "size": 4450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cb917964912508015b43d30cd7a0980486a2980" + }, + { + "path": "webp/diners-club.webp", + "mode": "100644", + "type": "blob", + "sha": "ef6e8393973ae0286bb259d3742ce93289157711", + "size": 53660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef6e8393973ae0286bb259d3742ce93289157711" + }, + { + "path": "webp/directadmin.webp", + "mode": "100644", + "type": "blob", + "sha": "4d89ca9b6867e27e6f9113133b303a957a735f17", + "size": 15288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4d89ca9b6867e27e6f9113133b303a957a735f17" + }, + { + "path": "webp/directus.webp", + "mode": "100644", + "type": "blob", + "sha": "ac1240a0eeb8ab26c4e1308909de46d83f575246", + "size": 55304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac1240a0eeb8ab26c4e1308909de46d83f575246" + }, + { + "path": "webp/discord.webp", + "mode": "100644", + "type": "blob", + "sha": "2c4bcb9b43783b540b5046db703989ee6b5a4c16", + "size": 25790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c4bcb9b43783b540b5046db703989ee6b5a4c16" + }, + { + "path": "webp/discourse-light.webp", + "mode": "100644", + "type": "blob", + "sha": "794ec1150551338c1e0e938655ae39a312984ded", + "size": 50236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/794ec1150551338c1e0e938655ae39a312984ded" + }, + { + "path": "webp/discourse.webp", + "mode": "100644", + "type": "blob", + "sha": "e821604db848f5dda75f8757c0ff250d8bfecc0d", + "size": 50248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e821604db848f5dda75f8757c0ff250d8bfecc0d" + }, + { + "path": "webp/diskover.webp", + "mode": "100644", + "type": "blob", + "sha": "a541e0a50bcba49558f9f789508c48309d93de2d", + "size": 40432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a541e0a50bcba49558f9f789508c48309d93de2d" + }, + { + "path": "webp/disney-plus.webp", + "mode": "100644", + "type": "blob", + "sha": "c6460c7f9295a30e7ba65c6027e01b88f95498e3", + "size": 31408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6460c7f9295a30e7ba65c6027e01b88f95498e3" + }, + { + "path": "webp/dispatcharr.webp", + "mode": "100644", + "type": "blob", + "sha": "a336db036ef683c5fcb6afac74bf8c0548217705", + "size": 26094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a336db036ef683c5fcb6afac74bf8c0548217705" + }, + { + "path": "webp/distribution.webp", + "mode": "100644", + "type": "blob", + "sha": "25c6e9fc51c242e6af788b32c0113a87c6f8a3dd", + "size": 42306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25c6e9fc51c242e6af788b32c0113a87c6f8a3dd" + }, + { + "path": "webp/diun.webp", + "mode": "100644", + "type": "blob", + "sha": "49463a98ac96438244c4a7766c29e19c35afba11", + "size": 120792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49463a98ac96438244c4a7766c29e19c35afba11" + }, + { + "path": "webp/dixa.webp", + "mode": "100644", + "type": "blob", + "sha": "bdeb4ee25a64757568a68a4db1c2c39a96653916", + "size": 14396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bdeb4ee25a64757568a68a4db1c2c39a96653916" + }, + { + "path": "webp/diyhue.webp", + "mode": "100644", + "type": "blob", + "sha": "6230527f87cbee2f7124ff1641b4eaad96a736d4", + "size": 25844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6230527f87cbee2f7124ff1641b4eaad96a736d4" + }, + { + "path": "webp/dlna.webp", + "mode": "100644", + "type": "blob", + "sha": "e5a887a3ec13eb6b1aa39c5f1bda9e4baccc38b2", + "size": 28414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5a887a3ec13eb6b1aa39c5f1bda9e4baccc38b2" + }, + { + "path": "webp/docassemble-light.webp", + "mode": "100644", + "type": "blob", + "sha": "04cd89bf8a8b4c81c3c4aa671947053049b475c5", + "size": 6786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04cd89bf8a8b4c81c3c4aa671947053049b475c5" + }, + { + "path": "webp/docassemble.webp", + "mode": "100644", + "type": "blob", + "sha": "70bb4fa14bb02e77b9463c58a587d3aa1dfd44eb", + "size": 6780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70bb4fa14bb02e77b9463c58a587d3aa1dfd44eb" + }, + { + "path": "webp/docker-amd.webp", + "mode": "100644", + "type": "blob", + "sha": "09edd39ee04e7c00ddb66e3272f355b3c2c0cd32", + "size": 32658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09edd39ee04e7c00ddb66e3272f355b3c2c0cd32" + }, + { + "path": "webp/docker-amvd.webp", + "mode": "100644", + "type": "blob", + "sha": "0182ea1a162dc2f6c16761f1ec75e285c8efc80b", + "size": 35154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0182ea1a162dc2f6c16761f1ec75e285c8efc80b" + }, + { + "path": "webp/docker-compose.webp", + "mode": "100644", + "type": "blob", + "sha": "d9a8f84d99261d0209ba2008d9fccfe7bdba16e9", + "size": 98478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9a8f84d99261d0209ba2008d9fccfe7bdba16e9" + }, + { + "path": "webp/docker-engine.webp", + "mode": "100644", + "type": "blob", + "sha": "82e92230b1840cb93006498fc86dbfceccc5ebcd", + "size": 15286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82e92230b1840cb93006498fc86dbfceccc5ebcd" + }, + { + "path": "webp/docker-gc.webp", + "mode": "100644", + "type": "blob", + "sha": "e4437443bc05c0430a1e7f5284da1814f5d6e978", + "size": 36580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e4437443bc05c0430a1e7f5284da1814f5d6e978" + }, + { + "path": "webp/docker-mailserver-light.webp", + "mode": "100644", + "type": "blob", + "sha": "43555aa90521c8d2145031c876bb8f8a517b8626", + "size": 52650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43555aa90521c8d2145031c876bb8f8a517b8626" + }, + { + "path": "webp/docker-mailserver.webp", + "mode": "100644", + "type": "blob", + "sha": "6800e3617c4f4a1fa024907cb8a255e4e65710d7", + "size": 57598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6800e3617c4f4a1fa024907cb8a255e4e65710d7" + }, + { + "path": "webp/docker-moby.webp", + "mode": "100644", + "type": "blob", + "sha": "45d0b49e56eee505245adebf41d80e9284d2f3f9", + "size": 71294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45d0b49e56eee505245adebf41d80e9284d2f3f9" + }, + { + "path": "webp/docker-volume-backup.webp", + "mode": "100644", + "type": "blob", + "sha": "0bcb24ab9b0d91c322cbeef79c8323a9fd118254", + "size": 16540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bcb24ab9b0d91c322cbeef79c8323a9fd118254" + }, + { + "path": "webp/docker.webp", + "mode": "100644", + "type": "blob", + "sha": "82e92230b1840cb93006498fc86dbfceccc5ebcd", + "size": 15286, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82e92230b1840cb93006498fc86dbfceccc5ebcd" + }, + { + "path": "webp/dockge.webp", + "mode": "100644", + "type": "blob", + "sha": "69cce0c08990cc3b6d602e8251d6abdca02bf914", + "size": 33680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69cce0c08990cc3b6d602e8251d6abdca02bf914" + }, + { + "path": "webp/docking-station.webp", + "mode": "100644", + "type": "blob", + "sha": "e9281163664d1f016288485e28fa1d72ba816a15", + "size": 29800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9281163664d1f016288485e28fa1d72ba816a15" + }, + { + "path": "webp/dockpeek-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e8337f171927beba50d0a03f40e383035585b261", + "size": 21786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8337f171927beba50d0a03f40e383035585b261" + }, + { + "path": "webp/dockpeek.webp", + "mode": "100644", + "type": "blob", + "sha": "08d7ab9e0b4fc73ed4c8335ef3fd123902622d4d", + "size": 22198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08d7ab9e0b4fc73ed4c8335ef3fd123902622d4d" + }, + { + "path": "webp/dockstarter.webp", + "mode": "100644", + "type": "blob", + "sha": "05eaa585dd41dbdba818b64986d3ff71bd5be295", + "size": 27966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05eaa585dd41dbdba818b64986d3ff71bd5be295" + }, + { + "path": "webp/dockwatch.webp", + "mode": "100644", + "type": "blob", + "sha": "b95703dcdc504970c8d281eb16da8dca55bc57e7", + "size": 185756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b95703dcdc504970c8d281eb16da8dca55bc57e7" + }, + { + "path": "webp/docmost.webp", + "mode": "100644", + "type": "blob", + "sha": "dc35254417dee5559fccd64c2a7a3297dd888fa1", + "size": 8854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc35254417dee5559fccd64c2a7a3297dd888fa1" + }, + { + "path": "webp/docsify.webp", + "mode": "100644", + "type": "blob", + "sha": "4cb4b9f214245c42dd4e5793f32a0ffaa26f2460", + "size": 47070, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cb4b9f214245c42dd4e5793f32a0ffaa26f2460" + }, + { + "path": "webp/docspell.webp", + "mode": "100644", + "type": "blob", + "sha": "41b604df7c10d7856ec7dc2bc01661b8b2175c0f", + "size": 49356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41b604df7c10d7856ec7dc2bc01661b8b2175c0f" + }, + { + "path": "webp/documenso.webp", + "mode": "100644", + "type": "blob", + "sha": "ba5e855717e8102c2879cfac90d26d21ba5bf252", + "size": 64202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba5e855717e8102c2879cfac90d26d21ba5bf252" + }, + { + "path": "webp/docusaurus.webp", + "mode": "100644", + "type": "blob", + "sha": "0b267329c012957afbfce8669cd0031849859b99", + "size": 55950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b267329c012957afbfce8669cd0031849859b99" + }, + { + "path": "webp/docuseal.webp", + "mode": "100644", + "type": "blob", + "sha": "0765b968a28263d7f5413a28e14349020b72347b", + "size": 44358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0765b968a28263d7f5413a28e14349020b72347b" + }, + { + "path": "webp/dogpile.webp", + "mode": "100644", + "type": "blob", + "sha": "5f8d488427095f889820ae434c7b97ac02d03073", + "size": 50168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f8d488427095f889820ae434c7b97ac02d03073" + }, + { + "path": "webp/dokemon.webp", + "mode": "100644", + "type": "blob", + "sha": "db4160ce1528daa84a6d27bcaae38caf88e3605e", + "size": 22862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db4160ce1528daa84a6d27bcaae38caf88e3605e" + }, + { + "path": "webp/dokploy-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "105d22842757ae6307a1e51b32923f1418ca27a0", + "size": 16930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/105d22842757ae6307a1e51b32923f1418ca27a0" + }, + { + "path": "webp/dokploy.webp", + "mode": "100644", + "type": "blob", + "sha": "94530466af159ba441e8566445f3de5fd08cbf30", + "size": 16924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94530466af159ba441e8566445f3de5fd08cbf30" + }, + { + "path": "webp/dokuwiki.webp", + "mode": "100644", + "type": "blob", + "sha": "fdc32a19381cf85a57ecc4c1bb3e21b047e17303", + "size": 140732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdc32a19381cf85a57ecc4c1bb3e21b047e17303" + }, + { + "path": "webp/dolibarr.webp", + "mode": "100644", + "type": "blob", + "sha": "4656ddfc15afd123f14ea5c3fa5f040ae41c387f", + "size": 7154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4656ddfc15afd123f14ea5c3fa5f040ae41c387f" + }, + { + "path": "webp/dolphin.webp", + "mode": "100644", + "type": "blob", + "sha": "0a98649a79c7c2ed63b960937bc5cb82a5b7493f", + "size": 38330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a98649a79c7c2ed63b960937bc5cb82a5b7493f" + }, + { + "path": "webp/domainmod.webp", + "mode": "100644", + "type": "blob", + "sha": "2cfd44ad0a18698dc841f73503aaf0b4b4967dc3", + "size": 39474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cfd44ad0a18698dc841f73503aaf0b4b4967dc3" + }, + { + "path": "webp/domoticz.webp", + "mode": "100644", + "type": "blob", + "sha": "8bf7ca68aa863012576e7b35439bfea37baa7998", + "size": 17306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bf7ca68aa863012576e7b35439bfea37baa7998" + }, + { + "path": "webp/donetick.webp", + "mode": "100644", + "type": "blob", + "sha": "bb611d6d5ec079726c0146ca9bb9975839b5c25d", + "size": 47122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb611d6d5ec079726c0146ca9bb9975839b5c25d" + }, + { + "path": "webp/doplarr.webp", + "mode": "100644", + "type": "blob", + "sha": "58375a6ea8ec427822071e31c1eeb19c82b8f14b", + "size": 58346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58375a6ea8ec427822071e31c1eeb19c82b8f14b" + }, + { + "path": "webp/doppler.webp", + "mode": "100644", + "type": "blob", + "sha": "fd56d56c2ae0e3e43734983125a09c5d0395b6f4", + "size": 54620, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd56d56c2ae0e3e43734983125a09c5d0395b6f4" + }, + { + "path": "webp/dopplertask.webp", + "mode": "100644", + "type": "blob", + "sha": "d16d5aa951aef05cffe6878dbd3f3ecb411a7a87", + "size": 14930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d16d5aa951aef05cffe6878dbd3f3ecb411a7a87" + }, + { + "path": "webp/double-commander.webp", + "mode": "100644", + "type": "blob", + "sha": "d25fc87a499e03ec379c277a7a94f7c6e564d4b6", + "size": 55240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d25fc87a499e03ec379c277a7a94f7c6e564d4b6" + }, + { + "path": "webp/double-take-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "ae6545d9eb9397bff703ea21a7f650799ba27974", + "size": 7736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae6545d9eb9397bff703ea21a7f650799ba27974" + }, + { + "path": "webp/double-take.webp", + "mode": "100644", + "type": "blob", + "sha": "adf229dd222ff623fd165f5dc93dea5a4eb6a8fd", + "size": 7470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adf229dd222ff623fd165f5dc93dea5a4eb6a8fd" + }, + { + "path": "webp/dovecot.webp", + "mode": "100644", + "type": "blob", + "sha": "797b5ba23bda40ac6d89b2ba9770598b117b80d4", + "size": 48290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/797b5ba23bda40ac6d89b2ba9770598b117b80d4" + }, + { + "path": "webp/dozzle.webp", + "mode": "100644", + "type": "blob", + "sha": "37d152d4269305619213407b8c0889d32547f801", + "size": 87928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37d152d4269305619213407b8c0889d32547f801" + }, + { + "path": "webp/dragon-ruby.webp", + "mode": "100644", + "type": "blob", + "sha": "66a38445f200f00d4c755ee38e84fcf31b0f1e55", + "size": 108226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66a38445f200f00d4c755ee38e84fcf31b0f1e55" + }, + { + "path": "webp/draw-io.webp", + "mode": "100644", + "type": "blob", + "sha": "f39a445306f5de02cfbfd67fad975fed6b5441ef", + "size": 24834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f39a445306f5de02cfbfd67fad975fed6b5441ef" + }, + { + "path": "webp/draytek.webp", + "mode": "100644", + "type": "blob", + "sha": "f99bc9c5f2c5c2317693e539f92c4830c2051450", + "size": 80768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f99bc9c5f2c5c2317693e539f92c4830c2051450" + }, + { + "path": "webp/dream-host-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "210b5515aa63c71bde55250b9177b83e01745eef", + "size": 16044, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/210b5515aa63c71bde55250b9177b83e01745eef" + }, + { + "path": "webp/dream-host.webp", + "mode": "100644", + "type": "blob", + "sha": "01ab5aba2fa412e822568ca7bf5422cb9c0bbf1a", + "size": 23936, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01ab5aba2fa412e822568ca7bf5422cb9c0bbf1a" + }, + { + "path": "webp/drone.webp", + "mode": "100644", + "type": "blob", + "sha": "a095cb3e7249563255d1f93339535e998ffb181e", + "size": 35774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a095cb3e7249563255d1f93339535e998ffb181e" + }, + { + "path": "webp/drop.webp", + "mode": "100644", + "type": "blob", + "sha": "e683f2b7bcad319b34a26cfe0cb24eff8d415d13", + "size": 23008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e683f2b7bcad319b34a26cfe0cb24eff8d415d13" + }, + { + "path": "webp/dropbox.webp", + "mode": "100644", + "type": "blob", + "sha": "014df16daaca3d9e57653f9b334a48cbdc150913", + "size": 37122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/014df16daaca3d9e57653f9b334a48cbdc150913" + }, + { + "path": "webp/dropout-light.webp", + "mode": "100644", + "type": "blob", + "sha": "47150641636bce9622d3fcab10ff34e1695ef0ef", + "size": 19946, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47150641636bce9622d3fcab10ff34e1695ef0ef" + }, + { + "path": "webp/dropout.webp", + "mode": "100644", + "type": "blob", + "sha": "937e16e5daf0a3dc22a4dcf7c37af8999faa74d6", + "size": 22424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/937e16e5daf0a3dc22a4dcf7c37af8999faa74d6" + }, + { + "path": "webp/droppy-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "49fda627d1ae3129a8bc209fae90a2534fe80968", + "size": 21826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49fda627d1ae3129a8bc209fae90a2534fe80968" + }, + { + "path": "webp/droppy.webp", + "mode": "100644", + "type": "blob", + "sha": "140e36cb030fe267effe60d626a307b55e54b111", + "size": 22376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/140e36cb030fe267effe60d626a307b55e54b111" + }, + { + "path": "webp/dub-light.webp", + "mode": "100644", + "type": "blob", + "sha": "174c19833e7be5247c480945b3231db74574ea5f", + "size": 4944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/174c19833e7be5247c480945b3231db74574ea5f" + }, + { + "path": "webp/dub.webp", + "mode": "100644", + "type": "blob", + "sha": "b664df2476246d1d3ceff4dd5b943e256c83561e", + "size": 4938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b664df2476246d1d3ceff4dd5b943e256c83561e" + }, + { + "path": "webp/duckdns-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0d2bab23c855daa09326817e43061fd786977200", + "size": 35432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d2bab23c855daa09326817e43061fd786977200" + }, + { + "path": "webp/duckdns.webp", + "mode": "100644", + "type": "blob", + "sha": "9fe5f26d47007e759f40a1ce068c5d1ba82b7c46", + "size": 41724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9fe5f26d47007e759f40a1ce068c5d1ba82b7c46" + }, + { + "path": "webp/duckduckgo.webp", + "mode": "100644", + "type": "blob", + "sha": "30ee4b6473789ee7ff04c8451c3f9412fb9300d7", + "size": 105734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30ee4b6473789ee7ff04c8451c3f9412fb9300d7" + }, + { + "path": "webp/dumbassets.webp", + "mode": "100644", + "type": "blob", + "sha": "92c03e66edab8704a08b40b2ae48592a5ee307c9", + "size": 21192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92c03e66edab8704a08b40b2ae48592a5ee307c9" + }, + { + "path": "webp/dumbpad.webp", + "mode": "100644", + "type": "blob", + "sha": "3cc072ceafe198fa12fc78a1b59000eb252fb061", + "size": 18108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cc072ceafe198fa12fc78a1b59000eb252fb061" + }, + { + "path": "webp/duo.webp", + "mode": "100644", + "type": "blob", + "sha": "1f918885b045deb27e1ac080d1e2f9768187ef22", + "size": 25854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f918885b045deb27e1ac080d1e2f9768187ef22" + }, + { + "path": "webp/duplicacy.webp", + "mode": "100644", + "type": "blob", + "sha": "d0c2de9e8670a4511f1d03c65e974cae9ab0f2b8", + "size": 61606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0c2de9e8670a4511f1d03c65e974cae9ab0f2b8" + }, + { + "path": "webp/duplicati.webp", + "mode": "100644", + "type": "blob", + "sha": "0c04f734484346363cdf0ffb2efe098a099dbeaf", + "size": 11284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0c04f734484346363cdf0ffb2efe098a099dbeaf" + }, + { + "path": "webp/dynmap.webp", + "mode": "100644", + "type": "blob", + "sha": "654e6591abe4c0d92c908fc2376cb5c35ff59472", + "size": 209432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/654e6591abe4c0d92c908fc2376cb5c35ff59472" + }, + { + "path": "webp/easy-gate-light.webp", + "mode": "100644", + "type": "blob", + "sha": "bb23e0a39e85ea6e525c4a6c291d069442eee4e6", + "size": 25340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb23e0a39e85ea6e525c4a6c291d069442eee4e6" + }, + { + "path": "webp/easy-gate.webp", + "mode": "100644", + "type": "blob", + "sha": "586d64aa05e0c92feba427fcfbac93ed54fb3284", + "size": 30214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/586d64aa05e0c92feba427fcfbac93ed54fb3284" + }, + { + "path": "webp/ebay.webp", + "mode": "100644", + "type": "blob", + "sha": "5dc31cc5edf24dbaca5e315085eb1e0ba6032513", + "size": 62788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5dc31cc5edf24dbaca5e315085eb1e0ba6032513" + }, + { + "path": "webp/eblocker.webp", + "mode": "100644", + "type": "blob", + "sha": "d25030237376f0ec68143df7d7dec628259832ff", + "size": 33482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d25030237376f0ec68143df7d7dec628259832ff" + }, + { + "path": "webp/edge-dev.webp", + "mode": "100644", + "type": "blob", + "sha": "91c5d920bf23300fc8306f89af6c98dc0c84b0fa", + "size": 60576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91c5d920bf23300fc8306f89af6c98dc0c84b0fa" + }, + { + "path": "webp/edge.webp", + "mode": "100644", + "type": "blob", + "sha": "fd4330211a8be981fbbfb10e929950dd98ab3b1e", + "size": 68560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd4330211a8be981fbbfb10e929950dd98ab3b1e" + }, + { + "path": "webp/edgeos-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3de186adbc74fa53e22f3f8a36abfcca3a40b695", + "size": 13122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3de186adbc74fa53e22f3f8a36abfcca3a40b695" + }, + { + "path": "webp/edgeos.webp", + "mode": "100644", + "type": "blob", + "sha": "be8c4cdfbd7bb314996e29ac8fa12e0b23eaf288", + "size": 13116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be8c4cdfbd7bb314996e29ac8fa12e0b23eaf288" + }, + { + "path": "webp/eitaa.webp", + "mode": "100644", + "type": "blob", + "sha": "a7b098858bf09fe34fa6dd671b43c1d99d5b4021", + "size": 37764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7b098858bf09fe34fa6dd671b43c1d99d5b4021" + }, + { + "path": "webp/elastic-beats.webp", + "mode": "100644", + "type": "blob", + "sha": "6d256749b637cb913670af2d5df1724fdaaddab9", + "size": 12814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d256749b637cb913670af2d5df1724fdaaddab9" + }, + { + "path": "webp/elastic-kibana.webp", + "mode": "100644", + "type": "blob", + "sha": "3aea4c575c51fa51f2b05dc9fc6072317824a658", + "size": 22350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3aea4c575c51fa51f2b05dc9fc6072317824a658" + }, + { + "path": "webp/elastic-logstash.webp", + "mode": "100644", + "type": "blob", + "sha": "7c30685456384a3f7f88149358011802c3b54379", + "size": 6816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c30685456384a3f7f88149358011802c3b54379" + }, + { + "path": "webp/elastic.webp", + "mode": "100644", + "type": "blob", + "sha": "52470710a96149949295caf4d32fcc8903f1f10c", + "size": 59734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52470710a96149949295caf4d32fcc8903f1f10c" + }, + { + "path": "webp/elasticsearch.webp", + "mode": "100644", + "type": "blob", + "sha": "52470710a96149949295caf4d32fcc8903f1f10c", + "size": 59734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52470710a96149949295caf4d32fcc8903f1f10c" + }, + { + "path": "webp/electron.webp", + "mode": "100644", + "type": "blob", + "sha": "f8c1bbc16bed786b08ec59455f2e5a9024755e6e", + "size": 68282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8c1bbc16bed786b08ec59455f2e5a9024755e6e" + }, + { + "path": "webp/electronic-arts.webp", + "mode": "100644", + "type": "blob", + "sha": "8234b79a1e79ce7812013a766522fbf6dd93139d", + "size": 34712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8234b79a1e79ce7812013a766522fbf6dd93139d" + }, + { + "path": "webp/electrum.webp", + "mode": "100644", + "type": "blob", + "sha": "09f4842d268ef19235d0b8cc61ec43fad914985c", + "size": 64542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09f4842d268ef19235d0b8cc61ec43fad914985c" + }, + { + "path": "webp/element.webp", + "mode": "100644", + "type": "blob", + "sha": "6cfe23dfe8ccdb2342ad9e6a602ae29119238bc5", + "size": 24240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cfe23dfe8ccdb2342ad9e6a602ae29119238bc5" + }, + { + "path": "webp/eleventy-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f13604126c2fb3363e18079e81dbc6715cefec3b", + "size": 5564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f13604126c2fb3363e18079e81dbc6715cefec3b" + }, + { + "path": "webp/eleventy.webp", + "mode": "100644", + "type": "blob", + "sha": "df39469762dee19f523c6ecfdfddef10c4db6f06", + "size": 10112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df39469762dee19f523c6ecfdfddef10c4db6f06" + }, + { + "path": "webp/elgato-wave-link.webp", + "mode": "100644", + "type": "blob", + "sha": "46515e2a097ff6ef94af6c0bb1d86a1f623df257", + "size": 47874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46515e2a097ff6ef94af6c0bb1d86a1f623df257" + }, + { + "path": "webp/eliza-os.webp", + "mode": "100644", + "type": "blob", + "sha": "2e2c074757dfaee5800899709ccee64b124c833a", + "size": 76624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e2c074757dfaee5800899709ccee64b124c833a" + }, + { + "path": "webp/elysian.webp", + "mode": "100644", + "type": "blob", + "sha": "83970fe9df084771c64cc03766e17b13cd5223e6", + "size": 141974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83970fe9df084771c64cc03766e17b13cd5223e6" + }, + { + "path": "webp/emacs.webp", + "mode": "100644", + "type": "blob", + "sha": "64303d28865db985013722fc1a9fee3aa38217ca", + "size": 71332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64303d28865db985013722fc1a9fee3aa38217ca" + }, + { + "path": "webp/embraer.webp", + "mode": "100644", + "type": "blob", + "sha": "edd7de2b34ff1c9ff5d57598b7dd34fe906d4f5e", + "size": 46428, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edd7de2b34ff1c9ff5d57598b7dd34fe906d4f5e" + }, + { + "path": "webp/emby.webp", + "mode": "100644", + "type": "blob", + "sha": "0101ddb2a676c948f3925aa7b22e531eca539310", + "size": 15738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0101ddb2a676c948f3925aa7b22e531eca539310" + }, + { + "path": "webp/embystat.webp", + "mode": "100644", + "type": "blob", + "sha": "9cfbca5b85b0a1a31eeccb5157feccac8dd560e2", + "size": 39960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cfbca5b85b0a1a31eeccb5157feccac8dd560e2" + }, + { + "path": "webp/emq-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b3d8589f2eff92ae2260012ab2b1624e4c626bde", + "size": 13002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3d8589f2eff92ae2260012ab2b1624e4c626bde" + }, + { + "path": "webp/emq.webp", + "mode": "100644", + "type": "blob", + "sha": "09932fb0e9e5af149bd80b468592710c009fb9fc", + "size": 12996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09932fb0e9e5af149bd80b468592710c009fb9fc" + }, + { + "path": "webp/emqx.webp", + "mode": "100644", + "type": "blob", + "sha": "f019702bef5d8a245ce3e96bbe6c4544c2d42d78", + "size": 17720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f019702bef5d8a245ce3e96bbe6c4544c2d42d78" + }, + { + "path": "webp/emsesp.webp", + "mode": "100644", + "type": "blob", + "sha": "2fa47fc13bc3f176d01bde7bd7bb4c472b004f35", + "size": 31526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fa47fc13bc3f176d01bde7bd7bb4c472b004f35" + }, + { + "path": "webp/emulatorjs.webp", + "mode": "100644", + "type": "blob", + "sha": "b866f8a3d716a9161cceaa96529ff03d6da3706a", + "size": 75702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b866f8a3d716a9161cceaa96529ff03d6da3706a" + }, + { + "path": "webp/enbizcard.webp", + "mode": "100644", + "type": "blob", + "sha": "e8d999acbf5d41c29019f2c786113924abd78b4e", + "size": 16508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8d999acbf5d41c29019f2c786113924abd78b4e" + }, + { + "path": "webp/enclosed-light.webp", + "mode": "100644", + "type": "blob", + "sha": "58e823f39c3c9dde21d3b91106947fc7f26cd516", + "size": 5560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/58e823f39c3c9dde21d3b91106947fc7f26cd516" + }, + { + "path": "webp/enclosed.webp", + "mode": "100644", + "type": "blob", + "sha": "61ffd56bdb15e864c751370915a9619ed871f547", + "size": 7994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61ffd56bdb15e864c751370915a9619ed871f547" + }, + { + "path": "webp/endeavouros-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "983786d18cd6a4c570e084c354ebfcce6d7e1783", + "size": 40320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/983786d18cd6a4c570e084c354ebfcce6d7e1783" + }, + { + "path": "webp/endless-light.webp", + "mode": "100644", + "type": "blob", + "sha": "154c71294fdd4e2b7e7e35081415130ba7633eaf", + "size": 11138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/154c71294fdd4e2b7e7e35081415130ba7633eaf" + }, + { + "path": "webp/endless.webp", + "mode": "100644", + "type": "blob", + "sha": "5d34a790edc8277d96807bc0a33fce64202667f2", + "size": 11134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d34a790edc8277d96807bc0a33fce64202667f2" + }, + { + "path": "webp/endurain.webp", + "mode": "100644", + "type": "blob", + "sha": "740e1cf539d6e27287d2bd3f8962200de575d89f", + "size": 35472, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/740e1cf539d6e27287d2bd3f8962200de575d89f" + }, + { + "path": "webp/enhance.webp", + "mode": "100644", + "type": "blob", + "sha": "cd415993ec226a5881f43eb3b5d446cf73a68f2b", + "size": 21546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd415993ec226a5881f43eb3b5d446cf73a68f2b" + }, + { + "path": "webp/enshrouded.webp", + "mode": "100644", + "type": "blob", + "sha": "47b4c5d8c08c81098379abdcb26da28d968121ca", + "size": 239982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47b4c5d8c08c81098379abdcb26da28d968121ca" + }, + { + "path": "webp/ente-photos.webp", + "mode": "100644", + "type": "blob", + "sha": "74ec256f33795649a5f7add760254b5683a07527", + "size": 33744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74ec256f33795649a5f7add760254b5683a07527" + }, + { + "path": "webp/entergy.webp", + "mode": "100644", + "type": "blob", + "sha": "3c2137797e37c84c70363100e84448521b61ba78", + "size": 32224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c2137797e37c84c70363100e84448521b61ba78" + }, + { + "path": "webp/epic-games-light.webp", + "mode": "100644", + "type": "blob", + "sha": "50bae6329fe762815eea33140878c7940320f05c", + "size": 9490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50bae6329fe762815eea33140878c7940320f05c" + }, + { + "path": "webp/epic-games.webp", + "mode": "100644", + "type": "blob", + "sha": "177ad7fa857af2b42d3bd76c9c9c2ddc6e308b91", + "size": 13708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/177ad7fa857af2b42d3bd76c9c9c2ddc6e308b91" + }, + { + "path": "webp/epson-iprint.webp", + "mode": "100644", + "type": "blob", + "sha": "169dabadcb670e0677dff23573cf41649eada9d5", + "size": 33646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/169dabadcb670e0677dff23573cf41649eada9d5" + }, + { + "path": "webp/ersatztv.webp", + "mode": "100644", + "type": "blob", + "sha": "16398fc9eb8dba89e3ceecd07cf1031305ccad9d", + "size": 6386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16398fc9eb8dba89e3ceecd07cf1031305ccad9d" + }, + { + "path": "webp/erste-george.webp", + "mode": "100644", + "type": "blob", + "sha": "f3b740c6f823fbac31c48082ffaceb07a5747886", + "size": 19552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3b740c6f823fbac31c48082ffaceb07a5747886" + }, + { + "path": "webp/erste.webp", + "mode": "100644", + "type": "blob", + "sha": "d1d7362dc69d53c266e26869b9243e51e18ad771", + "size": 34110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1d7362dc69d53c266e26869b9243e51e18ad771" + }, + { + "path": "webp/esphome-alt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6f6327c4e329a05ac7e23f33983880b8a02e2876", + "size": 11424, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f6327c4e329a05ac7e23f33983880b8a02e2876" + }, + { + "path": "webp/esphome-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "b6b1e6520d9e901157479e4361b382f8c1c30b28", + "size": 10088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6b1e6520d9e901157479e4361b382f8c1c30b28" + }, + { + "path": "webp/esphome-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ef586d8632b3e882e04987574d81d86895d26d1c", + "size": 3274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef586d8632b3e882e04987574d81d86895d26d1c" + }, + { + "path": "webp/esphome.webp", + "mode": "100644", + "type": "blob", + "sha": "8c2dba281eff60cdf142c49ab4b222f95b08b8cd", + "size": 7020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c2dba281eff60cdf142c49ab4b222f95b08b8cd" + }, + { + "path": "webp/espocrm.webp", + "mode": "100644", + "type": "blob", + "sha": "41e4dbc2178128d7e0d806c68fe1f75390621da8", + "size": 22920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41e4dbc2178128d7e0d806c68fe1f75390621da8" + }, + { + "path": "webp/espressif.webp", + "mode": "100644", + "type": "blob", + "sha": "402eedbe0a7726dec32fdb74da995fede45135db", + "size": 47010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/402eedbe0a7726dec32fdb74da995fede45135db" + }, + { + "path": "webp/etcd.webp", + "mode": "100644", + "type": "blob", + "sha": "04f5871c1d6ff0e8c7643172a186b5c6aff56084", + "size": 31414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04f5871c1d6ff0e8c7643172a186b5c6aff56084" + }, + { + "path": "webp/etesync.webp", + "mode": "100644", + "type": "blob", + "sha": "b055481ecd23b7b70f9adb05d239515015d62a43", + "size": 45380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b055481ecd23b7b70f9adb05d239515015d62a43" + }, + { + "path": "webp/ethereum.webp", + "mode": "100644", + "type": "blob", + "sha": "ed17c0a5f0d2fe59ff19e2dfdd20d7cd2bbdcc98", + "size": 10628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed17c0a5f0d2fe59ff19e2dfdd20d7cd2bbdcc98" + }, + { + "path": "webp/etherpad.webp", + "mode": "100644", + "type": "blob", + "sha": "82349e74016a925f8080adfd2443488af1ad462e", + "size": 24442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82349e74016a925f8080adfd2443488af1ad462e" + }, + { + "path": "webp/evcc.webp", + "mode": "100644", + "type": "blob", + "sha": "e09897b4f6b7330304d4046209f989113b74e714", + "size": 12182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e09897b4f6b7330304d4046209f989113b74e714" + }, + { + "path": "webp/evebox.webp", + "mode": "100644", + "type": "blob", + "sha": "214d5e612ac41bfa2e0f402fd064ea9a1b7a4818", + "size": 27010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/214d5e612ac41bfa2e0f402fd064ea9a1b7a4818" + }, + { + "path": "webp/evernote.webp", + "mode": "100644", + "type": "blob", + "sha": "48959068bce378d541f0468abcd79e6825e01e4e", + "size": 19540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48959068bce378d541f0468abcd79e6825e01e4e" + }, + { + "path": "webp/eweka.webp", + "mode": "100644", + "type": "blob", + "sha": "3be81ff6f13a8a1f91ed93f3ccd415479aa941df", + "size": 35390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3be81ff6f13a8a1f91ed93f3ccd415479aa941df" + }, + { + "path": "webp/excalidraw.webp", + "mode": "100644", + "type": "blob", + "sha": "31a81d0beb3bb662847a50c4dcbb60f8c7a6c4f6", + "size": 45932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31a81d0beb3bb662847a50c4dcbb60f8c7a6c4f6" + }, + { + "path": "webp/exercism-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "8f947048e9d43538808786727df9a15f48540931", + "size": 6664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f947048e9d43538808786727df9a15f48540931" + }, + { + "path": "webp/exercism.webp", + "mode": "100644", + "type": "blob", + "sha": "b96186be8249575edbe4b832bb162acb4a20d483", + "size": 6658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b96186be8249575edbe4b832bb162acb4a20d483" + }, + { + "path": "webp/expense-owl.webp", + "mode": "100644", + "type": "blob", + "sha": "af92dcb752f7b609392c9121e0657de674d784ea", + "size": 212920, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af92dcb752f7b609392c9121e0657de674d784ea" + }, + { + "path": "webp/ezbookkeeping.webp", + "mode": "100644", + "type": "blob", + "sha": "4b6d4b800e53fcbc24db8fc53d83c443343ad220", + "size": 35546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b6d4b800e53fcbc24db8fc53d83c443343ad220" + }, + { + "path": "webp/f-droid.webp", + "mode": "100644", + "type": "blob", + "sha": "0f64285d6f4c9b9c122f2ce64aa6bdd434b88d7d", + "size": 58384, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f64285d6f4c9b9c122f2ce64aa6bdd434b88d7d" + }, + { + "path": "webp/f1-dash.webp", + "mode": "100644", + "type": "blob", + "sha": "c726b02324e7e912bf85ec2d4200259d78052517", + "size": 71742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c726b02324e7e912bf85ec2d4200259d78052517" + }, + { + "path": "webp/f5-networks.webp", + "mode": "100644", + "type": "blob", + "sha": "e129654f34a9c296daf534a14bb1ea8b6c66dfc5", + "size": 65964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e129654f34a9c296daf534a14bb1ea8b6c66dfc5" + }, + { + "path": "webp/facebook-messenger.webp", + "mode": "100644", + "type": "blob", + "sha": "a90c6e3c649194581071acdd0984d82f1af6c899", + "size": 69488, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a90c6e3c649194581071acdd0984d82f1af6c899" + }, + { + "path": "webp/facebook.webp", + "mode": "100644", + "type": "blob", + "sha": "6fe164a731e24367647b7712bbcb29261e21720b", + "size": 28018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fe164a731e24367647b7712bbcb29261e21720b" + }, + { + "path": "webp/falcon-christmas.webp", + "mode": "100644", + "type": "blob", + "sha": "9f0d56e8049123cd39781d9784a08471d9f5617e", + "size": 27718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f0d56e8049123cd39781d9784a08471d9f5617e" + }, + { + "path": "webp/falcon-player-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e93e734540eaa3dd80aaeab5dfc729f2b001f754", + "size": 11532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e93e734540eaa3dd80aaeab5dfc729f2b001f754" + }, + { + "path": "webp/falcon-player.webp", + "mode": "100644", + "type": "blob", + "sha": "79e8115c5d6189e62efb6c2b3b05af48185eda6d", + "size": 49252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79e8115c5d6189e62efb6c2b3b05af48185eda6d" + }, + { + "path": "webp/fast-com-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3e17b2bb939c84a2a4986d4c59ce3e2d473ce48c", + "size": 27696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e17b2bb939c84a2a4986d4c59ce3e2d473ce48c" + }, + { + "path": "webp/fast-com.webp", + "mode": "100644", + "type": "blob", + "sha": "cff61790457c7eb5ab9bae65cc716ac0ca2ca7ea", + "size": 27112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cff61790457c7eb5ab9bae65cc716ac0ca2ca7ea" + }, + { + "path": "webp/fasten-health.webp", + "mode": "100644", + "type": "blob", + "sha": "a811f670bb1c7a1859b0f69e0df58d9626045af6", + "size": 9072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a811f670bb1c7a1859b0f69e0df58d9626045af6" + }, + { + "path": "webp/fastmail.webp", + "mode": "100644", + "type": "blob", + "sha": "e161c1fc81e77755e26a6cd24ea338335b3b08e4", + "size": 35464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e161c1fc81e77755e26a6cd24ea338335b3b08e4" + }, + { + "path": "webp/fedora-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "8f6b11e7f6430c692c1b6039a26f0b854240b06b", + "size": 33994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f6b11e7f6430c692c1b6039a26f0b854240b06b" + }, + { + "path": "webp/fedora.webp", + "mode": "100644", + "type": "blob", + "sha": "ce6f69c325307b9cfdab17ee4f3e1040aa138cb7", + "size": 42882, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce6f69c325307b9cfdab17ee4f3e1040aa138cb7" + }, + { + "path": "webp/feedbase-light.webp", + "mode": "100644", + "type": "blob", + "sha": "520cc7f109d630777c907de603dd0a395be862cf", + "size": 2258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/520cc7f109d630777c907de603dd0a395be862cf" + }, + { + "path": "webp/feedbase.webp", + "mode": "100644", + "type": "blob", + "sha": "5c712bbbd0285837e1b55efda270806ad8110829", + "size": 2264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c712bbbd0285837e1b55efda270806ad8110829" + }, + { + "path": "webp/feedbin-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1302eb8189850aa8f6fa0a8a3476606d226470f0", + "size": 8678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1302eb8189850aa8f6fa0a8a3476606d226470f0" + }, + { + "path": "webp/feedbin.webp", + "mode": "100644", + "type": "blob", + "sha": "2e7c424c860ad6320ca0e152927057c4460ce30c", + "size": 8672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e7c424c860ad6320ca0e152927057c4460ce30c" + }, + { + "path": "webp/feedly.webp", + "mode": "100644", + "type": "blob", + "sha": "46a85e9fd7560df52ec6355c9c3b5d59712017ce", + "size": 24624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46a85e9fd7560df52ec6355c9c3b5d59712017ce" + }, + { + "path": "webp/feedlynx-light.webp", + "mode": "100644", + "type": "blob", + "sha": "63577e3e38b8f7bf0e74bd0ea1700c42bcc973d3", + "size": 35046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63577e3e38b8f7bf0e74bd0ea1700c42bcc973d3" + }, + { + "path": "webp/feedlynx.webp", + "mode": "100644", + "type": "blob", + "sha": "c0ea118c1a61fd0bb50f8f535994338442704f34", + "size": 34442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0ea118c1a61fd0bb50f8f535994338442704f34" + }, + { + "path": "webp/feishin.webp", + "mode": "100644", + "type": "blob", + "sha": "1e23965cc5431a1459b1a6c18ebc53397fff6640", + "size": 20944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e23965cc5431a1459b1a6c18ebc53397fff6640" + }, + { + "path": "webp/fenrus-light.webp", + "mode": "100644", + "type": "blob", + "sha": "27b6c40cf8585031326d102c5d356ab90418955f", + "size": 77346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27b6c40cf8585031326d102c5d356ab90418955f" + }, + { + "path": "webp/fenrus.webp", + "mode": "100644", + "type": "blob", + "sha": "fd80456ad03f34bf48682a1d9352973d361ee66c", + "size": 80756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd80456ad03f34bf48682a1d9352973d361ee66c" + }, + { + "path": "webp/ferdi.webp", + "mode": "100644", + "type": "blob", + "sha": "8bc224b9e37dece5f5afeb3f6a8933a14d642e81", + "size": 55404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bc224b9e37dece5f5afeb3f6a8933a14d642e81" + }, + { + "path": "webp/ferdium.webp", + "mode": "100644", + "type": "blob", + "sha": "ef86b46ff3fb4c0cfd8e4054b44713cd0d32793d", + "size": 29898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef86b46ff3fb4c0cfd8e4054b44713cd0d32793d" + }, + { + "path": "webp/fermentrack.webp", + "mode": "100644", + "type": "blob", + "sha": "ab0a0c0ab383f1bc614a233f8c62ba7459f771f6", + "size": 11364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab0a0c0ab383f1bc614a233f8c62ba7459f771f6" + }, + { + "path": "webp/ferretdb.webp", + "mode": "100644", + "type": "blob", + "sha": "51adc867d7d4cf6736acd9bbbe1a62284b019798", + "size": 25698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51adc867d7d4cf6736acd9bbbe1a62284b019798" + }, + { + "path": "webp/fibaro.webp", + "mode": "100644", + "type": "blob", + "sha": "fa913ce44c7e7e6e73a60b8047697efd41b12d2d", + "size": 28644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa913ce44c7e7e6e73a60b8047697efd41b12d2d" + }, + { + "path": "webp/fidelity.webp", + "mode": "100644", + "type": "blob", + "sha": "764efde9fe2c4314d338d7efceae7a6317b32a08", + "size": 51550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/764efde9fe2c4314d338d7efceae7a6317b32a08" + }, + { + "path": "webp/fider.webp", + "mode": "100644", + "type": "blob", + "sha": "8fdcb7f3a8d505b97e982d224eeae16bf68ceaa7", + "size": 64626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8fdcb7f3a8d505b97e982d224eeae16bf68ceaa7" + }, + { + "path": "webp/figma.webp", + "mode": "100644", + "type": "blob", + "sha": "5d52e19a959b23a43a9fb9c4f98fdfee07fe7c82", + "size": 17396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d52e19a959b23a43a9fb9c4f98fdfee07fe7c82" + }, + { + "path": "webp/filebot.webp", + "mode": "100644", + "type": "blob", + "sha": "702d0ae2b046dd926bbcd25d0a127438faac9134", + "size": 45446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/702d0ae2b046dd926bbcd25d0a127438faac9134" + }, + { + "path": "webp/filebrowser-quantum.webp", + "mode": "100644", + "type": "blob", + "sha": "a69737877520c77d5d19e09370412835aca8292b", + "size": 10612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a69737877520c77d5d19e09370412835aca8292b" + }, + { + "path": "webp/filebrowser.webp", + "mode": "100644", + "type": "blob", + "sha": "24a1e3d1da730d5897bb780d08dd9507241d3834", + "size": 54504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24a1e3d1da730d5897bb780d08dd9507241d3834" + }, + { + "path": "webp/filecloud.webp", + "mode": "100644", + "type": "blob", + "sha": "873a49f410c2bc7b698683cfa94e6cb9588fae0c", + "size": 41114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/873a49f410c2bc7b698683cfa94e6cb9588fae0c" + }, + { + "path": "webp/fileflows.webp", + "mode": "100644", + "type": "blob", + "sha": "adfde0babd612fb190bebad49493989ea33a6631", + "size": 30408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adfde0babd612fb190bebad49493989ea33a6631" + }, + { + "path": "webp/filegator.webp", + "mode": "100644", + "type": "blob", + "sha": "61cb496cd260e932a379cc103b01fe9523a0415b", + "size": 34404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61cb496cd260e932a379cc103b01fe9523a0415b" + }, + { + "path": "webp/filepizza.webp", + "mode": "100644", + "type": "blob", + "sha": "a66bc26c1a048e9cfbcdada0c512e07a1ef0a498", + "size": 232316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a66bc26c1a048e9cfbcdada0c512e07a1ef0a498" + }, + { + "path": "webp/filerun.webp", + "mode": "100644", + "type": "blob", + "sha": "e91352c62b69d614201a5de1cb1b27e1258183ac", + "size": 16838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e91352c62b69d614201a5de1cb1b27e1258183ac" + }, + { + "path": "webp/files-community.webp", + "mode": "100644", + "type": "blob", + "sha": "0825ee3453f760f6b1dc78d52bea0ba9d34d5972", + "size": 44016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0825ee3453f760f6b1dc78d52bea0ba9d34d5972" + }, + { + "path": "webp/files.webp", + "mode": "100644", + "type": "blob", + "sha": "1a1af63d5ced1bce3e1ac1d5d51b4c24b8587227", + "size": 5320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a1af63d5ced1bce3e1ac1d5d51b4c24b8587227" + }, + { + "path": "webp/filestash.webp", + "mode": "100644", + "type": "blob", + "sha": "99b56dc723eb8c39e9718215840f335b1a21cbf8", + "size": 36214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99b56dc723eb8c39e9718215840f335b1a21cbf8" + }, + { + "path": "webp/filezilla.webp", + "mode": "100644", + "type": "blob", + "sha": "60a92d5453e0907e0342decc91f6aa166cafc74d", + "size": 51130, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a92d5453e0907e0342decc91f6aa166cafc74d" + }, + { + "path": "webp/finamp.webp", + "mode": "100644", + "type": "blob", + "sha": "17677cb2e6623410e490f42234ddd86cf00c6ead", + "size": 19284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17677cb2e6623410e490f42234ddd86cf00c6ead" + }, + { + "path": "webp/findroid.webp", + "mode": "100644", + "type": "blob", + "sha": "d488ad94988969d0b9d8245d40f2bdb391ea1dce", + "size": 70234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d488ad94988969d0b9d8245d40f2bdb391ea1dce" + }, + { + "path": "webp/fios-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1a5c9d524f7dee21a30d890d67e8117b807796cd", + "size": 18530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a5c9d524f7dee21a30d890d67e8117b807796cd" + }, + { + "path": "webp/fios.webp", + "mode": "100644", + "type": "blob", + "sha": "590945ff46b31f47817ec4e8aa920356f392ea25", + "size": 26136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/590945ff46b31f47817ec4e8aa920356f392ea25" + }, + { + "path": "webp/firebase.webp", + "mode": "100644", + "type": "blob", + "sha": "f494e09d14c753da150c11085b26f84218f03129", + "size": 26106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f494e09d14c753da150c11085b26f84218f03129" + }, + { + "path": "webp/firefly-iii.webp", + "mode": "100644", + "type": "blob", + "sha": "921058762ced3a09fc2c584ead689c3433b81f95", + "size": 39016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/921058762ced3a09fc2c584ead689c3433b81f95" + }, + { + "path": "webp/firefly.webp", + "mode": "100644", + "type": "blob", + "sha": "921058762ced3a09fc2c584ead689c3433b81f95", + "size": 39016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/921058762ced3a09fc2c584ead689c3433b81f95" + }, + { + "path": "webp/firefox-beta.webp", + "mode": "100644", + "type": "blob", + "sha": "bbc1109175b66196c90d5c90d37f3f408a4800ff", + "size": 99912, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbc1109175b66196c90d5c90d37f3f408a4800ff" + }, + { + "path": "webp/firefox-developer-edition.webp", + "mode": "100644", + "type": "blob", + "sha": "f7d2eb2b53c173d8de88de81f88e2e4a1f5373f9", + "size": 112090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7d2eb2b53c173d8de88de81f88e2e4a1f5373f9" + }, + { + "path": "webp/firefox-lite.webp", + "mode": "100644", + "type": "blob", + "sha": "fe5d20b5e8436782da6aace4ac315c21078756f9", + "size": 94128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe5d20b5e8436782da6aace4ac315c21078756f9" + }, + { + "path": "webp/firefox-nightly.webp", + "mode": "100644", + "type": "blob", + "sha": "96ba57e7ba2993b9466ab2dceb5ed3907fbc763a", + "size": 89678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96ba57e7ba2993b9466ab2dceb5ed3907fbc763a" + }, + { + "path": "webp/firefox-reality.webp", + "mode": "100644", + "type": "blob", + "sha": "28e5979c29bb3c5f044cdb1c5194d7c53a03d91f", + "size": 127562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28e5979c29bb3c5f044cdb1c5194d7c53a03d91f" + }, + { + "path": "webp/firefox-send.webp", + "mode": "100644", + "type": "blob", + "sha": "812bfad2f3602c9a149deca916329daa7484b4eb", + "size": 47998, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/812bfad2f3602c9a149deca916329daa7484b4eb" + }, + { + "path": "webp/firefox.webp", + "mode": "100644", + "type": "blob", + "sha": "be05e7c19744d58d2e8ceb75a744d806693a5c9d", + "size": 89006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be05e7c19744d58d2e8ceb75a744d806693a5c9d" + }, + { + "path": "webp/fireshare.webp", + "mode": "100644", + "type": "blob", + "sha": "98f3f059e01bee35dffa2195a182a29c1c24fe67", + "size": 50390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98f3f059e01bee35dffa2195a182a29c1c24fe67" + }, + { + "path": "webp/firewalla.webp", + "mode": "100644", + "type": "blob", + "sha": "e1a4dcf322538c500f33fb5642f084c55b064e8d", + "size": 34014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1a4dcf322538c500f33fb5642f084c55b064e8d" + }, + { + "path": "webp/fittrackee.webp", + "mode": "100644", + "type": "blob", + "sha": "ce291f7374823356b35b1ae80e02ba9f8f1fc4cf", + "size": 102972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce291f7374823356b35b1ae80e02ba9f8f1fc4cf" + }, + { + "path": "webp/fl-studio.webp", + "mode": "100644", + "type": "blob", + "sha": "478348bdb148b1c437d2882127d26a49117cca1d", + "size": 102240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/478348bdb148b1c437d2882127d26a49117cca1d" + }, + { + "path": "webp/fladder.webp", + "mode": "100644", + "type": "blob", + "sha": "5e3738accc080ba34eacd6c63e5dd1e82ac1ebbe", + "size": 32432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e3738accc080ba34eacd6c63e5dd1e82ac1ebbe" + }, + { + "path": "webp/flame.webp", + "mode": "100644", + "type": "blob", + "sha": "7889d09f8cd14ad46816d1c28f75eb1e07179cd4", + "size": 32214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7889d09f8cd14ad46816d1c28f75eb1e07179cd4" + }, + { + "path": "webp/flaresolverr.webp", + "mode": "100644", + "type": "blob", + "sha": "bd2547772ffba0e3557cf54681603e75fdc7e963", + "size": 62652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd2547772ffba0e3557cf54681603e75fdc7e963" + }, + { + "path": "webp/flarum.webp", + "mode": "100644", + "type": "blob", + "sha": "f36704adb1ba041cef24ecb6cd2c9cdeed3d88d0", + "size": 5814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f36704adb1ba041cef24ecb6cd2c9cdeed3d88d0" + }, + { + "path": "webp/flat-notes.webp", + "mode": "100644", + "type": "blob", + "sha": "7ed8c91990514b828bdc57a0a5169e846918d71d", + "size": 8094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ed8c91990514b828bdc57a0a5169e846918d71d" + }, + { + "path": "webp/flathub-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "5c870a479a058706104fe046e02b1a4440b5d25e", + "size": 4664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c870a479a058706104fe046e02b1a4440b5d25e" + }, + { + "path": "webp/flathub.webp", + "mode": "100644", + "type": "blob", + "sha": "2228baa3e9d3d9663d09d715cbc21249f750cf77", + "size": 4658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2228baa3e9d3d9663d09d715cbc21249f750cf77" + }, + { + "path": "webp/flatnotes.webp", + "mode": "100644", + "type": "blob", + "sha": "e7a0248cfbdb71d5d2e3f82203912edd48a2dc14", + "size": 21296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7a0248cfbdb71d5d2e3f82203912edd48a2dc14" + }, + { + "path": "webp/flatpak.webp", + "mode": "100644", + "type": "blob", + "sha": "1c750bf558636949ab3f1674e7d4874f90c23c85", + "size": 21214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c750bf558636949ab3f1674e7d4874f90c23c85" + }, + { + "path": "webp/fleetdm.webp", + "mode": "100644", + "type": "blob", + "sha": "5963995cb8618fb16d952fc77447bc73ce1255c7", + "size": 21564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5963995cb8618fb16d952fc77447bc73ce1255c7" + }, + { + "path": "webp/flexget.webp", + "mode": "100644", + "type": "blob", + "sha": "4a903bd9c49ce4d70c1dae57addb7cddcae40a03", + "size": 39586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a903bd9c49ce4d70c1dae57addb7cddcae40a03" + }, + { + "path": "webp/flightaware.webp", + "mode": "100644", + "type": "blob", + "sha": "fe15917b472aa486ea23cb69022c98f04939ee19", + "size": 24064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe15917b472aa486ea23cb69022c98f04939ee19" + }, + { + "path": "webp/flightradar24-light.webp", + "mode": "100644", + "type": "blob", + "sha": "116741fd92cf87694bc02c28bfced6a8b6e5d856", + "size": 13820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/116741fd92cf87694bc02c28bfced6a8b6e5d856" + }, + { + "path": "webp/flightradar24.webp", + "mode": "100644", + "type": "blob", + "sha": "935546b49903c77309d36d02c8ac741f7ef8e7ec", + "size": 13816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/935546b49903c77309d36d02c8ac741f7ef8e7ec" + }, + { + "path": "webp/floatplane.webp", + "mode": "100644", + "type": "blob", + "sha": "845aa692d1396d06557e2f678a24f8cac173c5d0", + "size": 61658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/845aa692d1396d06557e2f678a24f8cac173c5d0" + }, + { + "path": "webp/flogo.webp", + "mode": "100644", + "type": "blob", + "sha": "b64eb39afb543115ccb4112084516942f0529cc9", + "size": 45008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b64eb39afb543115ccb4112084516942f0529cc9" + }, + { + "path": "webp/flood.webp", + "mode": "100644", + "type": "blob", + "sha": "37e458e360a4ab3bf5cb54214439215eea4d630e", + "size": 62204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37e458e360a4ab3bf5cb54214439215eea4d630e" + }, + { + "path": "webp/floorp.webp", + "mode": "100644", + "type": "blob", + "sha": "860095ed25a49137c37008ce1dda52240ff59bf5", + "size": 43432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/860095ed25a49137c37008ce1dda52240ff59bf5" + }, + { + "path": "webp/flowise.webp", + "mode": "100644", + "type": "blob", + "sha": "c958e5ea1a8148856eddd2f98c1415c995aeb774", + "size": 14150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c958e5ea1a8148856eddd2f98c1415c995aeb774" + }, + { + "path": "webp/flowtunes.webp", + "mode": "100644", + "type": "blob", + "sha": "041f13649ff5c778b731b6396310ceafe2ab40cd", + "size": 20952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/041f13649ff5c778b731b6396310ceafe2ab40cd" + }, + { + "path": "webp/fluent-reader.webp", + "mode": "100644", + "type": "blob", + "sha": "48ef040241b724314fc3e87df7c6f8cea0d18d75", + "size": 15018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48ef040241b724314fc3e87df7c6f8cea0d18d75" + }, + { + "path": "webp/fluffychat-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e35ce2e1216e5f4b5b927d69b5177a9c8dd312c1", + "size": 29578, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e35ce2e1216e5f4b5b927d69b5177a9c8dd312c1" + }, + { + "path": "webp/fluffychat.webp", + "mode": "100644", + "type": "blob", + "sha": "8c4739347b682aad11cf703549ec8e8bf26316b0", + "size": 30308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c4739347b682aad11cf703549ec8e8bf26316b0" + }, + { + "path": "webp/fluidd.webp", + "mode": "100644", + "type": "blob", + "sha": "b7ff96af52db67c75c1b001e6c819a25c02809ad", + "size": 36180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7ff96af52db67c75c1b001e6c819a25c02809ad" + }, + { + "path": "webp/flux-cd.webp", + "mode": "100644", + "type": "blob", + "sha": "03100a5e84a7b0bce030ab1de8f0c979d8d4eaed", + "size": 46442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03100a5e84a7b0bce030ab1de8f0c979d8d4eaed" + }, + { + "path": "webp/fly-io.webp", + "mode": "100644", + "type": "blob", + "sha": "7d026b59ef7f904c849a69c8ae3314c1fa343b62", + "size": 63058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d026b59ef7f904c849a69c8ae3314c1fa343b62" + }, + { + "path": "webp/fmd.webp", + "mode": "100644", + "type": "blob", + "sha": "ee10bf897f693efdc2d580c27de6754b82a37097", + "size": 39680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee10bf897f693efdc2d580c27de6754b82a37097" + }, + { + "path": "webp/fnos.webp", + "mode": "100644", + "type": "blob", + "sha": "05c64c4550499318063dd61acc43a55a3b4f2e85", + "size": 15832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05c64c4550499318063dd61acc43a55a3b4f2e85" + }, + { + "path": "webp/focalboard.webp", + "mode": "100644", + "type": "blob", + "sha": "a631ecf10e82a65714dbebd73be13a8285b25a3b", + "size": 33454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a631ecf10e82a65714dbebd73be13a8285b25a3b" + }, + { + "path": "webp/foldingathome.webp", + "mode": "100644", + "type": "blob", + "sha": "49bc2bc5d3c6ba32c7b3520d605293a760c6bfaf", + "size": 107098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49bc2bc5d3c6ba32c7b3520d605293a760c6bfaf" + }, + { + "path": "webp/fontawesome.webp", + "mode": "100644", + "type": "blob", + "sha": "f82ac4953ebe6c11ce4e43d54bb3c919b7a623d0", + "size": 10300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f82ac4953ebe6c11ce4e43d54bb3c919b7a623d0" + }, + { + "path": "webp/foreflight-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "816d0463457a208848259da10fd831390e974e5c", + "size": 25458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/816d0463457a208848259da10fd831390e974e5c" + }, + { + "path": "webp/foreflight.webp", + "mode": "100644", + "type": "blob", + "sha": "4cd60fe94a616183bf40752b093122315500dcf6", + "size": 46128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cd60fe94a616183bf40752b093122315500dcf6" + }, + { + "path": "webp/forgejo.webp", + "mode": "100644", + "type": "blob", + "sha": "c9c2662616cc5950e6f4d614c80d0d45a4656502", + "size": 20376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9c2662616cc5950e6f4d614c80d0d45a4656502" + }, + { + "path": "webp/forte-light.webp", + "mode": "100644", + "type": "blob", + "sha": "25fbc26780b68ac95e3e5be2a3f69c994a5646fb", + "size": 9382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25fbc26780b68ac95e3e5be2a3f69c994a5646fb" + }, + { + "path": "webp/forte.webp", + "mode": "100644", + "type": "blob", + "sha": "e7f2554297708672d88a779014c916961e558a9e", + "size": 8528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7f2554297708672d88a779014c916961e558a9e" + }, + { + "path": "webp/fortinet.webp", + "mode": "100644", + "type": "blob", + "sha": "2cfbebd4eb9488721cf9192b4b55237dd3d5657a", + "size": 8184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cfbebd4eb9488721cf9192b4b55237dd3d5657a" + }, + { + "path": "webp/foscam.webp", + "mode": "100644", + "type": "blob", + "sha": "e76f34d6da30135ce15fe6c158cbe1663a4b9c44", + "size": 26494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e76f34d6da30135ce15fe6c158cbe1663a4b9c44" + }, + { + "path": "webp/fossil.webp", + "mode": "100644", + "type": "blob", + "sha": "0580b6f8832c65b2678261ccae198181b0145aa1", + "size": 13552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0580b6f8832c65b2678261ccae198181b0145aa1" + }, + { + "path": "webp/foundry-vtt.webp", + "mode": "100644", + "type": "blob", + "sha": "61a763e80543ebfead8b677ace5b0e3841c4fe32", + "size": 149490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61a763e80543ebfead8b677ace5b0e3841c4fe32" + }, + { + "path": "webp/franz.webp", + "mode": "100644", + "type": "blob", + "sha": "93002df8d8484f2c8725941f9e52aefd919e4a84", + "size": 61554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93002df8d8484f2c8725941f9e52aefd919e4a84" + }, + { + "path": "webp/free-dns.webp", + "mode": "100644", + "type": "blob", + "sha": "04b00f873e267542959ccccb12c8f56ef71e343d", + "size": 11050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/04b00f873e267542959ccccb12c8f56ef71e343d" + }, + { + "path": "webp/free-sas.webp", + "mode": "100644", + "type": "blob", + "sha": "3b95493fca40851c405419be54a73ee85acd35e3", + "size": 66240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b95493fca40851c405419be54a73ee85acd35e3" + }, + { + "path": "webp/freebox-delta.webp", + "mode": "100644", + "type": "blob", + "sha": "85685cd74e96ad00204a4daa9a664535ccb13a8b", + "size": 16634, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85685cd74e96ad00204a4daa9a664535ccb13a8b" + }, + { + "path": "webp/freebox-pop.webp", + "mode": "100644", + "type": "blob", + "sha": "679441d153ec121054eab141e70187dcc4e55a63", + "size": 28272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/679441d153ec121054eab141e70187dcc4e55a63" + }, + { + "path": "webp/freebox-revolution.webp", + "mode": "100644", + "type": "blob", + "sha": "5f3fb047b433e056f4cbb959d0d3001a68a7d8d8", + "size": 36200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f3fb047b433e056f4cbb959d0d3001a68a7d8d8" + }, + { + "path": "webp/freedombox.webp", + "mode": "100644", + "type": "blob", + "sha": "d394143d5fc938df0fb44d124b9a22d319d02c2c", + "size": 38834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d394143d5fc938df0fb44d124b9a22d319d02c2c" + }, + { + "path": "webp/freeipa.webp", + "mode": "100644", + "type": "blob", + "sha": "51a261d8cd906f03c0cb467cb486455049ae79ca", + "size": 29822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51a261d8cd906f03c0cb467cb486455049ae79ca" + }, + { + "path": "webp/freenas.webp", + "mode": "100644", + "type": "blob", + "sha": "1c09aeed07f673cae11f1f407e07ed90af3dabc3", + "size": 15294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c09aeed07f673cae11f1f407e07ed90af3dabc3" + }, + { + "path": "webp/freenom.webp", + "mode": "100644", + "type": "blob", + "sha": "5eaec3fec34510ee7be60d11db90da96e43f0167", + "size": 28156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5eaec3fec34510ee7be60d11db90da96e43f0167" + }, + { + "path": "webp/freepbx.webp", + "mode": "100644", + "type": "blob", + "sha": "b6809206569bf6e81e2c47ac729b89b7f25c6962", + "size": 70838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6809206569bf6e81e2c47ac729b89b7f25c6962" + }, + { + "path": "webp/freescout.webp", + "mode": "100644", + "type": "blob", + "sha": "69dcc3f22162cca2c211a1e905ddb9a425805fd8", + "size": 50190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69dcc3f22162cca2c211a1e905ddb9a425805fd8" + }, + { + "path": "webp/freshping-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "57193a1573ada17c44b334eef8d57f67417e473e", + "size": 38872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57193a1573ada17c44b334eef8d57f67417e473e" + }, + { + "path": "webp/freshping.webp", + "mode": "100644", + "type": "blob", + "sha": "7ff072611826896046c0a38ac29b471285f469e7", + "size": 38312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ff072611826896046c0a38ac29b471285f469e7" + }, + { + "path": "webp/freshrss.webp", + "mode": "100644", + "type": "blob", + "sha": "8b32732f41797e9995c1c7e3b3b9924e280e58c9", + "size": 44622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b32732f41797e9995c1c7e3b3b9924e280e58c9" + }, + { + "path": "webp/friendica.webp", + "mode": "100644", + "type": "blob", + "sha": "f4b9eb06c73177988d7ab5ba418e257df3838e6f", + "size": 14036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4b9eb06c73177988d7ab5ba418e257df3838e6f" + }, + { + "path": "webp/frigate-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2f72f847b658918695f79d318fe5c517fde8ca4b", + "size": 4262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f72f847b658918695f79d318fe5c517fde8ca4b" + }, + { + "path": "webp/frigate.webp", + "mode": "100644", + "type": "blob", + "sha": "c274f225752f959ec538eb2571c9ea0bd1ef57f8", + "size": 4322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c274f225752f959ec538eb2571c9ea0bd1ef57f8" + }, + { + "path": "webp/fritzbox-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0ab9787f72fd26e5621ecbdbbca4970b86c75691", + "size": 88392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ab9787f72fd26e5621ecbdbbca4970b86c75691" + }, + { + "path": "webp/fritzbox.webp", + "mode": "100644", + "type": "blob", + "sha": "dfa1399d1f72ee7bb1886cb2b7e5c9f7cc6ae579", + "size": 88872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfa1399d1f72ee7bb1886cb2b7e5c9f7cc6ae579" + }, + { + "path": "webp/fronius.webp", + "mode": "100644", + "type": "blob", + "sha": "ccb75f5b02635891b573e97bd6a23e5af8b52aef", + "size": 112560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccb75f5b02635891b573e97bd6a23e5af8b52aef" + }, + { + "path": "webp/frp.webp", + "mode": "100644", + "type": "blob", + "sha": "7dae9c6bcb4930f1c649de145c6ee2bf74c4e712", + "size": 35066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7dae9c6bcb4930f1c649de145c6ee2bf74c4e712" + }, + { + "path": "webp/fulcio.webp", + "mode": "100644", + "type": "blob", + "sha": "70a66801d8365cd40cdd54ee0b4fc12c79ae81b3", + "size": 84122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70a66801d8365cd40cdd54ee0b4fc12c79ae81b3" + }, + { + "path": "webp/funkwhale-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d742a482d84d1accc8575fba0fd4b60da9e03eed", + "size": 35212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d742a482d84d1accc8575fba0fd4b60da9e03eed" + }, + { + "path": "webp/funkwhale.webp", + "mode": "100644", + "type": "blob", + "sha": "f3e82e195a8f2152e55c9cd1d7f64e3c351ebbd4", + "size": 36388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3e82e195a8f2152e55c9cd1d7f64e3c351ebbd4" + }, + { + "path": "webp/fusionauth-light.webp", + "mode": "100644", + "type": "blob", + "sha": "7c28ac03d61f64460a884078ced09f54b80a4193", + "size": 11456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c28ac03d61f64460a884078ced09f54b80a4193" + }, + { + "path": "webp/fusionauth.webp", + "mode": "100644", + "type": "blob", + "sha": "db5b15d317fb73ee02bb8895a78336764a7f436f", + "size": 31198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db5b15d317fb73ee02bb8895a78336764a7f436f" + }, + { + "path": "webp/fusionpbx.webp", + "mode": "100644", + "type": "blob", + "sha": "e2d85183fd22b2f7d7796ab4c6af98267a0c83dd", + "size": 27632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2d85183fd22b2f7d7796ab4c6af98267a0c83dd" + }, + { + "path": "webp/gamevault.webp", + "mode": "100644", + "type": "blob", + "sha": "9f32a539a8426166173017395005b4d3f6f9fdad", + "size": 125780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f32a539a8426166173017395005b4d3f6f9fdad" + }, + { + "path": "webp/gameyfin-light.webp", + "mode": "100644", + "type": "blob", + "sha": "36de9de050183b6bcdbf3106ed39e6d480e04bfc", + "size": 1712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36de9de050183b6bcdbf3106ed39e6d480e04bfc" + }, + { + "path": "webp/gameyfin.webp", + "mode": "100644", + "type": "blob", + "sha": "80f68d453e8984fce7899b1eed94b61edf186446", + "size": 1664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80f68d453e8984fce7899b1eed94b61edf186446" + }, + { + "path": "webp/gaps.webp", + "mode": "100644", + "type": "blob", + "sha": "fd07e5ce25f89b3036f960eb84fb1099adaaabc0", + "size": 25580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd07e5ce25f89b3036f960eb84fb1099adaaabc0" + }, + { + "path": "webp/garage.webp", + "mode": "100644", + "type": "blob", + "sha": "7da3e289d4b06cf4b2f13f0419cd37481ce74368", + "size": 66612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7da3e289d4b06cf4b2f13f0419cd37481ce74368" + }, + { + "path": "webp/garmin-connect.webp", + "mode": "100644", + "type": "blob", + "sha": "fdf63e131757b5c3a0f99683f590715203e1e153", + "size": 63600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fdf63e131757b5c3a0f99683f590715203e1e153" + }, + { + "path": "webp/garuda-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "a5f4185254e744aa3e734bae1113cc75bbb4becb", + "size": 107572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5f4185254e744aa3e734bae1113cc75bbb4becb" + }, + { + "path": "webp/gaseous.webp", + "mode": "100644", + "type": "blob", + "sha": "3c25307604dcce62c19034403293ca2b53721c52", + "size": 85792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c25307604dcce62c19034403293ca2b53721c52" + }, + { + "path": "webp/gatsby.webp", + "mode": "100644", + "type": "blob", + "sha": "d64cda5f99bca30a0c26ad3659b52ebd4db1588c", + "size": 62058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d64cda5f99bca30a0c26ad3659b52ebd4db1588c" + }, + { + "path": "webp/gatus.webp", + "mode": "100644", + "type": "blob", + "sha": "f984e85839f9e93bf24271dc47015f44ee184c85", + "size": 28730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f984e85839f9e93bf24271dc47015f44ee184c85" + }, + { + "path": "webp/gboard.webp", + "mode": "100644", + "type": "blob", + "sha": "9ea9a85e281cb3fa599b81758c7a7a8e88583eae", + "size": 44432, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ea9a85e281cb3fa599b81758c7a7a8e88583eae" + }, + { + "path": "webp/geckoview.webp", + "mode": "100644", + "type": "blob", + "sha": "89a7ca2162b9f86398ffb1030a69794ba553afa9", + "size": 36076, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89a7ca2162b9f86398ffb1030a69794ba553afa9" + }, + { + "path": "webp/genius.webp", + "mode": "100644", + "type": "blob", + "sha": "ba637f540163b95e34eeb2a6e4c4ad6109c1c4b2", + "size": 46018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba637f540163b95e34eeb2a6e4c4ad6109c1c4b2" + }, + { + "path": "webp/gentoo-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "7437fe1f4014bb5c5cd1bb7e2295e00b8f3dcaa7", + "size": 63222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7437fe1f4014bb5c5cd1bb7e2295e00b8f3dcaa7" + }, + { + "path": "webp/geo-guessr.webp", + "mode": "100644", + "type": "blob", + "sha": "6245e492583a40b4670db12596c0cb34f74903e6", + "size": 37340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6245e492583a40b4670db12596c0cb34f74903e6" + }, + { + "path": "webp/gerbera.webp", + "mode": "100644", + "type": "blob", + "sha": "096ad53b2287454dc4e08da9721b30cb4cdd5c24", + "size": 149970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/096ad53b2287454dc4e08da9721b30cb4cdd5c24" + }, + { + "path": "webp/gerrit.webp", + "mode": "100644", + "type": "blob", + "sha": "db3b3b69402ddb8d0ed92a5a1592119c74af290b", + "size": 11452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db3b3b69402ddb8d0ed92a5a1592119c74af290b" + }, + { + "path": "webp/get-iplayer.webp", + "mode": "100644", + "type": "blob", + "sha": "73d7f1d91cca68d7bd30580db52836d17b0f3b4f", + "size": 18520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73d7f1d91cca68d7bd30580db52836d17b0f3b4f" + }, + { + "path": "webp/ghost-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ac6d27f4ea28c12226a014091d4a0679dc3a53d0", + "size": 30902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac6d27f4ea28c12226a014091d4a0679dc3a53d0" + }, + { + "path": "webp/ghost.webp", + "mode": "100644", + "type": "blob", + "sha": "e1af3854429d6885dbd123962853e881e49da90f", + "size": 23150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1af3854429d6885dbd123962853e881e49da90f" + }, + { + "path": "webp/ghostfolio.webp", + "mode": "100644", + "type": "blob", + "sha": "c6b3c409fc2c653d6f0da61026399b8c2f4fec14", + "size": 25812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6b3c409fc2c653d6f0da61026399b8c2f4fec14" + }, + { + "path": "webp/ghostty.webp", + "mode": "100644", + "type": "blob", + "sha": "4280f05374661d3716775747ebb5cbb5c8e3dc44", + "size": 44700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4280f05374661d3716775747ebb5cbb5c8e3dc44" + }, + { + "path": "webp/gigaset.webp", + "mode": "100644", + "type": "blob", + "sha": "44043441576e1e52ec8f0136faca76fb24b405ad", + "size": 78982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44043441576e1e52ec8f0136faca76fb24b405ad" + }, + { + "path": "webp/gimp.webp", + "mode": "100644", + "type": "blob", + "sha": "187fa0a98e285d1b33210746ba820b5abf5b4b6a", + "size": 34906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/187fa0a98e285d1b33210746ba820b5abf5b4b6a" + }, + { + "path": "webp/git.webp", + "mode": "100644", + "type": "blob", + "sha": "7b0fb80ed87698b11f6a501e2ebdc21e7010afa9", + "size": 19532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b0fb80ed87698b11f6a501e2ebdc21e7010afa9" + }, + { + "path": "webp/gitbook.webp", + "mode": "100644", + "type": "blob", + "sha": "c179cd069150a838e78d40e0e244ee811093c32b", + "size": 35528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c179cd069150a838e78d40e0e244ee811093c32b" + }, + { + "path": "webp/gitea.webp", + "mode": "100644", + "type": "blob", + "sha": "d9fa94edb0ad60f686ab43effa8a7a14470923c5", + "size": 51704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9fa94edb0ad60f686ab43effa8a7a14470923c5" + }, + { + "path": "webp/gitee.webp", + "mode": "100644", + "type": "blob", + "sha": "12f6205a2d9a47b67a9b8d407cf4c934375d1ea0", + "size": 47058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12f6205a2d9a47b67a9b8d407cf4c934375d1ea0" + }, + { + "path": "webp/github-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b725dd8335e8d639ecfda73ced6bdc65967e34b0", + "size": 6858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b725dd8335e8d639ecfda73ced6bdc65967e34b0" + }, + { + "path": "webp/github.webp", + "mode": "100644", + "type": "blob", + "sha": "41d8f2d0eb78cc5ce01089bf7e19191fcf4304ed", + "size": 14502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41d8f2d0eb78cc5ce01089bf7e19191fcf4304ed" + }, + { + "path": "webp/gitlab.webp", + "mode": "100644", + "type": "blob", + "sha": "8d57accf13d6f1b6c222ed19af7c57979152526e", + "size": 34410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d57accf13d6f1b6c222ed19af7c57979152526e" + }, + { + "path": "webp/gitsign.webp", + "mode": "100644", + "type": "blob", + "sha": "14a5025ac67d252b5d795b54c86d05643fb1e085", + "size": 68438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14a5025ac67d252b5d795b54c86d05643fb1e085" + }, + { + "path": "webp/gladys-assistant.webp", + "mode": "100644", + "type": "blob", + "sha": "c053602fe5a265176d11eea850ec095e0a6a81d0", + "size": 53090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c053602fe5a265176d11eea850ec095e0a6a81d0" + }, + { + "path": "webp/glance.webp", + "mode": "100644", + "type": "blob", + "sha": "ccf909ba83e9b4583c56321607a92df0546dca11", + "size": 8664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccf909ba83e9b4583c56321607a92df0546dca11" + }, + { + "path": "webp/glances-light.webp", + "mode": "100644", + "type": "blob", + "sha": "bba1913e3f524a777e23601cf8ecff3cb932df3c", + "size": 40064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bba1913e3f524a777e23601cf8ecff3cb932df3c" + }, + { + "path": "webp/glances.webp", + "mode": "100644", + "type": "blob", + "sha": "d277d521e02440688d72cc71a2548b3936164bca", + "size": 37406, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d277d521e02440688d72cc71a2548b3936164bca" + }, + { + "path": "webp/glinet-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "1e9a9106f4b52e9ede371bdb90ec566b1b097962", + "size": 11354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e9a9106f4b52e9ede371bdb90ec566b1b097962" + }, + { + "path": "webp/glinet.webp", + "mode": "100644", + "type": "blob", + "sha": "9ec6735340ea2eecb8228479627bda18cadfbdea", + "size": 15896, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ec6735340ea2eecb8228479627bda18cadfbdea" + }, + { + "path": "webp/glitchtip.webp", + "mode": "100644", + "type": "blob", + "sha": "17d18727fa1553ac878c968beecb6997f60343e1", + "size": 47004, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17d18727fa1553ac878c968beecb6997f60343e1" + }, + { + "path": "webp/glpi.webp", + "mode": "100644", + "type": "blob", + "sha": "3dc70172357129faabe729896b02170b3b5f8823", + "size": 61972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3dc70172357129faabe729896b02170b3b5f8823" + }, + { + "path": "webp/gluetun.webp", + "mode": "100644", + "type": "blob", + "sha": "d274a432e6afc733c0ddf3c48e3f1b3acfbf130f", + "size": 69536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d274a432e6afc733c0ddf3c48e3f1b3acfbf130f" + }, + { + "path": "webp/gmail.webp", + "mode": "100644", + "type": "blob", + "sha": "9312f6c1534077dd22434f8c3b6d590289fa7a8c", + "size": 20962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9312f6c1534077dd22434f8c3b6d590289fa7a8c" + }, + { + "path": "webp/go.webp", + "mode": "100644", + "type": "blob", + "sha": "b5e5e322fa73b2b3ff1932c8bc718762f21528f4", + "size": 49174, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5e5e322fa73b2b3ff1932c8bc718762f21528f4" + }, + { + "path": "webp/go2rtc.webp", + "mode": "100644", + "type": "blob", + "sha": "3addcbd6d81570063da3ccd8efc260dfd2e0245c", + "size": 33530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3addcbd6d81570063da3ccd8efc260dfd2e0245c" + }, + { + "path": "webp/goaccess-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b1f3b13f2aaf877c3d67a69febaa5774859e333e", + "size": 8826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1f3b13f2aaf877c3d67a69febaa5774859e333e" + }, + { + "path": "webp/goaccess.webp", + "mode": "100644", + "type": "blob", + "sha": "1a1fed419399f5e234a81b725689a3737f73ca71", + "size": 9026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a1fed419399f5e234a81b725689a3737f73ca71" + }, + { + "path": "webp/godaddy-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "54b7455ba40bbe8608dfad4ba44a40acb711c4a5", + "size": 108684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54b7455ba40bbe8608dfad4ba44a40acb711c4a5" + }, + { + "path": "webp/godaddy.webp", + "mode": "100644", + "type": "blob", + "sha": "23d38db9a572f49954b62543a430e0a21685d3ce", + "size": 40786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/23d38db9a572f49954b62543a430e0a21685d3ce" + }, + { + "path": "webp/godot.webp", + "mode": "100644", + "type": "blob", + "sha": "00cda43d183d271e7358902bb9c099e530abf16e", + "size": 42632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00cda43d183d271e7358902bb9c099e530abf16e" + }, + { + "path": "webp/gogs.webp", + "mode": "100644", + "type": "blob", + "sha": "694850fc2fa0c68662c3ba8afbc8191e65c60500", + "size": 105008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/694850fc2fa0c68662c3ba8afbc8191e65c60500" + }, + { + "path": "webp/golink-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "beab19290fc2fa0637a8456f74edbe94f5e86f2d", + "size": 9788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/beab19290fc2fa0637a8456f74edbe94f5e86f2d" + }, + { + "path": "webp/golink.webp", + "mode": "100644", + "type": "blob", + "sha": "c3a1de384fefd4a6ffca5fe6e19a340319556f0a", + "size": 9784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3a1de384fefd4a6ffca5fe6e19a340319556f0a" + }, + { + "path": "webp/gollum.webp", + "mode": "100644", + "type": "blob", + "sha": "61b9df166f66a282b25dec61c867ed3be9ddf30b", + "size": 197664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61b9df166f66a282b25dec61c867ed3be9ddf30b" + }, + { + "path": "webp/gomft.webp", + "mode": "100644", + "type": "blob", + "sha": "72aea33371b94bb4b35a9539cee4fb36c36bd059", + "size": 79866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72aea33371b94bb4b35a9539cee4fb36c36bd059" + }, + { + "path": "webp/gone-man-switch.webp", + "mode": "100644", + "type": "blob", + "sha": "c69a2900924737ae7df4f68ef47690f82f0cf9b6", + "size": 46314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c69a2900924737ae7df4f68ef47690f82f0cf9b6" + }, + { + "path": "webp/gonic.webp", + "mode": "100644", + "type": "blob", + "sha": "6f051c2a1a4c771c2b315c395b9e5b952f7c412a", + "size": 131144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f051c2a1a4c771c2b315c395b9e5b952f7c412a" + }, + { + "path": "webp/goodreads.webp", + "mode": "100644", + "type": "blob", + "sha": "6ceccb73aa0a92d49533bdebfc7f04c5465a5ef2", + "size": 34544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ceccb73aa0a92d49533bdebfc7f04c5465a5ef2" + }, + { + "path": "webp/google-admin.webp", + "mode": "100644", + "type": "blob", + "sha": "0507c313ab172230ad82d0dbb43ca4ae7bb8b7a2", + "size": 27764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0507c313ab172230ad82d0dbb43ca4ae7bb8b7a2" + }, + { + "path": "webp/google-admob.webp", + "mode": "100644", + "type": "blob", + "sha": "ca739928d3039805ceedf4303768ce1bbab65e19", + "size": 31570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca739928d3039805ceedf4303768ce1bbab65e19" + }, + { + "path": "webp/google-alerts.webp", + "mode": "100644", + "type": "blob", + "sha": "5bfee346b3d4e5a438127f15609e3a073eab93b8", + "size": 13684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bfee346b3d4e5a438127f15609e3a073eab93b8" + }, + { + "path": "webp/google-analytics.webp", + "mode": "100644", + "type": "blob", + "sha": "76654528febce8d36e39e74fec33d3c0bdae9ae1", + "size": 10042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76654528febce8d36e39e74fec33d3c0bdae9ae1" + }, + { + "path": "webp/google-assistant.webp", + "mode": "100644", + "type": "blob", + "sha": "85073756fa1d01534596538ec86e996f9564c159", + "size": 19522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85073756fa1d01534596538ec86e996f9564c159" + }, + { + "path": "webp/google-calendar.webp", + "mode": "100644", + "type": "blob", + "sha": "1c0b32cd1be6aff31f110f1019c6b61d597556e5", + "size": 23590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c0b32cd1be6aff31f110f1019c6b61d597556e5" + }, + { + "path": "webp/google-chat.webp", + "mode": "100644", + "type": "blob", + "sha": "22f29442cb6ec1deecce381a18bd086d571fa764", + "size": 7246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22f29442cb6ec1deecce381a18bd086d571fa764" + }, + { + "path": "webp/google-chrome.webp", + "mode": "100644", + "type": "blob", + "sha": "63fff9746b3828ebb236e1c75a8d3c883671a35b", + "size": 58616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63fff9746b3828ebb236e1c75a8d3c883671a35b" + }, + { + "path": "webp/google-classroom.webp", + "mode": "100644", + "type": "blob", + "sha": "d69c551a5e8207db9bfa1fbcf648a537dbc5d1eb", + "size": 32032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d69c551a5e8207db9bfa1fbcf648a537dbc5d1eb" + }, + { + "path": "webp/google-cloud-platform.webp", + "mode": "100644", + "type": "blob", + "sha": "129f7438dc960d4aa2ea9dc2abae1725c77641c1", + "size": 40974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/129f7438dc960d4aa2ea9dc2abae1725c77641c1" + }, + { + "path": "webp/google-cloud-print.webp", + "mode": "100644", + "type": "blob", + "sha": "29a6657ecac5d9b69e7a0fa3dac6011a6a5448a6", + "size": 31894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29a6657ecac5d9b69e7a0fa3dac6011a6a5448a6" + }, + { + "path": "webp/google-colab.webp", + "mode": "100644", + "type": "blob", + "sha": "a745a7c34e4cdb8a403392928ca07bd5b58d95eb", + "size": 54736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a745a7c34e4cdb8a403392928ca07bd5b58d95eb" + }, + { + "path": "webp/google-compute-engine.webp", + "mode": "100644", + "type": "blob", + "sha": "ab614f3b15ebc4e6fd7fd18c2b6e613e178caa58", + "size": 49060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab614f3b15ebc4e6fd7fd18c2b6e613e178caa58" + }, + { + "path": "webp/google-contacts.webp", + "mode": "100644", + "type": "blob", + "sha": "7c02a1f8d2670d0013ff6edd06564b960aa0098e", + "size": 32836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c02a1f8d2670d0013ff6edd06564b960aa0098e" + }, + { + "path": "webp/google-docs.webp", + "mode": "100644", + "type": "blob", + "sha": "de07113472d35b174db778b51e9fd6aded2f3c33", + "size": 18642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de07113472d35b174db778b51e9fd6aded2f3c33" + }, + { + "path": "webp/google-domains.webp", + "mode": "100644", + "type": "blob", + "sha": "856225e5955bc32450014840121b1751ee7e7b3e", + "size": 30466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/856225e5955bc32450014840121b1751ee7e7b3e" + }, + { + "path": "webp/google-drive.webp", + "mode": "100644", + "type": "blob", + "sha": "21a529c51ccef490bdddbe6b4dd3ff5d2939ee39", + "size": 31934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21a529c51ccef490bdddbe6b4dd3ff5d2939ee39" + }, + { + "path": "webp/google-earth.webp", + "mode": "100644", + "type": "blob", + "sha": "ab2a024b333c073357b94f95d42158beae8bc96d", + "size": 43632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab2a024b333c073357b94f95d42158beae8bc96d" + }, + { + "path": "webp/google-fi.webp", + "mode": "100644", + "type": "blob", + "sha": "523216c98f1b4da0aafbb768aa0b0699eb9a9ca6", + "size": 21968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/523216c98f1b4da0aafbb768aa0b0699eb9a9ca6" + }, + { + "path": "webp/google-finance.webp", + "mode": "100644", + "type": "blob", + "sha": "e46af011847d5994c460eee4a5ffe3672a22ef6b", + "size": 17446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e46af011847d5994c460eee4a5ffe3672a22ef6b" + }, + { + "path": "webp/google-fit.webp", + "mode": "100644", + "type": "blob", + "sha": "6eba9354fbc94a7b4e650a23212c10465e55bfd4", + "size": 38426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6eba9354fbc94a7b4e650a23212c10465e55bfd4" + }, + { + "path": "webp/google-fonts.webp", + "mode": "100644", + "type": "blob", + "sha": "afc53ef1f04a6978a99b107787ce0da7038ac360", + "size": 39120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afc53ef1f04a6978a99b107787ce0da7038ac360" + }, + { + "path": "webp/google-forms.webp", + "mode": "100644", + "type": "blob", + "sha": "532658b2b92d0b3c9d6b19a2851ba8114b11dd7c", + "size": 23410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/532658b2b92d0b3c9d6b19a2851ba8114b11dd7c" + }, + { + "path": "webp/google-gemini.webp", + "mode": "100644", + "type": "blob", + "sha": "19151831fc85cb23a0a1c9db8339580bc608f402", + "size": 20452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19151831fc85cb23a0a1c9db8339580bc608f402" + }, + { + "path": "webp/google-home.webp", + "mode": "100644", + "type": "blob", + "sha": "7619ec449127450d2c09cc437f09bd3c76fbfffe", + "size": 17766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7619ec449127450d2c09cc437f09bd3c76fbfffe" + }, + { + "path": "webp/google-jules.webp", + "mode": "100644", + "type": "blob", + "sha": "cbc7090ffd3f014e424b33c8e341dcf6245e0e9c", + "size": 12240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbc7090ffd3f014e424b33c8e341dcf6245e0e9c" + }, + { + "path": "webp/google-keep.webp", + "mode": "100644", + "type": "blob", + "sha": "15f6da4a5a5d8e2df376d0eb3bb19f866ff6030a", + "size": 11292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15f6da4a5a5d8e2df376d0eb3bb19f866ff6030a" + }, + { + "path": "webp/google-lens.webp", + "mode": "100644", + "type": "blob", + "sha": "37c3cd0b839607eca4335a85cb2b4662d99a85b0", + "size": 19094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37c3cd0b839607eca4335a85cb2b4662d99a85b0" + }, + { + "path": "webp/google-maps.webp", + "mode": "100644", + "type": "blob", + "sha": "6292b76ce0d0c1e600c145d51cec15d946ce5b59", + "size": 33360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6292b76ce0d0c1e600c145d51cec15d946ce5b59" + }, + { + "path": "webp/google-meet.webp", + "mode": "100644", + "type": "blob", + "sha": "5bd11f71a39084515a23fddd304f789a0baf1f3a", + "size": 16030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bd11f71a39084515a23fddd304f789a0baf1f3a" + }, + { + "path": "webp/google-messages.webp", + "mode": "100644", + "type": "blob", + "sha": "dc882a2136623d0c96609a0c80735c87024fd502", + "size": 26658, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc882a2136623d0c96609a0c80735c87024fd502" + }, + { + "path": "webp/google-news.webp", + "mode": "100644", + "type": "blob", + "sha": "b26790a66333a77ed97cd94042074bad6219bce0", + "size": 52614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b26790a66333a77ed97cd94042074bad6219bce0" + }, + { + "path": "webp/google-one.webp", + "mode": "100644", + "type": "blob", + "sha": "5109c2391be0627a4f0384aa8279872a781f5e32", + "size": 15134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5109c2391be0627a4f0384aa8279872a781f5e32" + }, + { + "path": "webp/google-pay.webp", + "mode": "100644", + "type": "blob", + "sha": "c6a8ffed557829fe99d12081d2f1011ac74f6fb2", + "size": 37456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6a8ffed557829fe99d12081d2f1011ac74f6fb2" + }, + { + "path": "webp/google-photos.webp", + "mode": "100644", + "type": "blob", + "sha": "40eae8bca587c6d1a4e5bda78a5b6127b35c52d1", + "size": 17318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40eae8bca587c6d1a4e5bda78a5b6127b35c52d1" + }, + { + "path": "webp/google-play-books.webp", + "mode": "100644", + "type": "blob", + "sha": "aab6bb591af36be25a57cc073477403fbd1a727c", + "size": 17748, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aab6bb591af36be25a57cc073477403fbd1a727c" + }, + { + "path": "webp/google-play-games.webp", + "mode": "100644", + "type": "blob", + "sha": "3d6a7465b56a8ec708e75cc6d9547f798c12180f", + "size": 27026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d6a7465b56a8ec708e75cc6d9547f798c12180f" + }, + { + "path": "webp/google-play.webp", + "mode": "100644", + "type": "blob", + "sha": "b8d764cc37fb7c968605c2b66b740ef4d30275f8", + "size": 26496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8d764cc37fb7c968605c2b66b740ef4d30275f8" + }, + { + "path": "webp/google-podcasts.webp", + "mode": "100644", + "type": "blob", + "sha": "1107b6448909249761de79cb27aa6287064c01bd", + "size": 19408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1107b6448909249761de79cb27aa6287064c01bd" + }, + { + "path": "webp/google-scholar.webp", + "mode": "100644", + "type": "blob", + "sha": "6b17f28461d08d7c6b762e55982db8ea59b5b8a7", + "size": 21872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b17f28461d08d7c6b762e55982db8ea59b5b8a7" + }, + { + "path": "webp/google-search-console.webp", + "mode": "100644", + "type": "blob", + "sha": "299daf50c53ae29227a9ec1bf85bbe2196f69d54", + "size": 17038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/299daf50c53ae29227a9ec1bf85bbe2196f69d54" + }, + { + "path": "webp/google-sheets.webp", + "mode": "100644", + "type": "blob", + "sha": "1101e8923bfbdec6eba2b5958d43b643604f70d7", + "size": 23776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1101e8923bfbdec6eba2b5958d43b643604f70d7" + }, + { + "path": "webp/google-shopping.webp", + "mode": "100644", + "type": "blob", + "sha": "ff402ebbd4a7a5bb0ebcd4d87b68c9a784241349", + "size": 39534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff402ebbd4a7a5bb0ebcd4d87b68c9a784241349" + }, + { + "path": "webp/google-sites.webp", + "mode": "100644", + "type": "blob", + "sha": "0bf27f81cfaa78d70568bc2479fa9e6bcbbd02fa", + "size": 5380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bf27f81cfaa78d70568bc2479fa9e6bcbbd02fa" + }, + { + "path": "webp/google-slides.webp", + "mode": "100644", + "type": "blob", + "sha": "b6198582879f66c47f378ac5efd61e2f5b4506f3", + "size": 19156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6198582879f66c47f378ac5efd61e2f5b4506f3" + }, + { + "path": "webp/google-street-view.webp", + "mode": "100644", + "type": "blob", + "sha": "f41b8f3fbe70357582ddecd4d3e0b9dfee80ed43", + "size": 46834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f41b8f3fbe70357582ddecd4d3e0b9dfee80ed43" + }, + { + "path": "webp/google-tag-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "c6360ba660d36c8ce996d80abe41e9f063307b59", + "size": 26138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6360ba660d36c8ce996d80abe41e9f063307b59" + }, + { + "path": "webp/google-translate.webp", + "mode": "100644", + "type": "blob", + "sha": "90e327bc073954f3cf311b0a52dd3e501ae51179", + "size": 42836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90e327bc073954f3cf311b0a52dd3e501ae51179" + }, + { + "path": "webp/google-tv.webp", + "mode": "100644", + "type": "blob", + "sha": "491996301e96e2cdaa8b19e7fb0945441343818a", + "size": 15324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/491996301e96e2cdaa8b19e7fb0945441343818a" + }, + { + "path": "webp/google-voice.webp", + "mode": "100644", + "type": "blob", + "sha": "b7c7380e90a8cb9e1d79a83c674acf8399deee04", + "size": 26192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7c7380e90a8cb9e1d79a83c674acf8399deee04" + }, + { + "path": "webp/google-wallet.webp", + "mode": "100644", + "type": "blob", + "sha": "8b283c4071bfd77d8ad4dc2713edf2df00f3a533", + "size": 25238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b283c4071bfd77d8ad4dc2713edf2df00f3a533" + }, + { + "path": "webp/google-wifi.webp", + "mode": "100644", + "type": "blob", + "sha": "51359e6f20fcc85f37327692030be04d83757b5a", + "size": 35756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51359e6f20fcc85f37327692030be04d83757b5a" + }, + { + "path": "webp/google.webp", + "mode": "100644", + "type": "blob", + "sha": "02c51f38140fb8ae66b30a3b93777ef75c5f2ad1", + "size": 31142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02c51f38140fb8ae66b30a3b93777ef75c5f2ad1" + }, + { + "path": "webp/gopeed.webp", + "mode": "100644", + "type": "blob", + "sha": "cbe1fd1effacb3243a1f02c8841b9ea75cc570c0", + "size": 47568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbe1fd1effacb3243a1f02c8841b9ea75cc570c0" + }, + { + "path": "webp/gose.webp", + "mode": "100644", + "type": "blob", + "sha": "1d90c70158dcf41316753745d4507bbc40a2150b", + "size": 30054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d90c70158dcf41316753745d4507bbc40a2150b" + }, + { + "path": "webp/gotenberg.webp", + "mode": "100644", + "type": "blob", + "sha": "377381496a9ad5c802f6ac86469f9a27db7b1250", + "size": 152986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/377381496a9ad5c802f6ac86469f9a27db7b1250" + }, + { + "path": "webp/gotify.webp", + "mode": "100644", + "type": "blob", + "sha": "e501684c614f295c0a8a749fd8917f733493ffa8", + "size": 88460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e501684c614f295c0a8a749fd8917f733493ffa8" + }, + { + "path": "webp/gotosocial.webp", + "mode": "100644", + "type": "blob", + "sha": "703516eaf11ccaa367fd6a8a6b9c5ac092ae5e46", + "size": 70310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/703516eaf11ccaa367fd6a8a6b9c5ac092ae5e46" + }, + { + "path": "webp/gpt4free.webp", + "mode": "100644", + "type": "blob", + "sha": "b5b10bc027affdd2d4d92e9ffa167fe1cc14feed", + "size": 32650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5b10bc027affdd2d4d92e9ffa167fe1cc14feed" + }, + { + "path": "webp/grafana.webp", + "mode": "100644", + "type": "blob", + "sha": "76a8fb8f65c1df4ca4e462de90e39168fc6f29a2", + "size": 37000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76a8fb8f65c1df4ca4e462de90e39168fc6f29a2" + }, + { + "path": "webp/gramps-web.webp", + "mode": "100644", + "type": "blob", + "sha": "32cebe0452e245cffe09dc15dcaf65cebdcd5a88", + "size": 11698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32cebe0452e245cffe09dc15dcaf65cebdcd5a88" + }, + { + "path": "webp/gramps.webp", + "mode": "100644", + "type": "blob", + "sha": "e94256cf1274d738b8d56a8f6d74d1b3521958a7", + "size": 20004, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e94256cf1274d738b8d56a8f6d74d1b3521958a7" + }, + { + "path": "webp/grandstream.webp", + "mode": "100644", + "type": "blob", + "sha": "3566fe822599eb1c5109995ac35f50915a456625", + "size": 44170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3566fe822599eb1c5109995ac35f50915a456625" + }, + { + "path": "webp/grav-light.webp", + "mode": "100644", + "type": "blob", + "sha": "00a10352a38059b7aed2c0f23f1c02cca68b5bf5", + "size": 10150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00a10352a38059b7aed2c0f23f1c02cca68b5bf5" + }, + { + "path": "webp/grav.webp", + "mode": "100644", + "type": "blob", + "sha": "2bab8855076fe36b4d25158cfc3372e2c4b62592", + "size": 19184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bab8855076fe36b4d25158cfc3372e2c4b62592" + }, + { + "path": "webp/gravity.webp", + "mode": "100644", + "type": "blob", + "sha": "2e335d2d623782e3de9c3f264a5c9e557b26e6ec", + "size": 19096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e335d2d623782e3de9c3f264a5c9e557b26e6ec" + }, + { + "path": "webp/graylog.webp", + "mode": "100644", + "type": "blob", + "sha": "3d5b34f422a39c00fb16c24c79c2cc9b96c7274d", + "size": 32626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d5b34f422a39c00fb16c24c79c2cc9b96c7274d" + }, + { + "path": "webp/greenbone-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fb6ac538895c3d6745479d88e4c4e5b264d1f6ff", + "size": 88730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb6ac538895c3d6745479d88e4c4e5b264d1f6ff" + }, + { + "path": "webp/greenbone.webp", + "mode": "100644", + "type": "blob", + "sha": "75a0fa6e851e93a2c4cb7fbc41162919e5492b22", + "size": 89930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75a0fa6e851e93a2c4cb7fbc41162919e5492b22" + }, + { + "path": "webp/greenlight.webp", + "mode": "100644", + "type": "blob", + "sha": "faa8b7759035a73d1d29e97738cd8ddc21dd38e3", + "size": 17382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/faa8b7759035a73d1d29e97738cd8ddc21dd38e3" + }, + { + "path": "webp/grimoire.webp", + "mode": "100644", + "type": "blob", + "sha": "abeab23e87f256c9ebbcc70cac7756cfdd567292", + "size": 143170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abeab23e87f256c9ebbcc70cac7756cfdd567292" + }, + { + "path": "webp/grist.webp", + "mode": "100644", + "type": "blob", + "sha": "eeba4e59cdc7c83323be19c25a04a308cbf4c2a8", + "size": 29242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeba4e59cdc7c83323be19c25a04a308cbf4c2a8" + }, + { + "path": "webp/grocy.webp", + "mode": "100644", + "type": "blob", + "sha": "310f9d40b3ee902b6bab4b899ad0dfe42a14d58c", + "size": 18510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/310f9d40b3ee902b6bab4b899ad0dfe42a14d58c" + }, + { + "path": "webp/grok-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "a19c3bac0dc5207931f4631aded19618c1092e39", + "size": 7768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a19c3bac0dc5207931f4631aded19618c1092e39" + }, + { + "path": "webp/grok.webp", + "mode": "100644", + "type": "blob", + "sha": "6da7ef2faf5df8a8a73f5457cb8e810408455951", + "size": 7762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6da7ef2faf5df8a8a73f5457cb8e810408455951" + }, + { + "path": "webp/grype.webp", + "mode": "100644", + "type": "blob", + "sha": "35d7fb7c2a525961f50f2b3c27a25874845de1b5", + "size": 39644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35d7fb7c2a525961f50f2b3c27a25874845de1b5" + }, + { + "path": "webp/guacamole-light.webp", + "mode": "100644", + "type": "blob", + "sha": "747554722dbb15aaada947130b3afcb3030e9bf6", + "size": 53086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/747554722dbb15aaada947130b3afcb3030e9bf6" + }, + { + "path": "webp/guacamole.webp", + "mode": "100644", + "type": "blob", + "sha": "9707f91070ead3b71afad4974edf36158af63c1d", + "size": 48056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9707f91070ead3b71afad4974edf36158af63c1d" + }, + { + "path": "webp/habit-trove.webp", + "mode": "100644", + "type": "blob", + "sha": "b178ff9c01bed1d295c7e0916b1e712a330894d5", + "size": 61454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b178ff9c01bed1d295c7e0916b1e712a330894d5" + }, + { + "path": "webp/habitica-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "3bba68c7355c68704445943dfff4919e25f43ad5", + "size": 6798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bba68c7355c68704445943dfff4919e25f43ad5" + }, + { + "path": "webp/habitica.webp", + "mode": "100644", + "type": "blob", + "sha": "e13eb6a1fb6f5098c527659bba5d0997f8e3ba26", + "size": 27446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e13eb6a1fb6f5098c527659bba5d0997f8e3ba26" + }, + { + "path": "webp/hacker-news.webp", + "mode": "100644", + "type": "blob", + "sha": "c3749f2612dbc3de4978bc2523aef943a714e40a", + "size": 20472, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3749f2612dbc3de4978bc2523aef943a714e40a" + }, + { + "path": "webp/hammond-light.webp", + "mode": "100644", + "type": "blob", + "sha": "cbd897f4b15102fd25a7cdc65d6d67984f682550", + "size": 4064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbd897f4b15102fd25a7cdc65d6d67984f682550" + }, + { + "path": "webp/hammond.webp", + "mode": "100644", + "type": "blob", + "sha": "ed4538886e73d93c1c600d4d05571b9f8e4d880a", + "size": 5852, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed4538886e73d93c1c600d4d05571b9f8e4d880a" + }, + { + "path": "webp/handbrake.webp", + "mode": "100644", + "type": "blob", + "sha": "d488bcef2d1d6dff3a4202d8c50d48bfe32ba398", + "size": 115170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d488bcef2d1d6dff3a4202d8c50d48bfe32ba398" + }, + { + "path": "webp/haproxy.webp", + "mode": "100644", + "type": "blob", + "sha": "5e974b846fc032668f4c6d0e42161c6686e9ef69", + "size": 60414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e974b846fc032668f4c6d0e42161c6686e9ef69" + }, + { + "path": "webp/haptic-light.webp", + "mode": "100644", + "type": "blob", + "sha": "efbf5ad695ad766a1deb235757de813b3eba248e", + "size": 14990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efbf5ad695ad766a1deb235757de813b3eba248e" + }, + { + "path": "webp/haptic.webp", + "mode": "100644", + "type": "blob", + "sha": "5cbdcb9f8e236f1c5358b2ef993a577d4240b6aa", + "size": 13614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cbdcb9f8e236f1c5358b2ef993a577d4240b6aa" + }, + { + "path": "webp/harbor.webp", + "mode": "100644", + "type": "blob", + "sha": "2158a38a401c76ad02e7a94a77301c0f0765ead2", + "size": 67726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2158a38a401c76ad02e7a94a77301c0f0765ead2" + }, + { + "path": "webp/hard-forum.webp", + "mode": "100644", + "type": "blob", + "sha": "d8c57ab7dc8436e9e9ea82e6c1cf01ad770b70b0", + "size": 48188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8c57ab7dc8436e9e9ea82e6c1cf01ad770b70b0" + }, + { + "path": "webp/harvester.webp", + "mode": "100644", + "type": "blob", + "sha": "b37834aa446d9d1ed787cb1f673d0c9bd674c52f", + "size": 69698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b37834aa446d9d1ed787cb1f673d0c9bd674c52f" + }, + { + "path": "webp/hasheous.webp", + "mode": "100644", + "type": "blob", + "sha": "65aeea30df6c75fb44f1701757ccc9a04748cba8", + "size": 129448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65aeea30df6c75fb44f1701757ccc9a04748cba8" + }, + { + "path": "webp/hashicorp-boundary.webp", + "mode": "100644", + "type": "blob", + "sha": "197e517c7678ab5a65e51bbfbf1e87ad17681d93", + "size": 11380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/197e517c7678ab5a65e51bbfbf1e87ad17681d93" + }, + { + "path": "webp/hashicorp-consul.webp", + "mode": "100644", + "type": "blob", + "sha": "c04b6f29d6d7be03a68d78348d3b08e5ca2dd8b7", + "size": 26700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c04b6f29d6d7be03a68d78348d3b08e5ca2dd8b7" + }, + { + "path": "webp/hashicorp-nomad.webp", + "mode": "100644", + "type": "blob", + "sha": "61be78c9aa13a737e14ac90e14368f65eb1baf61", + "size": 13412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61be78c9aa13a737e14ac90e14368f65eb1baf61" + }, + { + "path": "webp/hashicorp-packer.webp", + "mode": "100644", + "type": "blob", + "sha": "dd2f798063ba89d210dbf810ef99fbf8d9f3bd7b", + "size": 11204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd2f798063ba89d210dbf810ef99fbf8d9f3bd7b" + }, + { + "path": "webp/hashicorp-terraform.webp", + "mode": "100644", + "type": "blob", + "sha": "00322a2bc81541596c83dbfacf874c4203234021", + "size": 14596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00322a2bc81541596c83dbfacf874c4203234021" + }, + { + "path": "webp/hashicorp-vagrant.webp", + "mode": "100644", + "type": "blob", + "sha": "46b063e5a1d2243b48dac4a2813492ef44c50197", + "size": 15844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46b063e5a1d2243b48dac4a2813492ef44c50197" + }, + { + "path": "webp/hashicorp-vault.webp", + "mode": "100644", + "type": "blob", + "sha": "3d6324d3ec36f623340562cd7fdc26935ea7931f", + "size": 12254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d6324d3ec36f623340562cd7fdc26935ea7931f" + }, + { + "path": "webp/hashicorp-waypoint.webp", + "mode": "100644", + "type": "blob", + "sha": "92cf42b63c4b3d32ceb0392a709d802ffc661484", + "size": 31448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92cf42b63c4b3d32ceb0392a709d802ffc661484" + }, + { + "path": "webp/hastypaste.webp", + "mode": "100644", + "type": "blob", + "sha": "7455fdb9517640098d862635999583ce96d2dbf0", + "size": 54436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7455fdb9517640098d862635999583ce96d2dbf0" + }, + { + "path": "webp/hasura.webp", + "mode": "100644", + "type": "blob", + "sha": "c72e0151f099ec3889467751041af1d377cd172e", + "size": 30128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c72e0151f099ec3889467751041af1d377cd172e" + }, + { + "path": "webp/hathway.webp", + "mode": "100644", + "type": "blob", + "sha": "43438d2f7c87c2d8da7f402ccd1a75730572e75f", + "size": 118562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43438d2f7c87c2d8da7f402ccd1a75730572e75f" + }, + { + "path": "webp/hatsh-light.webp", + "mode": "100644", + "type": "blob", + "sha": "16c713b305289a06d80de0cfb540eaf6807687d8", + "size": 7706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16c713b305289a06d80de0cfb540eaf6807687d8" + }, + { + "path": "webp/hatsh.webp", + "mode": "100644", + "type": "blob", + "sha": "762359fdb5a388af39cbf6a254ebc97a8674512a", + "size": 7702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/762359fdb5a388af39cbf6a254ebc97a8674512a" + }, + { + "path": "webp/hbo-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c73f65a9c477194cbed9b164e997d7c4c919b6a2", + "size": 8938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c73f65a9c477194cbed9b164e997d7c4c919b6a2" + }, + { + "path": "webp/hbo.webp", + "mode": "100644", + "type": "blob", + "sha": "270c4e3da5e3a5200aac139ad573c65f0adde75b", + "size": 8934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/270c4e3da5e3a5200aac139ad573c65f0adde75b" + }, + { + "path": "webp/hdhomerun-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a565fedc93f0aaefcd10e418b0bc07f816601644", + "size": 30254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a565fedc93f0aaefcd10e418b0bc07f816601644" + }, + { + "path": "webp/hdhomerun.webp", + "mode": "100644", + "type": "blob", + "sha": "15737ec880165701b7c2b5fbbb107237c72ac92d", + "size": 28656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15737ec880165701b7c2b5fbbb107237c72ac92d" + }, + { + "path": "webp/headlamp-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "f445c220f4b50f3475bfe95ccf5b2f27269e28e6", + "size": 16984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f445c220f4b50f3475bfe95ccf5b2f27269e28e6" + }, + { + "path": "webp/headlamp.webp", + "mode": "100644", + "type": "blob", + "sha": "17abcc9c20d9feb7cd2bfac111e29184a6b429c3", + "size": 15558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17abcc9c20d9feb7cd2bfac111e29184a6b429c3" + }, + { + "path": "webp/headphones.webp", + "mode": "100644", + "type": "blob", + "sha": "bc23a89477e9630c8aa039fad6ce99c585dd72fb", + "size": 6480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc23a89477e9630c8aa039fad6ce99c585dd72fb" + }, + { + "path": "webp/headscale.webp", + "mode": "100644", + "type": "blob", + "sha": "bd687db0dba58b57ac975d411e3c549e41136a5f", + "size": 17968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd687db0dba58b57ac975d411e3c549e41136a5f" + }, + { + "path": "webp/healthchecks.webp", + "mode": "100644", + "type": "blob", + "sha": "10a54cc7f7c8d3f96ecbefadc81d40423909c726", + "size": 11464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10a54cc7f7c8d3f96ecbefadc81d40423909c726" + }, + { + "path": "webp/hedgedoc.webp", + "mode": "100644", + "type": "blob", + "sha": "90bc11d6aa7164f6b3001d56b425c62784b27312", + "size": 44554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90bc11d6aa7164f6b3001d56b425c62784b27312" + }, + { + "path": "webp/heimdall-light.webp", + "mode": "100644", + "type": "blob", + "sha": "4f8138c47bd7d9b35b8ca8ecdffe5049660d7071", + "size": 11452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f8138c47bd7d9b35b8ca8ecdffe5049660d7071" + }, + { + "path": "webp/heimdall.webp", + "mode": "100644", + "type": "blob", + "sha": "26f0ba228cf4ca6071622f5a7f3795981c0aa275", + "size": 11446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26f0ba228cf4ca6071622f5a7f3795981c0aa275" + }, + { + "path": "webp/helium-token.webp", + "mode": "100644", + "type": "blob", + "sha": "4b2af9337588163a8f97f353aeebe21a1b2678e6", + "size": 33114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b2af9337588163a8f97f353aeebe21a1b2678e6" + }, + { + "path": "webp/helm.webp", + "mode": "100644", + "type": "blob", + "sha": "f927985c6b13def5f9177a98e0d9c34145fe7fe3", + "size": 22564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f927985c6b13def5f9177a98e0d9c34145fe7fe3" + }, + { + "path": "webp/helper-scripts.webp", + "mode": "100644", + "type": "blob", + "sha": "82b0b2d018e554964f6086c41cfc47a980694a51", + "size": 33554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82b0b2d018e554964f6086c41cfc47a980694a51" + }, + { + "path": "webp/hemmelig-light.webp", + "mode": "100644", + "type": "blob", + "sha": "18d1c066daf71af461b2065f72092ba1b9cceecb", + "size": 12420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18d1c066daf71af461b2065f72092ba1b9cceecb" + }, + { + "path": "webp/hemmelig.webp", + "mode": "100644", + "type": "blob", + "sha": "6ba663ec1b1912f8168fb05e5e117774f466abb1", + "size": 48598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ba663ec1b1912f8168fb05e5e117774f466abb1" + }, + { + "path": "webp/hetzner-h.webp", + "mode": "100644", + "type": "blob", + "sha": "3c8c161ebaf0d14d75ca66feab856e6fe322cfae", + "size": 18890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c8c161ebaf0d14d75ca66feab856e6fe322cfae" + }, + { + "path": "webp/hetzner.webp", + "mode": "100644", + "type": "blob", + "sha": "df4c5773640f634188b617d2c794b06bea6f6ff3", + "size": 27154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df4c5773640f634188b617d2c794b06bea6f6ff3" + }, + { + "path": "webp/hexo.webp", + "mode": "100644", + "type": "blob", + "sha": "7f170db0f6d47faa8e9b95fe256036ebe30a8364", + "size": 12218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f170db0f6d47faa8e9b95fe256036ebe30a8364" + }, + { + "path": "webp/hexos.webp", + "mode": "100644", + "type": "blob", + "sha": "ecf28d3d50b25ff5f074b4b2c2b9c5d7cf3a3644", + "size": 27862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecf28d3d50b25ff5f074b4b2c2b9c5d7cf3a3644" + }, + { + "path": "webp/heyform.webp", + "mode": "100644", + "type": "blob", + "sha": "b6f4b32e76790896b1381c182ccce113f13bb31a", + "size": 17502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6f4b32e76790896b1381c182ccce113f13bb31a" + }, + { + "path": "webp/hi-anime.webp", + "mode": "100644", + "type": "blob", + "sha": "9ed8f0ff3190ed907c72c429a450cf0757a7c36b", + "size": 13326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ed8f0ff3190ed907c72c429a450cf0757a7c36b" + }, + { + "path": "webp/hifiberry.webp", + "mode": "100644", + "type": "blob", + "sha": "220ed9228516476a60e8e2d92273e6e81ace3732", + "size": 22768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/220ed9228516476a60e8e2d92273e6e81ace3732" + }, + { + "path": "webp/hikvision.webp", + "mode": "100644", + "type": "blob", + "sha": "977622bb166eee6163737c20950b566bc6dc619d", + "size": 57996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/977622bb166eee6163737c20950b566bc6dc619d" + }, + { + "path": "webp/hilook.webp", + "mode": "100644", + "type": "blob", + "sha": "c6b2dad5bddd63edf8e5b7222c39b5538c645921", + "size": 51736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6b2dad5bddd63edf8e5b7222c39b5538c645921" + }, + { + "path": "webp/hivedav.webp", + "mode": "100644", + "type": "blob", + "sha": "0505635c553f3858d4543e8cbffcac272879a4d0", + "size": 81400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0505635c553f3858d4543e8cbffcac272879a4d0" + }, + { + "path": "webp/hl-audiomuse-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "2eecbccb86fe818c37218cde55ec770d9e35a932", + "size": 145656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eecbccb86fe818c37218cde55ec770d9e35a932" + }, + { + "path": "webp/hoarder-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5523ea7f34096bc7f6f43e6dd32dfe1a8f8e5bd4", + "size": 2012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5523ea7f34096bc7f6f43e6dd32dfe1a8f8e5bd4" + }, + { + "path": "webp/hoarder.webp", + "mode": "100644", + "type": "blob", + "sha": "5d8586f3012ff161b4041f1f5ef574e1e89186c0", + "size": 1986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d8586f3012ff161b4041f1f5ef574e1e89186c0" + }, + { + "path": "webp/hollo-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1260e6a37cf9e7c18aa7bf0f00753b3caec73e17", + "size": 6872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1260e6a37cf9e7c18aa7bf0f00753b3caec73e17" + }, + { + "path": "webp/hollo.webp", + "mode": "100644", + "type": "blob", + "sha": "4a7a947f060158b3e6c615fcfbecf6291e7de328", + "size": 6868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a7a947f060158b3e6c615fcfbecf6291e7de328" + }, + { + "path": "webp/homarr.webp", + "mode": "100644", + "type": "blob", + "sha": "0cef2642387160d801307299afe47dcfb9f373a1", + "size": 35054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cef2642387160d801307299afe47dcfb9f373a1" + }, + { + "path": "webp/home-assistant-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "e388a8e46f75109744d8b041bc9b111f2419ad24", + "size": 44454, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e388a8e46f75109744d8b041bc9b111f2419ad24" + }, + { + "path": "webp/home-assistant.webp", + "mode": "100644", + "type": "blob", + "sha": "f69d665f182353651f9c9589326c17c829e5ff9a", + "size": 35420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f69d665f182353651f9c9589326c17c829e5ff9a" + }, + { + "path": "webp/homebox.webp", + "mode": "100644", + "type": "blob", + "sha": "4940f909bf7defd27aabad0b2ff35d781d2c14b3", + "size": 25354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4940f909bf7defd27aabad0b2ff35d781d2c14b3" + }, + { + "path": "webp/homebridge.webp", + "mode": "100644", + "type": "blob", + "sha": "2065530200d926120457e513ce8bbb2c7adec160", + "size": 79452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2065530200d926120457e513ce8bbb2c7adec160" + }, + { + "path": "webp/homelabids.webp", + "mode": "100644", + "type": "blob", + "sha": "43906eafcab489d5032c5eb6be74598f42a9e6cf", + "size": 38038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43906eafcab489d5032c5eb6be74598f42a9e6cf" + }, + { + "path": "webp/homepage.webp", + "mode": "100644", + "type": "blob", + "sha": "7e967bdd2b7495375f2803325d11007e81f31194", + "size": 26268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e967bdd2b7495375f2803325d11007e81f31194" + }, + { + "path": "webp/homer.webp", + "mode": "100644", + "type": "blob", + "sha": "908c694b7b340908cab8c1f15505669929ce3752", + "size": 86662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/908c694b7b340908cab8c1f15505669929ce3752" + }, + { + "path": "webp/homeseer.webp", + "mode": "100644", + "type": "blob", + "sha": "5410978d5053368868f42c4891241e53638af328", + "size": 67172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5410978d5053368868f42c4891241e53638af328" + }, + { + "path": "webp/homey.webp", + "mode": "100644", + "type": "blob", + "sha": "187533848bb757619df817237d255baef8befe35", + "size": 92096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/187533848bb757619df817237d255baef8befe35" + }, + { + "path": "webp/honda-jet.webp", + "mode": "100644", + "type": "blob", + "sha": "0cb3d239b3242b123a4a0e1a4895b0bb22f76794", + "size": 41276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cb3d239b3242b123a4a0e1a4895b0bb22f76794" + }, + { + "path": "webp/honeygain.webp", + "mode": "100644", + "type": "blob", + "sha": "7a8c3a0c1f7ba3b2d6846959368a742102b97c7c", + "size": 71312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a8c3a0c1f7ba3b2d6846959368a742102b97c7c" + }, + { + "path": "webp/hoobs.webp", + "mode": "100644", + "type": "blob", + "sha": "45bfc902d1684e70889f9018003329f90dce73a4", + "size": 32926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45bfc902d1684e70889f9018003329f90dce73a4" + }, + { + "path": "webp/hoppscotch.webp", + "mode": "100644", + "type": "blob", + "sha": "7a0ea114aac6bc79ef7fb277eb7857ac8f2c5845", + "size": 48508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a0ea114aac6bc79ef7fb277eb7857ac8f2c5845" + }, + { + "path": "webp/hortusfox.webp", + "mode": "100644", + "type": "blob", + "sha": "c6606eb463076fa0fac0134e38ea6b3536e83e54", + "size": 44962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6606eb463076fa0fac0134e38ea6b3536e83e54" + }, + { + "path": "webp/hostinger.webp", + "mode": "100644", + "type": "blob", + "sha": "1d0a85d49e66f726ce93b05e723ec2d811094a88", + "size": 9400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d0a85d49e66f726ce93b05e723ec2d811094a88" + }, + { + "path": "webp/hotio.webp", + "mode": "100644", + "type": "blob", + "sha": "d348b0db9b0e435a201fa4fc5425db769532513c", + "size": 25972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d348b0db9b0e435a201fa4fc5425db769532513c" + }, + { + "path": "webp/hp.webp", + "mode": "100644", + "type": "blob", + "sha": "25b4e620ca0fc068683b7f5870d68444f7f1a36a", + "size": 35862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25b4e620ca0fc068683b7f5870d68444f7f1a36a" + }, + { + "path": "webp/html-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c483d46af62f7715cafb6f902fb24d4182a13ffb", + "size": 25542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c483d46af62f7715cafb6f902fb24d4182a13ffb" + }, + { + "path": "webp/html.webp", + "mode": "100644", + "type": "blob", + "sha": "b0cc58d5c4bd6fe7731654127e109b6a214b5d7f", + "size": 25430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0cc58d5c4bd6fe7731654127e109b6a214b5d7f" + }, + { + "path": "webp/huawei.webp", + "mode": "100644", + "type": "blob", + "sha": "aadca329cefb44af8fb479f2a2b7b076af9b5e2b", + "size": 38408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aadca329cefb44af8fb479f2a2b7b076af9b5e2b" + }, + { + "path": "webp/hubitat.webp", + "mode": "100644", + "type": "blob", + "sha": "ca8b37e4ffc827462eb40e2ac99606df9a762b5d", + "size": 34148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca8b37e4ffc827462eb40e2ac99606df9a762b5d" + }, + { + "path": "webp/hubzilla.webp", + "mode": "100644", + "type": "blob", + "sha": "1799d85fc33128ba3e5c5c42b82e8516bc8dbedd", + "size": 18248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1799d85fc33128ba3e5c5c42b82e8516bc8dbedd" + }, + { + "path": "webp/hugging-face.webp", + "mode": "100644", + "type": "blob", + "sha": "4a3cf412d592511935be87f43767e2adf43ed43d", + "size": 105334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a3cf412d592511935be87f43767e2adf43ed43d" + }, + { + "path": "webp/huginn.webp", + "mode": "100644", + "type": "blob", + "sha": "0f3d644a6a3f2f93ca3e1e376b536895494147a1", + "size": 60996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f3d644a6a3f2f93ca3e1e376b536895494147a1" + }, + { + "path": "webp/hugo.webp", + "mode": "100644", + "type": "blob", + "sha": "487783cf3546925bdc59014162a05e8f3e5718f7", + "size": 29818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/487783cf3546925bdc59014162a05e8f3e5718f7" + }, + { + "path": "webp/hulu.webp", + "mode": "100644", + "type": "blob", + "sha": "ac1670177c1d69b90acb0b562ff6f868979bd9e5", + "size": 15532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac1670177c1d69b90acb0b562ff6f868979bd9e5" + }, + { + "path": "webp/humhub.webp", + "mode": "100644", + "type": "blob", + "sha": "1da94807dc4ffc9bfcf64aa724a72604e111b158", + "size": 19164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1da94807dc4ffc9bfcf64aa724a72604e111b158" + }, + { + "path": "webp/huntarr.webp", + "mode": "100644", + "type": "blob", + "sha": "ab0af805b4ebbda7564302ee3e1e5e46afafac30", + "size": 142444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab0af805b4ebbda7564302ee3e1e5e46afafac30" + }, + { + "path": "webp/hydra.webp", + "mode": "100644", + "type": "blob", + "sha": "8726cbb752b10ca519b0694de3fb97e7d8289dda", + "size": 76922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8726cbb752b10ca519b0694de3fb97e7d8289dda" + }, + { + "path": "webp/hyperion.webp", + "mode": "100644", + "type": "blob", + "sha": "1db5b4830dbf2c99fccc1271c311963fdd8aa423", + "size": 61786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1db5b4830dbf2c99fccc1271c311963fdd8aa423" + }, + { + "path": "webp/hyperpipe-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e464f213d952d73f75e1dc12c7425d269f59ad8a", + "size": 8650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e464f213d952d73f75e1dc12c7425d269f59ad8a" + }, + { + "path": "webp/hyperpipe.webp", + "mode": "100644", + "type": "blob", + "sha": "6106093a2e9ab7b9ce533c8720af2d002474219f", + "size": 10890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6106093a2e9ab7b9ce533c8720af2d002474219f" + }, + { + "path": "webp/hyprland.webp", + "mode": "100644", + "type": "blob", + "sha": "d7007f8fd4b6886c69b730b71da047ae4cf46249", + "size": 25888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7007f8fd4b6886c69b730b71da047ae4cf46249" + }, + { + "path": "webp/i-librarian.webp", + "mode": "100644", + "type": "blob", + "sha": "7916d78b9289e834808351506ba94935b77cc178", + "size": 13536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7916d78b9289e834808351506ba94935b77cc178" + }, + { + "path": "webp/i2p-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2baaa3e4706c1944b6579bcff55cb6e04b8a5bc1", + "size": 27686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2baaa3e4706c1944b6579bcff55cb6e04b8a5bc1" + }, + { + "path": "webp/i2p.webp", + "mode": "100644", + "type": "blob", + "sha": "af5f266def4c69323c0532458689ff91916e73d6", + "size": 30244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af5f266def4c69323c0532458689ff91916e73d6" + }, + { + "path": "webp/i2pd.webp", + "mode": "100644", + "type": "blob", + "sha": "4334d94c750d20ac6dd1346b17e2dd0b1cbcf6ca", + "size": 100308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4334d94c750d20ac6dd1346b17e2dd0b1cbcf6ca" + }, + { + "path": "webp/ical.webp", + "mode": "100644", + "type": "blob", + "sha": "9ebb73c25aa6a29f40fd890b14c245ddaec0d073", + "size": 28764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ebb73c25aa6a29f40fd890b14c245ddaec0d073" + }, + { + "path": "webp/icecast.webp", + "mode": "100644", + "type": "blob", + "sha": "503f42425cb330b93dd864d3547da27855c32e5e", + "size": 52882, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/503f42425cb330b93dd864d3547da27855c32e5e" + }, + { + "path": "webp/icinga-full-light.webp", + "mode": "100644", + "type": "blob", + "sha": "71335a690972cbd175ef3d69b9be97b3edd7007e", + "size": 16250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71335a690972cbd175ef3d69b9be97b3edd7007e" + }, + { + "path": "webp/icinga-full.webp", + "mode": "100644", + "type": "blob", + "sha": "4b3ca6b705ec677a852b78cb6e4293d150b3da53", + "size": 36296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b3ca6b705ec677a852b78cb6e4293d150b3da53" + }, + { + "path": "webp/icinga-light.webp", + "mode": "100644", + "type": "blob", + "sha": "83bfd65df83192471ce1fbfc5f332c2558027fc7", + "size": 5656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83bfd65df83192471ce1fbfc5f332c2558027fc7" + }, + { + "path": "webp/icinga.webp", + "mode": "100644", + "type": "blob", + "sha": "a04236fcf1e85fb45e22ba2bf5e341d4c3b1f811", + "size": 9548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a04236fcf1e85fb45e22ba2bf5e341d4c3b1f811" + }, + { + "path": "webp/icloud.webp", + "mode": "100644", + "type": "blob", + "sha": "42af6fe3b23d435110e85e7bc46a9f572a138b84", + "size": 21980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42af6fe3b23d435110e85e7bc46a9f572a138b84" + }, + { + "path": "webp/idealo.webp", + "mode": "100644", + "type": "blob", + "sha": "18ae1f49fa236ea958842c7c7385f3f5cb4a25c1", + "size": 726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18ae1f49fa236ea958842c7c7385f3f5cb4a25c1" + }, + { + "path": "webp/ideco.webp", + "mode": "100644", + "type": "blob", + "sha": "55ae85af2de52e6d83f8d0b32e66dde7e1a6a4a1", + "size": 10152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/55ae85af2de52e6d83f8d0b32e66dde7e1a6a4a1" + }, + { + "path": "webp/idrac.webp", + "mode": "100644", + "type": "blob", + "sha": "1f9c59a5f710e1d6e12684a362074cb0973dc0d1", + "size": 39446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f9c59a5f710e1d6e12684a362074cb0973dc0d1" + }, + { + "path": "webp/idrive.webp", + "mode": "100644", + "type": "blob", + "sha": "caa03d75e65238b441462ef4204fcebd9cc1c963", + "size": 76882, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/caa03d75e65238b441462ef4204fcebd9cc1c963" + }, + { + "path": "webp/ihatemoney.webp", + "mode": "100644", + "type": "blob", + "sha": "2e05cd14fb25fa66e2adfb04a2e3453a84e07d51", + "size": 97078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e05cd14fb25fa66e2adfb04a2e3453a84e07d51" + }, + { + "path": "webp/ikuai.webp", + "mode": "100644", + "type": "blob", + "sha": "5c0e36a38eebe68ebd67808b353315cb0d915b57", + "size": 59798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c0e36a38eebe68ebd67808b353315cb0d915b57" + }, + { + "path": "webp/ilo.webp", + "mode": "100644", + "type": "blob", + "sha": "25b4e620ca0fc068683b7f5870d68444f7f1a36a", + "size": 35862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25b4e620ca0fc068683b7f5870d68444f7f1a36a" + }, + { + "path": "webp/image-maid.webp", + "mode": "100644", + "type": "blob", + "sha": "d6eea95f6a7fd8d6c93a57b089db7cd7858b5749", + "size": 62906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6eea95f6a7fd8d6c93a57b089db7cd7858b5749" + }, + { + "path": "webp/immich-frame-light.webp", + "mode": "100644", + "type": "blob", + "sha": "738b3709636a1608b1199d26027ae2af35c8776c", + "size": 13818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/738b3709636a1608b1199d26027ae2af35c8776c" + }, + { + "path": "webp/immich-frame.webp", + "mode": "100644", + "type": "blob", + "sha": "4aaebeea78384861e03f43746565104931ba3313", + "size": 11752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4aaebeea78384861e03f43746565104931ba3313" + }, + { + "path": "webp/immich-kiosk-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9db82da9c2a5e0cf2f43d99905ad2612c52e1eee", + "size": 90928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9db82da9c2a5e0cf2f43d99905ad2612c52e1eee" + }, + { + "path": "webp/immich-kiosk.webp", + "mode": "100644", + "type": "blob", + "sha": "716602b86c41875499bcae09a633eade8b85d357", + "size": 99122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/716602b86c41875499bcae09a633eade8b85d357" + }, + { + "path": "webp/immich-power-tools.webp", + "mode": "100644", + "type": "blob", + "sha": "98249ee8ce5de8f05fecf3cdeec6082bdd25e241", + "size": 10462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98249ee8ce5de8f05fecf3cdeec6082bdd25e241" + }, + { + "path": "webp/immich-public-proxy.webp", + "mode": "100644", + "type": "blob", + "sha": "488d59fa57f068af6bfe8bc6d9d209bc7a56ba02", + "size": 70806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/488d59fa57f068af6bfe8bc6d9d209bc7a56ba02" + }, + { + "path": "webp/immich.webp", + "mode": "100644", + "type": "blob", + "sha": "a7a579af394003560d21c5925ccdcfc4148490cc", + "size": 35804, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7a579af394003560d21c5925ccdcfc4148490cc" + }, + { + "path": "webp/incus.webp", + "mode": "100644", + "type": "blob", + "sha": "d6691bd19d148e3b93d9a649092264f41408d667", + "size": 54894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6691bd19d148e3b93d9a649092264f41408d667" + }, + { + "path": "webp/infinite-craft.webp", + "mode": "100644", + "type": "blob", + "sha": "0bd73c600ac1426c2bfe2e5cd1990c8717886d25", + "size": 9756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bd73c600ac1426c2bfe2e5cd1990c8717886d25" + }, + { + "path": "webp/infisical.webp", + "mode": "100644", + "type": "blob", + "sha": "c89edea41c53b03832a5448531b59462c44c53cc", + "size": 27562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c89edea41c53b03832a5448531b59462c44c53cc" + }, + { + "path": "webp/influxdb.webp", + "mode": "100644", + "type": "blob", + "sha": "0e2a5e4dc3f5b9fcab4948b557739f0983b81697", + "size": 42664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e2a5e4dc3f5b9fcab4948b557739f0983b81697" + }, + { + "path": "webp/infoblox.webp", + "mode": "100644", + "type": "blob", + "sha": "a278984c693416a8b946ff92afc06564cd1ac537", + "size": 35568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a278984c693416a8b946ff92afc06564cd1ac537" + }, + { + "path": "webp/infomaniak-k.webp", + "mode": "100644", + "type": "blob", + "sha": "d076936486a67642e1533961f683aeaa889e75cb", + "size": 4370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d076936486a67642e1533961f683aeaa889e75cb" + }, + { + "path": "webp/infomaniak-kdrive-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "c9633dd54c6d46151c8f529295b62efb26fbcb0e", + "size": 30792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9633dd54c6d46151c8f529295b62efb26fbcb0e" + }, + { + "path": "webp/infomaniak-kdrive-light.webp", + "mode": "100644", + "type": "blob", + "sha": "bda0095f2d82bff90e400d0d88ece4d6dbfa6025", + "size": 38486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bda0095f2d82bff90e400d0d88ece4d6dbfa6025" + }, + { + "path": "webp/infomaniak-kmeet-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "22988c51c0e6bc3763793b35dc19f0ff2c826250", + "size": 18460, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22988c51c0e6bc3763793b35dc19f0ff2c826250" + }, + { + "path": "webp/infomaniak-kmeet-light.webp", + "mode": "100644", + "type": "blob", + "sha": "900ac1f00ca8478c0449bf889571ea68d9192292", + "size": 19262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/900ac1f00ca8478c0449bf889571ea68d9192292" + }, + { + "path": "webp/infomaniak-swisstransfer-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "0d5447271bf9b226f8a2c17e37406a5ec9da9d59", + "size": 30222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d5447271bf9b226f8a2c17e37406a5ec9da9d59" + }, + { + "path": "webp/infomaniak-swisstransfer-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fd29d868dcec6d85144489c780d1c77fb44a1df3", + "size": 24924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd29d868dcec6d85144489c780d1c77fb44a1df3" + }, + { + "path": "webp/inoreader.webp", + "mode": "100644", + "type": "blob", + "sha": "3bdcb5fe38817dcc04b26f42267120702b3d1330", + "size": 18908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3bdcb5fe38817dcc04b26f42267120702b3d1330" + }, + { + "path": "webp/insanelymac.webp", + "mode": "100644", + "type": "blob", + "sha": "8747a4bdd685cd91f13a25847e066c5bd7725bc2", + "size": 22538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8747a4bdd685cd91f13a25847e066c5bd7725bc2" + }, + { + "path": "webp/instagram.webp", + "mode": "100644", + "type": "blob", + "sha": "86238384edf49df7a8a967beee2d9f3cd8855917", + "size": 83154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86238384edf49df7a8a967beee2d9f3cd8855917" + }, + { + "path": "webp/intellij.webp", + "mode": "100644", + "type": "blob", + "sha": "7cbe36c34c8fc92ff8d82fb99d730657d0d97a3c", + "size": 40676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cbe36c34c8fc92ff8d82fb99d730657d0d97a3c" + }, + { + "path": "webp/inventree.webp", + "mode": "100644", + "type": "blob", + "sha": "5d060f8f77dda0ab8acd6e96734bb79ac32cb85e", + "size": 64120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d060f8f77dda0ab8acd6e96734bb79ac32cb85e" + }, + { + "path": "webp/invidious.webp", + "mode": "100644", + "type": "blob", + "sha": "2474235742db43cb961bd9110fcabacc7f41be4e", + "size": 15390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2474235742db43cb961bd9110fcabacc7f41be4e" + }, + { + "path": "webp/invisioncommunity.webp", + "mode": "100644", + "type": "blob", + "sha": "20d595a5c6d50257480eb3db64ff95981e39d677", + "size": 19338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20d595a5c6d50257480eb3db64ff95981e39d677" + }, + { + "path": "webp/invoice-ninja-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d073b42b69afade637e44a9373cf7d490e102a3d", + "size": 8850, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d073b42b69afade637e44a9373cf7d490e102a3d" + }, + { + "path": "webp/invoice-ninja.webp", + "mode": "100644", + "type": "blob", + "sha": "e1e4d32027474604e83d4d8fdd25b7a154e9c018", + "size": 7922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1e4d32027474604e83d4d8fdd25b7a154e9c018" + }, + { + "path": "webp/invoiceninja-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b61d8c8808a25127cccfe2578fa8da953112ba24", + "size": 7878, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b61d8c8808a25127cccfe2578fa8da953112ba24" + }, + { + "path": "webp/invoiceninja.webp", + "mode": "100644", + "type": "blob", + "sha": "3429296a9869bac7e3d133fb02e8dc77bdd5b149", + "size": 7874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3429296a9869bac7e3d133fb02e8dc77bdd5b149" + }, + { + "path": "webp/invoke-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "d2c4c518535d9b4742900bd6bfceb1344bd51ee9", + "size": 8274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2c4c518535d9b4742900bd6bfceb1344bd51ee9" + }, + { + "path": "webp/iobroker.webp", + "mode": "100644", + "type": "blob", + "sha": "36625e71dd7f67fdf0cf0d8509c68bf62658ec60", + "size": 25798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36625e71dd7f67fdf0cf0d8509c68bf62658ec60" + }, + { + "path": "webp/ionos.webp", + "mode": "100644", + "type": "blob", + "sha": "7801311b4bcf9466920e6020bcd023d76673d5df", + "size": 650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7801311b4bcf9466920e6020bcd023d76673d5df" + }, + { + "path": "webp/ipboard.webp", + "mode": "100644", + "type": "blob", + "sha": "20d595a5c6d50257480eb3db64ff95981e39d677", + "size": 19338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20d595a5c6d50257480eb3db64ff95981e39d677" + }, + { + "path": "webp/ipcamtalk.webp", + "mode": "100644", + "type": "blob", + "sha": "dcd6419720ba7ea983067574feca07d21a87efe0", + "size": 81576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcd6419720ba7ea983067574feca07d21a87efe0" + }, + { + "path": "webp/ipfs-light.webp", + "mode": "100644", + "type": "blob", + "sha": "304d91c6f973b8f0d7c597b2ed98048be6f19063", + "size": 55266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/304d91c6f973b8f0d7c597b2ed98048be6f19063" + }, + { + "path": "webp/ipfs.webp", + "mode": "100644", + "type": "blob", + "sha": "8ab9fe938696a9f59dab968fa1f8f287da4577c9", + "size": 57824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ab9fe938696a9f59dab968fa1f8f287da4577c9" + }, + { + "path": "webp/irc.webp", + "mode": "100644", + "type": "blob", + "sha": "aad94f1179513daee49430fbc3158520ef8bd199", + "size": 59346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aad94f1179513daee49430fbc3158520ef8bd199" + }, + { + "path": "webp/iredmail.webp", + "mode": "100644", + "type": "blob", + "sha": "6fb27c783fd1901424182ebc65f60ef44e68c95f", + "size": 10930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fb27c783fd1901424182ebc65f60ef44e68c95f" + }, + { + "path": "webp/ispconfig.webp", + "mode": "100644", + "type": "blob", + "sha": "bd6a21c2c2fa144579597ae73e82fb95ea5c5159", + "size": 8716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd6a21c2c2fa144579597ae73e82fb95ea5c5159" + }, + { + "path": "webp/ispy.webp", + "mode": "100644", + "type": "blob", + "sha": "9f31fd747f83776d27497513af469e405145d34d", + "size": 38828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f31fd747f83776d27497513af469e405145d34d" + }, + { + "path": "webp/issabel-pbx-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "b18872b311fbe38a59f4c0918cb589679cce236f", + "size": 21356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b18872b311fbe38a59f4c0918cb589679cce236f" + }, + { + "path": "webp/issabel-pbx-wordmark-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "7f6f149a7f5a5754785e3e2a5657c7d5918a859a", + "size": 33704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f6f149a7f5a5754785e3e2a5657c7d5918a859a" + }, + { + "path": "webp/issabel-pbx-wordmark.webp", + "mode": "100644", + "type": "blob", + "sha": "3d884905e3890e22b42a156c70fbdde484719e13", + "size": 33396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d884905e3890e22b42a156c70fbdde484719e13" + }, + { + "path": "webp/issabel-pbx.webp", + "mode": "100644", + "type": "blob", + "sha": "8de3b614a70bdc12fccd2a39b658a8a7be61b6db", + "size": 21212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8de3b614a70bdc12fccd2a39b658a8a7be61b6db" + }, + { + "path": "webp/it-tools-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c9e983ecfedfc8f8c1212429cd174c13d929148d", + "size": 25010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9e983ecfedfc8f8c1212429cd174c13d929148d" + }, + { + "path": "webp/it-tools.webp", + "mode": "100644", + "type": "blob", + "sha": "2a2fe6fd98463d6c9e1965953a8912307e813473", + "size": 28518, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a2fe6fd98463d6c9e1965953a8912307e813473" + }, + { + "path": "webp/italki.webp", + "mode": "100644", + "type": "blob", + "sha": "c9f367b3b4a178cdcccb01702d471ba04d401b6b", + "size": 71590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9f367b3b4a178cdcccb01702d471ba04d401b6b" + }, + { + "path": "webp/itau.webp", + "mode": "100644", + "type": "blob", + "sha": "2a667c0987af81bf2844c30ccc0a23d7f01c5249", + "size": 7844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a667c0987af81bf2844c30ccc0a23d7f01c5249" + }, + { + "path": "webp/jackett-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2553dc95d073d7a9237b435e8dd830adcfcdf635", + "size": 8012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2553dc95d073d7a9237b435e8dd830adcfcdf635" + }, + { + "path": "webp/jackett.webp", + "mode": "100644", + "type": "blob", + "sha": "ef23a2fe405efc92edbbebdaec69ca600e8aaaa1", + "size": 8006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef23a2fe405efc92edbbebdaec69ca600e8aaaa1" + }, + { + "path": "webp/jaeger.webp", + "mode": "100644", + "type": "blob", + "sha": "48881d7c62cc93f77643d87457b8c99f82301d8f", + "size": 52810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48881d7c62cc93f77643d87457b8c99f82301d8f" + }, + { + "path": "webp/jamf.webp", + "mode": "100644", + "type": "blob", + "sha": "0659553078eb74429b90d92d4a6de1ee9ff12b23", + "size": 9140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0659553078eb74429b90d92d4a6de1ee9ff12b23" + }, + { + "path": "webp/jamstack.webp", + "mode": "100644", + "type": "blob", + "sha": "7c5dd41ca5ca6666156213dd0a56ef8b87ccff52", + "size": 24150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c5dd41ca5ca6666156213dd0a56ef8b87ccff52" + }, + { + "path": "webp/java.webp", + "mode": "100644", + "type": "blob", + "sha": "583d6c6617a7fbf262bab0213cefc9e19a27c593", + "size": 29968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/583d6c6617a7fbf262bab0213cefc9e19a27c593" + }, + { + "path": "webp/javascript-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1d289e2d0a85398b78b0d838c21450960b0ccc9c", + "size": 23038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d289e2d0a85398b78b0d838c21450960b0ccc9c" + }, + { + "path": "webp/javascript.webp", + "mode": "100644", + "type": "blob", + "sha": "2510e1077328ce09a59dcf7b3d5f1077afd90a9f", + "size": 25092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2510e1077328ce09a59dcf7b3d5f1077afd90a9f" + }, + { + "path": "webp/jdownloader.webp", + "mode": "100644", + "type": "blob", + "sha": "4fef02e484d2a57b5be1447ac539c74c8fc2255b", + "size": 177192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fef02e484d2a57b5be1447ac539c74c8fc2255b" + }, + { + "path": "webp/jdownloader2.webp", + "mode": "100644", + "type": "blob", + "sha": "4fef02e484d2a57b5be1447ac539c74c8fc2255b", + "size": 177192, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4fef02e484d2a57b5be1447ac539c74c8fc2255b" + }, + { + "path": "webp/jeedom.webp", + "mode": "100644", + "type": "blob", + "sha": "26acc674a968ce61e2c1ee8d7e0cfed62621d011", + "size": 23970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26acc674a968ce61e2c1ee8d7e0cfed62621d011" + }, + { + "path": "webp/jekyll.webp", + "mode": "100644", + "type": "blob", + "sha": "d3d92785b5ec1db46909936130a2299d8d0308be", + "size": 39692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3d92785b5ec1db46909936130a2299d8d0308be" + }, + { + "path": "webp/jellyfin-vue.webp", + "mode": "100644", + "type": "blob", + "sha": "9f40435aed5b581b8bcb51e89abf8c23c95836dc", + "size": 33576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f40435aed5b581b8bcb51e89abf8c23c95836dc" + }, + { + "path": "webp/jellyfin.webp", + "mode": "100644", + "type": "blob", + "sha": "8eef28f1ebba839d1f9b6c2d6870c189d9df1a86", + "size": 38922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8eef28f1ebba839d1f9b6c2d6870c189d9df1a86" + }, + { + "path": "webp/jellyseerr.webp", + "mode": "100644", + "type": "blob", + "sha": "0858b133020932a50020ff5069e17f9740488d11", + "size": 61016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0858b133020932a50020ff5069e17f9740488d11" + }, + { + "path": "webp/jellystat-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "bd0368ba8e418f6fbbe8a7851025cefa5ffc9c3d", + "size": 28206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd0368ba8e418f6fbbe8a7851025cefa5ffc9c3d" + }, + { + "path": "webp/jellystat.webp", + "mode": "100644", + "type": "blob", + "sha": "cbdc42548d27e23d3d683aa3fb8d94f7e16e89c3", + "size": 29050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbdc42548d27e23d3d683aa3fb8d94f7e16e89c3" + }, + { + "path": "webp/jelu.webp", + "mode": "100644", + "type": "blob", + "sha": "a073f9e77a5c7872f4b10f116214a9fdcae6abf2", + "size": 11248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a073f9e77a5c7872f4b10f116214a9fdcae6abf2" + }, + { + "path": "webp/jenkins.webp", + "mode": "100644", + "type": "blob", + "sha": "ea74a0cd564259fec7686aee6d8f6d8be464277e", + "size": 96848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea74a0cd564259fec7686aee6d8f6d8be464277e" + }, + { + "path": "webp/jetbrains-fleet.webp", + "mode": "100644", + "type": "blob", + "sha": "f373b50cbe1dc47bcbc732eea8c411a514aaf397", + "size": 73482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f373b50cbe1dc47bcbc732eea8c411a514aaf397" + }, + { + "path": "webp/jetbrains-toolbox.webp", + "mode": "100644", + "type": "blob", + "sha": "5f9b2eb14cd72848090363970952e300ffdf234f", + "size": 35676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f9b2eb14cd72848090363970952e300ffdf234f" + }, + { + "path": "webp/jetbrains-youtrack.webp", + "mode": "100644", + "type": "blob", + "sha": "f33606f59adb8b378ee7cdb7dc2b23d9b715c439", + "size": 31046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f33606f59adb8b378ee7cdb7dc2b23d9b715c439" + }, + { + "path": "webp/jetkvm-full.webp", + "mode": "100644", + "type": "blob", + "sha": "34c45e94c66c4578d55b7348e26237a8f8b50418", + "size": 86774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34c45e94c66c4578d55b7348e26237a8f8b50418" + }, + { + "path": "webp/jetkvm.webp", + "mode": "100644", + "type": "blob", + "sha": "d9d6415144fa866718a3f6b87d1505c6e5acb2fe", + "size": 33352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9d6415144fa866718a3f6b87d1505c6e5acb2fe" + }, + { + "path": "webp/jfrog.webp", + "mode": "100644", + "type": "blob", + "sha": "c3c6fe180b0ab0b7774a17c1b6976675b92ba6b5", + "size": 47134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3c6fe180b0ab0b7774a17c1b6976675b92ba6b5" + }, + { + "path": "webp/jio.webp", + "mode": "100644", + "type": "blob", + "sha": "69677ba89e61d08e32c55ea295aaa944944d0c5e", + "size": 20394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69677ba89e61d08e32c55ea295aaa944944d0c5e" + }, + { + "path": "webp/jiohotstar.webp", + "mode": "100644", + "type": "blob", + "sha": "c7b3989a860e1c6dab8a37f13cf1770fad917541", + "size": 68264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7b3989a860e1c6dab8a37f13cf1770fad917541" + }, + { + "path": "webp/jira.webp", + "mode": "100644", + "type": "blob", + "sha": "9a6d3a77315ee1906f35f65fca85822ae13a1064", + "size": 16446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a6d3a77315ee1906f35f65fca85822ae13a1064" + }, + { + "path": "webp/jitsi-meet.webp", + "mode": "100644", + "type": "blob", + "sha": "f82f023b70a0ddbca831908c5a729b81668e061e", + "size": 65904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f82f023b70a0ddbca831908c5a729b81668e061e" + }, + { + "path": "webp/jitsi.webp", + "mode": "100644", + "type": "blob", + "sha": "d74ff99978d251f967f0b3669daef4e019d03d2c", + "size": 76820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d74ff99978d251f967f0b3669daef4e019d03d2c" + }, + { + "path": "webp/joal.webp", + "mode": "100644", + "type": "blob", + "sha": "5b81156e8f6bb7c569898332edea6416567cf13f", + "size": 6880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5b81156e8f6bb7c569898332edea6416567cf13f" + }, + { + "path": "webp/joomla.webp", + "mode": "100644", + "type": "blob", + "sha": "40f153785726f0d06952932a7ff02d517e22fc3e", + "size": 48956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40f153785726f0d06952932a7ff02d517e22fc3e" + }, + { + "path": "webp/joplin.webp", + "mode": "100644", + "type": "blob", + "sha": "6341ef2d968bf804c4f568922ea61c9b22d8df49", + "size": 52, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6341ef2d968bf804c4f568922ea61c9b22d8df49" + }, + { + "path": "webp/jotty.webp", + "mode": "100644", + "type": "blob", + "sha": "03054c1363f71856608b066812bb7a53404f97a8", + "size": 12968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03054c1363f71856608b066812bb7a53404f97a8" + }, + { + "path": "webp/jujutsu-vcs.webp", + "mode": "100644", + "type": "blob", + "sha": "a5ca9f0224798d2e85325e4cd9e2291dadb87ef5", + "size": 102706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5ca9f0224798d2e85325e4cd9e2291dadb87ef5" + }, + { + "path": "webp/julia.webp", + "mode": "100644", + "type": "blob", + "sha": "539bddc5799a74bc1e0a60f6661561ade4e3a276", + "size": 20752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/539bddc5799a74bc1e0a60f6661561ade4e3a276" + }, + { + "path": "webp/jupyter.webp", + "mode": "100644", + "type": "blob", + "sha": "62dee3c8c2f32a8d8abbddd01ece910fd5e895f1", + "size": 23170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62dee3c8c2f32a8d8abbddd01ece910fd5e895f1" + }, + { + "path": "webp/jwt-io-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ee79251a7f1300a5199519fb4660f586f5e6d5a5", + "size": 35624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee79251a7f1300a5199519fb4660f586f5e6d5a5" + }, + { + "path": "webp/jwt-io.webp", + "mode": "100644", + "type": "blob", + "sha": "8d2c2ba296fd39b9ea6507ca51c6b7e38a768afb", + "size": 38204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d2c2ba296fd39b9ea6507ca51c6b7e38a768afb" + }, + { + "path": "webp/k-speeder.webp", + "mode": "100644", + "type": "blob", + "sha": "0b597a0cf9d46a58fc4b0cea7c47adb3ea26b380", + "size": 37406, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b597a0cf9d46a58fc4b0cea7c47adb3ea26b380" + }, + { + "path": "webp/kagi.webp", + "mode": "100644", + "type": "blob", + "sha": "bbf81a709f1ddcde52fd51451d4d04f503b2cb2b", + "size": 36814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbf81a709f1ddcde52fd51451d4d04f503b2cb2b" + }, + { + "path": "webp/kaizoku.webp", + "mode": "100644", + "type": "blob", + "sha": "0cca5a327fba983aca31e0630f5cb2764fe91c70", + "size": 88414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cca5a327fba983aca31e0630f5cb2764fe91c70" + }, + { + "path": "webp/kali-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "e856156ca704242f8eae8b38443d7879586a7b7e", + "size": 92512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e856156ca704242f8eae8b38443d7879586a7b7e" + }, + { + "path": "webp/kamatera.webp", + "mode": "100644", + "type": "blob", + "sha": "38e686a180486d62ad9bbb687b9649fbdf9eccb2", + "size": 74382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38e686a180486d62ad9bbb687b9649fbdf9eccb2" + }, + { + "path": "webp/kanboard-light.webp", + "mode": "100644", + "type": "blob", + "sha": "113d73b2da44542c490cdf076a1ecc1fa3381d33", + "size": 13580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/113d73b2da44542c490cdf076a1ecc1fa3381d33" + }, + { + "path": "webp/kanboard.webp", + "mode": "100644", + "type": "blob", + "sha": "69fc4f3f57b9ecf896050f22e8e095bdf41419c0", + "size": 20072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69fc4f3f57b9ecf896050f22e8e095bdf41419c0" + }, + { + "path": "webp/kanidm.webp", + "mode": "100644", + "type": "blob", + "sha": "75207b9bf3fdc05ee9df13cd8e2ef855e807e8e0", + "size": 142772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75207b9bf3fdc05ee9df13cd8e2ef855e807e8e0" + }, + { + "path": "webp/kapacitor.webp", + "mode": "100644", + "type": "blob", + "sha": "cf8c39ca8fc6dce7c564e5b187781e8d1eb650ac", + "size": 68278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf8c39ca8fc6dce7c564e5b187781e8d1eb650ac" + }, + { + "path": "webp/kapowarr.webp", + "mode": "100644", + "type": "blob", + "sha": "9c7b776c71c459f6e856b35161b050f170066d88", + "size": 122724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c7b776c71c459f6e856b35161b050f170066d88" + }, + { + "path": "webp/karakeep-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "7cc06d07712f6b96b86ca839d0dac154e1ed3379", + "size": 1986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cc06d07712f6b96b86ca839d0dac154e1ed3379" + }, + { + "path": "webp/karakeep.webp", + "mode": "100644", + "type": "blob", + "sha": "3b68e9696d5b0b2d8faff5a6767d4f1170304d40", + "size": 2010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b68e9696d5b0b2d8faff5a6767d4f1170304d40" + }, + { + "path": "webp/karaoke-eternal.webp", + "mode": "100644", + "type": "blob", + "sha": "8816bfcbd0319b34e4151768a1843be5cd438e78", + "size": 59788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8816bfcbd0319b34e4151768a1843be5cd438e78" + }, + { + "path": "webp/kasm-workspaces.webp", + "mode": "100644", + "type": "blob", + "sha": "ead38e6ab037a94eb0ca598ac4a3916f84ef5713", + "size": 23098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ead38e6ab037a94eb0ca598ac4a3916f84ef5713" + }, + { + "path": "webp/kasm.webp", + "mode": "100644", + "type": "blob", + "sha": "ead38e6ab037a94eb0ca598ac4a3916f84ef5713", + "size": 23098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ead38e6ab037a94eb0ca598ac4a3916f84ef5713" + }, + { + "path": "webp/kasten-k10.webp", + "mode": "100644", + "type": "blob", + "sha": "7a729692fcd3490ac08e7dbac5c92a713230b6ad", + "size": 22378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a729692fcd3490ac08e7dbac5c92a713230b6ad" + }, + { + "path": "webp/kaufland.webp", + "mode": "100644", + "type": "blob", + "sha": "6f499ae73483ea68410d33a0f012c0597210d356", + "size": 31236, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f499ae73483ea68410d33a0f012c0597210d356" + }, + { + "path": "webp/kavita.webp", + "mode": "100644", + "type": "blob", + "sha": "af4b5ab2f42c2c3524b5403f4f8f907fa71802e9", + "size": 26274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af4b5ab2f42c2c3524b5403f4f8f907fa71802e9" + }, + { + "path": "webp/kbin.webp", + "mode": "100644", + "type": "blob", + "sha": "0edb8ad7a74d8bb8201f7c0f633b181bcd6a2e8f", + "size": 26196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0edb8ad7a74d8bb8201f7c0f633b181bcd6a2e8f" + }, + { + "path": "webp/keenetic-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "666e5a88d5c28b7010c358132d9a34099a20a479", + "size": 29628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/666e5a88d5c28b7010c358132d9a34099a20a479" + }, + { + "path": "webp/keenetic-new.webp", + "mode": "100644", + "type": "blob", + "sha": "50e55d6bc9877ff09b1f6d8120f94310171934b6", + "size": 18904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50e55d6bc9877ff09b1f6d8120f94310171934b6" + }, + { + "path": "webp/keenetic.webp", + "mode": "100644", + "type": "blob", + "sha": "8e108ca91d496494607f8cb3a6c856be062f5442", + "size": 19524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e108ca91d496494607f8cb3a6c856be062f5442" + }, + { + "path": "webp/keepassxc.webp", + "mode": "100644", + "type": "blob", + "sha": "4ea8f2505807e373f36b3aaea54ca3f165a0e97d", + "size": 70870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ea8f2505807e373f36b3aaea54ca3f165a0e97d" + }, + { + "path": "webp/keila.webp", + "mode": "100644", + "type": "blob", + "sha": "99f00771af59c0baa87ddace1978ff439d97638a", + "size": 18504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/99f00771af59c0baa87ddace1978ff439d97638a" + }, + { + "path": "webp/kerberos.webp", + "mode": "100644", + "type": "blob", + "sha": "9d6cfea5ad4e4c025f5f59ea66b5d6c8cbdb9ccc", + "size": 84326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d6cfea5ad4e4c025f5f59ea66b5d6c8cbdb9ccc" + }, + { + "path": "webp/kestra.webp", + "mode": "100644", + "type": "blob", + "sha": "d4331c47141a3febbf8b395dff2ed5719d3a2e30", + "size": 23956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d4331c47141a3febbf8b395dff2ed5719d3a2e30" + }, + { + "path": "webp/keycloak.webp", + "mode": "100644", + "type": "blob", + "sha": "ceac7a4742562d6b55bd4906606a9e960411008d", + "size": 55002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ceac7a4742562d6b55bd4906606a9e960411008d" + }, + { + "path": "webp/keyoxide-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "64c89a6226a6c80440fd9938f9f10fc6282c6c72", + "size": 40134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64c89a6226a6c80440fd9938f9f10fc6282c6c72" + }, + { + "path": "webp/keyoxide.webp", + "mode": "100644", + "type": "blob", + "sha": "ac1b2a611b094c1bbfe9a5e1b4c71a27dbf620cc", + "size": 35638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac1b2a611b094c1bbfe9a5e1b4c71a27dbf620cc" + }, + { + "path": "webp/kibana.webp", + "mode": "100644", + "type": "blob", + "sha": "3aea4c575c51fa51f2b05dc9fc6072317824a658", + "size": 22350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3aea4c575c51fa51f2b05dc9fc6072317824a658" + }, + { + "path": "webp/kick-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3cb5eab3cb30bcbc0419ad90ecf834c07fa61cbf", + "size": 5830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cb5eab3cb30bcbc0419ad90ecf834c07fa61cbf" + }, + { + "path": "webp/kick.webp", + "mode": "100644", + "type": "blob", + "sha": "4102de6e523cea4417273da480771c14cc6ae7eb", + "size": 5410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4102de6e523cea4417273da480771c14cc6ae7eb" + }, + { + "path": "webp/kimai.webp", + "mode": "100644", + "type": "blob", + "sha": "24e2c664709e998f4bed2a4c97e8f778319b871a", + "size": 76646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24e2c664709e998f4bed2a4c97e8f778319b871a" + }, + { + "path": "webp/kimi-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "6a0c039b85d79efc24295f53db181e7627911b04", + "size": 11520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a0c039b85d79efc24295f53db181e7627911b04" + }, + { + "path": "webp/kinto.webp", + "mode": "100644", + "type": "blob", + "sha": "3b21a0915f159a8f6365a7c773695461333c6863", + "size": 71084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b21a0915f159a8f6365a7c773695461333c6863" + }, + { + "path": "webp/kitana.webp", + "mode": "100644", + "type": "blob", + "sha": "907f85da1d29e4a5f4fa28233cb215d37b2b8fc4", + "size": 27386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/907f85da1d29e4a5f4fa28233cb215d37b2b8fc4" + }, + { + "path": "webp/kitchenowl.webp", + "mode": "100644", + "type": "blob", + "sha": "5e52ef960ca43205747ebb329933d360bd5af90c", + "size": 69382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e52ef960ca43205747ebb329933d360bd5af90c" + }, + { + "path": "webp/kiwix-light.webp", + "mode": "100644", + "type": "blob", + "sha": "775402dd33f702050f65b9c1ff2088aafd5abf7f", + "size": 8440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/775402dd33f702050f65b9c1ff2088aafd5abf7f" + }, + { + "path": "webp/kiwix.webp", + "mode": "100644", + "type": "blob", + "sha": "5c1360afb037f299e7b675d01d4c6fb5a06dde8c", + "size": 9258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c1360afb037f299e7b675d01d4c6fb5a06dde8c" + }, + { + "path": "webp/kleinanzeigen.webp", + "mode": "100644", + "type": "blob", + "sha": "a2dfd2035cba468de29134280768c9c8f923ee70", + "size": 21134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2dfd2035cba468de29134280768c9c8f923ee70" + }, + { + "path": "webp/kleopatra.webp", + "mode": "100644", + "type": "blob", + "sha": "ca34cc7af36b2241ab49f40f64689449533a7652", + "size": 50428, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca34cc7af36b2241ab49f40f64689449533a7652" + }, + { + "path": "webp/klipper.webp", + "mode": "100644", + "type": "blob", + "sha": "b3512ec54778c182cbb3dd1d56c616833918ee64", + "size": 48568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3512ec54778c182cbb3dd1d56c616833918ee64" + }, + { + "path": "webp/knx.webp", + "mode": "100644", + "type": "blob", + "sha": "35aadc73f6b7941d27f5682d73a931f1adf6c730", + "size": 54874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35aadc73f6b7941d27f5682d73a931f1adf6c730" + }, + { + "path": "webp/ko-fi.webp", + "mode": "100644", + "type": "blob", + "sha": "4adb28e3af6cb5085adb26d94718467a24927f5f", + "size": 42282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4adb28e3af6cb5085adb26d94718467a24927f5f" + }, + { + "path": "webp/ko-insight.webp", + "mode": "100644", + "type": "blob", + "sha": "3a2be91d92113a42b9791205f06a2ac750d26cb7", + "size": 31452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a2be91d92113a42b9791205f06a2ac750d26cb7" + }, + { + "path": "webp/koboldcpp.webp", + "mode": "100644", + "type": "blob", + "sha": "4a963d8e81260957109d9f4137b5baf1f0aacfac", + "size": 135968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a963d8e81260957109d9f4137b5baf1f0aacfac" + }, + { + "path": "webp/kodi.webp", + "mode": "100644", + "type": "blob", + "sha": "d1fd8c54337abe55025072746ed650b10eaeccda", + "size": 15300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1fd8c54337abe55025072746ed650b10eaeccda" + }, + { + "path": "webp/koel.webp", + "mode": "100644", + "type": "blob", + "sha": "1cf00a93632bbcd689b4bfccdb38ab5a43845379", + "size": 18158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cf00a93632bbcd689b4bfccdb38ab5a43845379" + }, + { + "path": "webp/koillection-light.webp", + "mode": "100644", + "type": "blob", + "sha": "cdc69f611ab19fb3ce064b7ad0ddf67bc0080851", + "size": 27234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdc69f611ab19fb3ce064b7ad0ddf67bc0080851" + }, + { + "path": "webp/koillection.webp", + "mode": "100644", + "type": "blob", + "sha": "3f17da9ee64ae70498afba2d91652a79ce1de357", + "size": 31182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f17da9ee64ae70498afba2d91652a79ce1de357" + }, + { + "path": "webp/koito.webp", + "mode": "100644", + "type": "blob", + "sha": "c0eca94a0eab7785ca472121c98fe1341eae48d1", + "size": 28722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0eca94a0eab7785ca472121c98fe1341eae48d1" + }, + { + "path": "webp/kokoro-web.webp", + "mode": "100644", + "type": "blob", + "sha": "abfec6cc853a9d8a9b92d84ae722bfa8a81beeff", + "size": 138022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abfec6cc853a9d8a9b92d84ae722bfa8a81beeff" + }, + { + "path": "webp/kometa.webp", + "mode": "100644", + "type": "blob", + "sha": "25d1735eee03cf348ca2b2c12a83a8efc4fcc959", + "size": 36596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25d1735eee03cf348ca2b2c12a83a8efc4fcc959" + }, + { + "path": "webp/komga.webp", + "mode": "100644", + "type": "blob", + "sha": "351e90aaa6850dc4ff6782ba74609fc48534251b", + "size": 101746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/351e90aaa6850dc4ff6782ba74609fc48534251b" + }, + { + "path": "webp/komodo.webp", + "mode": "100644", + "type": "blob", + "sha": "921357e544eb5a2aedf284253f5f216495554abb", + "size": 170456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/921357e544eb5a2aedf284253f5f216495554abb" + }, + { + "path": "webp/kontoj.webp", + "mode": "100644", + "type": "blob", + "sha": "e36c78731d51e3a9aa77ccbcf957cfc935688008", + "size": 19632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e36c78731d51e3a9aa77ccbcf957cfc935688008" + }, + { + "path": "webp/kook.webp", + "mode": "100644", + "type": "blob", + "sha": "054e23016192d79df3fa9793117ffb9255e69980", + "size": 24140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/054e23016192d79df3fa9793117ffb9255e69980" + }, + { + "path": "webp/kopia.webp", + "mode": "100644", + "type": "blob", + "sha": "95efdb01d00c0aa7fb6994a0b4a9a3ace36b9e14", + "size": 20038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95efdb01d00c0aa7fb6994a0b4a9a3ace36b9e14" + }, + { + "path": "webp/kotlin.webp", + "mode": "100644", + "type": "blob", + "sha": "bb0d2426138592e708f72f7a24384a475da18d9b", + "size": 34466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb0d2426138592e708f72f7a24384a475da18d9b" + }, + { + "path": "webp/kpn.webp", + "mode": "100644", + "type": "blob", + "sha": "bbb9797b0b1a2cab840c388095379cc66604718d", + "size": 49834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbb9797b0b1a2cab840c388095379cc66604718d" + }, + { + "path": "webp/krakend.webp", + "mode": "100644", + "type": "blob", + "sha": "69b70de5f0a15393fa85c0e3a84decd89eb4ec80", + "size": 71480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69b70de5f0a15393fa85c0e3a84decd89eb4ec80" + }, + { + "path": "webp/krusader.webp", + "mode": "100644", + "type": "blob", + "sha": "7d2d604bbb5760d34da1348292b41fa31e78a383", + "size": 45176, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d2d604bbb5760d34da1348292b41fa31e78a383" + }, + { + "path": "webp/ksuite.webp", + "mode": "100644", + "type": "blob", + "sha": "a5bb258b02208f3295c698519c778ec16a34adc1", + "size": 36948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5bb258b02208f3295c698519c778ec16a34adc1" + }, + { + "path": "webp/kubecraft.webp", + "mode": "100644", + "type": "blob", + "sha": "f8722f9974548c3b1114a4e10781bf86ee4a5afb", + "size": 72548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8722f9974548c3b1114a4e10781bf86ee4a5afb" + }, + { + "path": "webp/kubernetes-dashboard.webp", + "mode": "100644", + "type": "blob", + "sha": "fe2a1874ff79c23e7e0c786f967477993b3d48ad", + "size": 68700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe2a1874ff79c23e7e0c786f967477993b3d48ad" + }, + { + "path": "webp/kubernetes.webp", + "mode": "100644", + "type": "blob", + "sha": "fe2a1874ff79c23e7e0c786f967477993b3d48ad", + "size": 68700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe2a1874ff79c23e7e0c786f967477993b3d48ad" + }, + { + "path": "webp/kubuntu-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "2640cd59fa05a19c0c7b8edfbc25ca695a9633b9", + "size": 37644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2640cd59fa05a19c0c7b8edfbc25ca695a9633b9" + }, + { + "path": "webp/kutt.webp", + "mode": "100644", + "type": "blob", + "sha": "2c508ad4612b590531aac7f67d5a6667c3bf7983", + "size": 24856, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c508ad4612b590531aac7f67d5a6667c3bf7983" + }, + { + "path": "webp/kyoo.webp", + "mode": "100644", + "type": "blob", + "sha": "2434ed7dfb9b098dc9865a9b16fc2fba7382af17", + "size": 52436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2434ed7dfb9b098dc9865a9b16fc2fba7382af17" + }, + { + "path": "webp/lancache.webp", + "mode": "100644", + "type": "blob", + "sha": "5a57fc737e4170269fd5c3f2ae957a44a14af539", + "size": 18336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a57fc737e4170269fd5c3f2ae957a44a14af539" + }, + { + "path": "webp/lancommander-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d3462eeefeaeccfe79396796f9aaa4719e97a5ec", + "size": 570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3462eeefeaeccfe79396796f9aaa4719e97a5ec" + }, + { + "path": "webp/lancommander.webp", + "mode": "100644", + "type": "blob", + "sha": "f7bc5189261415bf98da4fca31b727ca3ddd6acf", + "size": 2122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7bc5189261415bf98da4fca31b727ca3ddd6acf" + }, + { + "path": "webp/lanraragi.webp", + "mode": "100644", + "type": "blob", + "sha": "9b1605015c69bfeccece76d31f177d417e769ca1", + "size": 120494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b1605015c69bfeccece76d31f177d417e769ca1" + }, + { + "path": "webp/laravel.webp", + "mode": "100644", + "type": "blob", + "sha": "9e4c405dffb32d79ca759f4c2958ec8518c61c0f", + "size": 52224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e4c405dffb32d79ca759f4c2958ec8518c61c0f" + }, + { + "path": "webp/lark.webp", + "mode": "100644", + "type": "blob", + "sha": "80067b55905ba8413c6d38ea8ffa1aa6b8a8fea5", + "size": 30458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80067b55905ba8413c6d38ea8ffa1aa6b8a8fea5" + }, + { + "path": "webp/lastpass.webp", + "mode": "100644", + "type": "blob", + "sha": "e60345736e03d690e96eeadf06ac412cbe38c30d", + "size": 22226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e60345736e03d690e96eeadf06ac412cbe38c30d" + }, + { + "path": "webp/lazylibrarian.webp", + "mode": "100644", + "type": "blob", + "sha": "5c51f333d9e8a07079df964f19503cd6f93400af", + "size": 27020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c51f333d9e8a07079df964f19503cd6f93400af" + }, + { + "path": "webp/ldap-account-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "7fbfc791fd53140b63da8ee037467e47a97dd8ea", + "size": 50206, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7fbfc791fd53140b63da8ee037467e47a97dd8ea" + }, + { + "path": "webp/leanote.webp", + "mode": "100644", + "type": "blob", + "sha": "47f0b5b6ce0c2d2479a4aa59c76e6776a0028a89", + "size": 23026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47f0b5b6ce0c2d2479a4aa59c76e6776a0028a89" + }, + { + "path": "webp/leantime.webp", + "mode": "100644", + "type": "blob", + "sha": "d7d004a8282cde063e48616809d4dfe51c38e4fd", + "size": 18252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7d004a8282cde063e48616809d4dfe51c38e4fd" + }, + { + "path": "webp/leargas-security.webp", + "mode": "100644", + "type": "blob", + "sha": "0b7b03a2a4a6c267625f98f93736a82f55b6297e", + "size": 43378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b7b03a2a4a6c267625f98f93736a82f55b6297e" + }, + { + "path": "webp/leetcode-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "6a536e7a9c09a10511fdb5053dbd61e7b1e2954c", + "size": 25700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a536e7a9c09a10511fdb5053dbd61e7b1e2954c" + }, + { + "path": "webp/leetcode.webp", + "mode": "100644", + "type": "blob", + "sha": "f7e1a84670359ba8d44af4f70b34f8124aeb57a6", + "size": 24576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7e1a84670359ba8d44af4f70b34f8124aeb57a6" + }, + { + "path": "webp/lemmy-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9cf8b1831f1e63d1365100b905b9692d1ef8f3b9", + "size": 41422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cf8b1831f1e63d1365100b905b9692d1ef8f3b9" + }, + { + "path": "webp/lemmy.webp", + "mode": "100644", + "type": "blob", + "sha": "16016aaedabc5e13484d00be895f77a830353fbc", + "size": 47744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16016aaedabc5e13484d00be895f77a830353fbc" + }, + { + "path": "webp/lemonldap-ng.webp", + "mode": "100644", + "type": "blob", + "sha": "a25aa279d911924f9e9818b510c3b36f3c0c78bc", + "size": 46148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a25aa279d911924f9e9818b510c3b36f3c0c78bc" + }, + { + "path": "webp/lets-encrypt.webp", + "mode": "100644", + "type": "blob", + "sha": "a126c1f84f183f22605903b6005b61dcac7b5320", + "size": 16534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a126c1f84f183f22605903b6005b61dcac7b5320" + }, + { + "path": "webp/lexmark.webp", + "mode": "100644", + "type": "blob", + "sha": "30926b7b927525b34e0c6a95f6053da69d9a534e", + "size": 18820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/30926b7b927525b34e0c6a95f6053da69d9a534e" + }, + { + "path": "webp/libation.webp", + "mode": "100644", + "type": "blob", + "sha": "bea0fc85fbfbe3eb60f0735b58ef8e86e36afec2", + "size": 11574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bea0fc85fbfbe3eb60f0735b58ef8e86e36afec2" + }, + { + "path": "webp/librechat.webp", + "mode": "100644", + "type": "blob", + "sha": "3ef8a64ee94abf3249d4c624c328e6c6f1de222a", + "size": 58026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ef8a64ee94abf3249d4c624c328e6c6f1de222a" + }, + { + "path": "webp/libreddit-light.webp", + "mode": "100644", + "type": "blob", + "sha": "52fe2ecba494e31c11165d724ab228f332a61c29", + "size": 5636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52fe2ecba494e31c11165d724ab228f332a61c29" + }, + { + "path": "webp/libreddit.webp", + "mode": "100644", + "type": "blob", + "sha": "533f04ccb77640f3f5146afd4def17c5991f55ef", + "size": 6418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/533f04ccb77640f3f5146afd4def17c5991f55ef" + }, + { + "path": "webp/libremdb.webp", + "mode": "100644", + "type": "blob", + "sha": "94a8ca28387df6b61d2a9ae2873c4864f8ba6922", + "size": 21506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/94a8ca28387df6b61d2a9ae2873c4864f8ba6922" + }, + { + "path": "webp/librenms.webp", + "mode": "100644", + "type": "blob", + "sha": "b9580d7fc7a98b5e359c227240161f35ffd70dda", + "size": 27502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9580d7fc7a98b5e359c227240161f35ffd70dda" + }, + { + "path": "webp/libreoffice-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5a3c5c94cd343c0feb271757aa95138708936543", + "size": 1540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a3c5c94cd343c0feb271757aa95138708936543" + }, + { + "path": "webp/libreoffice.webp", + "mode": "100644", + "type": "blob", + "sha": "a6b179032eaba8f8ad6d5ada5906b8b33be37a75", + "size": 1512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6b179032eaba8f8ad6d5ada5906b8b33be37a75" + }, + { + "path": "webp/librephotos-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1f693a188aec44a6a6e1044d9fbea3e20bd9791d", + "size": 2976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f693a188aec44a6a6e1044d9fbea3e20bd9791d" + }, + { + "path": "webp/librephotos.webp", + "mode": "100644", + "type": "blob", + "sha": "7ae0feda0aabdb2b8b2361a1ba1d5438bad3ce80", + "size": 3002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ae0feda0aabdb2b8b2361a1ba1d5438bad3ce80" + }, + { + "path": "webp/librespeed-light.webp", + "mode": "100644", + "type": "blob", + "sha": "53ef17f2ff332ea842b6696b38ccf2981b638963", + "size": 49376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53ef17f2ff332ea842b6696b38ccf2981b638963" + }, + { + "path": "webp/librespeed.webp", + "mode": "100644", + "type": "blob", + "sha": "dc23ec3720802786ed125592a5e02e6f6b53e711", + "size": 55904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc23ec3720802786ed125592a5e02e6f6b53e711" + }, + { + "path": "webp/librewolf.webp", + "mode": "100644", + "type": "blob", + "sha": "8abeadb1610c13dd432de5e2ea393ca06ea2ae88", + "size": 60890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8abeadb1610c13dd432de5e2ea393ca06ea2ae88" + }, + { + "path": "webp/librex.webp", + "mode": "100644", + "type": "blob", + "sha": "c8d9dd9d266061441a25e5cef8a99da4fbc0cc8a", + "size": 1692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8d9dd9d266061441a25e5cef8a99da4fbc0cc8a" + }, + { + "path": "webp/librey.webp", + "mode": "100644", + "type": "blob", + "sha": "65b108cc8af6a0911e07cfa16704040fff778062", + "size": 1338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65b108cc8af6a0911e07cfa16704040fff778062" + }, + { + "path": "webp/librum.webp", + "mode": "100644", + "type": "blob", + "sha": "6591f45a664af6037267fbe51d7c4883f3a13c57", + "size": 5054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6591f45a664af6037267fbe51d7c4883f3a13c57" + }, + { + "path": "webp/lichess-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "bd1217b5ea65968734571f9615986151291d6434", + "size": 8550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd1217b5ea65968734571f9615986151291d6434" + }, + { + "path": "webp/lichess.webp", + "mode": "100644", + "type": "blob", + "sha": "9d92bc085a3bbc45fb877040a988c18c2510aef6", + "size": 8544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d92bc085a3bbc45fb877040a988c18c2510aef6" + }, + { + "path": "webp/lidarr.webp", + "mode": "100644", + "type": "blob", + "sha": "de4078ee8893abe07ed68c2cd094b234aa5f635e", + "size": 95756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de4078ee8893abe07ed68c2cd094b234aa5f635e" + }, + { + "path": "webp/lidl.webp", + "mode": "100644", + "type": "blob", + "sha": "2bc19644d332746679cd6daeccd76c0faeb1a8f6", + "size": 76934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bc19644d332746679cd6daeccd76c0faeb1a8f6" + }, + { + "path": "webp/lightning-terminal.webp", + "mode": "100644", + "type": "blob", + "sha": "fe502216c2a2ff41288948364369f36c547e8c76", + "size": 28690, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe502216c2a2ff41288948364369f36c547e8c76" + }, + { + "path": "webp/lighttpd.webp", + "mode": "100644", + "type": "blob", + "sha": "e76c6075b5a1943b748f8f08c25afd6202b54c08", + "size": 34270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e76c6075b5a1943b748f8f08c25afd6202b54c08" + }, + { + "path": "webp/limesurvey.webp", + "mode": "100644", + "type": "blob", + "sha": "be56ccd375452460dbd1df1437b7a177e9f9eb66", + "size": 28774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be56ccd375452460dbd1df1437b7a177e9f9eb66" + }, + { + "path": "webp/linear-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "6369b61e5e13ebe0b032087d6c510b675aab7be5", + "size": 3816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6369b61e5e13ebe0b032087d6c510b675aab7be5" + }, + { + "path": "webp/linear.webp", + "mode": "100644", + "type": "blob", + "sha": "929d7190466c2e25a6bc6afc72c0d0fde162a9a7", + "size": 9158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/929d7190466c2e25a6bc6afc72c0d0fde162a9a7" + }, + { + "path": "webp/linguacafe.webp", + "mode": "100644", + "type": "blob", + "sha": "9efdda7053e4f63ba076738fce6c7289666ca2bf", + "size": 10836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9efdda7053e4f63ba076738fce6c7289666ca2bf" + }, + { + "path": "webp/linkace.webp", + "mode": "100644", + "type": "blob", + "sha": "0fbfc812247b9dafe1d51ca399ceb903741437c4", + "size": 19204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fbfc812247b9dafe1d51ca399ceb903741437c4" + }, + { + "path": "webp/linkding.webp", + "mode": "100644", + "type": "blob", + "sha": "5aa3bb0dc46544a0d8fbadb21a4f4869f8711156", + "size": 60188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5aa3bb0dc46544a0d8fbadb21a4f4869f8711156" + }, + { + "path": "webp/linkedin.webp", + "mode": "100644", + "type": "blob", + "sha": "51b7f955f6c3310eb25fe85c5e4dfbabe51b3830", + "size": 18702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51b7f955f6c3310eb25fe85c5e4dfbabe51b3830" + }, + { + "path": "webp/linkstack.webp", + "mode": "100644", + "type": "blob", + "sha": "3ae47b6e13853bc143ec33c8cd2ee4f7da03d5f9", + "size": 73260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ae47b6e13853bc143ec33c8cd2ee4f7da03d5f9" + }, + { + "path": "webp/linksys.webp", + "mode": "100644", + "type": "blob", + "sha": "491408a2cb11e86fd662b33226c3ee5fb73e0920", + "size": 444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/491408a2cb11e86fd662b33226c3ee5fb73e0920" + }, + { + "path": "webp/linkwarden.webp", + "mode": "100644", + "type": "blob", + "sha": "b7c2ccfe5b1b7c02ff8a2a7fd56504291491a2b2", + "size": 95622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7c2ccfe5b1b7c02ff8a2a7fd56504291491a2b2" + }, + { + "path": "webp/linode.webp", + "mode": "100644", + "type": "blob", + "sha": "bad12c3030cef3c70f85693dfc7ce207a110a46b", + "size": 52676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bad12c3030cef3c70f85693dfc7ce207a110a46b" + }, + { + "path": "webp/linux-mint.webp", + "mode": "100644", + "type": "blob", + "sha": "ce2881d4ba8bdbdf6a6dc2cef6c739cc2f69410c", + "size": 41538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce2881d4ba8bdbdf6a6dc2cef6c739cc2f69410c" + }, + { + "path": "webp/linux.webp", + "mode": "100644", + "type": "blob", + "sha": "413ecec2aa3c348795db830fbe27c0db06d3986d", + "size": 54500, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/413ecec2aa3c348795db830fbe27c0db06d3986d" + }, + { + "path": "webp/linuxdo.webp", + "mode": "100644", + "type": "blob", + "sha": "53bd66be3cace4227ed5d74c323b49060f9cfd8f", + "size": 22252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/53bd66be3cace4227ed5d74c323b49060f9cfd8f" + }, + { + "path": "webp/linuxgsm.webp", + "mode": "100644", + "type": "blob", + "sha": "d11c0a93be38e495ea037da4f04aa485922f0ec3", + "size": 19288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d11c0a93be38e495ea037da4f04aa485922f0ec3" + }, + { + "path": "webp/linuxserver-io.webp", + "mode": "100644", + "type": "blob", + "sha": "d8cc13e128abb2403cf27fae807e39d9e65395ff", + "size": 68902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8cc13e128abb2403cf27fae807e39d9e65395ff" + }, + { + "path": "webp/liremdb.webp", + "mode": "100644", + "type": "blob", + "sha": "dfd30d9e7c6a647505cdbde5489ec4b10e689d89", + "size": 25860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfd30d9e7c6a647505cdbde5489ec4b10e689d89" + }, + { + "path": "webp/listenbrainz.webp", + "mode": "100644", + "type": "blob", + "sha": "f1cc82fc7109a6d7bcd0620434faa3705ba2cb3a", + "size": 73020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1cc82fc7109a6d7bcd0620434faa3705ba2cb3a" + }, + { + "path": "webp/listmonk.webp", + "mode": "100644", + "type": "blob", + "sha": "a5c1af308e9e7a00c29de7d2872d2b53d92d1efc", + "size": 20568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5c1af308e9e7a00c29de7d2872d2b53d92d1efc" + }, + { + "path": "webp/lite-speed.webp", + "mode": "100644", + "type": "blob", + "sha": "3a40d605f6c7248b0d1a0f6f865292fbc05ba4aa", + "size": 43298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a40d605f6c7248b0d1a0f6f865292fbc05ba4aa" + }, + { + "path": "webp/littlelink-custom.webp", + "mode": "100644", + "type": "blob", + "sha": "327966d65153a5e32f74b62fb4ee25db501b1c1c", + "size": 75472, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/327966d65153a5e32f74b62fb4ee25db501b1c1c" + }, + { + "path": "webp/livebook.webp", + "mode": "100644", + "type": "blob", + "sha": "7033a3e0ea5ae4d83cb20b76ac7228b058d4d055", + "size": 28224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7033a3e0ea5ae4d83cb20b76ac7228b058d4d055" + }, + { + "path": "webp/lldap-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "3988ad555dcca938e11cc293f0d6bbc41425dc6a", + "size": 10504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3988ad555dcca938e11cc293f0d6bbc41425dc6a" + }, + { + "path": "webp/lldap.webp", + "mode": "100644", + "type": "blob", + "sha": "82ae8a42e8706b5d58df5f5b9ebb2b2479144913", + "size": 9716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82ae8a42e8706b5d58df5f5b9ebb2b2479144913" + }, + { + "path": "webp/lms-mixtape.webp", + "mode": "100644", + "type": "blob", + "sha": "a37d81f54c133008c7167e309fb04a53b28acecb", + "size": 32202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a37d81f54c133008c7167e309fb04a53b28acecb" + }, + { + "path": "webp/lnbits.webp", + "mode": "100644", + "type": "blob", + "sha": "271d8604f1a02b170cf459f6113a7c177682a5eb", + "size": 21350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/271d8604f1a02b170cf459f6113a7c177682a5eb" + }, + { + "path": "webp/lobe-chat.webp", + "mode": "100644", + "type": "blob", + "sha": "64486fd97465206fd134f4a450c48776c4c93594", + "size": 75420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64486fd97465206fd134f4a450c48776c4c93594" + }, + { + "path": "webp/local-content-share.webp", + "mode": "100644", + "type": "blob", + "sha": "af011fa17812c7aa9d9dbbaee1856ed6cc0f0f5e", + "size": 78716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af011fa17812c7aa9d9dbbaee1856ed6cc0f0f5e" + }, + { + "path": "webp/local-xpose.webp", + "mode": "100644", + "type": "blob", + "sha": "90b10b0bfe2dda40a6bbe22668a160fa18bdc883", + "size": 44216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90b10b0bfe2dda40a6bbe22668a160fa18bdc883" + }, + { + "path": "webp/locals-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f037d53a2e6f22193be2de285c2b313f6955c32a", + "size": 11442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f037d53a2e6f22193be2de285c2b313f6955c32a" + }, + { + "path": "webp/locals.webp", + "mode": "100644", + "type": "blob", + "sha": "16e533f5ad8e44a696903c643db8dee1ef843b28", + "size": 11416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16e533f5ad8e44a696903c643db8dee1ef843b28" + }, + { + "path": "webp/lodestone.webp", + "mode": "100644", + "type": "blob", + "sha": "5c5d941dfd774c4ccb6b01ebf1c8357fae09e379", + "size": 63868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c5d941dfd774c4ccb6b01ebf1c8357fae09e379" + }, + { + "path": "webp/logitech-gaming.webp", + "mode": "100644", + "type": "blob", + "sha": "7edee3c0c9534d2e1d170219b268c1fc6cbffc73", + "size": 14332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7edee3c0c9534d2e1d170219b268c1fc6cbffc73" + }, + { + "path": "webp/logitech-legacy.webp", + "mode": "100644", + "type": "blob", + "sha": "4442255948d745b40f15041a7eff3eddd189d72a", + "size": 18930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4442255948d745b40f15041a7eff3eddd189d72a" + }, + { + "path": "webp/logitech-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e24bd97d0d449c77ac4435aa816045e81cf4f202", + "size": 8098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e24bd97d0d449c77ac4435aa816045e81cf4f202" + }, + { + "path": "webp/logitech.webp", + "mode": "100644", + "type": "blob", + "sha": "a0ba4fd6c7c77bf1959bd423f6a93f370576f4d9", + "size": 8092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0ba4fd6c7c77bf1959bd423f6a93f370576f4d9" + }, + { + "path": "webp/logseq.webp", + "mode": "100644", + "type": "blob", + "sha": "3e1dab718b1a77023dff0da4bdd66b7532bcd3bc", + "size": 25958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e1dab718b1a77023dff0da4bdd66b7532bcd3bc" + }, + { + "path": "webp/logstash.webp", + "mode": "100644", + "type": "blob", + "sha": "7c30685456384a3f7f88149358011802c3b54379", + "size": 6816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c30685456384a3f7f88149358011802c3b54379" + }, + { + "path": "webp/logto.webp", + "mode": "100644", + "type": "blob", + "sha": "6b1e4658c12d0e779cf5f260b3ef0e54fd04514a", + "size": 20398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b1e4658c12d0e779cf5f260b3ef0e54fd04514a" + }, + { + "path": "webp/loki.webp", + "mode": "100644", + "type": "blob", + "sha": "cdb8f03d0e5d099dc41e7b2f4a8dc3d79b70e835", + "size": 52160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdb8f03d0e5d099dc41e7b2f4a8dc3d79b70e835" + }, + { + "path": "webp/longhorn.webp", + "mode": "100644", + "type": "blob", + "sha": "0fbabadacd608ae02cfc000ae929027ca1052094", + "size": 28686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fbabadacd608ae02cfc000ae929027ca1052094" + }, + { + "path": "webp/lostack.webp", + "mode": "100644", + "type": "blob", + "sha": "546ee6997f52876a414ada54a5c5d6235f681668", + "size": 58386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/546ee6997f52876a414ada54a5c5d6235f681668" + }, + { + "path": "webp/loxone-full.webp", + "mode": "100644", + "type": "blob", + "sha": "5c7cc8bfe15988415a173e0289fc8e69976136b3", + "size": 58966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c7cc8bfe15988415a173e0289fc8e69976136b3" + }, + { + "path": "webp/loxone.webp", + "mode": "100644", + "type": "blob", + "sha": "ac4b4760421686f98d53ab252eb58796ee6fe7d0", + "size": 24120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ac4b4760421686f98d53ab252eb58796ee6fe7d0" + }, + { + "path": "webp/lsio.webp", + "mode": "100644", + "type": "blob", + "sha": "9b3d1bc1891929ecdf06f038dc180b8eac422397", + "size": 76108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b3d1bc1891929ecdf06f038dc180b8eac422397" + }, + { + "path": "webp/lua.webp", + "mode": "100644", + "type": "blob", + "sha": "ace6d29facdeeabe1df2977119f624b6067ddc0e", + "size": 39802, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ace6d29facdeeabe1df2977119f624b6067ddc0e" + }, + { + "path": "webp/lubelogger.webp", + "mode": "100644", + "type": "blob", + "sha": "f8cdd3690a9ec7ebc559541d39d3a09cabf1fc5b", + "size": 30734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8cdd3690a9ec7ebc559541d39d3a09cabf1fc5b" + }, + { + "path": "webp/lubuntu-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "2883f0cb60e744c570db522e69b6ff0c6f8462ac", + "size": 36202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2883f0cb60e744c570db522e69b6ff0c6f8462ac" + }, + { + "path": "webp/ludus-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "6ef68d6afa91223416e96c82f08db67a9b1d5c53", + "size": 26818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ef68d6afa91223416e96c82f08db67a9b1d5c53" + }, + { + "path": "webp/ludus.webp", + "mode": "100644", + "type": "blob", + "sha": "e30c6e0ae12d55a07df462a365bb6543d293c45f", + "size": 26748, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e30c6e0ae12d55a07df462a365bb6543d293c45f" + }, + { + "path": "webp/lunalytics.webp", + "mode": "100644", + "type": "blob", + "sha": "8a579c07f008a6f91a44f9ba9f6f943ff9612846", + "size": 42740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a579c07f008a6f91a44f9ba9f6f943ff9612846" + }, + { + "path": "webp/lunasea.webp", + "mode": "100644", + "type": "blob", + "sha": "8819dcdeef7b6ecd07b8d1d51122b539b7ce87cd", + "size": 31246, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8819dcdeef7b6ecd07b8d1d51122b539b7ce87cd" + }, + { + "path": "webp/luxriot.webp", + "mode": "100644", + "type": "blob", + "sha": "3180dbd2078c6b13bc4977744ca57d4d84b4f4c9", + "size": 29078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3180dbd2078c6b13bc4977744ca57d4d84b4f4c9" + }, + { + "path": "webp/lychee.webp", + "mode": "100644", + "type": "blob", + "sha": "576ea2d4bbf91d07a8723d53c24a5745892ddb35", + "size": 172514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/576ea2d4bbf91d07a8723d53c24a5745892ddb35" + }, + { + "path": "webp/lynx-light.webp", + "mode": "100644", + "type": "blob", + "sha": "37d42096ab31b91c56472a1dd59d99285d681929", + "size": 25350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37d42096ab31b91c56472a1dd59d99285d681929" + }, + { + "path": "webp/lynx.webp", + "mode": "100644", + "type": "blob", + "sha": "046af5edfc2657175034cbdb4775722f8ec0ac6b", + "size": 32612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/046af5edfc2657175034cbdb4775722f8ec0ac6b" + }, + { + "path": "webp/lyrion-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "872cd9b6e7aec73d5d24266f9a5b2ca4dfb560c8", + "size": 2020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/872cd9b6e7aec73d5d24266f9a5b2ca4dfb560c8" + }, + { + "path": "webp/lyrion.webp", + "mode": "100644", + "type": "blob", + "sha": "a4351441046869b8cb2e0ba23a8df63d4c0acc10", + "size": 9650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4351441046869b8cb2e0ba23a8df63d4c0acc10" + }, + { + "path": "webp/macmon.webp", + "mode": "100644", + "type": "blob", + "sha": "fa04765cf2a6d08cb1a738742d2f72c89ff3cf0b", + "size": 17664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa04765cf2a6d08cb1a738742d2f72c89ff3cf0b" + }, + { + "path": "webp/mail-in-a-box.webp", + "mode": "100644", + "type": "blob", + "sha": "8dcacd5a819871fc92479602156557ed37cbeac9", + "size": 41960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8dcacd5a819871fc92479602156557ed37cbeac9" + }, + { + "path": "webp/mailchimp-light.webp", + "mode": "100644", + "type": "blob", + "sha": "05fd5c23a2239838eac8b2d518b4594171d79eb2", + "size": 15722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05fd5c23a2239838eac8b2d518b4594171d79eb2" + }, + { + "path": "webp/mailchimp.webp", + "mode": "100644", + "type": "blob", + "sha": "3001b21c3409e4a0291b938869a35a0862dda973", + "size": 17686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3001b21c3409e4a0291b938869a35a0862dda973" + }, + { + "path": "webp/mailcow.webp", + "mode": "100644", + "type": "blob", + "sha": "4e19a7923a9f5c17ad13fb24c997cffbc64bc65f", + "size": 67394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e19a7923a9f5c17ad13fb24c997cffbc64bc65f" + }, + { + "path": "webp/mailcowsogo.webp", + "mode": "100644", + "type": "blob", + "sha": "ef3ca2fe3a782c95a6e92e022399c3bc5f99e073", + "size": 55296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef3ca2fe3a782c95a6e92e022399c3bc5f99e073" + }, + { + "path": "webp/mailfence.webp", + "mode": "100644", + "type": "blob", + "sha": "e87fa32445fc4002869cd810f0f653c0c281f50c", + "size": 38278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e87fa32445fc4002869cd810f0f653c0c281f50c" + }, + { + "path": "webp/mailgun.webp", + "mode": "100644", + "type": "blob", + "sha": "a57ae5fff163505bc65f516fd059c1b57407f8bc", + "size": 45158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a57ae5fff163505bc65f516fd059c1b57407f8bc" + }, + { + "path": "webp/mailhog.webp", + "mode": "100644", + "type": "blob", + "sha": "00a7ec78147d1a58bcb5a7f18b99e786f9195e26", + "size": 9576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00a7ec78147d1a58bcb5a7f18b99e786f9195e26" + }, + { + "path": "webp/mailjet.webp", + "mode": "100644", + "type": "blob", + "sha": "c19d6af02b3774aed78606ce701d352c8a449810", + "size": 19152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c19d6af02b3774aed78606ce701d352c8a449810" + }, + { + "path": "webp/mailpit.webp", + "mode": "100644", + "type": "blob", + "sha": "481233c63ebcedd2345d8d0a5988339ec13e4496", + "size": 19706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/481233c63ebcedd2345d8d0a5988339ec13e4496" + }, + { + "path": "webp/mailu.webp", + "mode": "100644", + "type": "blob", + "sha": "3afb0121607fd208547ed078a387312d0fb38dd9", + "size": 26374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3afb0121607fd208547ed078a387312d0fb38dd9" + }, + { + "path": "webp/mainsail.webp", + "mode": "100644", + "type": "blob", + "sha": "863928c86d8eb3348c77ca5a5ffa661e1382c36c", + "size": 25156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/863928c86d8eb3348c77ca5a5ffa661e1382c36c" + }, + { + "path": "webp/maintainerr.webp", + "mode": "100644", + "type": "blob", + "sha": "19c2147a842e45e044e428f836061a09b524ec53", + "size": 52072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19c2147a842e45e044e428f836061a09b524ec53" + }, + { + "path": "webp/mak.webp", + "mode": "100644", + "type": "blob", + "sha": "a284c9d8ec2f487fd927247b87178cf77cfd2078", + "size": 13630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a284c9d8ec2f487fd927247b87178cf77cfd2078" + }, + { + "path": "webp/makemkv.webp", + "mode": "100644", + "type": "blob", + "sha": "9e66f544f791cb731774b3fd617308ecf48513fe", + "size": 57402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9e66f544f791cb731774b3fd617308ecf48513fe" + }, + { + "path": "webp/maker-world-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "529b1006deb5fa47e4b07a5375a29164b6edb1b4", + "size": 4356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/529b1006deb5fa47e4b07a5375a29164b6edb1b4" + }, + { + "path": "webp/maker-world.webp", + "mode": "100644", + "type": "blob", + "sha": "ee3703f807720184c123b58b11b5df56be2cfbca", + "size": 4326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee3703f807720184c123b58b11b5df56be2cfbca" + }, + { + "path": "webp/maloja.webp", + "mode": "100644", + "type": "blob", + "sha": "bab196262b5dd993e5ec596dcdf6f8fdb028653a", + "size": 70770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bab196262b5dd993e5ec596dcdf6f8fdb028653a" + }, + { + "path": "webp/manga-dex.webp", + "mode": "100644", + "type": "blob", + "sha": "6e0d47323cfadf96f522679a813132562d914ba5", + "size": 33964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e0d47323cfadf96f522679a813132562d914ba5" + }, + { + "path": "webp/mango.webp", + "mode": "100644", + "type": "blob", + "sha": "e5af8f0953405b27972d741fffe21600da2c50d3", + "size": 9028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5af8f0953405b27972d741fffe21600da2c50d3" + }, + { + "path": "webp/manjaro-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "2add090c05f39b0073a9ad7a6fbbd502192b61cf", + "size": 364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2add090c05f39b0073a9ad7a6fbbd502192b61cf" + }, + { + "path": "webp/mantisbt.webp", + "mode": "100644", + "type": "blob", + "sha": "4ad8563009f9e5b66547664aef87c6df17acae23", + "size": 9156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ad8563009f9e5b66547664aef87c6df17acae23" + }, + { + "path": "webp/many-notes.webp", + "mode": "100644", + "type": "blob", + "sha": "73ec7c95c1cb956c4d157350a5eecd45cb8c9cc3", + "size": 25560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73ec7c95c1cb956c4d157350a5eecd45cb8c9cc3" + }, + { + "path": "webp/manyfold.webp", + "mode": "100644", + "type": "blob", + "sha": "80e05a43e32298a57db55297c751a922bfcb2a69", + "size": 142974, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80e05a43e32298a57db55297c751a922bfcb2a69" + }, + { + "path": "webp/maptiler.webp", + "mode": "100644", + "type": "blob", + "sha": "a9e138e0804a2b6cccf4fc11fcef909c71ad8f6a", + "size": 31810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9e138e0804a2b6cccf4fc11fcef909c71ad8f6a" + }, + { + "path": "webp/marginalia.webp", + "mode": "100644", + "type": "blob", + "sha": "2c20613fe0a7d9abe487220c26b926ff06a0e3ce", + "size": 21080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c20613fe0a7d9abe487220c26b926ff06a0e3ce" + }, + { + "path": "webp/mariadb.webp", + "mode": "100644", + "type": "blob", + "sha": "8302bda78abf71459eb90bd8e267cc1db2b66562", + "size": 76242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8302bda78abf71459eb90bd8e267cc1db2b66562" + }, + { + "path": "webp/marimo.webp", + "mode": "100644", + "type": "blob", + "sha": "49464d43501c06a25f837959cd13d8e0db8ba291", + "size": 74170, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49464d43501c06a25f837959cd13d8e0db8ba291" + }, + { + "path": "webp/marktplaats.webp", + "mode": "100644", + "type": "blob", + "sha": "a957e3dded0690eb4d81745bc39c9535654cd859", + "size": 34628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a957e3dded0690eb4d81745bc39c9535654cd859" + }, + { + "path": "webp/marzban.webp", + "mode": "100644", + "type": "blob", + "sha": "713c356351f23108e0b73338d871268e4e7dff94", + "size": 70672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/713c356351f23108e0b73338d871268e4e7dff94" + }, + { + "path": "webp/mastodon.webp", + "mode": "100644", + "type": "blob", + "sha": "a20630559125062342b643825bf86e6f992651c0", + "size": 29800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a20630559125062342b643825bf86e6f992651c0" + }, + { + "path": "webp/matomo.webp", + "mode": "100644", + "type": "blob", + "sha": "bf1e7d0d974acde18296f682285cfec0688c53d7", + "size": 34932, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf1e7d0d974acde18296f682285cfec0688c53d7" + }, + { + "path": "webp/matrix-light.webp", + "mode": "100644", + "type": "blob", + "sha": "964a396c985e049f177ca77d2725b382abef5a89", + "size": 1568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/964a396c985e049f177ca77d2725b382abef5a89" + }, + { + "path": "webp/matrix-synapse-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fcbb4deb3267f57b8933ca3a0ee65a630759befa", + "size": 258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcbb4deb3267f57b8933ca3a0ee65a630759befa" + }, + { + "path": "webp/matrix-synapse.webp", + "mode": "100644", + "type": "blob", + "sha": "a6a9f4f5dc48a11fe638c9f4e10829c1fdcbe246", + "size": 250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6a9f4f5dc48a11fe638c9f4e10829c1fdcbe246" + }, + { + "path": "webp/matrix.webp", + "mode": "100644", + "type": "blob", + "sha": "431d5ab5f2582dcfd725863f89596c5fc04ee5df", + "size": 1704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/431d5ab5f2582dcfd725863f89596c5fc04ee5df" + }, + { + "path": "webp/matter-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c645e386c53e088d24361c6478d36cfba119cfa2", + "size": 6144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c645e386c53e088d24361c6478d36cfba119cfa2" + }, + { + "path": "webp/matter.webp", + "mode": "100644", + "type": "blob", + "sha": "3690dc32febf3ac37753a9e3fa8c79d45f411907", + "size": 15884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3690dc32febf3ac37753a9e3fa8c79d45f411907" + }, + { + "path": "webp/matterbridge.webp", + "mode": "100644", + "type": "blob", + "sha": "4b8731be8f9721de2f6f6423f3a40f6c582220f2", + "size": 102800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b8731be8f9721de2f6f6423f3a40f6c582220f2" + }, + { + "path": "webp/mattermost.webp", + "mode": "100644", + "type": "blob", + "sha": "2da79ebed01eb0a48b7f7f06dae78b83136a3567", + "size": 24404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2da79ebed01eb0a48b7f7f06dae78b83136a3567" + }, + { + "path": "webp/mautic.webp", + "mode": "100644", + "type": "blob", + "sha": "4c8dc649df44f76607ecb792695e1acb92e03c1f", + "size": 35506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c8dc649df44f76607ecb792695e1acb92e03c1f" + }, + { + "path": "webp/max.webp", + "mode": "100644", + "type": "blob", + "sha": "1df45e9e642aee30408fe879836dac914338907c", + "size": 59218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1df45e9e642aee30408fe879836dac914338907c" + }, + { + "path": "webp/mayan-edms-light.webp", + "mode": "100644", + "type": "blob", + "sha": "858c6940c09d419b4c11886906c8b83a083e0f5f", + "size": 6002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/858c6940c09d419b4c11886906c8b83a083e0f5f" + }, + { + "path": "webp/mayan-edms.webp", + "mode": "100644", + "type": "blob", + "sha": "c53b71771ce7b5d763bd4a73a8984e29277f5c7d", + "size": 5996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c53b71771ce7b5d763bd4a73a8984e29277f5c7d" + }, + { + "path": "webp/maybe.webp", + "mode": "100644", + "type": "blob", + "sha": "318074b6b7c19ecfeef32f5130626553202bdd22", + "size": 32180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/318074b6b7c19ecfeef32f5130626553202bdd22" + }, + { + "path": "webp/mazanoke.webp", + "mode": "100644", + "type": "blob", + "sha": "1dea358669aa56f2a0e2398ad17189f941abd5bf", + "size": 25484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dea358669aa56f2a0e2398ad17189f941abd5bf" + }, + { + "path": "webp/mbin.webp", + "mode": "100644", + "type": "blob", + "sha": "c0cd819137f2086cb014cf38fa9fc84cd7f6c504", + "size": 53438, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0cd819137f2086cb014cf38fa9fc84cd7f6c504" + }, + { + "path": "webp/mcmyadmin.webp", + "mode": "100644", + "type": "blob", + "sha": "3ab7159cc708fc1626a16c7fed05e4283dac0064", + "size": 10886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ab7159cc708fc1626a16c7fed05e4283dac0064" + }, + { + "path": "webp/mealie.webp", + "mode": "100644", + "type": "blob", + "sha": "14b2490fa8dcd09638c07fa736479104a41bbb10", + "size": 23092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14b2490fa8dcd09638c07fa736479104a41bbb10" + }, + { + "path": "webp/medama.webp", + "mode": "100644", + "type": "blob", + "sha": "ebd692578e3df059322c66ec46de9cd47e50c7e1", + "size": 30196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebd692578e3df059322c66ec46de9cd47e50c7e1" + }, + { + "path": "webp/media-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "9c25c15447302a5ddd658dacb500fbfa73805ef8", + "size": 26476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c25c15447302a5ddd658dacb500fbfa73805ef8" + }, + { + "path": "webp/mediathekview.webp", + "mode": "100644", + "type": "blob", + "sha": "bacbbe5585f9d4179c316dfefb234f5ab81b8e07", + "size": 43546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bacbbe5585f9d4179c316dfefb234f5ab81b8e07" + }, + { + "path": "webp/mediawiki.webp", + "mode": "100644", + "type": "blob", + "sha": "49203db97cc29491000212e360c3dde37c4316ed", + "size": 74922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49203db97cc29491000212e360c3dde37c4316ed" + }, + { + "path": "webp/medium-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "1740e7d32d6ce38f6cda3fa26a7c06d28e6b2f76", + "size": 8996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1740e7d32d6ce38f6cda3fa26a7c06d28e6b2f76" + }, + { + "path": "webp/medium-light.webp", + "mode": "100644", + "type": "blob", + "sha": "af68d631b4451d70651aba5d4e8d84f9179dc02f", + "size": 9002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af68d631b4451d70651aba5d4e8d84f9179dc02f" + }, + { + "path": "webp/mediux.webp", + "mode": "100644", + "type": "blob", + "sha": "77e7e1e8347de3e079aa396ab3b1b5efba03cc98", + "size": 35884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77e7e1e8347de3e079aa396ab3b1b5efba03cc98" + }, + { + "path": "webp/medusa-light.webp", + "mode": "100644", + "type": "blob", + "sha": "aeab845d5ebd3a05ea988f20ef213ba67a20004a", + "size": 4808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aeab845d5ebd3a05ea988f20ef213ba67a20004a" + }, + { + "path": "webp/medusa.webp", + "mode": "100644", + "type": "blob", + "sha": "76ae1581b893b7693f3331adee2be4162c314791", + "size": 10140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76ae1581b893b7693f3331adee2be4162c314791" + }, + { + "path": "webp/mega-nz-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "f07b367bc65e44d89095a8c5fe752258e89bbf4d", + "size": 21892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f07b367bc65e44d89095a8c5fe752258e89bbf4d" + }, + { + "path": "webp/mega-nz.webp", + "mode": "100644", + "type": "blob", + "sha": "5110d875184773b21cba85d6c31e2208e8a267bf", + "size": 23470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5110d875184773b21cba85d6c31e2208e8a267bf" + }, + { + "path": "webp/meilisearch.webp", + "mode": "100644", + "type": "blob", + "sha": "3f399aba642abf2edb5ce1e2251645f3781b7791", + "size": 40058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f399aba642abf2edb5ce1e2251645f3781b7791" + }, + { + "path": "webp/mem-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "27ddb8474eb9b3c7a5a80b603d251a100d738534", + "size": 35646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27ddb8474eb9b3c7a5a80b603d251a100d738534" + }, + { + "path": "webp/memories-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fa64845693cd279e96c8cbea5804f23a89899ba0", + "size": 13720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa64845693cd279e96c8cbea5804f23a89899ba0" + }, + { + "path": "webp/memories.webp", + "mode": "100644", + "type": "blob", + "sha": "b048efcf4ea3a7f92254ead6d9e41ce218e9e974", + "size": 13714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b048efcf4ea3a7f92254ead6d9e41ce218e9e974" + }, + { + "path": "webp/memos.webp", + "mode": "100644", + "type": "blob", + "sha": "8787aa39d2ecb3ad36d01e82cb069b91e6475987", + "size": 79238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8787aa39d2ecb3ad36d01e82cb069b91e6475987" + }, + { + "path": "webp/mempool.webp", + "mode": "100644", + "type": "blob", + "sha": "5080eee35902c66fdf439b3c6f2c19cf5b398e3f", + "size": 13100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5080eee35902c66fdf439b3c6f2c19cf5b398e3f" + }, + { + "path": "webp/meraki.webp", + "mode": "100644", + "type": "blob", + "sha": "d7f93f47c30abf2849f784a94ec67cf01826e195", + "size": 32716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7f93f47c30abf2849f784a94ec67cf01826e195" + }, + { + "path": "webp/mercusys.webp", + "mode": "100644", + "type": "blob", + "sha": "713d3aa533d4f5d2a2391ba54dc81850203ad51b", + "size": 111626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/713d3aa533d4f5d2a2391ba54dc81850203ad51b" + }, + { + "path": "webp/mergeable-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "8e6a31b73847efdf5d7adbc958dafbb14ca42afc", + "size": 44558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e6a31b73847efdf5d7adbc958dafbb14ca42afc" + }, + { + "path": "webp/mergeable.webp", + "mode": "100644", + "type": "blob", + "sha": "1f4317b48f88125eb22c0a0a48c3b8c5097157aa", + "size": 47938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f4317b48f88125eb22c0a0a48c3b8c5097157aa" + }, + { + "path": "webp/meshcentral.webp", + "mode": "100644", + "type": "blob", + "sha": "98e8de275042f19f44e289b7f3a6c19879184152", + "size": 54054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98e8de275042f19f44e289b7f3a6c19879184152" + }, + { + "path": "webp/meshping-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3063ab9d093a6de95f7e89274bd6670361bc95ea", + "size": 9340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3063ab9d093a6de95f7e89274bd6670361bc95ea" + }, + { + "path": "webp/meshping.webp", + "mode": "100644", + "type": "blob", + "sha": "857bfd4dbd705728d2eff8bd6b8a0de888979a1a", + "size": 9334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/857bfd4dbd705728d2eff8bd6b8a0de888979a1a" + }, + { + "path": "webp/meshtastic.webp", + "mode": "100644", + "type": "blob", + "sha": "5cf260845b225c16b1a69f00ba9d48f65cee3312", + "size": 35558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cf260845b225c16b1a69f00ba9d48f65cee3312" + }, + { + "path": "webp/meta.webp", + "mode": "100644", + "type": "blob", + "sha": "31980cf5d2aff32d75e9adc156513412ef087519", + "size": 49886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31980cf5d2aff32d75e9adc156513412ef087519" + }, + { + "path": "webp/metabase.webp", + "mode": "100644", + "type": "blob", + "sha": "c4e592e3f27401b5b5d352ec0ef0c2562feb93fb", + "size": 40886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4e592e3f27401b5b5d352ec0ef0c2562feb93fb" + }, + { + "path": "webp/metabrainz.webp", + "mode": "100644", + "type": "blob", + "sha": "537d2fb38607f5ffce1940799019768652e19a53", + "size": 90544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/537d2fb38607f5ffce1940799019768652e19a53" + }, + { + "path": "webp/metallb.webp", + "mode": "100644", + "type": "blob", + "sha": "9bf2f45765b333c2c8fe81425771d32846e1f15b", + "size": 32826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bf2f45765b333c2c8fe81425771d32846e1f15b" + }, + { + "path": "webp/metube.webp", + "mode": "100644", + "type": "blob", + "sha": "e483e06570e17ceb990c8f23b3642737b45a2d75", + "size": 17018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e483e06570e17ceb990c8f23b3642737b45a2d75" + }, + { + "path": "webp/microbin.webp", + "mode": "100644", + "type": "blob", + "sha": "1df85db6a87f044d97cea4a69e917152b935d60d", + "size": 30128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1df85db6a87f044d97cea4a69e917152b935d60d" + }, + { + "path": "webp/microsoft-365-admin-center.webp", + "mode": "100644", + "type": "blob", + "sha": "0d4373b5bf136d90d761940e90cb63aebf129129", + "size": 13258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d4373b5bf136d90d761940e90cb63aebf129129" + }, + { + "path": "webp/microsoft-365.webp", + "mode": "100644", + "type": "blob", + "sha": "ed34f8152f2df9e0cc4a1e546d9fb4bb423f4c30", + "size": 47280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed34f8152f2df9e0cc4a1e546d9fb4bb423f4c30" + }, + { + "path": "webp/microsoft-access.webp", + "mode": "100644", + "type": "blob", + "sha": "35a1060f0398366dbe5a968ebaf95567083c6b7e", + "size": 33590, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35a1060f0398366dbe5a968ebaf95567083c6b7e" + }, + { + "path": "webp/microsoft-azure.webp", + "mode": "100644", + "type": "blob", + "sha": "c8e837dd52e2ddc75e527e5c8b0de9032fac6237", + "size": 36576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c8e837dd52e2ddc75e527e5c8b0de9032fac6237" + }, + { + "path": "webp/microsoft-bing.webp", + "mode": "100644", + "type": "blob", + "sha": "7b7570b6cf34b5ddd497099a902ef76cc7821c54", + "size": 26558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b7570b6cf34b5ddd497099a902ef76cc7821c54" + }, + { + "path": "webp/microsoft-copilot.webp", + "mode": "100644", + "type": "blob", + "sha": "f2bd65fcefe72bb7db68d716788eb8e21e9ffd93", + "size": 67200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2bd65fcefe72bb7db68d716788eb8e21e9ffd93" + }, + { + "path": "webp/microsoft-defender.webp", + "mode": "100644", + "type": "blob", + "sha": "cd243060844bed9949dad39004f6ffa3f51b66b7", + "size": 23328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd243060844bed9949dad39004f6ffa3f51b66b7" + }, + { + "path": "webp/microsoft-edge.webp", + "mode": "100644", + "type": "blob", + "sha": "34b6980f32b44f473753318dfa7f132dfa049a4c", + "size": 55026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34b6980f32b44f473753318dfa7f132dfa049a4c" + }, + { + "path": "webp/microsoft-excel.webp", + "mode": "100644", + "type": "blob", + "sha": "2638bba7912fe580a4b160ad26806d7dcb7e95c0", + "size": 25118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2638bba7912fe580a4b160ad26806d7dcb7e95c0" + }, + { + "path": "webp/microsoft-exchange.webp", + "mode": "100644", + "type": "blob", + "sha": "6c6317f09c4d09bf0f866b070bd823b9807d02ff", + "size": 24810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c6317f09c4d09bf0f866b070bd823b9807d02ff" + }, + { + "path": "webp/microsoft-intune.webp", + "mode": "100644", + "type": "blob", + "sha": "4b698eaeebb5b76cfb382a0c441b5b77a9ab0564", + "size": 51690, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b698eaeebb5b76cfb382a0c441b5b77a9ab0564" + }, + { + "path": "webp/microsoft-office.webp", + "mode": "100644", + "type": "blob", + "sha": "c62e18dddf16545118d7642f06fa8ce771d56eb0", + "size": 28856, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c62e18dddf16545118d7642f06fa8ce771d56eb0" + }, + { + "path": "webp/microsoft-onedrive.webp", + "mode": "100644", + "type": "blob", + "sha": "6148c19d10370193a51ab5bbabd89180b1e6f27a", + "size": 32188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6148c19d10370193a51ab5bbabd89180b1e6f27a" + }, + { + "path": "webp/microsoft-onenote.webp", + "mode": "100644", + "type": "blob", + "sha": "c49541a68120fa84fc6662d8a6ce099fcb1e9cad", + "size": 22060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c49541a68120fa84fc6662d8a6ce099fcb1e9cad" + }, + { + "path": "webp/microsoft-outlook.webp", + "mode": "100644", + "type": "blob", + "sha": "b7d906c61f80212ea618db1806f3efa50fc8ece0", + "size": 44390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7d906c61f80212ea618db1806f3efa50fc8ece0" + }, + { + "path": "webp/microsoft-power-automate.webp", + "mode": "100644", + "type": "blob", + "sha": "0ea7af83cd5f7a9131f3e3b6a0e551a67d1b6ba4", + "size": 46900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ea7af83cd5f7a9131f3e3b6a0e551a67d1b6ba4" + }, + { + "path": "webp/microsoft-powerpoint.webp", + "mode": "100644", + "type": "blob", + "sha": "5d785af8d82146e834b170e12286c0caa0cf104d", + "size": 28226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d785af8d82146e834b170e12286c0caa0cf104d" + }, + { + "path": "webp/microsoft-remote-desktop.webp", + "mode": "100644", + "type": "blob", + "sha": "9bf8a63854dc4386a59ef72842e57d917a53e29b", + "size": 73462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bf8a63854dc4386a59ef72842e57d917a53e29b" + }, + { + "path": "webp/microsoft-sharepoint.webp", + "mode": "100644", + "type": "blob", + "sha": "a1485a8ce4d758be31f9b29e97a187ee84665987", + "size": 35254, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1485a8ce4d758be31f9b29e97a187ee84665987" + }, + { + "path": "webp/microsoft-sql-server-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e11abbaebf19546a0ade871ec15cd296456a2c02", + "size": 49806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e11abbaebf19546a0ade871ec15cd296456a2c02" + }, + { + "path": "webp/microsoft-sql-server.webp", + "mode": "100644", + "type": "blob", + "sha": "2c247549957fbe75cf9fff798a0fda6993707cf8", + "size": 59858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c247549957fbe75cf9fff798a0fda6993707cf8" + }, + { + "path": "webp/microsoft-teams.webp", + "mode": "100644", + "type": "blob", + "sha": "8bcc6718817e98173cef2ae0ce11eafc55bc1f78", + "size": 25544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bcc6718817e98173cef2ae0ce11eafc55bc1f78" + }, + { + "path": "webp/microsoft-to-do.webp", + "mode": "100644", + "type": "blob", + "sha": "ff46953447c555707343ed76241a0786110e2ac0", + "size": 22476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff46953447c555707343ed76241a0786110e2ac0" + }, + { + "path": "webp/microsoft-windows.webp", + "mode": "100644", + "type": "blob", + "sha": "f90c1a3a64937bda02a8f05794fbb68b77decac2", + "size": 942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f90c1a3a64937bda02a8f05794fbb68b77decac2" + }, + { + "path": "webp/microsoft-word.webp", + "mode": "100644", + "type": "blob", + "sha": "22cb4469fbeeb3e8ae6459baebb91166a538a87f", + "size": 30638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22cb4469fbeeb3e8ae6459baebb91166a538a87f" + }, + { + "path": "webp/microsoft.webp", + "mode": "100644", + "type": "blob", + "sha": "219aa390dc9f4a7039b1df00d5417d0b0c5555b6", + "size": 7006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/219aa390dc9f4a7039b1df00d5417d0b0c5555b6" + }, + { + "path": "webp/midjourney-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a247fd0238a41888501efc4bab4a713ed3dff8b5", + "size": 14520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a247fd0238a41888501efc4bab4a713ed3dff8b5" + }, + { + "path": "webp/midjourney.webp", + "mode": "100644", + "type": "blob", + "sha": "931b5ce09e9b0909a9d818bbfa15ff690ad6c7c5", + "size": 35636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/931b5ce09e9b0909a9d818bbfa15ff690ad6c7c5" + }, + { + "path": "webp/mikrotik-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2c723cbffac3c851692e2ee86bf405a2b8855c4c", + "size": 8378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c723cbffac3c851692e2ee86bf405a2b8855c4c" + }, + { + "path": "webp/mikrotik.webp", + "mode": "100644", + "type": "blob", + "sha": "9b1e658cbb267a105563806abbb6a0868fd0a798", + "size": 15714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b1e658cbb267a105563806abbb6a0868fd0a798" + }, + { + "path": "webp/minecraft.webp", + "mode": "100644", + "type": "blob", + "sha": "bb84a64cc9924c9bac02605fbf57b96400842bb8", + "size": 124666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb84a64cc9924c9bac02605fbf57b96400842bb8" + }, + { + "path": "webp/mineos.webp", + "mode": "100644", + "type": "blob", + "sha": "fc22b7002a71648bf843c5e87493febaa351c281", + "size": 37128, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc22b7002a71648bf843c5e87493febaa351c281" + }, + { + "path": "webp/miniflux-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3c53d683353757ad9866584b9f92501e6e2361d7", + "size": 4102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c53d683353757ad9866584b9f92501e6e2361d7" + }, + { + "path": "webp/miniflux.webp", + "mode": "100644", + "type": "blob", + "sha": "7ae255609ba271ec6a32e5ccb857a6bf2bd8d470", + "size": 4216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ae255609ba271ec6a32e5ccb857a6bf2bd8d470" + }, + { + "path": "webp/minimserver.webp", + "mode": "100644", + "type": "blob", + "sha": "3ac1557104ce94014eaa9350fd42243c519721b1", + "size": 5996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ac1557104ce94014eaa9350fd42243c519721b1" + }, + { + "path": "webp/minio-light.webp", + "mode": "100644", + "type": "blob", + "sha": "df57cb4c4db4a4c1f9d0a0cde31b42f99dc5bee5", + "size": 7664, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df57cb4c4db4a4c1f9d0a0cde31b42f99dc5bee5" + }, + { + "path": "webp/minio.webp", + "mode": "100644", + "type": "blob", + "sha": "1f7f277dc1662c73b068c78d8b3cb0a33a9d9bd7", + "size": 9154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f7f277dc1662c73b068c78d8b3cb0a33a9d9bd7" + }, + { + "path": "webp/miro.webp", + "mode": "100644", + "type": "blob", + "sha": "f9adc01406c92061c48af66c6a1edfed97cafc30", + "size": 51026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9adc01406c92061c48af66c6a1edfed97cafc30" + }, + { + "path": "webp/misp.webp", + "mode": "100644", + "type": "blob", + "sha": "3127575946ff77f92fad8f79eece411b42905faf", + "size": 8666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3127575946ff77f92fad8f79eece411b42905faf" + }, + { + "path": "webp/misskey-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fa5ecc1162bd1947e384befc45fd2051721a521f", + "size": 6066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa5ecc1162bd1947e384befc45fd2051721a521f" + }, + { + "path": "webp/misskey.webp", + "mode": "100644", + "type": "blob", + "sha": "7409d6cb91f7558c5a16b66a7190b8499a61032e", + "size": 6062, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7409d6cb91f7558c5a16b66a7190b8499a61032e" + }, + { + "path": "webp/mistral-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "675d55fcb27556eef33da1fb05e4c1b262fe6720", + "size": 9150, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/675d55fcb27556eef33da1fb05e4c1b262fe6720" + }, + { + "path": "webp/mitra.webp", + "mode": "100644", + "type": "blob", + "sha": "44f48a32b4ab551113c8751dd8c9b37aae8d7f11", + "size": 58484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44f48a32b4ab551113c8751dd8c9b37aae8d7f11" + }, + { + "path": "webp/mixpost.webp", + "mode": "100644", + "type": "blob", + "sha": "2222a6c6557ad346f9eeb120bb35c08212ee51c0", + "size": 16754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2222a6c6557ad346f9eeb120bb35c08212ee51c0" + }, + { + "path": "webp/mkdocs-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3f71e6ca03fb868bfc902b59b53d85c2bbc5526f", + "size": 2040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f71e6ca03fb868bfc902b59b53d85c2bbc5526f" + }, + { + "path": "webp/mkdocs.webp", + "mode": "100644", + "type": "blob", + "sha": "c292a94593a61d7e5cbddf612fe68e7eed21fc31", + "size": 4168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c292a94593a61d7e5cbddf612fe68e7eed21fc31" + }, + { + "path": "webp/mkvtoolnix.webp", + "mode": "100644", + "type": "blob", + "sha": "81b604be4090d355861c8400bbe513c11bfcff1e", + "size": 30564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81b604be4090d355861c8400bbe513c11bfcff1e" + }, + { + "path": "webp/ml-flow-wordmark-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "82feb8b3c190ec13e5ab07127db09df7ecf58304", + "size": 51892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82feb8b3c190ec13e5ab07127db09df7ecf58304" + }, + { + "path": "webp/ml-flow-wordmark.webp", + "mode": "100644", + "type": "blob", + "sha": "2449d33ece1ed452f809030ad971845a75d62d61", + "size": 52522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2449d33ece1ed452f809030ad971845a75d62d61" + }, + { + "path": "webp/mobaxterm.webp", + "mode": "100644", + "type": "blob", + "sha": "5f6b9277a2d3b4cd4f2647c3ff4b93bd9e980185", + "size": 60602, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f6b9277a2d3b4cd4f2647c3ff4b93bd9e980185" + }, + { + "path": "webp/mobilizon.webp", + "mode": "100644", + "type": "blob", + "sha": "67f182d7632169a0e3bfd4827af44061b592c9db", + "size": 32462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67f182d7632169a0e3bfd4827af44061b592c9db" + }, + { + "path": "webp/mobotix-light.webp", + "mode": "100644", + "type": "blob", + "sha": "16363e1bef0e04c969d01390442113ecac7a1f5d", + "size": 37218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16363e1bef0e04c969d01390442113ecac7a1f5d" + }, + { + "path": "webp/mobotix.webp", + "mode": "100644", + "type": "blob", + "sha": "224584b23eee38af34d5ce8ff57c21ebe1ce823e", + "size": 35752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/224584b23eee38af34d5ce8ff57c21ebe1ce823e" + }, + { + "path": "webp/mochahost.webp", + "mode": "100644", + "type": "blob", + "sha": "90a2e63755e670cf4cd0475ce03110d5a4dbe476", + "size": 84294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90a2e63755e670cf4cd0475ce03110d5a4dbe476" + }, + { + "path": "webp/modrinth.webp", + "mode": "100644", + "type": "blob", + "sha": "34538cfb64365adc5b6055fe7d7676edde11f712", + "size": 51688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34538cfb64365adc5b6055fe7d7676edde11f712" + }, + { + "path": "webp/mojeek.webp", + "mode": "100644", + "type": "blob", + "sha": "cb723db6af8f9bc2555c78cec4aa24534fa9805d", + "size": 30858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb723db6af8f9bc2555c78cec4aa24534fa9805d" + }, + { + "path": "webp/molecule.webp", + "mode": "100644", + "type": "blob", + "sha": "cf1d989e7385714b6ab12e68f590a5c2d719a4f8", + "size": 33626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf1d989e7385714b6ab12e68f590a5c2d719a4f8" + }, + { + "path": "webp/monero.webp", + "mode": "100644", + "type": "blob", + "sha": "41cbfff9ec6127f4366432be432455abe5e8ed58", + "size": 23724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41cbfff9ec6127f4366432be432455abe5e8ed58" + }, + { + "path": "webp/mongodb.webp", + "mode": "100644", + "type": "blob", + "sha": "4e67e2ff880d7053fab934193c07b084ec1a7986", + "size": 13942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e67e2ff880d7053fab934193c07b084ec1a7986" + }, + { + "path": "webp/monica-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e9bc128727cb593ba0b4065161377f08bd9ea568", + "size": 17330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9bc128727cb593ba0b4065161377f08bd9ea568" + }, + { + "path": "webp/monica.webp", + "mode": "100644", + "type": "blob", + "sha": "7bf70d1cd13a8f2c9cee17f47feca26a3dfd8a21", + "size": 27340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bf70d1cd13a8f2c9cee17f47feca26a3dfd8a21" + }, + { + "path": "webp/monit.webp", + "mode": "100644", + "type": "blob", + "sha": "f7d4df673f6a5d00debd5aa25544583e47c39c50", + "size": 44844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7d4df673f6a5d00debd5aa25544583e47c39c50" + }, + { + "path": "webp/monkeytype.webp", + "mode": "100644", + "type": "blob", + "sha": "33cafd3e18bff184ef876c9213f03223e1ad0b14", + "size": 30210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33cafd3e18bff184ef876c9213f03223e1ad0b14" + }, + { + "path": "webp/moode-audio.webp", + "mode": "100644", + "type": "blob", + "sha": "db9b678ee27b2f1d97e4bedd4373ce83935660da", + "size": 29698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db9b678ee27b2f1d97e4bedd4373ce83935660da" + }, + { + "path": "webp/moodist-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "95b1d5b9d1b98b078ad9253f4da8ac6b1ee166e1", + "size": 15792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95b1d5b9d1b98b078ad9253f4da8ac6b1ee166e1" + }, + { + "path": "webp/moodist.webp", + "mode": "100644", + "type": "blob", + "sha": "201c3ebdcbbb0c4b2f930668896683f65ab0f066", + "size": 20166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/201c3ebdcbbb0c4b2f930668896683f65ab0f066" + }, + { + "path": "webp/moodle-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e34cdd7a81e316693e710ab67926bb3c674a21a6", + "size": 15240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e34cdd7a81e316693e710ab67926bb3c674a21a6" + }, + { + "path": "webp/moodle.webp", + "mode": "100644", + "type": "blob", + "sha": "a1a6eaa9c5e43e0d564d46bf61c8fb8ba4b57a17", + "size": 17008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1a6eaa9c5e43e0d564d46bf61c8fb8ba4b57a17" + }, + { + "path": "webp/morphos.webp", + "mode": "100644", + "type": "blob", + "sha": "79d9c0b2ecf9e4a8e7a08789628103cd53ad80ad", + "size": 61156, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79d9c0b2ecf9e4a8e7a08789628103cd53ad80ad" + }, + { + "path": "webp/morss.webp", + "mode": "100644", + "type": "blob", + "sha": "1fa21dbf09a9f30d10388f678e5c9737cf62a783", + "size": 264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fa21dbf09a9f30d10388f678e5c9737cf62a783" + }, + { + "path": "webp/mosquitto.webp", + "mode": "100644", + "type": "blob", + "sha": "cc605d1fc8fad3e47005edd22488f2d77985cd69", + "size": 55292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc605d1fc8fad3e47005edd22488f2d77985cd69" + }, + { + "path": "webp/motioneye-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "fe545bb9b1b469aea1984c7d7d96b45431802c04", + "size": 30972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe545bb9b1b469aea1984c7d7d96b45431802c04" + }, + { + "path": "webp/motioneye.webp", + "mode": "100644", + "type": "blob", + "sha": "89bca5143dec7fe6168dde53fbd9277ab9ae1b79", + "size": 44314, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89bca5143dec7fe6168dde53fbd9277ab9ae1b79" + }, + { + "path": "webp/mousehole-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "42ba40cc43b311c2e3f26b2c3a117d0d078549c0", + "size": 5086, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42ba40cc43b311c2e3f26b2c3a117d0d078549c0" + }, + { + "path": "webp/mousehole.webp", + "mode": "100644", + "type": "blob", + "sha": "861240b14bf93824708ebcaf962068b72203c1bf", + "size": 5080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/861240b14bf93824708ebcaf962068b72203c1bf" + }, + { + "path": "webp/movie-pilot.webp", + "mode": "100644", + "type": "blob", + "sha": "624a031ac6e3b2d4ca1442b24ccb4d81fd4c798d", + "size": 33140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/624a031ac6e3b2d4ca1442b24ccb4d81fd4c798d" + }, + { + "path": "webp/mpm.webp", + "mode": "100644", + "type": "blob", + "sha": "a8eac1da08e15948844240422eeb139f43feed55", + "size": 87184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8eac1da08e15948844240422eeb139f43feed55" + }, + { + "path": "webp/mqtt.webp", + "mode": "100644", + "type": "blob", + "sha": "a206913790deca3b3ce903291ba88dbc08b288b7", + "size": 23258, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a206913790deca3b3ce903291ba88dbc08b288b7" + }, + { + "path": "webp/mstream.webp", + "mode": "100644", + "type": "blob", + "sha": "c69732a13ed4e6e9eae2ea0565307190a53aca2b", + "size": 7566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c69732a13ed4e6e9eae2ea0565307190a53aca2b" + }, + { + "path": "webp/mtlynch-picoshare.webp", + "mode": "100644", + "type": "blob", + "sha": "83d7c7b3021aa8ab3cc38d0b0efd46b8afce980c", + "size": 14702, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83d7c7b3021aa8ab3cc38d0b0efd46b8afce980c" + }, + { + "path": "webp/mullvad-browser.webp", + "mode": "100644", + "type": "blob", + "sha": "73175095fd240477fe7a34b399c9289b939f9aa0", + "size": 43564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73175095fd240477fe7a34b399c9289b939f9aa0" + }, + { + "path": "webp/mullvad-vpn.webp", + "mode": "100644", + "type": "blob", + "sha": "64cfd27fa2c3bfd188f42b601761f23b81eebacf", + "size": 57800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64cfd27fa2c3bfd188f42b601761f23b81eebacf" + }, + { + "path": "webp/mullvad.webp", + "mode": "100644", + "type": "blob", + "sha": "eefd813d5e9c92a565bc257115584ce6f66d078a", + "size": 57698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eefd813d5e9c92a565bc257115584ce6f66d078a" + }, + { + "path": "webp/multi-scrobbler.webp", + "mode": "100644", + "type": "blob", + "sha": "3e35c50b438f835fd5cdae9942fcbb1f39f010c0", + "size": 17834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e35c50b438f835fd5cdae9942fcbb1f39f010c0" + }, + { + "path": "webp/mumble-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2a22fbd6c7de59bded7119eaab39627c361928a7", + "size": 3774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a22fbd6c7de59bded7119eaab39627c361928a7" + }, + { + "path": "webp/mumble.webp", + "mode": "100644", + "type": "blob", + "sha": "2f1784de1c82128a158b99f4292064f5a47d168c", + "size": 14130, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f1784de1c82128a158b99f4292064f5a47d168c" + }, + { + "path": "webp/musescore.webp", + "mode": "100644", + "type": "blob", + "sha": "67de993774cc75c527b5ca3e039146b6f814be8c", + "size": 38218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67de993774cc75c527b5ca3e039146b6f814be8c" + }, + { + "path": "webp/music-assistant-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e2d6572f4b73ac4f1769ddbbf51a0bd9e3fb7f0e", + "size": 8360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e2d6572f4b73ac4f1769ddbbf51a0bd9e3fb7f0e" + }, + { + "path": "webp/music-assistant.webp", + "mode": "100644", + "type": "blob", + "sha": "dd00ea1928c1a48fec49edf76a3db9bbc379c726", + "size": 7894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd00ea1928c1a48fec49edf76a3db9bbc379c726" + }, + { + "path": "webp/musicbrainz.webp", + "mode": "100644", + "type": "blob", + "sha": "4edf49c37cdf9d42ff90fa91df545c3232825187", + "size": 70736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4edf49c37cdf9d42ff90fa91df545c3232825187" + }, + { + "path": "webp/my-guitar-tabs.webp", + "mode": "100644", + "type": "blob", + "sha": "72c9e062e3d203fb1611b42339bf3f5d5abc49d6", + "size": 115564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72c9e062e3d203fb1611b42339bf3f5d5abc49d6" + }, + { + "path": "webp/myheats-light.webp", + "mode": "100644", + "type": "blob", + "sha": "925c2e5c35319a533ecccc75919ca82fdb4021f9", + "size": 46462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/925c2e5c35319a533ecccc75919ca82fdb4021f9" + }, + { + "path": "webp/myheats.webp", + "mode": "100644", + "type": "blob", + "sha": "434982a62b3d71eb096427e75c0a709e32316f9f", + "size": 47398, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/434982a62b3d71eb096427e75c0a709e32316f9f" + }, + { + "path": "webp/mylar.webp", + "mode": "100644", + "type": "blob", + "sha": "63d935608b95ecf1a25c00834ed6cc52f3b17b11", + "size": 42718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63d935608b95ecf1a25c00834ed6cc52f3b17b11" + }, + { + "path": "webp/mympd.webp", + "mode": "100644", + "type": "blob", + "sha": "37dab62d837ebd72c34ca1c2efb4c2644d955eb1", + "size": 29136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37dab62d837ebd72c34ca1c2efb4c2644d955eb1" + }, + { + "path": "webp/myspeed.webp", + "mode": "100644", + "type": "blob", + "sha": "1019ce0668982b4ef9436167b1fa86154846343c", + "size": 36256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1019ce0668982b4ef9436167b1fa86154846343c" + }, + { + "path": "webp/mysql.webp", + "mode": "100644", + "type": "blob", + "sha": "7396ecd523b3bd5be18b4014210bd9aedb6f1b09", + "size": 27006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7396ecd523b3bd5be18b4014210bd9aedb6f1b09" + }, + { + "path": "webp/mysterium.webp", + "mode": "100644", + "type": "blob", + "sha": "accb60a8708b4a970e381007f6abeaf55e02319b", + "size": 111644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/accb60a8708b4a970e381007f6abeaf55e02319b" + }, + { + "path": "webp/n8n.webp", + "mode": "100644", + "type": "blob", + "sha": "a6bfa733820df48784f82065cc4da0bf2e02027a", + "size": 37642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a6bfa733820df48784f82065cc4da0bf2e02027a" + }, + { + "path": "webp/nagios.webp", + "mode": "100644", + "type": "blob", + "sha": "f9b849131da524714a4b173a82ef1abe7480552c", + "size": 19430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9b849131da524714a4b173a82ef1abe7480552c" + }, + { + "path": "webp/name-silo.webp", + "mode": "100644", + "type": "blob", + "sha": "e65de462a6adde636acae73a3c94bd5e72bc7cff", + "size": 17816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e65de462a6adde636acae73a3c94bd5e72bc7cff" + }, + { + "path": "webp/namecheap.webp", + "mode": "100644", + "type": "blob", + "sha": "943fde1b13f468dcdd7b233907d350e4d7d7a12e", + "size": 18018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/943fde1b13f468dcdd7b233907d350e4d7d7a12e" + }, + { + "path": "webp/nasa.webp", + "mode": "100644", + "type": "blob", + "sha": "9218d0b9fdc11c1ecf912e54e298c7623579d3e0", + "size": 118678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9218d0b9fdc11c1ecf912e54e298c7623579d3e0" + }, + { + "path": "webp/nastool.webp", + "mode": "100644", + "type": "blob", + "sha": "b14dee200d22a6fd2c595ca8559ac1ed4de9fc23", + "size": 82502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b14dee200d22a6fd2c595ca8559ac1ed4de9fc23" + }, + { + "path": "webp/natwest.webp", + "mode": "100644", + "type": "blob", + "sha": "96df8b10c137ebfdc30db32a769f188292fd6fd0", + "size": 46756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96df8b10c137ebfdc30db32a769f188292fd6fd0" + }, + { + "path": "webp/nautical-backup.webp", + "mode": "100644", + "type": "blob", + "sha": "65c57a9b93f89d9f9b91e15d4775323d2ecfe014", + "size": 188350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65c57a9b93f89d9f9b91e15d4775323d2ecfe014" + }, + { + "path": "webp/navidrome-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9f4e37823b75d30ade426f60a7e8372960325730", + "size": 82180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f4e37823b75d30ade426f60a7e8372960325730" + }, + { + "path": "webp/navidrome.webp", + "mode": "100644", + "type": "blob", + "sha": "c761be770144ec9f26e7d10790e655c3cd0adefa", + "size": 87828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c761be770144ec9f26e7d10790e655c3cd0adefa" + }, + { + "path": "webp/ncore.webp", + "mode": "100644", + "type": "blob", + "sha": "2232d98c83a52971f4fc1473018bb7ea2d8ea9ee", + "size": 14296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2232d98c83a52971f4fc1473018bb7ea2d8ea9ee" + }, + { + "path": "webp/neko-light.webp", + "mode": "100644", + "type": "blob", + "sha": "57a709867237ba9b32d772c47b7f0098aa3a2747", + "size": 9626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57a709867237ba9b32d772c47b7f0098aa3a2747" + }, + { + "path": "webp/neko.webp", + "mode": "100644", + "type": "blob", + "sha": "16fc001c0b1d5c5e43eab6ddd2736e9fb6dfcd77", + "size": 8942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16fc001c0b1d5c5e43eab6ddd2736e9fb6dfcd77" + }, + { + "path": "webp/neo4j.webp", + "mode": "100644", + "type": "blob", + "sha": "4ec9ffcd1cf07eca76ddc0ff34b9e3c4ae697f35", + "size": 65478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ec9ffcd1cf07eca76ddc0ff34b9e3c4ae697f35" + }, + { + "path": "webp/neocities.webp", + "mode": "100644", + "type": "blob", + "sha": "d89107a4e15507b3889eb3cd644c1db7bbcf852b", + "size": 120818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d89107a4e15507b3889eb3cd644c1db7bbcf852b" + }, + { + "path": "webp/neodb.webp", + "mode": "100644", + "type": "blob", + "sha": "97990b47b14982eb12b30507d39408e34e3ed6f7", + "size": 26168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97990b47b14982eb12b30507d39408e34e3ed6f7" + }, + { + "path": "webp/neon-tech.webp", + "mode": "100644", + "type": "blob", + "sha": "c602fa229f77dc3e37f7033aed0d440f6faa96e2", + "size": 21328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c602fa229f77dc3e37f7033aed0d440f6faa96e2" + }, + { + "path": "webp/neonlink.webp", + "mode": "100644", + "type": "blob", + "sha": "03a80d80d05ca912bb515e3e8a9ec7ee90a13eda", + "size": 3378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03a80d80d05ca912bb515e3e8a9ec7ee90a13eda" + }, + { + "path": "webp/netalertx-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3c5b56d23a01ac6eb3c37f4162b6e79990043de9", + "size": 21630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c5b56d23a01ac6eb3c37f4162b6e79990043de9" + }, + { + "path": "webp/netalertx.webp", + "mode": "100644", + "type": "blob", + "sha": "f7b70f52deb3f57e08a04cadf036e0cdfdb9bba3", + "size": 24982, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7b70f52deb3f57e08a04cadf036e0cdfdb9bba3" + }, + { + "path": "webp/netapp-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f04b35fe1414ddcb207a22752c06e4033284719c", + "size": 142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f04b35fe1414ddcb207a22752c06e4033284719c" + }, + { + "path": "webp/netapp.webp", + "mode": "100644", + "type": "blob", + "sha": "8c749c332330cd819ccd4e1e454013c628a6596d", + "size": 136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c749c332330cd819ccd4e1e454013c628a6596d" + }, + { + "path": "webp/netatmo.webp", + "mode": "100644", + "type": "blob", + "sha": "0d9f985c95a3d7b32d3bfe93818a820f0fb840dd", + "size": 27688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d9f985c95a3d7b32d3bfe93818a820f0fb840dd" + }, + { + "path": "webp/netbird.webp", + "mode": "100644", + "type": "blob", + "sha": "28ab07f9995a60894eeb924f868c71355012eb02", + "size": 26384, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28ab07f9995a60894eeb924f868c71355012eb02" + }, + { + "path": "webp/netboot.webp", + "mode": "100644", + "type": "blob", + "sha": "ea1314dd0d8766728e74f1f4d0d31548fb2caf27", + "size": 28368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea1314dd0d8766728e74f1f4d0d31548fb2caf27" + }, + { + "path": "webp/netbootxyz.webp", + "mode": "100644", + "type": "blob", + "sha": "d076153b3c79b46748bf1236efbf4c0faf6a3112", + "size": 35876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d076153b3c79b46748bf1236efbf4c0faf6a3112" + }, + { + "path": "webp/netbox-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e222b88a8f5bbff8c23e64d9b6eee5babdb72594", + "size": 18644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e222b88a8f5bbff8c23e64d9b6eee5babdb72594" + }, + { + "path": "webp/netbox-full-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "4a6a20b35c3e1c3d8f613c3ca6ee10210f39f8d4", + "size": 65102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a6a20b35c3e1c3d8f613c3ca6ee10210f39f8d4" + }, + { + "path": "webp/netbox-full.webp", + "mode": "100644", + "type": "blob", + "sha": "cd2570d4ce7cdd407973e76f8a57ccf3cdcc0674", + "size": 46842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd2570d4ce7cdd407973e76f8a57ccf3cdcc0674" + }, + { + "path": "webp/netbox.webp", + "mode": "100644", + "type": "blob", + "sha": "5bc16c326152c7fa0cce6c4889daa15ce2b3b4f0", + "size": 13768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bc16c326152c7fa0cce6c4889daa15ce2b3b4f0" + }, + { + "path": "webp/netcam-studio.webp", + "mode": "100644", + "type": "blob", + "sha": "f30d25f41c739db818fda0ec6dbd910faf5d40ba", + "size": 71250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f30d25f41c739db818fda0ec6dbd910faf5d40ba" + }, + { + "path": "webp/netdata.webp", + "mode": "100644", + "type": "blob", + "sha": "cb2eff7d167058785e80f4360abd26c265671cf7", + "size": 11786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb2eff7d167058785e80f4360abd26c265671cf7" + }, + { + "path": "webp/netflix.webp", + "mode": "100644", + "type": "blob", + "sha": "b23074644eddb17a7b0ff4c9dad1c11452358858", + "size": 18786, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b23074644eddb17a7b0ff4c9dad1c11452358858" + }, + { + "path": "webp/netgear-light.webp", + "mode": "100644", + "type": "blob", + "sha": "4e79f3054d929257bff5d31be057aa41167c9503", + "size": 6412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e79f3054d929257bff5d31be057aa41167c9503" + }, + { + "path": "webp/netgear-orbi.webp", + "mode": "100644", + "type": "blob", + "sha": "f27a5761f6a5a6a82ba5672b74b2d250ae33b28e", + "size": 15118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f27a5761f6a5a6a82ba5672b74b2d250ae33b28e" + }, + { + "path": "webp/netgear.webp", + "mode": "100644", + "type": "blob", + "sha": "9917ab17c8480b863e49a6ab9ed20970dc2ec9f0", + "size": 9902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9917ab17c8480b863e49a6ab9ed20970dc2ec9f0" + }, + { + "path": "webp/netlify.webp", + "mode": "100644", + "type": "blob", + "sha": "6e614f8d936c8eb02676efebd182a5a973248cba", + "size": 53944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e614f8d936c8eb02676efebd182a5a973248cba" + }, + { + "path": "webp/netmaker.webp", + "mode": "100644", + "type": "blob", + "sha": "65d9561d17c3987c6b527cf0daffbe49ff60f973", + "size": 11662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65d9561d17c3987c6b527cf0daffbe49ff60f973" + }, + { + "path": "webp/netsurf-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5ba5d3333a262eedc235901c7eeed83fda466d13", + "size": 74168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ba5d3333a262eedc235901c7eeed83fda466d13" + }, + { + "path": "webp/netsurf.webp", + "mode": "100644", + "type": "blob", + "sha": "038e123a2a405560ad19d22720dde78a547741f1", + "size": 72754, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/038e123a2a405560ad19d22720dde78a547741f1" + }, + { + "path": "webp/netvisor.webp", + "mode": "100644", + "type": "blob", + "sha": "54f127303297c9a889327ec764d62ad9009a7f6d", + "size": 26720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54f127303297c9a889327ec764d62ad9009a7f6d" + }, + { + "path": "webp/network-ups-tools.webp", + "mode": "100644", + "type": "blob", + "sha": "b4190f83356f9468b232b4ce89e35b74f6ff936e", + "size": 116380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4190f83356f9468b232b4ce89e35b74f6ff936e" + }, + { + "path": "webp/network-weathermap.webp", + "mode": "100644", + "type": "blob", + "sha": "ba0601502dc1f0a37ef8093ab0807eaf34fba871", + "size": 27048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba0601502dc1f0a37ef8093ab0807eaf34fba871" + }, + { + "path": "webp/networking-toolbox-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "7953a6eb91e09933432a050553d8e7b9884928a4", + "size": 33886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7953a6eb91e09933432a050553d8e7b9884928a4" + }, + { + "path": "webp/networking-toolbox.webp", + "mode": "100644", + "type": "blob", + "sha": "98bb40d127827e5956be4193559c462a5c6c090b", + "size": 28212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98bb40d127827e5956be4193559c462a5c6c090b" + }, + { + "path": "webp/newegg.webp", + "mode": "100644", + "type": "blob", + "sha": "fd5e93f5bfaa951934364de40577af622b0ff8c9", + "size": 105594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd5e93f5bfaa951934364de40577af622b0ff8c9" + }, + { + "path": "webp/newsblur.webp", + "mode": "100644", + "type": "blob", + "sha": "a3f146a22988e2b2903c03b71ae342d6387b694b", + "size": 91628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3f146a22988e2b2903c03b71ae342d6387b694b" + }, + { + "path": "webp/newshosting-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "8bd44f9fc2f6807629cf0d7a90f6522f8c352f6f", + "size": 37318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8bd44f9fc2f6807629cf0d7a90f6522f8c352f6f" + }, + { + "path": "webp/newshosting.webp", + "mode": "100644", + "type": "blob", + "sha": "358e3e60c7dd4b020efb431d4ee7afc50b6ee5f4", + "size": 28498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/358e3e60c7dd4b020efb431d4ee7afc50b6ee5f4" + }, + { + "path": "webp/nextcloud-blue.webp", + "mode": "100644", + "type": "blob", + "sha": "5dce6b95eaf1cba689254ecf9eb5cb84546768af", + "size": 34296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5dce6b95eaf1cba689254ecf9eb5cb84546768af" + }, + { + "path": "webp/nextcloud-calendar.webp", + "mode": "100644", + "type": "blob", + "sha": "54e01013cc68ea111232f5250432ff70a9ff6823", + "size": 27904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54e01013cc68ea111232f5250432ff70a9ff6823" + }, + { + "path": "webp/nextcloud-contacts.webp", + "mode": "100644", + "type": "blob", + "sha": "adedc8b231db4af2cef8d7f680494a6e113009e7", + "size": 36774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/adedc8b231db4af2cef8d7f680494a6e113009e7" + }, + { + "path": "webp/nextcloud-cookbook.webp", + "mode": "100644", + "type": "blob", + "sha": "950a7cd26cc2ba9546daf4d186e1e3e2346b9a13", + "size": 22510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/950a7cd26cc2ba9546daf4d186e1e3e2346b9a13" + }, + { + "path": "webp/nextcloud-cospend.webp", + "mode": "100644", + "type": "blob", + "sha": "c544e043a0fae24427478f561e8b8b11a1da0976", + "size": 43344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c544e043a0fae24427478f561e8b8b11a1da0976" + }, + { + "path": "webp/nextcloud-deck.webp", + "mode": "100644", + "type": "blob", + "sha": "6e8658567d092635b712bab2f5d6ece5a191b7c0", + "size": 16534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e8658567d092635b712bab2f5d6ece5a191b7c0" + }, + { + "path": "webp/nextcloud-files.webp", + "mode": "100644", + "type": "blob", + "sha": "70c21af9db6fb546f64e8b3a9e30952ed4296663", + "size": 11794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70c21af9db6fb546f64e8b3a9e30952ed4296663" + }, + { + "path": "webp/nextcloud-ncdownloader.webp", + "mode": "100644", + "type": "blob", + "sha": "cbd397a0a1cc4c5ad68d821954b7b04677cb8bc6", + "size": 24444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbd397a0a1cc4c5ad68d821954b7b04677cb8bc6" + }, + { + "path": "webp/nextcloud-news.webp", + "mode": "100644", + "type": "blob", + "sha": "7a634f31f1beec89b20be721374e0e7304f48350", + "size": 4698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a634f31f1beec89b20be721374e0e7304f48350" + }, + { + "path": "webp/nextcloud-notes.webp", + "mode": "100644", + "type": "blob", + "sha": "0251aa30280078f98239147b5c20f43e53061788", + "size": 24228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0251aa30280078f98239147b5c20f43e53061788" + }, + { + "path": "webp/nextcloud-photos.webp", + "mode": "100644", + "type": "blob", + "sha": "7cdbc1dcff3e8044d5df2a5b6fa2c16b27f959df", + "size": 23634, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cdbc1dcff3e8044d5df2a5b6fa2c16b27f959df" + }, + { + "path": "webp/nextcloud-social.webp", + "mode": "100644", + "type": "blob", + "sha": "7b7a8280f128d22745efe91c2cb1b399d57ee16e", + "size": 13688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7b7a8280f128d22745efe91c2cb1b399d57ee16e" + }, + { + "path": "webp/nextcloud-tables.webp", + "mode": "100644", + "type": "blob", + "sha": "d25f6c0692ee16b621dccc00b8bbcdc8daeee6ee", + "size": 888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d25f6c0692ee16b621dccc00b8bbcdc8daeee6ee" + }, + { + "path": "webp/nextcloud-talk.webp", + "mode": "100644", + "type": "blob", + "sha": "118f67dcb584cf939129cbd739af8498642a5051", + "size": 33868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/118f67dcb584cf939129cbd739af8498642a5051" + }, + { + "path": "webp/nextcloud-tasks.webp", + "mode": "100644", + "type": "blob", + "sha": "461a4799ef41a9dba6fbf2b37d5eeb1ba2c9efd5", + "size": 31598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/461a4799ef41a9dba6fbf2b37d5eeb1ba2c9efd5" + }, + { + "path": "webp/nextcloud-timemanager.webp", + "mode": "100644", + "type": "blob", + "sha": "a3a3626787fb524e0b1fc4f8406b4046882bfdbc", + "size": 55514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3a3626787fb524e0b1fc4f8406b4046882bfdbc" + }, + { + "path": "webp/nextcloud-white.webp", + "mode": "100644", + "type": "blob", + "sha": "e8238e27630a81e438159b8647468ab4de643415", + "size": 39306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8238e27630a81e438159b8647468ab4de643415" + }, + { + "path": "webp/nextcloud.webp", + "mode": "100644", + "type": "blob", + "sha": "cad2949d8220b33a6310cadb5077a33a4407beac", + "size": 40666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cad2949d8220b33a6310cadb5077a33a4407beac" + }, + { + "path": "webp/nextcloudpi.webp", + "mode": "100644", + "type": "blob", + "sha": "82ad8e7d8e4edd6c0c5c15fc7d57c0fc8a1f6e36", + "size": 76486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82ad8e7d8e4edd6c0c5c15fc7d57c0fc8a1f6e36" + }, + { + "path": "webp/nextdns.webp", + "mode": "100644", + "type": "blob", + "sha": "9772647668b1abe1bd7ba7e909544701cb337377", + "size": 20672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9772647668b1abe1bd7ba7e909544701cb337377" + }, + { + "path": "webp/nexterm.webp", + "mode": "100644", + "type": "blob", + "sha": "3a37419ca48e8b8c8d5fff230ef7661ed559846c", + "size": 17076, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a37419ca48e8b8c8d5fff230ef7661ed559846c" + }, + { + "path": "webp/nextjs-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1f564c67d7a5a0e2d2dbdc0387565340f39a614e", + "size": 12442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1f564c67d7a5a0e2d2dbdc0387565340f39a614e" + }, + { + "path": "webp/nextjs.webp", + "mode": "100644", + "type": "blob", + "sha": "fcdc4b24384cd6d8d0acb8c413f7d9a932a4d343", + "size": 11598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fcdc4b24384cd6d8d0acb8c413f7d9a932a4d343" + }, + { + "path": "webp/nextpvr.webp", + "mode": "100644", + "type": "blob", + "sha": "e1d14099dccf028b978f32439dfbc7dd1df0ee6d", + "size": 78682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1d14099dccf028b978f32439dfbc7dd1df0ee6d" + }, + { + "path": "webp/nexus-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "33cf121eed041749ff3a813c321436207c6b97fa", + "size": 26360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33cf121eed041749ff3a813c321436207c6b97fa" + }, + { + "path": "webp/nexus.webp", + "mode": "100644", + "type": "blob", + "sha": "a1693ad061ac2d6c726fffd5640b8a064be199f6", + "size": 24212, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1693ad061ac2d6c726fffd5640b8a064be199f6" + }, + { + "path": "webp/nezha.webp", + "mode": "100644", + "type": "blob", + "sha": "76b07538686f112c93cf2d4dac1b482a9746ccc0", + "size": 41426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76b07538686f112c93cf2d4dac1b482a9746ccc0" + }, + { + "path": "webp/nginx-proxy-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "aa556d621cf9f7553f0f058173241ad92afdd49a", + "size": 80406, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa556d621cf9f7553f0f058173241ad92afdd49a" + }, + { + "path": "webp/nginx.webp", + "mode": "100644", + "type": "blob", + "sha": "d0bd4e55846adb80ad6d1f30160ba18deac0548b", + "size": 27656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0bd4e55846adb80ad6d1f30160ba18deac0548b" + }, + { + "path": "webp/nicotine-plus.webp", + "mode": "100644", + "type": "blob", + "sha": "d47a2463a6de8d261fa4f0957b2da664c9830cb2", + "size": 7656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d47a2463a6de8d261fa4f0957b2da664c9830cb2" + }, + { + "path": "webp/nightscout-light.webp", + "mode": "100644", + "type": "blob", + "sha": "eba6d853af640136a84f2ddf406df1f0ff386015", + "size": 12348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eba6d853af640136a84f2ddf406df1f0ff386015" + }, + { + "path": "webp/nightscout.webp", + "mode": "100644", + "type": "blob", + "sha": "33176f2714b83691549d01a12e91d163701af295", + "size": 12342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33176f2714b83691549d01a12e91d163701af295" + }, + { + "path": "webp/nintendo-switch.webp", + "mode": "100644", + "type": "blob", + "sha": "ee25ddeb61a4b1c0ccf49905f3d1164296bc602d", + "size": 38984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee25ddeb61a4b1c0ccf49905f3d1164296bc602d" + }, + { + "path": "webp/nitter.webp", + "mode": "100644", + "type": "blob", + "sha": "60a135715e5653239f72ea86da517638d54010a9", + "size": 19994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60a135715e5653239f72ea86da517638d54010a9" + }, + { + "path": "webp/nixos.webp", + "mode": "100644", + "type": "blob", + "sha": "f925b37bc92de920399ae2a0d476c1f121990af1", + "size": 39546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f925b37bc92de920399ae2a0d476c1f121990af1" + }, + { + "path": "webp/no-ip.webp", + "mode": "100644", + "type": "blob", + "sha": "0b21788c52a405f48810782210c8e516ee377ddb", + "size": 30028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b21788c52a405f48810782210c8e516ee377ddb" + }, + { + "path": "webp/nocobase-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b87709b762acfd30b39cb172d7af44fa779fc74d", + "size": 4858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b87709b762acfd30b39cb172d7af44fa779fc74d" + }, + { + "path": "webp/nocobase.webp", + "mode": "100644", + "type": "blob", + "sha": "49e5aa8e85eb3de7c0321241184df810996f9d30", + "size": 4910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/49e5aa8e85eb3de7c0321241184df810996f9d30" + }, + { + "path": "webp/nocodb.webp", + "mode": "100644", + "type": "blob", + "sha": "fb4d8d29af7e9c8bf129f4bb00e7f3bd3544b39a", + "size": 21466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb4d8d29af7e9c8bf129f4bb00e7f3bd3544b39a" + }, + { + "path": "webp/node-red.webp", + "mode": "100644", + "type": "blob", + "sha": "9d3df36e178e7bffaad545faafbed58d8aa52ea4", + "size": 36340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d3df36e178e7bffaad545faafbed58d8aa52ea4" + }, + { + "path": "webp/nodebb.webp", + "mode": "100644", + "type": "blob", + "sha": "727ee34e3cf53d81414fe1117da515127fe91d02", + "size": 32994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/727ee34e3cf53d81414fe1117da515127fe91d02" + }, + { + "path": "webp/nodejs-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "fc2257482335ce11687f96cd1d4569c5bcddecb1", + "size": 28444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fc2257482335ce11687f96cd1d4569c5bcddecb1" + }, + { + "path": "webp/nodejs.webp", + "mode": "100644", + "type": "blob", + "sha": "7cef384de68f84b3e12623caf2028418152afeb4", + "size": 27222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cef384de68f84b3e12623caf2028418152afeb4" + }, + { + "path": "webp/noisedash.webp", + "mode": "100644", + "type": "blob", + "sha": "4b07ff70e5804800b8d3a2f392d68f94c63d780f", + "size": 20550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b07ff70e5804800b8d3a2f392d68f94c63d780f" + }, + { + "path": "webp/nomad.webp", + "mode": "100644", + "type": "blob", + "sha": "d3a13c3f32ee92acd5d6bb29870fe55475fefd21", + "size": 26622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3a13c3f32ee92acd5d6bb29870fe55475fefd21" + }, + { + "path": "webp/nomie.webp", + "mode": "100644", + "type": "blob", + "sha": "b35024ecde468eac9da003c3b408f4d814a16218", + "size": 28668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b35024ecde468eac9da003c3b408f4d814a16218" + }, + { + "path": "webp/nordvpn.webp", + "mode": "100644", + "type": "blob", + "sha": "c534d8fd6306f0d3d71f376ba0d29abec9211b87", + "size": 17322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c534d8fd6306f0d3d71f376ba0d29abec9211b87" + }, + { + "path": "webp/note-mark.webp", + "mode": "100644", + "type": "blob", + "sha": "eeb1b333f5ca89b01ff4d89f22b76576a305df3f", + "size": 58380, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeb1b333f5ca89b01ff4d89f22b76576a305df3f" + }, + { + "path": "webp/notebook-lm-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "37ee9b5e64c8c62f0a7b052919aefcf185cb1bc6", + "size": 8906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37ee9b5e64c8c62f0a7b052919aefcf185cb1bc6" + }, + { + "path": "webp/notebook-lm.webp", + "mode": "100644", + "type": "blob", + "sha": "3e9ee710cd08f1e538bb39d003cfa1d9bc34d977", + "size": 8900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e9ee710cd08f1e538bb39d003cfa1d9bc34d977" + }, + { + "path": "webp/notesnook-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e213d940dc0aba3710e3888078f479649091c0d8", + "size": 2382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e213d940dc0aba3710e3888078f479649091c0d8" + }, + { + "path": "webp/notesnook.webp", + "mode": "100644", + "type": "blob", + "sha": "622fcb48bbd5cdb8bc13db946fcfeee49d0ec926", + "size": 8374, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/622fcb48bbd5cdb8bc13db946fcfeee49d0ec926" + }, + { + "path": "webp/notifiarr.webp", + "mode": "100644", + "type": "blob", + "sha": "4f1c3cd387d1059eed598f05659a31d9927c9bdf", + "size": 84534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f1c3cd387d1059eed598f05659a31d9927c9bdf" + }, + { + "path": "webp/notion-calendar.webp", + "mode": "100644", + "type": "blob", + "sha": "34449abb936f4aec73e533e847b9f2bfd5e066e2", + "size": 15462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34449abb936f4aec73e533e847b9f2bfd5e066e2" + }, + { + "path": "webp/notion-light.webp", + "mode": "100644", + "type": "blob", + "sha": "cdeeb3cd6e786a15f2bbf0c0497c4ccded2b0fa1", + "size": 15076, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdeeb3cd6e786a15f2bbf0c0497c4ccded2b0fa1" + }, + { + "path": "webp/notion-mail.webp", + "mode": "100644", + "type": "blob", + "sha": "df621fdb84d08efee45c701d5564a89409c52354", + "size": 14014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df621fdb84d08efee45c701d5564a89409c52354" + }, + { + "path": "webp/notion.webp", + "mode": "100644", + "type": "blob", + "sha": "972e0154e0ea01325f0dd64f409fe0df69ab5ab7", + "size": 14160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/972e0154e0ea01325f0dd64f409fe0df69ab5ab7" + }, + { + "path": "webp/nowshowing.webp", + "mode": "100644", + "type": "blob", + "sha": "396b6980f7bf9f7ad5639a3e90be84f9ff878b60", + "size": 41508, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/396b6980f7bf9f7ad5639a3e90be84f9ff878b60" + }, + { + "path": "webp/npm.webp", + "mode": "100644", + "type": "blob", + "sha": "01cce392377a79d7cf39bda001ab2708e33012cb", + "size": 9522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01cce392377a79d7cf39bda001ab2708e33012cb" + }, + { + "path": "webp/ntfy.webp", + "mode": "100644", + "type": "blob", + "sha": "0b1631e7e6f659a908d0ec85b0898f95c24bd92d", + "size": 21040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b1631e7e6f659a908d0ec85b0898f95c24bd92d" + }, + { + "path": "webp/ntop.webp", + "mode": "100644", + "type": "blob", + "sha": "f3ad1625ed211565117d926c3870d78aae6e71a3", + "size": 19706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3ad1625ed211565117d926c3870d78aae6e71a3" + }, + { + "path": "webp/ntopng.webp", + "mode": "100644", + "type": "blob", + "sha": "3973a70e8b36985692b970ff03977a8832580602", + "size": 41644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3973a70e8b36985692b970ff03977a8832580602" + }, + { + "path": "webp/nu-nl.webp", + "mode": "100644", + "type": "blob", + "sha": "896e72b71d37e1bca37e04aee09c8dabfed2db2d", + "size": 49924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/896e72b71d37e1bca37e04aee09c8dabfed2db2d" + }, + { + "path": "webp/nut-webgui.webp", + "mode": "100644", + "type": "blob", + "sha": "7e9a6315743732626b5a80c56e1570d510d1333f", + "size": 72052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e9a6315743732626b5a80c56e1570d510d1333f" + }, + { + "path": "webp/nut.webp", + "mode": "100644", + "type": "blob", + "sha": "d7e00bbe23ff3b34c00a9d6eea80fba3871b6661", + "size": 115482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d7e00bbe23ff3b34c00a9d6eea80fba3871b6661" + }, + { + "path": "webp/nutanix.webp", + "mode": "100644", + "type": "blob", + "sha": "70732cb433f21d08ad4e38ec5d7c67e98633e9c3", + "size": 31914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70732cb433f21d08ad4e38ec5d7c67e98633e9c3" + }, + { + "path": "webp/nvidia.webp", + "mode": "100644", + "type": "blob", + "sha": "4083aba0619b2a952e65cdf0a3736166dc8f385e", + "size": 37662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4083aba0619b2a952e65cdf0a3736166dc8f385e" + }, + { + "path": "webp/nxfilter.webp", + "mode": "100644", + "type": "blob", + "sha": "f608aab7051d4669a9781115d0cb0f26897e36fe", + "size": 4618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f608aab7051d4669a9781115d0cb0f26897e36fe" + }, + { + "path": "webp/nxlog.webp", + "mode": "100644", + "type": "blob", + "sha": "b7a43f53964d292f69efbbf095ca14eb58939c5e", + "size": 41316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7a43f53964d292f69efbbf095ca14eb58939c5e" + }, + { + "path": "webp/nzbgeek.webp", + "mode": "100644", + "type": "blob", + "sha": "37a6cd5089271d58fe498062afa5b99cb649d815", + "size": 41446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37a6cd5089271d58fe498062afa5b99cb649d815" + }, + { + "path": "webp/nzbget.webp", + "mode": "100644", + "type": "blob", + "sha": "386f2a84efab3983b7265949264a860151667a08", + "size": 58120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/386f2a84efab3983b7265949264a860151667a08" + }, + { + "path": "webp/nzbhydra.webp", + "mode": "100644", + "type": "blob", + "sha": "13ff5f9f78fce0ff4aacc8d3d284eab642881f0f", + "size": 26890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13ff5f9f78fce0ff4aacc8d3d284eab642881f0f" + }, + { + "path": "webp/nzbhydra2-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b6d04daf4b7f85496c1aead1ec3a06eb71b54a80", + "size": 62794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6d04daf4b7f85496c1aead1ec3a06eb71b54a80" + }, + { + "path": "webp/nzbhydra2.webp", + "mode": "100644", + "type": "blob", + "sha": "21225130cadc2774a29d70f79370df0d724847c7", + "size": 59510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21225130cadc2774a29d70f79370df0d724847c7" + }, + { + "path": "webp/oauth2-proxy.webp", + "mode": "100644", + "type": "blob", + "sha": "a8a0e062829942b6c02a904e56911eea61b2880e", + "size": 34512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a8a0e062829942b6c02a904e56911eea61b2880e" + }, + { + "path": "webp/obico.webp", + "mode": "100644", + "type": "blob", + "sha": "1a75fc28795bfac477c9ed248412c4ac0e78a3c7", + "size": 24276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a75fc28795bfac477c9ed248412c4ac0e78a3c7" + }, + { + "path": "webp/obitalk.webp", + "mode": "100644", + "type": "blob", + "sha": "8face410c3457f757bfc37b177be64caf6fbb61b", + "size": 16102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8face410c3457f757bfc37b177be64caf6fbb61b" + }, + { + "path": "webp/observium.webp", + "mode": "100644", + "type": "blob", + "sha": "1bf77905ce8514aa34b710744e5d13bc51a784b0", + "size": 146148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bf77905ce8514aa34b710744e5d13bc51a784b0" + }, + { + "path": "webp/observo-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "92e52aa39afbd0693c7d637c02f3edda36213904", + "size": 16736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/92e52aa39afbd0693c7d637c02f3edda36213904" + }, + { + "path": "webp/obsidian.webp", + "mode": "100644", + "type": "blob", + "sha": "2e3439a75d9d97d7faf3018559a20a153165f8c0", + "size": 38650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2e3439a75d9d97d7faf3018559a20a153165f8c0" + }, + { + "path": "webp/obtainium.webp", + "mode": "100644", + "type": "blob", + "sha": "533dcc37fe01f541b590e97f09750d7cd539bbbc", + "size": 32924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/533dcc37fe01f541b590e97f09750d7cd539bbbc" + }, + { + "path": "webp/octoeverywhere.webp", + "mode": "100644", + "type": "blob", + "sha": "06274d14c0b214294609bb1a440126beae45e82b", + "size": 42008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06274d14c0b214294609bb1a440126beae45e82b" + }, + { + "path": "webp/octoprint.webp", + "mode": "100644", + "type": "blob", + "sha": "c28f155917ba2dc77c417fe7388ca8e351250cfd", + "size": 24554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c28f155917ba2dc77c417fe7388ca8e351250cfd" + }, + { + "path": "webp/ocular.webp", + "mode": "100644", + "type": "blob", + "sha": "a839304a2a07f0608cfeee3442dcfad1bf3a670d", + "size": 25366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a839304a2a07f0608cfeee3442dcfad1bf3a670d" + }, + { + "path": "webp/oculus-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fb3dd3e8fff2d62fd994c2f4998ef92b8306ac85", + "size": 5204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb3dd3e8fff2d62fd994c2f4998ef92b8306ac85" + }, + { + "path": "webp/oculus.webp", + "mode": "100644", + "type": "blob", + "sha": "6cc8359ca407ad43fc628f4c53364098289fa878", + "size": 5200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6cc8359ca407ad43fc628f4c53364098289fa878" + }, + { + "path": "webp/odoo.webp", + "mode": "100644", + "type": "blob", + "sha": "c3d6c004ceb9873bf738e853abbf7561e180f62e", + "size": 34324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3d6c004ceb9873bf738e853abbf7561e180f62e" + }, + { + "path": "webp/odysee-full-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "c468a25f7a9511a224d554ebda553156b3fe0f78", + "size": 46858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c468a25f7a9511a224d554ebda553156b3fe0f78" + }, + { + "path": "webp/odysee-full-light.webp", + "mode": "100644", + "type": "blob", + "sha": "68dabc09de4188290567e0de6cc72a37ad863ef6", + "size": 46924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68dabc09de4188290567e0de6cc72a37ad863ef6" + }, + { + "path": "webp/odysee.webp", + "mode": "100644", + "type": "blob", + "sha": "f489cb541ca5594ade11c1135d659f6f286bcd3d", + "size": 72652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f489cb541ca5594ade11c1135d659f6f286bcd3d" + }, + { + "path": "webp/office-365.webp", + "mode": "100644", + "type": "blob", + "sha": "a3d27de0969082cb6ee9121a1445ea06ae10aa26", + "size": 12412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3d27de0969082cb6ee9121a1445ea06ae10aa26" + }, + { + "path": "webp/oh-my-posh-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "6aea4839c292a1c5060113f3d09b9c7299091a99", + "size": 2632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6aea4839c292a1c5060113f3d09b9c7299091a99" + }, + { + "path": "webp/oh-my-posh.webp", + "mode": "100644", + "type": "blob", + "sha": "26f0815d3626f010844c5d130f6062bb10fb2760", + "size": 2660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/26f0815d3626f010844c5d130f6062bb10fb2760" + }, + { + "path": "webp/olivetin-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d19b768827911587fdbe225b3c89a49dbdcb0feb", + "size": 32138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d19b768827911587fdbe225b3c89a49dbdcb0feb" + }, + { + "path": "webp/olivetin.webp", + "mode": "100644", + "type": "blob", + "sha": "cce0c58f26024afcb12a998caeca8365b5d4a804", + "size": 34042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cce0c58f26024afcb12a998caeca8365b5d4a804" + }, + { + "path": "webp/ollama-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "47400a410af80491a274fd8602164c1f69999641", + "size": 9240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47400a410af80491a274fd8602164c1f69999641" + }, + { + "path": "webp/ollama.webp", + "mode": "100644", + "type": "blob", + "sha": "51bdea9a0856e6ae87c4f28dcfcba093fd54bfb4", + "size": 9234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/51bdea9a0856e6ae87c4f28dcfcba093fd54bfb4" + }, + { + "path": "webp/omada.webp", + "mode": "100644", + "type": "blob", + "sha": "0797918d347c2937b85ea4a353c211faa995de46", + "size": 32442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0797918d347c2937b85ea4a353c211faa995de46" + }, + { + "path": "webp/ombi.webp", + "mode": "100644", + "type": "blob", + "sha": "817fde9f2cbee046120eac9464b2157bc97fd0de", + "size": 51278, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/817fde9f2cbee046120eac9464b2157bc97fd0de" + }, + { + "path": "webp/omni-tools-full.webp", + "mode": "100644", + "type": "blob", + "sha": "98e57207c95567b5525e8c51cd76d55b8b38c0e8", + "size": 94986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/98e57207c95567b5525e8c51cd76d55b8b38c0e8" + }, + { + "path": "webp/omni-tools.webp", + "mode": "100644", + "type": "blob", + "sha": "e9cf7fe2116a1de876554c75ca42168f7bc669b1", + "size": 47568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9cf7fe2116a1de876554c75ca42168f7bc669b1" + }, + { + "path": "webp/omnic-forge-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "f96880d3cd07c6e3654a2136c6b4322e0b0b24b0", + "size": 14566, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f96880d3cd07c6e3654a2136c6b4322e0b0b24b0" + }, + { + "path": "webp/omnic-forge.webp", + "mode": "100644", + "type": "blob", + "sha": "db16feac7f2d984d72a66639cbd1cdf78a2a79da", + "size": 14422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db16feac7f2d984d72a66639cbd1cdf78a2a79da" + }, + { + "path": "webp/omnidb.webp", + "mode": "100644", + "type": "blob", + "sha": "ccb0bd3d36794dab9f2864341da3754b91b58f5a", + "size": 45710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccb0bd3d36794dab9f2864341da3754b91b58f5a" + }, + { + "path": "webp/omnivore.webp", + "mode": "100644", + "type": "blob", + "sha": "62f0f9f1f4db7c370740de8f62aa1f9525f1f4a5", + "size": 54092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62f0f9f1f4db7c370740de8f62aa1f9525f1f4a5" + }, + { + "path": "webp/onedev-light.webp", + "mode": "100644", + "type": "blob", + "sha": "bf6f46424ee46faa16c996193a944eb46dccdbc4", + "size": 9656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf6f46424ee46faa16c996193a944eb46dccdbc4" + }, + { + "path": "webp/onedev.webp", + "mode": "100644", + "type": "blob", + "sha": "951647613fb55076ae859ec89e9934928537f87c", + "size": 9650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/951647613fb55076ae859ec89e9934928537f87c" + }, + { + "path": "webp/oneuptime-light.webp", + "mode": "100644", + "type": "blob", + "sha": "69adbc9c9b835eefe28e8e2f0b15dd5f94c581e6", + "size": 6716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69adbc9c9b835eefe28e8e2f0b15dd5f94c581e6" + }, + { + "path": "webp/oneuptime.webp", + "mode": "100644", + "type": "blob", + "sha": "82724c1614190aa13da7211d0082bcf2ff11b2de", + "size": 8404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82724c1614190aa13da7211d0082bcf2ff11b2de" + }, + { + "path": "webp/onlyfans-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "cb0c32a4eb80ceb1dbdf2c42a1a3f5f8762dd0a0", + "size": 7124, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb0c32a4eb80ceb1dbdf2c42a1a3f5f8762dd0a0" + }, + { + "path": "webp/onlyfans.webp", + "mode": "100644", + "type": "blob", + "sha": "ad30295932fdd3836ccaf1fb32cfa911f132c2ae", + "size": 31678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ad30295932fdd3836ccaf1fb32cfa911f132c2ae" + }, + { + "path": "webp/onlyoffice.webp", + "mode": "100644", + "type": "blob", + "sha": "83ad9ec5e875d155825dd265f5dd01adc1a3919d", + "size": 46180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83ad9ec5e875d155825dd265f5dd01adc1a3919d" + }, + { + "path": "webp/onshape-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e164d4d4b304b5ffd71856c2df67678d3b0c2a0e", + "size": 23312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e164d4d4b304b5ffd71856c2df67678d3b0c2a0e" + }, + { + "path": "webp/onshape.webp", + "mode": "100644", + "type": "blob", + "sha": "62177da054427954fea67f228c2fc4cd9d8e6fd0", + "size": 27872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62177da054427954fea67f228c2fc4cd9d8e6fd0" + }, + { + "path": "webp/ookla-speedtest.webp", + "mode": "100644", + "type": "blob", + "sha": "2eef1ebba34afd76f1266d0cecf36f1476fc0f4b", + "size": 36162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eef1ebba34afd76f1266d0cecf36f1476fc0f4b" + }, + { + "path": "webp/open-classrooms.webp", + "mode": "100644", + "type": "blob", + "sha": "a7eadbcea9467f4c041dd52b4fc08fe0f21557e1", + "size": 166112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7eadbcea9467f4c041dd52b4fc08fe0f21557e1" + }, + { + "path": "webp/open-cloud-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "b4150d7200c18a8e3a184bebb369e8e3260aa035", + "size": 19058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4150d7200c18a8e3a184bebb369e8e3260aa035" + }, + { + "path": "webp/open-cloud.webp", + "mode": "100644", + "type": "blob", + "sha": "6c38db5478fb7d46479c537ce1c6788ae9cfd90f", + "size": 21790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c38db5478fb7d46479c537ce1c6788ae9cfd90f" + }, + { + "path": "webp/open-observe.webp", + "mode": "100644", + "type": "blob", + "sha": "6c50848d98aa6b1666be337e9e43964dc40eed8b", + "size": 54396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c50848d98aa6b1666be337e9e43964dc40eed8b" + }, + { + "path": "webp/open-regex.webp", + "mode": "100644", + "type": "blob", + "sha": "68eb486247fb547289dd167f5e96c46a14d81e3b", + "size": 21928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68eb486247fb547289dd167f5e96c46a14d81e3b" + }, + { + "path": "webp/open-resume.webp", + "mode": "100644", + "type": "blob", + "sha": "e03bbda2f3c47830a351743d07a64c65e6761732", + "size": 29888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e03bbda2f3c47830a351743d07a64c65e6761732" + }, + { + "path": "webp/open-router-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "167e64bf86867cae0522e2253356bf365ad60e2f", + "size": 5430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/167e64bf86867cae0522e2253356bf365ad60e2f" + }, + { + "path": "webp/open-router.webp", + "mode": "100644", + "type": "blob", + "sha": "f444eb4db799a21cf89cac003e4ed6468e652f10", + "size": 7504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f444eb4db799a21cf89cac003e4ed6468e652f10" + }, + { + "path": "webp/open-source-initiative.webp", + "mode": "100644", + "type": "blob", + "sha": "949d26a6d8d06d54057930a0a8d2c4d041cc0789", + "size": 53744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/949d26a6d8d06d54057930a0a8d2c4d041cc0789" + }, + { + "path": "webp/open-wb.webp", + "mode": "100644", + "type": "blob", + "sha": "2551e566fc53584e3aa65e9a7bd68e9b8b186883", + "size": 15902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2551e566fc53584e3aa65e9a7bd68e9b8b186883" + }, + { + "path": "webp/open-webui-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a38d1f47e84b5773b6b902d656f686a3291af702", + "size": 8854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a38d1f47e84b5773b6b902d656f686a3291af702" + }, + { + "path": "webp/open-webui.webp", + "mode": "100644", + "type": "blob", + "sha": "14e71fcc1dde3724528e4ea5266903106b125cfb", + "size": 8924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14e71fcc1dde3724528e4ea5266903106b125cfb" + }, + { + "path": "webp/openai-light.webp", + "mode": "100644", + "type": "blob", + "sha": "980121fc0c76d62cc7565770d57a0ae9056d39f5", + "size": 11826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/980121fc0c76d62cc7565770d57a0ae9056d39f5" + }, + { + "path": "webp/openai.webp", + "mode": "100644", + "type": "blob", + "sha": "bf8485a210b8c9093d5d8a45fbefc54ed6113886", + "size": 11820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf8485a210b8c9093d5d8a45fbefc54ed6113886" + }, + { + "path": "webp/openaudible.webp", + "mode": "100644", + "type": "blob", + "sha": "f0bda7e5e5842483ae62c85ea5986234b113b2c0", + "size": 26950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0bda7e5e5842483ae62c85ea5986234b113b2c0" + }, + { + "path": "webp/openchangelog-light.webp", + "mode": "100644", + "type": "blob", + "sha": "28d95aa2a556b6e96c97fee591fe5ce8f7f0d46a", + "size": 8884, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28d95aa2a556b6e96c97fee591fe5ce8f7f0d46a" + }, + { + "path": "webp/openchangelog.webp", + "mode": "100644", + "type": "blob", + "sha": "bc9d70513b6e9390dfdafb6d6bdfcf72074198cb", + "size": 8878, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc9d70513b6e9390dfdafb6d6bdfcf72074198cb" + }, + { + "path": "webp/opencode-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "031870fe6cba43874725980c7781483b0eda713b", + "size": 954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/031870fe6cba43874725980c7781483b0eda713b" + }, + { + "path": "webp/opencode.webp", + "mode": "100644", + "type": "blob", + "sha": "84b25164455c65fbee1ca207dd24635fe2c0c30b", + "size": 944, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84b25164455c65fbee1ca207dd24635fe2c0c30b" + }, + { + "path": "webp/opencost.webp", + "mode": "100644", + "type": "blob", + "sha": "ebd313cef2b7bf00fe62ba4d461857709555fdf6", + "size": 41810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebd313cef2b7bf00fe62ba4d461857709555fdf6" + }, + { + "path": "webp/openeats-light.webp", + "mode": "100644", + "type": "blob", + "sha": "969d5938a1b02bf8ba6d0742c515cc5efb4b20f2", + "size": 33904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/969d5938a1b02bf8ba6d0742c515cc5efb4b20f2" + }, + { + "path": "webp/openeats.webp", + "mode": "100644", + "type": "blob", + "sha": "75bf134b776a0ff75da6c991a2ecc399e624af57", + "size": 39282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75bf134b776a0ff75da6c991a2ecc399e624af57" + }, + { + "path": "webp/openemr-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9b59f636aa050103d305d8b78a31ba6a4ea68a61", + "size": 8332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b59f636aa050103d305d8b78a31ba6a4ea68a61" + }, + { + "path": "webp/openemr.webp", + "mode": "100644", + "type": "blob", + "sha": "fb6c84e349eae50e4973437323b5445f0913a155", + "size": 8326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb6c84e349eae50e4973437323b5445f0913a155" + }, + { + "path": "webp/opengarage.webp", + "mode": "100644", + "type": "blob", + "sha": "573d855838fac25b5472d6214c8b28c55b2e0aa3", + "size": 26730, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/573d855838fac25b5472d6214c8b28c55b2e0aa3" + }, + { + "path": "webp/opengist-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9b3d201fc19cc4a91e9a09af7164d62133841d65", + "size": 15864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b3d201fc19cc4a91e9a09af7164d62133841d65" + }, + { + "path": "webp/opengist.webp", + "mode": "100644", + "type": "blob", + "sha": "2cf9ce9604e212cf8bcf5e56e4ce4189c3639fe5", + "size": 17122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2cf9ce9604e212cf8bcf5e56e4ce4189c3639fe5" + }, + { + "path": "webp/openhab.webp", + "mode": "100644", + "type": "blob", + "sha": "8aba39f2dd1442d6c5a44635b2ad690c680b09e8", + "size": 20172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8aba39f2dd1442d6c5a44635b2ad690c680b09e8" + }, + { + "path": "webp/openldap.webp", + "mode": "100644", + "type": "blob", + "sha": "46716c1cfe074f520431912372d4458dc8352b4d", + "size": 42640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/46716c1cfe074f520431912372d4458dc8352b4d" + }, + { + "path": "webp/openlist.webp", + "mode": "100644", + "type": "blob", + "sha": "552c897fe00edc5de0186e9475325a81bd7cccbb", + "size": 31392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/552c897fe00edc5de0186e9475325a81bd7cccbb" + }, + { + "path": "webp/openmaptiles.webp", + "mode": "100644", + "type": "blob", + "sha": "27d77c74ca62719155ec38892a5148ad06c7ce44", + "size": 130332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27d77c74ca62719155ec38892a5148ad06c7ce44" + }, + { + "path": "webp/openmediavault.webp", + "mode": "100644", + "type": "blob", + "sha": "3505bde8dc51b0d15ef988c3c60e441462384225", + "size": 19458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3505bde8dc51b0d15ef988c3c60e441462384225" + }, + { + "path": "webp/openoffice.webp", + "mode": "100644", + "type": "blob", + "sha": "c09e3f893925b16376e5dca5a61fa4206bca5df0", + "size": 41366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c09e3f893925b16376e5dca5a61fa4206bca5df0" + }, + { + "path": "webp/openpanel-light.webp", + "mode": "100644", + "type": "blob", + "sha": "943e518bd046f95910062002e0b1f60034c20ce6", + "size": 4812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/943e518bd046f95910062002e0b1f60034c20ce6" + }, + { + "path": "webp/openpanel.webp", + "mode": "100644", + "type": "blob", + "sha": "20954a629b4aadef331198bed633603cdb545cfc", + "size": 4806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20954a629b4aadef331198bed633603cdb545cfc" + }, + { + "path": "webp/openproject.webp", + "mode": "100644", + "type": "blob", + "sha": "8895aad3230750a0f4b107f09430dc761caa9ad7", + "size": 20514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8895aad3230750a0f4b107f09430dc761caa9ad7" + }, + { + "path": "webp/openreads.webp", + "mode": "100644", + "type": "blob", + "sha": "1ca1f27e8a528ada9ce6f57ae23acc8fd32083d4", + "size": 34968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ca1f27e8a528ada9ce6f57ae23acc8fd32083d4" + }, + { + "path": "webp/opensearch.webp", + "mode": "100644", + "type": "blob", + "sha": "5037e6cecf996be79aac02c77a7921e18f003630", + "size": 29230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5037e6cecf996be79aac02c77a7921e18f003630" + }, + { + "path": "webp/openshift-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "8625fb1aefdefb8a16012555fd7ba633bb4c675e", + "size": 38028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8625fb1aefdefb8a16012555fd7ba633bb4c675e" + }, + { + "path": "webp/openshift.webp", + "mode": "100644", + "type": "blob", + "sha": "7585400835c3878b1504d29e4f46f4e67a5d8b9a", + "size": 25042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7585400835c3878b1504d29e4f46f4e67a5d8b9a" + }, + { + "path": "webp/openspeedtest.webp", + "mode": "100644", + "type": "blob", + "sha": "411060431f52f0c25e5f59eb19bd65f15322d5ee", + "size": 46968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/411060431f52f0c25e5f59eb19bd65f15322d5ee" + }, + { + "path": "webp/opensprinkler.webp", + "mode": "100644", + "type": "blob", + "sha": "2a744f286d7a2d0756ed585bbbe9a40a90538577", + "size": 23718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a744f286d7a2d0756ed585bbbe9a40a90538577" + }, + { + "path": "webp/openstack.webp", + "mode": "100644", + "type": "blob", + "sha": "036bd18075d597f84f5efae5ad051e74c62ff3b7", + "size": 9210, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/036bd18075d597f84f5efae5ad051e74c62ff3b7" + }, + { + "path": "webp/openstreetmap.webp", + "mode": "100644", + "type": "blob", + "sha": "4213be06e254dfc13def2a9a00419430e67109c9", + "size": 143014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4213be06e254dfc13def2a9a00419430e67109c9" + }, + { + "path": "webp/opensuse.webp", + "mode": "100644", + "type": "blob", + "sha": "7d30105ddf9cd5ed1ec84ef7fb50740993b0cdfa", + "size": 28642, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d30105ddf9cd5ed1ec84ef7fb50740993b0cdfa" + }, + { + "path": "webp/opentalk.webp", + "mode": "100644", + "type": "blob", + "sha": "01a9d381faea09a93eef35c7a8e402d5d080cefd", + "size": 26074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01a9d381faea09a93eef35c7a8e402d5d080cefd" + }, + { + "path": "webp/opentofu.webp", + "mode": "100644", + "type": "blob", + "sha": "2b464fffc9bc28eb7088e6a562ac4bdfea04fd67", + "size": 57242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b464fffc9bc28eb7088e6a562ac4bdfea04fd67" + }, + { + "path": "webp/openvas.webp", + "mode": "100644", + "type": "blob", + "sha": "75a0fa6e851e93a2c4cb7fbc41162919e5492b22", + "size": 89930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75a0fa6e851e93a2c4cb7fbc41162919e5492b22" + }, + { + "path": "webp/openvpn.webp", + "mode": "100644", + "type": "blob", + "sha": "bac41c44a3eaba35bc7de7406a5d8cfc1a4894ee", + "size": 25120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bac41c44a3eaba35bc7de7406a5d8cfc1a4894ee" + }, + { + "path": "webp/openwebrx-plus-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "2d798ff71f707c3cbbb8cd7743e6cc2c9d9b8c6c", + "size": 28688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d798ff71f707c3cbbb8cd7743e6cc2c9d9b8c6c" + }, + { + "path": "webp/openwebrx-plus.webp", + "mode": "100644", + "type": "blob", + "sha": "1983719015d9e76b35de02e59dac44c8a4e6a43e", + "size": 29102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1983719015d9e76b35de02e59dac44c8a4e6a43e" + }, + { + "path": "webp/openwrt.webp", + "mode": "100644", + "type": "blob", + "sha": "dd95910ed69f4583a56bf2789bd1f0a6c8913e3b", + "size": 37850, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd95910ed69f4583a56bf2789bd1f0a6c8913e3b" + }, + { + "path": "webp/openziti.webp", + "mode": "100644", + "type": "blob", + "sha": "d843e3eeb1e5c94584ae5cf89c56984794cc675e", + "size": 57888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d843e3eeb1e5c94584ae5cf89c56984794cc675e" + }, + { + "path": "webp/opera-beta.webp", + "mode": "100644", + "type": "blob", + "sha": "66b0c522339a7f3ea22e8076463c902d3ddb0a5f", + "size": 86318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66b0c522339a7f3ea22e8076463c902d3ddb0a5f" + }, + { + "path": "webp/opera-developer.webp", + "mode": "100644", + "type": "blob", + "sha": "ba550f6207437c9343c6fc4665daa5a5c7f1cb70", + "size": 77182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba550f6207437c9343c6fc4665daa5a5c7f1cb70" + }, + { + "path": "webp/opera-mini-beta.webp", + "mode": "100644", + "type": "blob", + "sha": "62a3c87f71a1507f5cba5fbf9272a881947fc8fc", + "size": 95952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/62a3c87f71a1507f5cba5fbf9272a881947fc8fc" + }, + { + "path": "webp/opera-mini.webp", + "mode": "100644", + "type": "blob", + "sha": "43c3ed2dc726c98601323472bd89f91840996497", + "size": 39918, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43c3ed2dc726c98601323472bd89f91840996497" + }, + { + "path": "webp/opera-neon.webp", + "mode": "100644", + "type": "blob", + "sha": "dfc1ff486baf470a107af8b13ef766bb53d892e1", + "size": 107774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfc1ff486baf470a107af8b13ef766bb53d892e1" + }, + { + "path": "webp/opera-touch.webp", + "mode": "100644", + "type": "blob", + "sha": "055e1046eadb825730ead08373ee74ecb90caec1", + "size": 44628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/055e1046eadb825730ead08373ee74ecb90caec1" + }, + { + "path": "webp/opera.webp", + "mode": "100644", + "type": "blob", + "sha": "f4f48f81bfee7bc7c10ee473ad2baf30eded3f62", + "size": 25270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4f48f81bfee7bc7c10ee473ad2baf30eded3f62" + }, + { + "path": "webp/opnform.webp", + "mode": "100644", + "type": "blob", + "sha": "9cfbf2931a73cfe7ef0a3b5f0047bccf17a7638f", + "size": 24846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9cfbf2931a73cfe7ef0a3b5f0047bccf17a7638f" + }, + { + "path": "webp/opnsense.webp", + "mode": "100644", + "type": "blob", + "sha": "4ab4a6c5d271fad6efb059bc81bf009f386d963d", + "size": 8788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ab4a6c5d271fad6efb059bc81bf009f386d963d" + }, + { + "path": "webp/oracle-cloud.webp", + "mode": "100644", + "type": "blob", + "sha": "b6a2549187eafafe31808cb8c7d37aa6b26bc092", + "size": 21042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6a2549187eafafe31808cb8c7d37aa6b26bc092" + }, + { + "path": "webp/oracle.webp", + "mode": "100644", + "type": "blob", + "sha": "b6a2549187eafafe31808cb8c7d37aa6b26bc092", + "size": 21042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6a2549187eafafe31808cb8c7d37aa6b26bc092" + }, + { + "path": "webp/orange.webp", + "mode": "100644", + "type": "blob", + "sha": "6db9c9bbf1b7d4a358657b8238a4f10614b7f9d5", + "size": 33354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6db9c9bbf1b7d4a358657b8238a4f10614b7f9d5" + }, + { + "path": "webp/orb.webp", + "mode": "100644", + "type": "blob", + "sha": "b9362b50837e579fae4d1a45bfd2cf348da6bb41", + "size": 56768, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b9362b50837e579fae4d1a45bfd2cf348da6bb41" + }, + { + "path": "webp/orcaslicer.webp", + "mode": "100644", + "type": "blob", + "sha": "b3f6a3af714b714e5727d6d5e29d69b20fb9ba87", + "size": 11288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3f6a3af714b714e5727d6d5e29d69b20fb9ba87" + }, + { + "path": "webp/oreilly-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "d37820d6914576d080cd586cfd87874855bda6e3", + "size": 15916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d37820d6914576d080cd586cfd87874855bda6e3" + }, + { + "path": "webp/oreilly.webp", + "mode": "100644", + "type": "blob", + "sha": "8c3b5d325d0622521807aa448bc0462ed23452f1", + "size": 15910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c3b5d325d0622521807aa448bc0462ed23452f1" + }, + { + "path": "webp/organizr.webp", + "mode": "100644", + "type": "blob", + "sha": "c051a7d2adec28391dd82fb8ca3d77218d424606", + "size": 67292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c051a7d2adec28391dd82fb8ca3d77218d424606" + }, + { + "path": "webp/origin.webp", + "mode": "100644", + "type": "blob", + "sha": "12cd86156eb87771772e49a4a58678e680d10966", + "size": 16082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/12cd86156eb87771772e49a4a58678e680d10966" + }, + { + "path": "webp/oscarr-light.webp", + "mode": "100644", + "type": "blob", + "sha": "695434bc355c0ad9161d33d4bb775382f85b9df8", + "size": 9098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/695434bc355c0ad9161d33d4bb775382f85b9df8" + }, + { + "path": "webp/oscarr.webp", + "mode": "100644", + "type": "blob", + "sha": "dbaee1da646862876c6d566d81888ba115e3c778", + "size": 9094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbaee1da646862876c6d566d81888ba115e3c778" + }, + { + "path": "webp/osticket.webp", + "mode": "100644", + "type": "blob", + "sha": "05e122b0c6949375aae77cd4f056b9d8e9cf3d97", + "size": 30120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05e122b0c6949375aae77cd4f056b9d8e9cf3d97" + }, + { + "path": "webp/osu.webp", + "mode": "100644", + "type": "blob", + "sha": "338adcb6b2b6102778cd7410a517646460d8635a", + "size": 63986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/338adcb6b2b6102778cd7410a517646460d8635a" + }, + { + "path": "webp/otter-wiki-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "9831ee78373fd459245321e89b938355b96cfcac", + "size": 15386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9831ee78373fd459245321e89b938355b96cfcac" + }, + { + "path": "webp/otter-wiki.webp", + "mode": "100644", + "type": "blob", + "sha": "4cbed8930201e776fc7c0b065277e9712a75815a", + "size": 10262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cbed8930201e776fc7c0b065277e9712a75815a" + }, + { + "path": "webp/our-shopping-list.webp", + "mode": "100644", + "type": "blob", + "sha": "184732843372d5129d44cf53126510a841f7d55d", + "size": 62764, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/184732843372d5129d44cf53126510a841f7d55d" + }, + { + "path": "webp/outline-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5ad98f5772fd400c7db935d8db761655df59b8ca", + "size": 1892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ad98f5772fd400c7db935d8db761655df59b8ca" + }, + { + "path": "webp/outline.webp", + "mode": "100644", + "type": "blob", + "sha": "df7b13dce9c0c78d420d47702de142d9b28850d2", + "size": 10158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df7b13dce9c0c78d420d47702de142d9b28850d2" + }, + { + "path": "webp/overclockers.webp", + "mode": "100644", + "type": "blob", + "sha": "87b813a5fc4cf82917104c3f66a2b52b183ddd97", + "size": 10030, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87b813a5fc4cf82917104c3f66a2b52b183ddd97" + }, + { + "path": "webp/overleaf.webp", + "mode": "100644", + "type": "blob", + "sha": "b2cd039ae35c99894a09250d08be5dbdede7ba6e", + "size": 26092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2cd039ae35c99894a09250d08be5dbdede7ba6e" + }, + { + "path": "webp/overseerr.webp", + "mode": "100644", + "type": "blob", + "sha": "826dd93b2c3a2d6d534d2efa5674db0c3f8aa008", + "size": 46160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/826dd93b2c3a2d6d534d2efa5674db0c3f8aa008" + }, + { + "path": "webp/ovh.webp", + "mode": "100644", + "type": "blob", + "sha": "9bb191bd7adbd6673436c6e8fa8f0ef49712bd8e", + "size": 22828, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9bb191bd7adbd6673436c6e8fa8f0ef49712bd8e" + }, + { + "path": "webp/ovirt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e7a40f6b7897a4f736b82e756c1102a9875beb68", + "size": 41608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7a40f6b7897a4f736b82e756c1102a9875beb68" + }, + { + "path": "webp/ovirt.webp", + "mode": "100644", + "type": "blob", + "sha": "2eac9795fe9dfcfdab8d050e05405e0ea386e769", + "size": 45952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2eac9795fe9dfcfdab8d050e05405e0ea386e769" + }, + { + "path": "webp/owasp-zap.webp", + "mode": "100644", + "type": "blob", + "sha": "a0675125a9b384ec4e82fc21cd974ac309ad8929", + "size": 32580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0675125a9b384ec4e82fc21cd974ac309ad8929" + }, + { + "path": "webp/owncast.webp", + "mode": "100644", + "type": "blob", + "sha": "cdde480b0b54acadf04995a36511294d51ffd55d", + "size": 31734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdde480b0b54acadf04995a36511294d51ffd55d" + }, + { + "path": "webp/owncloud.webp", + "mode": "100644", + "type": "blob", + "sha": "5a10030084b454e0abfb28d0aaa392e8908457b8", + "size": 44574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a10030084b454e0abfb28d0aaa392e8908457b8" + }, + { + "path": "webp/ownphotos-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5d9699a2c24dff8d003a63ea8953a4182570b8db", + "size": 6256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d9699a2c24dff8d003a63ea8953a4182570b8db" + }, + { + "path": "webp/ownphotos.webp", + "mode": "100644", + "type": "blob", + "sha": "c5b8826f8cd3ebe7b33ff88b0d177ca1f3d84155", + "size": 6250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5b8826f8cd3ebe7b33ff88b0d177ca1f3d84155" + }, + { + "path": "webp/owntone.webp", + "mode": "100644", + "type": "blob", + "sha": "afa8517cf5fd1ebb5eb90ef49abb51d9f72c6797", + "size": 48448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afa8517cf5fd1ebb5eb90ef49abb51d9f72c6797" + }, + { + "path": "webp/owntracks.webp", + "mode": "100644", + "type": "blob", + "sha": "5482407067e764850842649f588214bd296cf4f4", + "size": 32226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5482407067e764850842649f588214bd296cf4f4" + }, + { + "path": "webp/oxker-light.webp", + "mode": "100644", + "type": "blob", + "sha": "43e772d85dbe18eb86be5183d0e1652d501db3bc", + "size": 41474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43e772d85dbe18eb86be5183d0e1652d501db3bc" + }, + { + "path": "webp/oxker.webp", + "mode": "100644", + "type": "blob", + "sha": "159b938e2183c9d977c43e1199188a957de6ffcd", + "size": 58588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/159b938e2183c9d977c43e1199188a957de6ffcd" + }, + { + "path": "webp/p-cal.webp", + "mode": "100644", + "type": "blob", + "sha": "1bd8473a8303ae77372bd4223e59702c538e19bb", + "size": 37230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bd8473a8303ae77372bd4223e59702c538e19bb" + }, + { + "path": "webp/p1ib.webp", + "mode": "100644", + "type": "blob", + "sha": "6bd701e66545c9d99957b9754f5b77f9d9411bc6", + "size": 32760, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bd701e66545c9d99957b9754f5b77f9d9411bc6" + }, + { + "path": "webp/packetfence-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "bbfa463fa6b7a6e92a24bfcab9bd72505589cff1", + "size": 9012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbfa463fa6b7a6e92a24bfcab9bd72505589cff1" + }, + { + "path": "webp/packetfence-full-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "1b18aa1a4ff5a13f302bc1fc98c67a36af4b9823", + "size": 21758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1b18aa1a4ff5a13f302bc1fc98c67a36af4b9823" + }, + { + "path": "webp/packetfence-full.webp", + "mode": "100644", + "type": "blob", + "sha": "0e8aa2b965c5f7a363ff901620911f98b91545f2", + "size": 21752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e8aa2b965c5f7a363ff901620911f98b91545f2" + }, + { + "path": "webp/packetfence.webp", + "mode": "100644", + "type": "blob", + "sha": "57887372ca288f193f9111a10dd430c6b8a0e378", + "size": 9008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57887372ca288f193f9111a10dd430c6b8a0e378" + }, + { + "path": "webp/pagerduty.webp", + "mode": "100644", + "type": "blob", + "sha": "b7a8bcb4c60ea42c86e575e610c3b0ad8d8c1bd3", + "size": 10486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7a8bcb4c60ea42c86e575e610c3b0ad8d8c1bd3" + }, + { + "path": "webp/pairdrop.webp", + "mode": "100644", + "type": "blob", + "sha": "dc3dd6089d5d0215eaca5d627f43a7bf430ef527", + "size": 74950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc3dd6089d5d0215eaca5d627f43a7bf430ef527" + }, + { + "path": "webp/palemoon.webp", + "mode": "100644", + "type": "blob", + "sha": "2aea16468b68508d58361102369c98982490ecfa", + "size": 29728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2aea16468b68508d58361102369c98982490ecfa" + }, + { + "path": "webp/palmr.webp", + "mode": "100644", + "type": "blob", + "sha": "f676a098c7866ca1024733e2b879d5cfb8ed0127", + "size": 60760, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f676a098c7866ca1024733e2b879d5cfb8ed0127" + }, + { + "path": "webp/palo-alto.webp", + "mode": "100644", + "type": "blob", + "sha": "96a3266056d3da61c85c9e3888ba2e2ff38fe094", + "size": 42054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96a3266056d3da61c85c9e3888ba2e2ff38fe094" + }, + { + "path": "webp/pangolin.webp", + "mode": "100644", + "type": "blob", + "sha": "7e4bbd2f93c4b423d8435787b7e8cf4c331004ae", + "size": 33296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e4bbd2f93c4b423d8435787b7e8cf4c331004ae" + }, + { + "path": "webp/paperless-ng.webp", + "mode": "100644", + "type": "blob", + "sha": "059393309af4b02f68656783417430d877d025db", + "size": 23594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/059393309af4b02f68656783417430d877d025db" + }, + { + "path": "webp/paperless-ngx.webp", + "mode": "100644", + "type": "blob", + "sha": "c4eaee7f37d2ddb0f4bfa0d04b5d0e83396e0431", + "size": 19106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4eaee7f37d2ddb0f4bfa0d04b5d0e83396e0431" + }, + { + "path": "webp/paperless.webp", + "mode": "100644", + "type": "blob", + "sha": "4c5eae2a204d3d9c044e74feb17d4896b861fa83", + "size": 18172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c5eae2a204d3d9c044e74feb17d4896b861fa83" + }, + { + "path": "webp/papermark-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e0205dcbf69ef73e71cb7a74f35c8c980ef6a301", + "size": 6890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e0205dcbf69ef73e71cb7a74f35c8c980ef6a301" + }, + { + "path": "webp/papermark.webp", + "mode": "100644", + "type": "blob", + "sha": "33fcb51353807b91fef9dbf753f1f8fc4f244f2f", + "size": 6720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33fcb51353807b91fef9dbf753f1f8fc4f244f2f" + }, + { + "path": "webp/papermerge-light.webp", + "mode": "100644", + "type": "blob", + "sha": "34425379573efe35071c52a57154cd598b6f793e", + "size": 25544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34425379573efe35071c52a57154cd598b6f793e" + }, + { + "path": "webp/papermerge.webp", + "mode": "100644", + "type": "blob", + "sha": "a33390d8aa6e69ffd4e0580e741c12dcd2ff409c", + "size": 27680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a33390d8aa6e69ffd4e0580e741c12dcd2ff409c" + }, + { + "path": "webp/papra.webp", + "mode": "100644", + "type": "blob", + "sha": "a5121cee2d69d17f1f85da98778bd80b185ccfa8", + "size": 10600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5121cee2d69d17f1f85da98778bd80b185ccfa8" + }, + { + "path": "webp/parseable.webp", + "mode": "100644", + "type": "blob", + "sha": "61277c316cdf132a4e261e85519bc56d36c368ec", + "size": 29622, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61277c316cdf132a4e261e85519bc56d36c368ec" + }, + { + "path": "webp/part-db-light.webp", + "mode": "100644", + "type": "blob", + "sha": "7dff67687655a7a4987b984d805d9e05cfd097c1", + "size": 3880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7dff67687655a7a4987b984d805d9e05cfd097c1" + }, + { + "path": "webp/part-db.webp", + "mode": "100644", + "type": "blob", + "sha": "54f0cfcf871edd110baa1739153a23c5014968e1", + "size": 3888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54f0cfcf871edd110baa1739153a23c5014968e1" + }, + { + "path": "webp/partkeepr.webp", + "mode": "100644", + "type": "blob", + "sha": "7e65fea8dd03c4ea7d0b83970f47ebc078550d95", + "size": 28948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e65fea8dd03c4ea7d0b83970f47ebc078550d95" + }, + { + "path": "webp/passbolt.webp", + "mode": "100644", + "type": "blob", + "sha": "0745d5ef88834b8ffc3e4c48f5947963e3c45ebe", + "size": 15576, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0745d5ef88834b8ffc3e4c48f5947963e3c45ebe" + }, + { + "path": "webp/passwordpusher-light.webp", + "mode": "100644", + "type": "blob", + "sha": "dcd61810550684b4a8866352562d7ead06b658a5", + "size": 27504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcd61810550684b4a8866352562d7ead06b658a5" + }, + { + "path": "webp/passwordpusher.webp", + "mode": "100644", + "type": "blob", + "sha": "b10c69cc6362f21969a6aec4f78a2a5c4828e53d", + "size": 24538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b10c69cc6362f21969a6aec4f78a2a5c4828e53d" + }, + { + "path": "webp/passwork.webp", + "mode": "100644", + "type": "blob", + "sha": "b17fde7442099d25db8eb1c30b872f7d5c36c163", + "size": 24584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b17fde7442099d25db8eb1c30b872f7d5c36c163" + }, + { + "path": "webp/pastatool-light.webp", + "mode": "100644", + "type": "blob", + "sha": "47f3e751cd4b130607bb55a531757084a840c9c8", + "size": 12796, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/47f3e751cd4b130607bb55a531757084a840c9c8" + }, + { + "path": "webp/pastatool.webp", + "mode": "100644", + "type": "blob", + "sha": "f342eae9d9b05a519a0a1b2c3b92af92b99012ec", + "size": 11564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f342eae9d9b05a519a0a1b2c3b92af92b99012ec" + }, + { + "path": "webp/pastebin-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "4c3c9f3279862a9bd65e56130b0cff0397ced5e8", + "size": 37984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c3c9f3279862a9bd65e56130b0cff0397ced5e8" + }, + { + "path": "webp/pastebin.webp", + "mode": "100644", + "type": "blob", + "sha": "b6b4544fd95a9a6fa3e38d1e893e3d6a7ab41ab6", + "size": 69300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6b4544fd95a9a6fa3e38d1e893e3d6a7ab41ab6" + }, + { + "path": "webp/pastey.webp", + "mode": "100644", + "type": "blob", + "sha": "a0f823e3dfe98a0256199b9658306a1112b50bac", + "size": 2340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0f823e3dfe98a0256199b9658306a1112b50bac" + }, + { + "path": "webp/patchmon.webp", + "mode": "100644", + "type": "blob", + "sha": "9f0160e88de8c93985b8b29989989d291bf541b3", + "size": 24638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f0160e88de8c93985b8b29989989d291bf541b3" + }, + { + "path": "webp/patreon-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f9a9a91a48a78d28d810bfe0dea7b42f462b6ae9", + "size": 3710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9a9a91a48a78d28d810bfe0dea7b42f462b6ae9" + }, + { + "path": "webp/patreon.webp", + "mode": "100644", + "type": "blob", + "sha": "4e0477e2cd36a7a434db34e00839a06f367d5edc", + "size": 3734, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e0477e2cd36a7a434db34e00839a06f367d5edc" + }, + { + "path": "webp/payload-light.webp", + "mode": "100644", + "type": "blob", + "sha": "083a2fcc6f85f83cc510878a038d8da1b396a53e", + "size": 8800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/083a2fcc6f85f83cc510878a038d8da1b396a53e" + }, + { + "path": "webp/payload.webp", + "mode": "100644", + "type": "blob", + "sha": "9db1232028f81e0c8ad04eaaef8a62d912e0f8e3", + "size": 8404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9db1232028f81e0c8ad04eaaef8a62d912e0f8e3" + }, + { + "path": "webp/paymenter.webp", + "mode": "100644", + "type": "blob", + "sha": "5ac0e6d9f576679b2dff66afb869b9e8b1e8a619", + "size": 26352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ac0e6d9f576679b2dff66afb869b9e8b1e8a619" + }, + { + "path": "webp/paypal.webp", + "mode": "100644", + "type": "blob", + "sha": "3528e8350a2bb9aa8dd6fe10b0fa092549fccc14", + "size": 23774, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3528e8350a2bb9aa8dd6fe10b0fa092549fccc14" + }, + { + "path": "webp/pdfding-light.webp", + "mode": "100644", + "type": "blob", + "sha": "cb04409d614704cf45eae7ed514478070892cc96", + "size": 3410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb04409d614704cf45eae7ed514478070892cc96" + }, + { + "path": "webp/pdfding.webp", + "mode": "100644", + "type": "blob", + "sha": "f3496909ee874e47efae7100b9661c9d79503a82", + "size": 3440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3496909ee874e47efae7100b9661c9d79503a82" + }, + { + "path": "webp/peacock-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f4ee15b1b8d31b7b6f3fb81a68725d84068b3a81", + "size": 14662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4ee15b1b8d31b7b6f3fb81a68725d84068b3a81" + }, + { + "path": "webp/peacock.webp", + "mode": "100644", + "type": "blob", + "sha": "03589adc57fd3da6f50a005217c867bd747f13e2", + "size": 13716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/03589adc57fd3da6f50a005217c867bd747f13e2" + }, + { + "path": "webp/peanut-light.webp", + "mode": "100644", + "type": "blob", + "sha": "28212e359f37497f04535febc3ec92a065aa4290", + "size": 94824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28212e359f37497f04535febc3ec92a065aa4290" + }, + { + "path": "webp/peanut.webp", + "mode": "100644", + "type": "blob", + "sha": "dbb323021e73f71001a1041faa772d810b3d4805", + "size": 101484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dbb323021e73f71001a1041faa772d810b3d4805" + }, + { + "path": "webp/peertube.webp", + "mode": "100644", + "type": "blob", + "sha": "e3d8eb5db526d54325240437988fdfeb4099d8d5", + "size": 9998, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3d8eb5db526d54325240437988fdfeb4099d8d5" + }, + { + "path": "webp/pelican-panel.webp", + "mode": "100644", + "type": "blob", + "sha": "dfd47ecb26726f7e18c0874ebbabb4b620e86fd0", + "size": 82074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfd47ecb26726f7e18c0874ebbabb4b620e86fd0" + }, + { + "path": "webp/penpot-light.webp", + "mode": "100644", + "type": "blob", + "sha": "328194dc3883eee3681628d71a74711a41c5894a", + "size": 4628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/328194dc3883eee3681628d71a74711a41c5894a" + }, + { + "path": "webp/penpot.webp", + "mode": "100644", + "type": "blob", + "sha": "6adc26ee4520a6c8361a282f41cc115b174a5b1a", + "size": 4620, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6adc26ee4520a6c8361a282f41cc115b174a5b1a" + }, + { + "path": "webp/peppermint.webp", + "mode": "100644", + "type": "blob", + "sha": "0f2f09c2d4e7b10c009a4679f1b32e3d97085d47", + "size": 22678, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f2f09c2d4e7b10c009a4679f1b32e3d97085d47" + }, + { + "path": "webp/pepperminty-wiki.webp", + "mode": "100644", + "type": "blob", + "sha": "790265270a336fd420ddd9b605a7593ce4c93222", + "size": 90350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/790265270a336fd420ddd9b605a7593ce4c93222" + }, + { + "path": "webp/perlite.webp", + "mode": "100644", + "type": "blob", + "sha": "dea220fe149720d6f2d8842da836f82e918a3441", + "size": 46972, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dea220fe149720d6f2d8842da836f82e918a3441" + }, + { + "path": "webp/perplexity-book-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "636bed7f5a3a549dfc5c2870e90ca6aaa847589f", + "size": 10084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/636bed7f5a3a549dfc5c2870e90ca6aaa847589f" + }, + { + "path": "webp/perplexity-book-light.webp", + "mode": "100644", + "type": "blob", + "sha": "8246dfdcf87d41878d5085e342c4634578fe954c", + "size": 8600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8246dfdcf87d41878d5085e342c4634578fe954c" + }, + { + "path": "webp/perplexity-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "64e088ebd1d4af70b8fac0a2a4a39f41cffbb92b", + "size": 30052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64e088ebd1d4af70b8fac0a2a4a39f41cffbb92b" + }, + { + "path": "webp/perplexity-light.webp", + "mode": "100644", + "type": "blob", + "sha": "76c8c9876f3489f356888e9a6e1920e390ebbf22", + "size": 35756, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76c8c9876f3489f356888e9a6e1920e390ebbf22" + }, + { + "path": "webp/petio.webp", + "mode": "100644", + "type": "blob", + "sha": "e7bf5e97b71d9e38b84ba878567d3a809f38928a", + "size": 5694, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7bf5e97b71d9e38b84ba878567d3a809f38928a" + }, + { + "path": "webp/pfsense-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6555e63293b01dfccaece8727ea19c3c90f3e37f", + "size": 12860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6555e63293b01dfccaece8727ea19c3c90f3e37f" + }, + { + "path": "webp/pfsense.webp", + "mode": "100644", + "type": "blob", + "sha": "d9ef18e08e9144a6c05954f0d88391f877ef1a21", + "size": 12936, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9ef18e08e9144a6c05954f0d88391f877ef1a21" + }, + { + "path": "webp/pg-back-web.webp", + "mode": "100644", + "type": "blob", + "sha": "631ddaa20079c8c027f64ca47e62fed5d2bb930a", + "size": 79008, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/631ddaa20079c8c027f64ca47e62fed5d2bb930a" + }, + { + "path": "webp/pgadmin.webp", + "mode": "100644", + "type": "blob", + "sha": "2bd82d2e817c69b718a35e69dba98830d227bd8d", + "size": 67766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bd82d2e817c69b718a35e69dba98830d227bd8d" + }, + { + "path": "webp/pgbackweb-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "b8403d6a0f901ac43f7b9dc7b2a879433b73fa9b", + "size": 16956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b8403d6a0f901ac43f7b9dc7b2a879433b73fa9b" + }, + { + "path": "webp/pgbackweb-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ba752cb02f57676b7918f8c088edbbd795284723", + "size": 16962, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba752cb02f57676b7918f8c088edbbd795284723" + }, + { + "path": "webp/phanpy.webp", + "mode": "100644", + "type": "blob", + "sha": "494803d4d08b4d2bca5e74818376ae749c9d65c2", + "size": 41164, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/494803d4d08b4d2bca5e74818376ae749c9d65c2" + }, + { + "path": "webp/phantombot.webp", + "mode": "100644", + "type": "blob", + "sha": "48bc57890976bb3cca8fa43af8f817cee445a637", + "size": 35746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48bc57890976bb3cca8fa43af8f817cee445a637" + }, + { + "path": "webp/phase-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "b6b50b08317b4f89c83e585f80bcd91fe699f080", + "size": 6514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b6b50b08317b4f89c83e585f80bcd91fe699f080" + }, + { + "path": "webp/phase.webp", + "mode": "100644", + "type": "blob", + "sha": "36df1c5986ebce7cd344248791dd3b20489af2f3", + "size": 6510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36df1c5986ebce7cd344248791dd3b20489af2f3" + }, + { + "path": "webp/phoneinfoga-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c08bdf195be4f4e1f64ad504086ebebb5f1cf680", + "size": 15724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c08bdf195be4f4e1f64ad504086ebebb5f1cf680" + }, + { + "path": "webp/phoneinfoga.webp", + "mode": "100644", + "type": "blob", + "sha": "683461f8366aa98a24d3b87765f086fae369f281", + "size": 15720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/683461f8366aa98a24d3b87765f086fae369f281" + }, + { + "path": "webp/phorge-light.webp", + "mode": "100644", + "type": "blob", + "sha": "eb71ebca8b58d09a76f7b8c5ad2096ec8c65ab92", + "size": 5326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb71ebca8b58d09a76f7b8c5ad2096ec8c65ab92" + }, + { + "path": "webp/phorge.webp", + "mode": "100644", + "type": "blob", + "sha": "7df654c569712daf836efa17261f3575dc11d4a6", + "size": 5320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7df654c569712daf836efa17261f3575dc11d4a6" + }, + { + "path": "webp/phoscon-light.webp", + "mode": "100644", + "type": "blob", + "sha": "543881cad1b0d4a1c072446dd6f5af2b6656525d", + "size": 5538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/543881cad1b0d4a1c072446dd6f5af2b6656525d" + }, + { + "path": "webp/phoscon.webp", + "mode": "100644", + "type": "blob", + "sha": "d75ae3b20c4c04599e35cc6386539f55eff73deb", + "size": 5532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d75ae3b20c4c04599e35cc6386539f55eff73deb" + }, + { + "path": "webp/photonix-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3b5eaeced06a601560f6b5c8190fb04998040253", + "size": 7870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b5eaeced06a601560f6b5c8190fb04998040253" + }, + { + "path": "webp/photonix.webp", + "mode": "100644", + "type": "blob", + "sha": "50eb6e434164eb3dbed62a63e02299e834ae36b9", + "size": 7228, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50eb6e434164eb3dbed62a63e02299e834ae36b9" + }, + { + "path": "webp/photopea.webp", + "mode": "100644", + "type": "blob", + "sha": "c270eea870f0ef652ac5ada5b12d3f20a6a27cc5", + "size": 21088, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c270eea870f0ef652ac5ada5b12d3f20a6a27cc5" + }, + { + "path": "webp/photoprism-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a2dca2205b1a817cecadb8b836ca708aca54f1ef", + "size": 51084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2dca2205b1a817cecadb8b836ca708aca54f1ef" + }, + { + "path": "webp/photoprism.webp", + "mode": "100644", + "type": "blob", + "sha": "d6eccf0904777752d04811078a824f70e659cd86", + "size": 62308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6eccf0904777752d04811078a824f70e659cd86" + }, + { + "path": "webp/photostructure-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "a1724c4c1352095f7dd2fd03770095b2031079e2", + "size": 56302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a1724c4c1352095f7dd2fd03770095b2031079e2" + }, + { + "path": "webp/photostructure.webp", + "mode": "100644", + "type": "blob", + "sha": "9b0f89fcd0411bc76006ebd0595c773a293ad895", + "size": 53894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b0f89fcd0411bc76006ebd0595c773a293ad895" + }, + { + "path": "webp/photoview.webp", + "mode": "100644", + "type": "blob", + "sha": "6e331f58e31cdfd05df56f941f9f7c8fb4ba5d36", + "size": 26284, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e331f58e31cdfd05df56f941f9f7c8fb4ba5d36" + }, + { + "path": "webp/php-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ed9502d7225b849f85ec7cf25bfcce0aa203fb1d", + "size": 70806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed9502d7225b849f85ec7cf25bfcce0aa203fb1d" + }, + { + "path": "webp/php.webp", + "mode": "100644", + "type": "blob", + "sha": "75912d7cfe643addcf89632e31981814aad7680d", + "size": 83280, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/75912d7cfe643addcf89632e31981814aad7680d" + }, + { + "path": "webp/phpipam.webp", + "mode": "100644", + "type": "blob", + "sha": "9824404624c8876baa25d36f2a6b18f6f1103fc6", + "size": 25058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9824404624c8876baa25d36f2a6b18f6f1103fc6" + }, + { + "path": "webp/phpldapadmin.webp", + "mode": "100644", + "type": "blob", + "sha": "e055c718751b72f1a3b26d3d36369c2ef477e2d0", + "size": 56252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e055c718751b72f1a3b26d3d36369c2ef477e2d0" + }, + { + "path": "webp/phpmyadmin.webp", + "mode": "100644", + "type": "blob", + "sha": "af1fcd341837addef0c4b2c9e548eb38b8ded89b", + "size": 107316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af1fcd341837addef0c4b2c9e548eb38b8ded89b" + }, + { + "path": "webp/pi-alert.webp", + "mode": "100644", + "type": "blob", + "sha": "3958835ad3a21eaa9a3692b3a39bab84dac1e246", + "size": 34834, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3958835ad3a21eaa9a3692b3a39bab84dac1e246" + }, + { + "path": "webp/pi-hole-unbound.webp", + "mode": "100644", + "type": "blob", + "sha": "44eb03cdfe67163d5b119bf8a567ff3da615abc6", + "size": 53968, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44eb03cdfe67163d5b119bf8a567ff3da615abc6" + }, + { + "path": "webp/pi-hole.webp", + "mode": "100644", + "type": "blob", + "sha": "5e9a55ef05d303a3ec5f832b8581e9d18ec7c283", + "size": 35458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e9a55ef05d303a3ec5f832b8581e9d18ec7c283" + }, + { + "path": "webp/pia.webp", + "mode": "100644", + "type": "blob", + "sha": "a9b11a514ca6e5a7b396071b9c95faabc6fc6731", + "size": 36334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9b11a514ca6e5a7b396071b9c95faabc6fc6731" + }, + { + "path": "webp/piaware.webp", + "mode": "100644", + "type": "blob", + "sha": "fe15917b472aa486ea23cb69022c98f04939ee19", + "size": 24064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe15917b472aa486ea23cb69022c98f04939ee19" + }, + { + "path": "webp/picsur-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c299521ba16c2ca0f57499b835a1e2e589f91c42", + "size": 13844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c299521ba16c2ca0f57499b835a1e2e589f91c42" + }, + { + "path": "webp/picsur.webp", + "mode": "100644", + "type": "blob", + "sha": "e52ceedf3e243e403c0848c98e5506334b9a953d", + "size": 15018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e52ceedf3e243e403c0848c98e5506334b9a953d" + }, + { + "path": "webp/pigallery2-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "a7f5fb6868403f409ef53c91e6ca1a6b61a7314a", + "size": 10524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a7f5fb6868403f409ef53c91e6ca1a6b61a7314a" + }, + { + "path": "webp/pigallery2.webp", + "mode": "100644", + "type": "blob", + "sha": "f6cde701bb8f1832e7bca2fb65118d137af5d919", + "size": 10520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6cde701bb8f1832e7bca2fb65118d137af5d919" + }, + { + "path": "webp/pikapods.webp", + "mode": "100644", + "type": "blob", + "sha": "e3897686ac43fe56bdfab119597c1d50cd4bcc9d", + "size": 36522, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e3897686ac43fe56bdfab119597c1d50cd4bcc9d" + }, + { + "path": "webp/pikvm-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2dbdca5422b37279abb20977bfe16f381de127ed", + "size": 6726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dbdca5422b37279abb20977bfe16f381de127ed" + }, + { + "path": "webp/pikvm.webp", + "mode": "100644", + "type": "blob", + "sha": "6b1509335d8733196d397515ff96b37935560246", + "size": 6722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b1509335d8733196d397515ff96b37935560246" + }, + { + "path": "webp/pinchflat.webp", + "mode": "100644", + "type": "blob", + "sha": "acd886a2e836f7dc8798d6e08d35a41450351377", + "size": 83938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acd886a2e836f7dc8798d6e08d35a41450351377" + }, + { + "path": "webp/pinepods.webp", + "mode": "100644", + "type": "blob", + "sha": "7a17dffdaa84bc02d177900e842c4ce7ca946ec6", + "size": 37940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a17dffdaa84bc02d177900e842c4ce7ca946ec6" + }, + { + "path": "webp/pingdom-light.webp", + "mode": "100644", + "type": "blob", + "sha": "cbd8b4681b33a928c19c9626676ebed26eb2d232", + "size": 19408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cbd8b4681b33a928c19c9626676ebed26eb2d232" + }, + { + "path": "webp/pingdom.webp", + "mode": "100644", + "type": "blob", + "sha": "0a5e6cfdc2fb6f00a51e196461846e3414148b89", + "size": 22894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0a5e6cfdc2fb6f00a51e196461846e3414148b89" + }, + { + "path": "webp/pingvin-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e6d6c0d1de24d2ad5ebc2438d9ca0df0cb2063a2", + "size": 27732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6d6c0d1de24d2ad5ebc2438d9ca0df0cb2063a2" + }, + { + "path": "webp/pingvin-share-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e6d6c0d1de24d2ad5ebc2438d9ca0df0cb2063a2", + "size": 27732, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6d6c0d1de24d2ad5ebc2438d9ca0df0cb2063a2" + }, + { + "path": "webp/pingvin-share.webp", + "mode": "100644", + "type": "blob", + "sha": "fea152fa99b00ef54c9f507ab08a2e60a7ecb369", + "size": 30076, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fea152fa99b00ef54c9f507ab08a2e60a7ecb369" + }, + { + "path": "webp/pingvin.webp", + "mode": "100644", + "type": "blob", + "sha": "3a6bb39ebb259d0687b6458b9e36900e189dbd3d", + "size": 29520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a6bb39ebb259d0687b6458b9e36900e189dbd3d" + }, + { + "path": "webp/pinkary.webp", + "mode": "100644", + "type": "blob", + "sha": "6db00c2d7624cd35d7386e8a20bc5ac90a2a6fcc", + "size": 35462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6db00c2d7624cd35d7386e8a20bc5ac90a2a6fcc" + }, + { + "path": "webp/pinry.webp", + "mode": "100644", + "type": "blob", + "sha": "e62abbd7eb1e241c73e4dc1f2d3dccd893051ce4", + "size": 5300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e62abbd7eb1e241c73e4dc1f2d3dccd893051ce4" + }, + { + "path": "webp/pinterest.webp", + "mode": "100644", + "type": "blob", + "sha": "81b79ff02eadd4cc02257b3cf1ae01a123372c1d", + "size": 63416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81b79ff02eadd4cc02257b3cf1ae01a123372c1d" + }, + { + "path": "webp/pioneer-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d8138eb02e9090446a05359e6840e4415db20fb4", + "size": 8002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d8138eb02e9090446a05359e6840e4415db20fb4" + }, + { + "path": "webp/pioneer.webp", + "mode": "100644", + "type": "blob", + "sha": "7ce4e6cd5b196436ff9311caee02162cdb2ea7ea", + "size": 10322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ce4e6cd5b196436ff9311caee02162cdb2ea7ea" + }, + { + "path": "webp/piped.webp", + "mode": "100644", + "type": "blob", + "sha": "22bbfd7a5469eb6260530114d01234f84ef963a0", + "size": 27302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22bbfd7a5469eb6260530114d01234f84ef963a0" + }, + { + "path": "webp/pirate-proxy.webp", + "mode": "100644", + "type": "blob", + "sha": "ddd50fbe19313c94ef7ff95125c040c30a9f424d", + "size": 112184, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ddd50fbe19313c94ef7ff95125c040c30a9f424d" + }, + { + "path": "webp/pivpn.webp", + "mode": "100644", + "type": "blob", + "sha": "558a0ed2b5c0fe4321c1bc0fad01d7e679f7a29c", + "size": 103244, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/558a0ed2b5c0fe4321c1bc0fad01d7e679f7a29c" + }, + { + "path": "webp/piwigo.webp", + "mode": "100644", + "type": "blob", + "sha": "c97ffcf60cd2b89b384f70507f3c3e9d3cc5743f", + "size": 32294, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c97ffcf60cd2b89b384f70507f3c3e9d3cc5743f" + }, + { + "path": "webp/pixelfed.webp", + "mode": "100644", + "type": "blob", + "sha": "57a9c49675957eaa688bcea8475a6643233ab713", + "size": 85270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57a9c49675957eaa688bcea8475a6643233ab713" + }, + { + "path": "webp/plane.webp", + "mode": "100644", + "type": "blob", + "sha": "b4515dd6eef1561630ad0edbc90202dbff08e12e", + "size": 2038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b4515dd6eef1561630ad0edbc90202dbff08e12e" + }, + { + "path": "webp/planka-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "da92480942f4bf4b6086aa8c0d7c5ae6d8611795", + "size": 15108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da92480942f4bf4b6086aa8c0d7c5ae6d8611795" + }, + { + "path": "webp/planka.webp", + "mode": "100644", + "type": "blob", + "sha": "e17b80f035265c9c3aa20dee8b64f4aafd388ab2", + "size": 15188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e17b80f035265c9c3aa20dee8b64f4aafd388ab2" + }, + { + "path": "webp/plant-it.webp", + "mode": "100644", + "type": "blob", + "sha": "a0378586b83a2b2e37ab2f97d8c1f505ed5e4ac2", + "size": 41876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0378586b83a2b2e37ab2f97d8c1f505ed5e4ac2" + }, + { + "path": "webp/plantuml.webp", + "mode": "100644", + "type": "blob", + "sha": "42cf330d13db8d211d43369456ec99b671e00827", + "size": 51288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42cf330d13db8d211d43369456ec99b671e00827" + }, + { + "path": "webp/platzi.webp", + "mode": "100644", + "type": "blob", + "sha": "a08d52fcbcdb662f9f6cbd294d62a52894e4fed3", + "size": 14898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a08d52fcbcdb662f9f6cbd294d62a52894e4fed3" + }, + { + "path": "webp/plausible.webp", + "mode": "100644", + "type": "blob", + "sha": "6c8a6e65e3a95549ee1162ee5e1b4fbdf6cb4828", + "size": 31382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6c8a6e65e3a95549ee1162ee5e1b4fbdf6cb4828" + }, + { + "path": "webp/playstation.webp", + "mode": "100644", + "type": "blob", + "sha": "a68b2e2801bd099057af1e4174cd3ed5c5c2ac12", + "size": 35970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a68b2e2801bd099057af1e4174cd3ed5c5c2ac12" + }, + { + "path": "webp/pleroma.webp", + "mode": "100644", + "type": "blob", + "sha": "852006356603c8b02febbd539708bc35417cfefd", + "size": 1934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/852006356603c8b02febbd539708bc35417cfefd" + }, + { + "path": "webp/plesk.webp", + "mode": "100644", + "type": "blob", + "sha": "284124be7d7448893ef15e2788b4a9cac445a45a", + "size": 11186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/284124be7d7448893ef15e2788b4a9cac445a45a" + }, + { + "path": "webp/plex-alt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0858eb9df88ebed3c5960ee318859d70f5fa994d", + "size": 19132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0858eb9df88ebed3c5960ee318859d70f5fa994d" + }, + { + "path": "webp/plex-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "deffa38b0fc403db35c416f15a00591dc620839d", + "size": 17868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/deffa38b0fc403db35c416f15a00591dc620839d" + }, + { + "path": "webp/plex-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fe9b3a342011f609ed84e9661a3da596e3d38206", + "size": 20028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe9b3a342011f609ed84e9661a3da596e3d38206" + }, + { + "path": "webp/plex-meta-manager-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3a767d732a1c29657d3e5d95f7314ae9539b3a11", + "size": 4794, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a767d732a1c29657d3e5d95f7314ae9539b3a11" + }, + { + "path": "webp/plex-meta-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "4c0351fa9492e99fc59e2138be8530140b625282", + "size": 9780, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4c0351fa9492e99fc59e2138be8530140b625282" + }, + { + "path": "webp/plex-rewind.webp", + "mode": "100644", + "type": "blob", + "sha": "7e08aa0db709b3ffffb3853f81094561dba3edcf", + "size": 14870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e08aa0db709b3ffffb3853f81094561dba3edcf" + }, + { + "path": "webp/plex.webp", + "mode": "100644", + "type": "blob", + "sha": "38dcd54c936e6d926f436a23e0b2c057b4518840", + "size": 23690, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38dcd54c936e6d926f436a23e0b2c057b4518840" + }, + { + "path": "webp/plexdrive.webp", + "mode": "100644", + "type": "blob", + "sha": "24ea7802c33a25e85ae1e36f828c3d16de2a4e5a", + "size": 8628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24ea7802c33a25e85ae1e36f828c3d16de2a4e5a" + }, + { + "path": "webp/plexrequests-light.webp", + "mode": "100644", + "type": "blob", + "sha": "de082b3809125616ae89e744b9fd2bb58b198412", + "size": 24172, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de082b3809125616ae89e744b9fd2bb58b198412" + }, + { + "path": "webp/plexrequests.webp", + "mode": "100644", + "type": "blob", + "sha": "ee18cb542105610a101e27f2d79aea9087c8c0a3", + "size": 23966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee18cb542105610a101e27f2d79aea9087c8c0a3" + }, + { + "path": "webp/plexripper.webp", + "mode": "100644", + "type": "blob", + "sha": "66c137518b0fcb7517d679dcfa1894e7110a8c1b", + "size": 196672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66c137518b0fcb7517d679dcfa1894e7110a8c1b" + }, + { + "path": "webp/plume.webp", + "mode": "100644", + "type": "blob", + "sha": "1a57f05a7fd28e6be0bc093ef7dd5d69a9b917c6", + "size": 28112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a57f05a7fd28e6be0bc093ef7dd5d69a9b917c6" + }, + { + "path": "webp/pluralsight.webp", + "mode": "100644", + "type": "blob", + "sha": "b27b87d44177b49359dc4c697cb175b9e444bed0", + "size": 60250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b27b87d44177b49359dc4c697cb175b9e444bed0" + }, + { + "path": "webp/pocket-casts-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "9f1ed45b73cdd7692d79e84794a97a1f23772298", + "size": 58494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9f1ed45b73cdd7692d79e84794a97a1f23772298" + }, + { + "path": "webp/pocket-casts.webp", + "mode": "100644", + "type": "blob", + "sha": "fa01578d2259427a6693f8d34dee4fb2a125138f", + "size": 60160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa01578d2259427a6693f8d34dee4fb2a125138f" + }, + { + "path": "webp/pocket-id-light.webp", + "mode": "100644", + "type": "blob", + "sha": "526b847791a725fbaf7cae51258dc821b79f06ea", + "size": 8360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/526b847791a725fbaf7cae51258dc821b79f06ea" + }, + { + "path": "webp/pocket-id.webp", + "mode": "100644", + "type": "blob", + "sha": "41ca554111c2b7206e37b586c5c763aef0171d57", + "size": 8168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41ca554111c2b7206e37b586c5c763aef0171d57" + }, + { + "path": "webp/pocketbase-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "d6b2020cc852434e866ef52fa4297e5685a9def9", + "size": 7312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6b2020cc852434e866ef52fa4297e5685a9def9" + }, + { + "path": "webp/pocketbase.webp", + "mode": "100644", + "type": "blob", + "sha": "cdc131fb8bf65569a580d3b7027d82b7c83120cd", + "size": 9728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdc131fb8bf65569a580d3b7027d82b7c83120cd" + }, + { + "path": "webp/podfetch-light.webp", + "mode": "100644", + "type": "blob", + "sha": "14328b4df23613c3cdac38f1767c90111820645f", + "size": 10056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/14328b4df23613c3cdac38f1767c90111820645f" + }, + { + "path": "webp/podfetch.webp", + "mode": "100644", + "type": "blob", + "sha": "4f5c1070a251ce489bcdeaf30048c0929454a278", + "size": 8188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f5c1070a251ce489bcdeaf30048c0929454a278" + }, + { + "path": "webp/podgrab.webp", + "mode": "100644", + "type": "blob", + "sha": "d5e1b0725bd345e4d0a38aa622bec16d8d590e03", + "size": 27966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5e1b0725bd345e4d0a38aa622bec16d8d590e03" + }, + { + "path": "webp/podify.webp", + "mode": "100644", + "type": "blob", + "sha": "7c502cda52b8082e06c73d7290832cbd9ad9689a", + "size": 30016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c502cda52b8082e06c73d7290832cbd9ad9689a" + }, + { + "path": "webp/podman.webp", + "mode": "100644", + "type": "blob", + "sha": "5018b9951a52c5f8d422c8410c766e0596ff6a4d", + "size": 83388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5018b9951a52c5f8d422c8410c766e0596ff6a4d" + }, + { + "path": "webp/podnapisi.webp", + "mode": "100644", + "type": "blob", + "sha": "59b7ac26e0a1b20ab72edfaaadb79dbf3858ef93", + "size": 18960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59b7ac26e0a1b20ab72edfaaadb79dbf3858ef93" + }, + { + "path": "webp/policycontroller.webp", + "mode": "100644", + "type": "blob", + "sha": "b5aa59b192404883f3f4d9a67dc02353d0e56c24", + "size": 86330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5aa59b192404883f3f4d9a67dc02353d0e56c24" + }, + { + "path": "webp/poly.webp", + "mode": "100644", + "type": "blob", + "sha": "50afc8b4b1a6e9b2dad49b4fca787371c168a2e1", + "size": 15776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50afc8b4b1a6e9b2dad49b4fca787371c168a2e1" + }, + { + "path": "webp/polywork.webp", + "mode": "100644", + "type": "blob", + "sha": "e70b5c68818f9347faf100d827df63a797cdd9ef", + "size": 24402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e70b5c68818f9347faf100d827df63a797cdd9ef" + }, + { + "path": "webp/porkbun.webp", + "mode": "100644", + "type": "blob", + "sha": "094ef03c9c9b665dc3c08fc8d364d6e4daf27be1", + "size": 31540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/094ef03c9c9b665dc3c08fc8d364d6e4daf27be1" + }, + { + "path": "webp/port-note.webp", + "mode": "100644", + "type": "blob", + "sha": "0574692d86a452f9635cc7573ca0ed1108b6fd17", + "size": 13770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0574692d86a452f9635cc7573ca0ed1108b6fd17" + }, + { + "path": "webp/portainer-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "74f2a8263c9690d7338b50f0b089b1b848f8f575", + "size": 47686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74f2a8263c9690d7338b50f0b089b1b848f8f575" + }, + { + "path": "webp/portainer-be-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "861ef5f8d2b5995ede7ae93935c81c99511fb480", + "size": 3588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/861ef5f8d2b5995ede7ae93935c81c99511fb480" + }, + { + "path": "webp/portainer-be.webp", + "mode": "100644", + "type": "blob", + "sha": "01d189fbeeb0e3c39d4bcb844cee93bf3ba0bd58", + "size": 2504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01d189fbeeb0e3c39d4bcb844cee93bf3ba0bd58" + }, + { + "path": "webp/portainer-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "f2879d8722bc426aa9517e69012cd903570f4e71", + "size": 3530, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2879d8722bc426aa9517e69012cd903570f4e71" + }, + { + "path": "webp/portainer.webp", + "mode": "100644", + "type": "blob", + "sha": "f245164438b520ec21b4a512ef68cb2cf18f39f9", + "size": 2818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f245164438b520ec21b4a512ef68cb2cf18f39f9" + }, + { + "path": "webp/portracker-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "fff55261a445a7071e6922f7e9f07bc21666dc5e", + "size": 10700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fff55261a445a7071e6922f7e9f07bc21666dc5e" + }, + { + "path": "webp/portracker.webp", + "mode": "100644", + "type": "blob", + "sha": "f23c529314cc62f492460b8ffc2dab431b419341", + "size": 10694, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f23c529314cc62f492460b8ffc2dab431b419341" + }, + { + "path": "webp/portus.webp", + "mode": "100644", + "type": "blob", + "sha": "a4405fc12baf2ba87791eb6ee3dde5597c672e48", + "size": 44384, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4405fc12baf2ba87791eb6ee3dde5597c672e48" + }, + { + "path": "webp/postal.webp", + "mode": "100644", + "type": "blob", + "sha": "78b92d70047c131de2e2ba74552a965542b8ead3", + "size": 15992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78b92d70047c131de2e2ba74552a965542b8ead3" + }, + { + "path": "webp/poste.webp", + "mode": "100644", + "type": "blob", + "sha": "95d2263d1a64b5540ef77bc599b8904d361e7647", + "size": 28260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/95d2263d1a64b5540ef77bc599b8904d361e7647" + }, + { + "path": "webp/posterizarr.webp", + "mode": "100644", + "type": "blob", + "sha": "67aabe28d441fc58c2e4e11e511a15682fa8b69d", + "size": 48450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67aabe28d441fc58c2e4e11e511a15682fa8b69d" + }, + { + "path": "webp/postgres.webp", + "mode": "100644", + "type": "blob", + "sha": "2bd82d2e817c69b718a35e69dba98830d227bd8d", + "size": 67766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bd82d2e817c69b718a35e69dba98830d227bd8d" + }, + { + "path": "webp/postgresql.webp", + "mode": "100644", + "type": "blob", + "sha": "e012f6f576e20fcfbfa6791662c4d2fa78a135b2", + "size": 67966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e012f6f576e20fcfbfa6791662c4d2fa78a135b2" + }, + { + "path": "webp/postgresus.webp", + "mode": "100644", + "type": "blob", + "sha": "7f7eacafe1668a004c701bda86a21ac93fe95eda", + "size": 55494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f7eacafe1668a004c701bda86a21ac93fe95eda" + }, + { + "path": "webp/posthog-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6bf6fc14008e16c1867cffaacf3282f0a1c48903", + "size": 45464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bf6fc14008e16c1867cffaacf3282f0a1c48903" + }, + { + "path": "webp/posthog.webp", + "mode": "100644", + "type": "blob", + "sha": "3417a29349a21a97cf9e710afd90a0de22b7e2ef", + "size": 45830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3417a29349a21a97cf9e710afd90a0de22b7e2ef" + }, + { + "path": "webp/postiz-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "695e7eb1a57fb3d54d60463f14b25ac6b23dc053", + "size": 24860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/695e7eb1a57fb3d54d60463f14b25ac6b23dc053" + }, + { + "path": "webp/postiz.webp", + "mode": "100644", + "type": "blob", + "sha": "8d36ce1b518cab6688e8479b2e25473c7ea067b4", + "size": 33858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d36ce1b518cab6688e8479b2e25473c7ea067b4" + }, + { + "path": "webp/powerbi.webp", + "mode": "100644", + "type": "blob", + "sha": "9d12a0bcee010065e0135cd0f08700343e9a3976", + "size": 12654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d12a0bcee010065e0135cd0f08700343e9a3976" + }, + { + "path": "webp/powerdns.webp", + "mode": "100644", + "type": "blob", + "sha": "8b783fdc12c0ea7c057956cc153b9bf8542d7675", + "size": 45686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b783fdc12c0ea7c057956cc153b9bf8542d7675" + }, + { + "path": "webp/powerpanel.webp", + "mode": "100644", + "type": "blob", + "sha": "ccc1d9b46908ea857f84e810d3d89465682c881a", + "size": 18624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ccc1d9b46908ea857f84e810d3d89465682c881a" + }, + { + "path": "webp/premium-mobile.webp", + "mode": "100644", + "type": "blob", + "sha": "aac5ce53a4173b67f3017faaa6c3346f66e99430", + "size": 5040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aac5ce53a4173b67f3017faaa6c3346f66e99430" + }, + { + "path": "webp/premiumize.webp", + "mode": "100644", + "type": "blob", + "sha": "777d16d39c2df6587e5d21919e6b1143523c4c0f", + "size": 24332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/777d16d39c2df6587e5d21919e6b1143523c4c0f" + }, + { + "path": "webp/pretix.webp", + "mode": "100644", + "type": "blob", + "sha": "86538e45335a985c2dc66e8ba3cc27dda92be08a", + "size": 13608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86538e45335a985c2dc66e8ba3cc27dda92be08a" + }, + { + "path": "webp/price-buddy.webp", + "mode": "100644", + "type": "blob", + "sha": "d1b6ec355b2e22de7158a7f3e179e3daa75033f5", + "size": 32512, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1b6ec355b2e22de7158a7f3e179e3daa75033f5" + }, + { + "path": "webp/primal.webp", + "mode": "100644", + "type": "blob", + "sha": "a3c84ab6904147b9a03fa6b93d1b73b0f4ff6efd", + "size": 59346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3c84ab6904147b9a03fa6b93d1b73b0f4ff6efd" + }, + { + "path": "webp/prime-video-alt-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e141c18199a7ac806a27b538b8d61e763f20764f", + "size": 10420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e141c18199a7ac806a27b538b8d61e763f20764f" + }, + { + "path": "webp/prime-video-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "d1fd3fffc05c26d44b4053c90f23a2ceeb7f6d20", + "size": 10414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1fd3fffc05c26d44b4053c90f23a2ceeb7f6d20" + }, + { + "path": "webp/prime-video-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ce01cd067605a721bfae7a1541b4e2706721e028", + "size": 57456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce01cd067605a721bfae7a1541b4e2706721e028" + }, + { + "path": "webp/prime-video.webp", + "mode": "100644", + "type": "blob", + "sha": "36a2f3e494ebb022b89ab6d0115f5be1a79115aa", + "size": 69588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36a2f3e494ebb022b89ab6d0115f5be1a79115aa" + }, + { + "path": "webp/printables.webp", + "mode": "100644", + "type": "blob", + "sha": "63cfba16d6cf2980791d4e2fcd8e962cba553157", + "size": 11452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63cfba16d6cf2980791d4e2fcd8e962cba553157" + }, + { + "path": "webp/printer.webp", + "mode": "100644", + "type": "blob", + "sha": "6f9d353e0a575536460afef9d5f71dd73245fab8", + "size": 22462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f9d353e0a575536460afef9d5f71dd73245fab8" + }, + { + "path": "webp/pritunl.webp", + "mode": "100644", + "type": "blob", + "sha": "61f936abc9dc285fa332dcaf0cd852a693debdfd", + "size": 19312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61f936abc9dc285fa332dcaf0cd852a693debdfd" + }, + { + "path": "webp/privacyidea.webp", + "mode": "100644", + "type": "blob", + "sha": "21d1985067c366b53c4d4b25a3ba99ab228743f6", + "size": 41958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/21d1985067c366b53c4d4b25a3ba99ab228743f6" + }, + { + "path": "webp/private-internet-access.webp", + "mode": "100644", + "type": "blob", + "sha": "e51ac5b39133845e7665fe06b1260a4669fb075d", + "size": 29558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e51ac5b39133845e7665fe06b1260a4669fb075d" + }, + { + "path": "webp/privatebin.webp", + "mode": "100644", + "type": "blob", + "sha": "25cb1bc60b4a3710de8443e5a7c3d854f0fdf82b", + "size": 38952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25cb1bc60b4a3710de8443e5a7c3d854f0fdf82b" + }, + { + "path": "webp/profilarr.webp", + "mode": "100644", + "type": "blob", + "sha": "3ad8e9d7ebd81bc4a95acc89ac01c42bdcc35e4a", + "size": 19540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ad8e9d7ebd81bc4a95acc89ac01c42bdcc35e4a" + }, + { + "path": "webp/projection-lab.webp", + "mode": "100644", + "type": "blob", + "sha": "e9d869b056ee5439f21ee8759cb1c492ff81fbf2", + "size": 36942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9d869b056ee5439f21ee8759cb1c492ff81fbf2" + }, + { + "path": "webp/projectsend.webp", + "mode": "100644", + "type": "blob", + "sha": "73a2d7cb73a6f83d50b1e014508d7afe632bd70b", + "size": 33040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73a2d7cb73a6f83d50b1e014508d7afe632bd70b" + }, + { + "path": "webp/prometheus.webp", + "mode": "100644", + "type": "blob", + "sha": "59c2b65a562a14bf14ad59e932fbd73f46f538a5", + "size": 29766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59c2b65a562a14bf14ad59e932fbd73f46f538a5" + }, + { + "path": "webp/proton-calendar.webp", + "mode": "100644", + "type": "blob", + "sha": "5a93ec09bd401628abb44f442aad834b55538d34", + "size": 29714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a93ec09bd401628abb44f442aad834b55538d34" + }, + { + "path": "webp/proton-docs.webp", + "mode": "100644", + "type": "blob", + "sha": "b2c907bfe45ae969dc83bf21ca55b9af54214c5a", + "size": 22990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b2c907bfe45ae969dc83bf21ca55b9af54214c5a" + }, + { + "path": "webp/proton-drive.webp", + "mode": "100644", + "type": "blob", + "sha": "cd7d890c1a7e4afd57522536adb4128cfe76e78c", + "size": 30160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd7d890c1a7e4afd57522536adb4128cfe76e78c" + }, + { + "path": "webp/proton-lumo.webp", + "mode": "100644", + "type": "blob", + "sha": "d331c3de0ba3d37f23d35cd1922d102102155920", + "size": 55124, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d331c3de0ba3d37f23d35cd1922d102102155920" + }, + { + "path": "webp/proton-mail.webp", + "mode": "100644", + "type": "blob", + "sha": "f3e20ab13c32a01c9da07ba40600ae98366f0715", + "size": 25348, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3e20ab13c32a01c9da07ba40600ae98366f0715" + }, + { + "path": "webp/proton-pass.webp", + "mode": "100644", + "type": "blob", + "sha": "b7e20ce84269ce6b44c78b11bcf73452f8ee8504", + "size": 49612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7e20ce84269ce6b44c78b11bcf73452f8ee8504" + }, + { + "path": "webp/proton-vpn.webp", + "mode": "100644", + "type": "blob", + "sha": "f0c4d1acf907feba2610f5d67efb3e2791d8268c", + "size": 39062, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f0c4d1acf907feba2610f5d67efb3e2791d8268c" + }, + { + "path": "webp/proton-wallet.webp", + "mode": "100644", + "type": "blob", + "sha": "2544595119cb7740794956bc2ec0b664863f9daf", + "size": 66680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2544595119cb7740794956bc2ec0b664863f9daf" + }, + { + "path": "webp/prowlarr.webp", + "mode": "100644", + "type": "blob", + "sha": "964f18bd47b61c338c0057150dcc742c7c4fb657", + "size": 99960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/964f18bd47b61c338c0057150dcc742c7c4fb657" + }, + { + "path": "webp/proxmox-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b0ef8639752572720671fa6b1da484ffbff662d5", + "size": 30124, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0ef8639752572720671fa6b1da484ffbff662d5" + }, + { + "path": "webp/proxmox.webp", + "mode": "100644", + "type": "blob", + "sha": "15d02eb99c1a8b5bdc69a0e66494e91d8af5dc81", + "size": 29358, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15d02eb99c1a8b5bdc69a0e66494e91d8af5dc81" + }, + { + "path": "webp/prtg.webp", + "mode": "100644", + "type": "blob", + "sha": "64d23274655d8d9e96a2217c6cb526676c6d74d5", + "size": 36108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64d23274655d8d9e96a2217c6cb526676c6d74d5" + }, + { + "path": "webp/prusa-research.webp", + "mode": "100644", + "type": "blob", + "sha": "91f563807cffbc8146cded4a112f972a74739fe9", + "size": 15832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91f563807cffbc8146cded4a112f972a74739fe9" + }, + { + "path": "webp/psitransfer.webp", + "mode": "100644", + "type": "blob", + "sha": "c4645b3db6cb9a7f8004a3ef1adebb0283f3c632", + "size": 2368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4645b3db6cb9a7f8004a3ef1adebb0283f3c632" + }, + { + "path": "webp/pterodactyl.webp", + "mode": "100644", + "type": "blob", + "sha": "54c0318fe0570b88d80948af80987754e237588f", + "size": 55588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54c0318fe0570b88d80948af80987754e237588f" + }, + { + "path": "webp/public-pool.webp", + "mode": "100644", + "type": "blob", + "sha": "0cd1a815a1fe69ff8398ba29f7af6e710bdde44c", + "size": 146654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0cd1a815a1fe69ff8398ba29f7af6e710bdde44c" + }, + { + "path": "webp/pufferpanel.webp", + "mode": "100644", + "type": "blob", + "sha": "4747ae04f9836439b203243076099b45d49b0f01", + "size": 33310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4747ae04f9836439b203243076099b45d49b0f01" + }, + { + "path": "webp/pulsarr.webp", + "mode": "100644", + "type": "blob", + "sha": "bf6c4dcd818d97f6a9a81cc705915bf8de02bed2", + "size": 92026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf6c4dcd818d97f6a9a81cc705915bf8de02bed2" + }, + { + "path": "webp/pulse.webp", + "mode": "100644", + "type": "blob", + "sha": "93da613a8789478f82b7213ef2589ac5956e6b6a", + "size": 28084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93da613a8789478f82b7213ef2589ac5956e6b6a" + }, + { + "path": "webp/purelymail.webp", + "mode": "100644", + "type": "blob", + "sha": "d0c749637bb5053cfedc5176b14314bf8a8204b2", + "size": 68078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0c749637bb5053cfedc5176b14314bf8a8204b2" + }, + { + "path": "webp/pushfish.webp", + "mode": "100644", + "type": "blob", + "sha": "85a11b39fb9d9b08a0b96d122b9ffbf4aaa304d1", + "size": 40142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85a11b39fb9d9b08a0b96d122b9ffbf4aaa304d1" + }, + { + "path": "webp/pushover.webp", + "mode": "100644", + "type": "blob", + "sha": "041eb9b5397b9577daae0d0805ea14e6478d87e8", + "size": 44082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/041eb9b5397b9577daae0d0805ea14e6478d87e8" + }, + { + "path": "webp/putty.webp", + "mode": "100644", + "type": "blob", + "sha": "018bdffa5b4e4bf888d69c14bf4c115db058adc3", + "size": 34226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/018bdffa5b4e4bf888d69c14bf4c115db058adc3" + }, + { + "path": "webp/pve-scripts-local.webp", + "mode": "100644", + "type": "blob", + "sha": "7aa1bdd4d551bb9ee269753704ff50e7d1b163f6", + "size": 81784, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7aa1bdd4d551bb9ee269753704ff50e7d1b163f6" + }, + { + "path": "webp/pwndrop-light.webp", + "mode": "100644", + "type": "blob", + "sha": "7f39859a98b06570519bcc1dbaa759a7cdc2317a", + "size": 26158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f39859a98b06570519bcc1dbaa759a7cdc2317a" + }, + { + "path": "webp/pwndrop.webp", + "mode": "100644", + "type": "blob", + "sha": "38eae8e9e69a370d3e94678128072b248050da61", + "size": 22218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/38eae8e9e69a370d3e94678128072b248050da61" + }, + { + "path": "webp/pwpush-light.webp", + "mode": "100644", + "type": "blob", + "sha": "dcd61810550684b4a8866352562d7ead06b658a5", + "size": 27504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dcd61810550684b4a8866352562d7ead06b658a5" + }, + { + "path": "webp/pwpush.webp", + "mode": "100644", + "type": "blob", + "sha": "b10c69cc6362f21969a6aec4f78a2a5c4828e53d", + "size": 24538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b10c69cc6362f21969a6aec4f78a2a5c4828e53d" + }, + { + "path": "webp/pydio.webp", + "mode": "100644", + "type": "blob", + "sha": "4f1882cf3f986ef72085212fb65fd19ab7b6ddc7", + "size": 36040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f1882cf3f986ef72085212fb65fd19ab7b6ddc7" + }, + { + "path": "webp/pyload.webp", + "mode": "100644", + "type": "blob", + "sha": "947acf3e84da04448fa5d91d14b57c4cad017662", + "size": 40308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/947acf3e84da04448fa5d91d14b57c4cad017662" + }, + { + "path": "webp/python.webp", + "mode": "100644", + "type": "blob", + "sha": "955ad6be80d51f6b06e2df3e0794ff7bfaa4b5a6", + "size": 28022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/955ad6be80d51f6b06e2df3e0794ff7bfaa4b5a6" + }, + { + "path": "webp/qbittorrent.webp", + "mode": "100644", + "type": "blob", + "sha": "774431ebc916f8a7b2fe3d2b7f831abb747578a2", + "size": 71666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/774431ebc916f8a7b2fe3d2b7f831abb747578a2" + }, + { + "path": "webp/qd-today.webp", + "mode": "100644", + "type": "blob", + "sha": "bc16a51b581be8c0e987801a297a8b59006a3e6e", + "size": 39866, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc16a51b581be8c0e987801a297a8b59006a3e6e" + }, + { + "path": "webp/qdirstat.webp", + "mode": "100644", + "type": "blob", + "sha": "5f099589c966f5ad26978cdfe1c0e288129e81b3", + "size": 25096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f099589c966f5ad26978cdfe1c0e288129e81b3" + }, + { + "path": "webp/qdrant.webp", + "mode": "100644", + "type": "blob", + "sha": "2795790f89981b19c18be41e8259fa0bb24a2783", + "size": 37276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2795790f89981b19c18be41e8259fa0bb24a2783" + }, + { + "path": "webp/qinglong.webp", + "mode": "100644", + "type": "blob", + "sha": "c0a592a62161c606daff6c721fc1e87e45c0b98b", + "size": 87686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c0a592a62161c606daff6c721fc1e87e45c0b98b" + }, + { + "path": "webp/qnap.webp", + "mode": "100644", + "type": "blob", + "sha": "d941a82b64c5864657ef30b129b2fc0d81965829", + "size": 25310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d941a82b64c5864657ef30b129b2fc0d81965829" + }, + { + "path": "webp/quant-ux.webp", + "mode": "100644", + "type": "blob", + "sha": "265b5c42d84fa2909b9e2fbabdd0c822b7707c11", + "size": 6580, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/265b5c42d84fa2909b9e2fbabdd0c822b7707c11" + }, + { + "path": "webp/quay.webp", + "mode": "100644", + "type": "blob", + "sha": "a9f58a8bc202b35f663bd197e0d894cfb60e80df", + "size": 62824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9f58a8bc202b35f663bd197e0d894cfb60e80df" + }, + { + "path": "webp/questdb.webp", + "mode": "100644", + "type": "blob", + "sha": "3c9649c93bd243e911420385ec8118af67d24dfa", + "size": 36470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c9649c93bd243e911420385ec8118af67d24dfa" + }, + { + "path": "webp/quetre.webp", + "mode": "100644", + "type": "blob", + "sha": "fd0bc187fa98c20b40e1fa9eb1d7ac97e9edb737", + "size": 28614, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd0bc187fa98c20b40e1fa9eb1d7ac97e9edb737" + }, + { + "path": "webp/qui.webp", + "mode": "100644", + "type": "blob", + "sha": "2b538e14c42d9bab19e076e7b7e0eee632156348", + "size": 13616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b538e14c42d9bab19e076e7b7e0eee632156348" + }, + { + "path": "webp/quickshare.webp", + "mode": "100644", + "type": "blob", + "sha": "70359288e51c7a5c845d60a2b2a5d0191c434d06", + "size": 64240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70359288e51c7a5c845d60a2b2a5d0191c434d06" + }, + { + "path": "webp/quickwit.webp", + "mode": "100644", + "type": "blob", + "sha": "fe91c49c9b96e3e0cdf21a9ddd0954134876057f", + "size": 24772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe91c49c9b96e3e0cdf21a9ddd0954134876057f" + }, + { + "path": "webp/quizlet.webp", + "mode": "100644", + "type": "blob", + "sha": "a2a0403a71465711b69edc55741d51dda432683b", + "size": 51490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a2a0403a71465711b69edc55741d51dda432683b" + }, + { + "path": "webp/qutebrowser.webp", + "mode": "100644", + "type": "blob", + "sha": "d845dcaf7426783d5fdf3d39126c1543201df1f0", + "size": 64060, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d845dcaf7426783d5fdf3d39126c1543201df1f0" + }, + { + "path": "webp/qwen.webp", + "mode": "100644", + "type": "blob", + "sha": "c14b61127860ae42ce66b48679089eda91202df6", + "size": 49504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c14b61127860ae42ce66b48679089eda91202df6" + }, + { + "path": "webp/qwik.webp", + "mode": "100644", + "type": "blob", + "sha": "508e2969b1b4792acb976e4793833930882b990d", + "size": 39776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/508e2969b1b4792acb976e4793833930882b990d" + }, + { + "path": "webp/r.webp", + "mode": "100644", + "type": "blob", + "sha": "a79f220d19f002f16df409632f782d64fa3b55fc", + "size": 29686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a79f220d19f002f16df409632f782d64fa3b55fc" + }, + { + "path": "webp/rabbitmq.webp", + "mode": "100644", + "type": "blob", + "sha": "bb947356295323230186409cb23fdc5fd890b928", + "size": 6000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb947356295323230186409cb23fdc5fd890b928" + }, + { + "path": "webp/racknerd-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "820153fb036f3a01bdd9c61b8f29b3c777f15f2e", + "size": 3218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/820153fb036f3a01bdd9c61b8f29b3c777f15f2e" + }, + { + "path": "webp/racknerd.webp", + "mode": "100644", + "type": "blob", + "sha": "1d93ed5f810d00586ba5246dc0a0ff064e44ebde", + "size": 6540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d93ed5f810d00586ba5246dc0a0ff064e44ebde" + }, + { + "path": "webp/radarr-4k.webp", + "mode": "100644", + "type": "blob", + "sha": "3e484d8a8114aebe9c54b929a4b5e2b270c7ab5c", + "size": 26738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e484d8a8114aebe9c54b929a4b5e2b270c7ab5c" + }, + { + "path": "webp/radarr.webp", + "mode": "100644", + "type": "blob", + "sha": "afc817034626a6359365c2a3952e4ab4119c656c", + "size": 19430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afc817034626a6359365c2a3952e4ab4119c656c" + }, + { + "path": "webp/radicale.webp", + "mode": "100644", + "type": "blob", + "sha": "970745a8e0de8f1e14016b5f351f9c71aee28651", + "size": 29034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/970745a8e0de8f1e14016b5f351f9c71aee28651" + }, + { + "path": "webp/rainloop.webp", + "mode": "100644", + "type": "blob", + "sha": "9c4d8adf88d284d30edfb54aad305ee332a32426", + "size": 9300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c4d8adf88d284d30edfb54aad305ee332a32426" + }, + { + "path": "webp/rallly.webp", + "mode": "100644", + "type": "blob", + "sha": "8dbf4e77b2d260fa78c3eaefcec4f5bfaad06dd6", + "size": 10366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8dbf4e77b2d260fa78c3eaefcec4f5bfaad06dd6" + }, + { + "path": "webp/ramp-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "492a4aa3b18ef9fdd899447bd5c13efebf8ecf6a", + "size": 4630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/492a4aa3b18ef9fdd899447bd5c13efebf8ecf6a" + }, + { + "path": "webp/ramp.webp", + "mode": "100644", + "type": "blob", + "sha": "3c70bcb3d22063c9cc8b70d8cfcdd33c9288f149", + "size": 4624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c70bcb3d22063c9cc8b70d8cfcdd33c9288f149" + }, + { + "path": "webp/rancher.webp", + "mode": "100644", + "type": "blob", + "sha": "5c23f16906f476e8b0589ca21acacd591f688c84", + "size": 14596, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c23f16906f476e8b0589ca21acacd591f688c84" + }, + { + "path": "webp/raneto.webp", + "mode": "100644", + "type": "blob", + "sha": "aca23cb74fe7c0aa69d1ec357ce81800654e682d", + "size": 37120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aca23cb74fe7c0aa69d1ec357ce81800654e682d" + }, + { + "path": "webp/raritan-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0333582c6fadc3738c7cddd460e38d0c103cb13d", + "size": 12226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0333582c6fadc3738c7cddd460e38d0c103cb13d" + }, + { + "path": "webp/raritan.webp", + "mode": "100644", + "type": "blob", + "sha": "57fed978ce87c7bdfd5baed044b2cd89e7c04643", + "size": 11506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/57fed978ce87c7bdfd5baed044b2cd89e7c04643" + }, + { + "path": "webp/raspberry-pi-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0f131d03fd8749e2f5b320408e19d9be1293d6de", + "size": 90368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f131d03fd8749e2f5b320408e19d9be1293d6de" + }, + { + "path": "webp/raspberry-pi.webp", + "mode": "100644", + "type": "blob", + "sha": "db3f7e6b6e0e1e248ff6398a62e3e4743aec5a6b", + "size": 81182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db3f7e6b6e0e1e248ff6398a62e3e4743aec5a6b" + }, + { + "path": "webp/raspberrymatic.webp", + "mode": "100644", + "type": "blob", + "sha": "0f0280057da2233f28fbb0ff7426d1334235ef39", + "size": 17762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0f0280057da2233f28fbb0ff7426d1334235ef39" + }, + { + "path": "webp/rathole.webp", + "mode": "100644", + "type": "blob", + "sha": "294e5c7720b5de881417899fa959335422f1ee86", + "size": 37040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/294e5c7720b5de881417899fa959335422f1ee86" + }, + { + "path": "webp/rclone.webp", + "mode": "100644", + "type": "blob", + "sha": "20eb5c68425eb148f2af0d0711a79f05978a3db4", + "size": 32182, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20eb5c68425eb148f2af0d0711a79f05978a3db4" + }, + { + "path": "webp/rdt-client.webp", + "mode": "100644", + "type": "blob", + "sha": "ecaec18830c8513cf0c1fbd2f5b336fb2d9c40cb", + "size": 30528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecaec18830c8513cf0c1fbd2f5b336fb2d9c40cb" + }, + { + "path": "webp/reactive-resume-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ee5f43f2418ec4f449d308ee3050c7078f83d442", + "size": 12120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee5f43f2418ec4f449d308ee3050c7078f83d442" + }, + { + "path": "webp/reactive-resume.webp", + "mode": "100644", + "type": "blob", + "sha": "8d04d3abeff1ec8a152093375463c2371915e784", + "size": 10562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8d04d3abeff1ec8a152093375463c2371915e784" + }, + { + "path": "webp/reactjs.webp", + "mode": "100644", + "type": "blob", + "sha": "ca7f56f41c0e0d6b327932d864c4e8f8c62bc996", + "size": 58740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca7f56f41c0e0d6b327932d864c4e8f8c62bc996" + }, + { + "path": "webp/readarr.webp", + "mode": "100644", + "type": "blob", + "sha": "7ffecc193f56dbadaf61d40ab41d5c6df863ef8f", + "size": 78990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ffecc193f56dbadaf61d40ab41d5c6df863ef8f" + }, + { + "path": "webp/readeck.webp", + "mode": "100644", + "type": "blob", + "sha": "16ba6f83eefc811c68d3b15ebb7745b7bd2e5cc2", + "size": 32572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16ba6f83eefc811c68d3b15ebb7745b7bd2e5cc2" + }, + { + "path": "webp/readthedocs-light.webp", + "mode": "100644", + "type": "blob", + "sha": "25657c8548ee80f90e8637d96b21442c4babfe11", + "size": 9370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/25657c8548ee80f90e8637d96b21442c4babfe11" + }, + { + "path": "webp/readthedocs.webp", + "mode": "100644", + "type": "blob", + "sha": "43c57359518b992f10341fe0067c298d58e6e2c1", + "size": 15282, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/43c57359518b992f10341fe0067c298d58e6e2c1" + }, + { + "path": "webp/readwise-reader-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "d3e0309062c43b79e011897199755fa63c659016", + "size": 5504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3e0309062c43b79e011897199755fa63c659016" + }, + { + "path": "webp/readwise-reader.webp", + "mode": "100644", + "type": "blob", + "sha": "11630c0bc7510e3c129a131bc27e9c4b043dfd40", + "size": 4864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11630c0bc7510e3c129a131bc27e9c4b043dfd40" + }, + { + "path": "webp/real-debrid.webp", + "mode": "100644", + "type": "blob", + "sha": "ecaec18830c8513cf0c1fbd2f5b336fb2d9c40cb", + "size": 30528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecaec18830c8513cf0c1fbd2f5b336fb2d9c40cb" + }, + { + "path": "webp/realhosting.webp", + "mode": "100644", + "type": "blob", + "sha": "bf6879c1fa3f8e43d3c4f57a8ddab50f854c380b", + "size": 22298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf6879c1fa3f8e43d3c4f57a8ddab50f854c380b" + }, + { + "path": "webp/recalbox.webp", + "mode": "100644", + "type": "blob", + "sha": "32846ff330cbeb21092189644df2f3d304ac206e", + "size": 16410, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32846ff330cbeb21092189644df2f3d304ac206e" + }, + { + "path": "webp/receipt-wrangler.webp", + "mode": "100644", + "type": "blob", + "sha": "3b7df24edab5d46540d01f747bbf40b8601f3efc", + "size": 17810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b7df24edab5d46540d01f747bbf40b8601f3efc" + }, + { + "path": "webp/recipesage.webp", + "mode": "100644", + "type": "blob", + "sha": "4f806b72c43df515b220f3332e3989d7b3aff256", + "size": 33276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4f806b72c43df515b220f3332e3989d7b3aff256" + }, + { + "path": "webp/recipya.webp", + "mode": "100644", + "type": "blob", + "sha": "ae5b18e700f43f1fed1d4fa8027f6234450c79dd", + "size": 128416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae5b18e700f43f1fed1d4fa8027f6234450c79dd" + }, + { + "path": "webp/recomendarr.webp", + "mode": "100644", + "type": "blob", + "sha": "b684c3f3bddddc5bb9adff7b90c02079ccbaea9d", + "size": 90190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b684c3f3bddddc5bb9adff7b90c02079ccbaea9d" + }, + { + "path": "webp/recyclarr.webp", + "mode": "100644", + "type": "blob", + "sha": "bca7e769ae02c898259056a2b41f6cc1ac9e30c8", + "size": 34854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bca7e769ae02c898259056a2b41f6cc1ac9e30c8" + }, + { + "path": "webp/reddit.webp", + "mode": "100644", + "type": "blob", + "sha": "ed8208b6349b90ba09c790fe8685d1d57bcae892", + "size": 46120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed8208b6349b90ba09c790fe8685d1d57bcae892" + }, + { + "path": "webp/redhat-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "7ca5086f31cfb19956a00025b953bf33100e943e", + "size": 32098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ca5086f31cfb19956a00025b953bf33100e943e" + }, + { + "path": "webp/redict.webp", + "mode": "100644", + "type": "blob", + "sha": "dce425a73a8fbd71cc1f3992d498f99b48c193ac", + "size": 59600, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dce425a73a8fbd71cc1f3992d498f99b48c193ac" + }, + { + "path": "webp/redis.webp", + "mode": "100644", + "type": "blob", + "sha": "b557b9d7cabda123f2dffbe1b663d3a4c5e06170", + "size": 81252, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b557b9d7cabda123f2dffbe1b663d3a4c5e06170" + }, + { + "path": "webp/redlib-light.webp", + "mode": "100644", + "type": "blob", + "sha": "10de32e7ad63120643d1cd5e33d9e089cc7515cc", + "size": 7326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/10de32e7ad63120643d1cd5e33d9e089cc7515cc" + }, + { + "path": "webp/redlib.webp", + "mode": "100644", + "type": "blob", + "sha": "11c7f06db37e717fc1701ca5494d83a8e0d54ad4", + "size": 8436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11c7f06db37e717fc1701ca5494d83a8e0d54ad4" + }, + { + "path": "webp/redmine.webp", + "mode": "100644", + "type": "blob", + "sha": "c64da020351a50a8d6ce4d8c31e72a2ca0c8068b", + "size": 32418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c64da020351a50a8d6ce4d8c31e72a2ca0c8068b" + }, + { + "path": "webp/rekor.webp", + "mode": "100644", + "type": "blob", + "sha": "7f68c60af67f02bd6fec60a00253c7e49dc01c11", + "size": 70832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f68c60af67f02bd6fec60a00253c7e49dc01c11" + }, + { + "path": "webp/release-argus.webp", + "mode": "100644", + "type": "blob", + "sha": "0b88d074a2a101ca1c489aeea054922d7a7e2fb5", + "size": 49466, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b88d074a2a101ca1c489aeea054922d7a7e2fb5" + }, + { + "path": "webp/remmina.webp", + "mode": "100644", + "type": "blob", + "sha": "387b4485fa12ff996c548b4a8882166269126390", + "size": 85636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/387b4485fa12ff996c548b4a8882166269126390" + }, + { + "path": "webp/remnawave.webp", + "mode": "100644", + "type": "blob", + "sha": "8b6e4f829d342d02b6888a58902e4db4a7c9b079", + "size": 11880, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b6e4f829d342d02b6888a58902e4db4a7c9b079" + }, + { + "path": "webp/remnote.webp", + "mode": "100644", + "type": "blob", + "sha": "41836da451111a718a18e0cc4f69ca01ae1e4703", + "size": 17312, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41836da451111a718a18e0cc4f69ca01ae1e4703" + }, + { + "path": "webp/remotely.webp", + "mode": "100644", + "type": "blob", + "sha": "2649fe32b81d63b18f35ab8085abb2b9e2518ac1", + "size": 7214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2649fe32b81d63b18f35ab8085abb2b9e2518ac1" + }, + { + "path": "webp/renovate.webp", + "mode": "100644", + "type": "blob", + "sha": "e69e68a282c959176078de05b28fc00042768478", + "size": 82326, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e69e68a282c959176078de05b28fc00042768478" + }, + { + "path": "webp/reolink.webp", + "mode": "100644", + "type": "blob", + "sha": "6b039f711cd97086802e59a0c652cecb6ef773a7", + "size": 23762, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b039f711cd97086802e59a0c652cecb6ef773a7" + }, + { + "path": "webp/reposilite-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "0d03f534481ce9e9e7bf848707322a247bea81df", + "size": 26276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0d03f534481ce9e9e7bf848707322a247bea81df" + }, + { + "path": "webp/reposilite.webp", + "mode": "100644", + "type": "blob", + "sha": "a67271b3517fc30cdf99ab23167dc12aadf2fdc1", + "size": 19660, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a67271b3517fc30cdf99ab23167dc12aadf2fdc1" + }, + { + "path": "webp/requestly.webp", + "mode": "100644", + "type": "blob", + "sha": "c58ca29f11d31727efec162b03e060f63f5c5f6c", + "size": 33338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c58ca29f11d31727efec162b03e060f63f5c5f6c" + }, + { + "path": "webp/requestrr.webp", + "mode": "100644", + "type": "blob", + "sha": "748990953ef3b51abed2aa0aab7f46b8726854ca", + "size": 36298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/748990953ef3b51abed2aa0aab7f46b8726854ca" + }, + { + "path": "webp/resiliosync-full-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "32c3ad72fc40347455c3b13d473c85b938975370", + "size": 50324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32c3ad72fc40347455c3b13d473c85b938975370" + }, + { + "path": "webp/resiliosync-full.webp", + "mode": "100644", + "type": "blob", + "sha": "0accc231578b31a8666a04b7d3abdaa9f996f4d9", + "size": 58976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0accc231578b31a8666a04b7d3abdaa9f996f4d9" + }, + { + "path": "webp/resiliosync.webp", + "mode": "100644", + "type": "blob", + "sha": "3ba835303e2d34da8e2430e1038cefaac0982265", + "size": 56536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ba835303e2d34da8e2430e1038cefaac0982265" + }, + { + "path": "webp/restic.webp", + "mode": "100644", + "type": "blob", + "sha": "de73edf966ec134e8331591a4a51f2ba9cb82228", + "size": 135696, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de73edf966ec134e8331591a4a51f2ba9cb82228" + }, + { + "path": "webp/restreamer.webp", + "mode": "100644", + "type": "blob", + "sha": "a73d298d7a45f1f06783b3723bc6ad50a8410cc5", + "size": 22308, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a73d298d7a45f1f06783b3723bc6ad50a8410cc5" + }, + { + "path": "webp/retrom.webp", + "mode": "100644", + "type": "blob", + "sha": "0333d9f525a36a3ce00ccc4b2f9020e00d6af7bc", + "size": 24698, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0333d9f525a36a3ce00ccc4b2f9020e00d6af7bc" + }, + { + "path": "webp/revanced-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "7a41e98ef3c24a001d241cbe8ffe20c092317cb1", + "size": 58476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a41e98ef3c24a001d241cbe8ffe20c092317cb1" + }, + { + "path": "webp/revolt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f4e35f8e466b0594df0f95922ea1d5e6192218d2", + "size": 15790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f4e35f8e466b0594df0f95922ea1d5e6192218d2" + }, + { + "path": "webp/revolt.webp", + "mode": "100644", + "type": "blob", + "sha": "71f708b406ad7562dc6040566552f514acf42c58", + "size": 19344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/71f708b406ad7562dc6040566552f514acf42c58" + }, + { + "path": "webp/rhasspy-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "b85687a479886cf2c67b6e93f3498ea44eee820e", + "size": 27430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b85687a479886cf2c67b6e93f3498ea44eee820e" + }, + { + "path": "webp/rhasspy.webp", + "mode": "100644", + "type": "blob", + "sha": "bd2e16ad3206c2c9d10d297595a3ba2141d8bdd0", + "size": 22102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bd2e16ad3206c2c9d10d297595a3ba2141d8bdd0" + }, + { + "path": "webp/rhodecode.webp", + "mode": "100644", + "type": "blob", + "sha": "150241890a4d5c186a32c1f42be69be39629bfcb", + "size": 31516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/150241890a4d5c186a32c1f42be69be39629bfcb" + }, + { + "path": "webp/richy.webp", + "mode": "100644", + "type": "blob", + "sha": "b138952f6ce255c9e3689940840151f280e6d637", + "size": 39898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b138952f6ce255c9e3689940840151f280e6d637" + }, + { + "path": "webp/rimgo-light.webp", + "mode": "100644", + "type": "blob", + "sha": "63d9f7012ede4d80f0c88a3c7ab27c6a9e6906e3", + "size": 5332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63d9f7012ede4d80f0c88a3c7ab27c6a9e6906e3" + }, + { + "path": "webp/rimgo.webp", + "mode": "100644", + "type": "blob", + "sha": "44bde21eaefdee7550a6ec3a5972ae7246b771de", + "size": 4956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/44bde21eaefdee7550a6ec3a5972ae7246b771de" + }, + { + "path": "webp/riot.webp", + "mode": "100644", + "type": "blob", + "sha": "ab5eac9be3b6dd078953f49b3771e255bda362ab", + "size": 43708, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab5eac9be3b6dd078953f49b3771e255bda362ab" + }, + { + "path": "webp/ripe.webp", + "mode": "100644", + "type": "blob", + "sha": "3612891dea5c7e1ccf8892c2e3ba94734cd3d7fb", + "size": 109938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3612891dea5c7e1ccf8892c2e3ba94734cd3d7fb" + }, + { + "path": "webp/riverside-fm-light.webp", + "mode": "100644", + "type": "blob", + "sha": "a3ae7e5bdd963bb26721f158b7c50f931169ddb0", + "size": 6826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3ae7e5bdd963bb26721f158b7c50f931169ddb0" + }, + { + "path": "webp/riverside-fm.webp", + "mode": "100644", + "type": "blob", + "sha": "fab3f86530757050ea5ef51a776746b754e5cbb2", + "size": 6430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fab3f86530757050ea5ef51a776746b754e5cbb2" + }, + { + "path": "webp/robinhood.webp", + "mode": "100644", + "type": "blob", + "sha": "c9ca195c973119d01f77411ff9b80938cae24194", + "size": 28970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9ca195c973119d01f77411ff9b80938cae24194" + }, + { + "path": "webp/rocket-chat.webp", + "mode": "100644", + "type": "blob", + "sha": "a312f8a89605ab0ab46f7e7d2be276e500c7b1a4", + "size": 32092, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a312f8a89605ab0ab46f7e7d2be276e500c7b1a4" + }, + { + "path": "webp/rocky-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "b046a331cb02f8ff4771b10845b78397e8aa4f74", + "size": 14340, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b046a331cb02f8ff4771b10845b78397e8aa4f74" + }, + { + "path": "webp/romm.webp", + "mode": "100644", + "type": "blob", + "sha": "246b865eeb3aae19786b9c8561b428cecaae71eb", + "size": 65186, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/246b865eeb3aae19786b9c8561b428cecaae71eb" + }, + { + "path": "webp/rompya.webp", + "mode": "100644", + "type": "blob", + "sha": "6dd90ed71854148c3044dcd7f53a596ea8e12d52", + "size": 49200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6dd90ed71854148c3044dcd7f53a596ea8e12d52" + }, + { + "path": "webp/rook.webp", + "mode": "100644", + "type": "blob", + "sha": "3c07b67ac4bc285dc50ea129c31025bc94e6453f", + "size": 10162, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c07b67ac4bc285dc50ea129c31025bc94e6453f" + }, + { + "path": "webp/root-me-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "5d934917d7b28ed880d4592cf4703f277507b330", + "size": 13198, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d934917d7b28ed880d4592cf4703f277507b330" + }, + { + "path": "webp/root-me.webp", + "mode": "100644", + "type": "blob", + "sha": "c936ec2bebb536a7da80ace6693c2f67bfdcdaaf", + "size": 13118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c936ec2bebb536a7da80ace6693c2f67bfdcdaaf" + }, + { + "path": "webp/rotki.webp", + "mode": "100644", + "type": "blob", + "sha": "9650b59421ce37a83abea8cc0e22fb73c3ab371d", + "size": 73316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9650b59421ce37a83abea8cc0e22fb73c3ab371d" + }, + { + "path": "webp/roundcube.webp", + "mode": "100644", + "type": "blob", + "sha": "acaa43cbfb57108a226b2f5aee1ec7cbb65a077f", + "size": 20632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/acaa43cbfb57108a226b2f5aee1ec7cbb65a077f" + }, + { + "path": "webp/router.webp", + "mode": "100644", + "type": "blob", + "sha": "107e23c09fb4ba8fd8393d32867da54b9d62904e", + "size": 39478, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/107e23c09fb4ba8fd8393d32867da54b9d62904e" + }, + { + "path": "webp/rozetkaua.webp", + "mode": "100644", + "type": "blob", + "sha": "7bf0535842ec214220a2725fe4cb79b88dace559", + "size": 84066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bf0535842ec214220a2725fe4cb79b88dace559" + }, + { + "path": "webp/rpi-monitor.webp", + "mode": "100644", + "type": "blob", + "sha": "cba626258e2f6aae10634b3c94f48cbd9ca2d8f9", + "size": 26154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cba626258e2f6aae10634b3c94f48cbd9ca2d8f9" + }, + { + "path": "webp/rport.webp", + "mode": "100644", + "type": "blob", + "sha": "83ee56e05955056e7f317d45805306aac0491ad8", + "size": 12806, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/83ee56e05955056e7f317d45805306aac0491ad8" + }, + { + "path": "webp/rspamd.webp", + "mode": "100644", + "type": "blob", + "sha": "6d72dcf9fd6825fabe4a2a2b31413de29beb7d2e", + "size": 23260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d72dcf9fd6825fabe4a2a2b31413de29beb7d2e" + }, + { + "path": "webp/rss-bridge.webp", + "mode": "100644", + "type": "blob", + "sha": "a088f48158ec707020835d37478201d65703d87c", + "size": 32476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a088f48158ec707020835d37478201d65703d87c" + }, + { + "path": "webp/rss-translator.webp", + "mode": "100644", + "type": "blob", + "sha": "374804cc99fa241d9eac1de34354f6e838755694", + "size": 31318, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/374804cc99fa241d9eac1de34354f6e838755694" + }, + { + "path": "webp/rsshub.webp", + "mode": "100644", + "type": "blob", + "sha": "8c3d39e93f6a9965418e670a266af9c63f5aeb35", + "size": 31260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c3d39e93f6a9965418e670a266af9c63f5aeb35" + }, + { + "path": "webp/rstudio.webp", + "mode": "100644", + "type": "blob", + "sha": "24c05ba970989dd5fccbc7da3f038a0fdb0f7dcb", + "size": 38766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24c05ba970989dd5fccbc7da3f038a0fdb0f7dcb" + }, + { + "path": "webp/rstudioserver.webp", + "mode": "100644", + "type": "blob", + "sha": "24c05ba970989dd5fccbc7da3f038a0fdb0f7dcb", + "size": 38766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24c05ba970989dd5fccbc7da3f038a0fdb0f7dcb" + }, + { + "path": "webp/ruby.webp", + "mode": "100644", + "type": "blob", + "sha": "74a15181273507f208ccdb6c902abf675f8fa2a4", + "size": 89612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74a15181273507f208ccdb6c902abf675f8fa2a4" + }, + { + "path": "webp/ruckus-unleashed.webp", + "mode": "100644", + "type": "blob", + "sha": "bb9d37b518334d24bdca53ac3844f544287051a5", + "size": 49350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb9d37b518334d24bdca53ac3844f544287051a5" + }, + { + "path": "webp/rumble.webp", + "mode": "100644", + "type": "blob", + "sha": "37dda5b8ec92fa5d41ece3ff4e06581da43ecf18", + "size": 17090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/37dda5b8ec92fa5d41ece3ff4e06581da43ecf18" + }, + { + "path": "webp/rundeck.webp", + "mode": "100644", + "type": "blob", + "sha": "496856f3a12c48cdc225f7dcfe6fda4c9a012bc3", + "size": 4942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/496856f3a12c48cdc225f7dcfe6fda4c9a012bc3" + }, + { + "path": "webp/runeaudio.webp", + "mode": "100644", + "type": "blob", + "sha": "bbb19f26d7d8b0cf4f350879bcf19d598b80e523", + "size": 12996, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bbb19f26d7d8b0cf4f350879bcf19d598b80e523" + }, + { + "path": "webp/runonflux.webp", + "mode": "100644", + "type": "blob", + "sha": "be3bd8e9817b97b9d25e0bf34c67c4bc87d49294", + "size": 43872, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/be3bd8e9817b97b9d25e0bf34c67c4bc87d49294" + }, + { + "path": "webp/runson-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2f134a9ba85a1e06e761a5333bc1e8670c61c49d", + "size": 23292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f134a9ba85a1e06e761a5333bc1e8670c61c49d" + }, + { + "path": "webp/runson.webp", + "mode": "100644", + "type": "blob", + "sha": "79b3e8bf45a0d6f0afa6e3767b8504e984e3844a", + "size": 19724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79b3e8bf45a0d6f0afa6e3767b8504e984e3844a" + }, + { + "path": "webp/rust-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "5fad97d190dd1dad19379ae2fcba6758b04e630a", + "size": 10046, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5fad97d190dd1dad19379ae2fcba6758b04e630a" + }, + { + "path": "webp/rust.webp", + "mode": "100644", + "type": "blob", + "sha": "d2d72acf10f7fcbb831a5897b7386c359d899342", + "size": 10040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2d72acf10f7fcbb831a5897b7386c359d899342" + }, + { + "path": "webp/rustdesk.webp", + "mode": "100644", + "type": "blob", + "sha": "40bdfbd3cfbba237b20bac26dca8cd03b6c88b4a", + "size": 36956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40bdfbd3cfbba237b20bac26dca8cd03b6c88b4a" + }, + { + "path": "webp/rutorrent.webp", + "mode": "100644", + "type": "blob", + "sha": "3c7b5dac76e79e95fdc16a5f03bbd2a0ba6cd203", + "size": 35440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c7b5dac76e79e95fdc16a5f03bbd2a0ba6cd203" + }, + { + "path": "webp/ryot-light.webp", + "mode": "100644", + "type": "blob", + "sha": "7cfeffc7ffd6a45cf306f169921e1d2db3f4be93", + "size": 12994, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cfeffc7ffd6a45cf306f169921e1d2db3f4be93" + }, + { + "path": "webp/ryot.webp", + "mode": "100644", + "type": "blob", + "sha": "7c24841fcd557a0b97428336fb06c754fd0a0837", + "size": 12990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c24841fcd557a0b97428336fb06c754fd0a0837" + }, + { + "path": "webp/sabnzbd-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5a0742218c29835a932874ede2155de18f817b81", + "size": 20292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a0742218c29835a932874ede2155de18f817b81" + }, + { + "path": "webp/sabnzbd.webp", + "mode": "100644", + "type": "blob", + "sha": "2d5544df23ba6e1b57c2c406b6f0a1d4865c68d9", + "size": 18870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d5544df23ba6e1b57c2c406b6f0a1d4865c68d9" + }, + { + "path": "webp/safari-ios.webp", + "mode": "100644", + "type": "blob", + "sha": "a37f9d80e8de3bcb593de82c8bb08ea29df6aa35", + "size": 110298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a37f9d80e8de3bcb593de82c8bb08ea29df6aa35" + }, + { + "path": "webp/safari.webp", + "mode": "100644", + "type": "blob", + "sha": "a37f9d80e8de3bcb593de82c8bb08ea29df6aa35", + "size": 110298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a37f9d80e8de3bcb593de82c8bb08ea29df6aa35" + }, + { + "path": "webp/safeline.webp", + "mode": "100644", + "type": "blob", + "sha": "c6ba415721a429f49cb54e67854357083a1eb0cb", + "size": 53526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6ba415721a429f49cb54e67854357083a1eb0cb" + }, + { + "path": "webp/sagemcom.webp", + "mode": "100644", + "type": "blob", + "sha": "3e0c7c5f62a7026305654a6c4a06a38a71581583", + "size": 49222, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e0c7c5f62a7026305654a6c4a06a38a71581583" + }, + { + "path": "webp/salad.webp", + "mode": "100644", + "type": "blob", + "sha": "858c22cecde7b31b6e44f7cd380e82969f20cdd1", + "size": 12230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/858c22cecde7b31b6e44f7cd380e82969f20cdd1" + }, + { + "path": "webp/salt-project.webp", + "mode": "100644", + "type": "blob", + "sha": "7374c30784f71884c58b33fab555558ad918cd58", + "size": 6892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7374c30784f71884c58b33fab555558ad918cd58" + }, + { + "path": "webp/saltcorn.webp", + "mode": "100644", + "type": "blob", + "sha": "d1aa35a3eb6b0d551a0afa3a73916882079369d1", + "size": 34930, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1aa35a3eb6b0d551a0afa3a73916882079369d1" + }, + { + "path": "webp/samba-server.webp", + "mode": "100644", + "type": "blob", + "sha": "c4932dc5880a131103fdb75d449d3ca4337bfae6", + "size": 9684, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4932dc5880a131103fdb75d449d3ca4337bfae6" + }, + { + "path": "webp/samsung-internet.webp", + "mode": "100644", + "type": "blob", + "sha": "f7c6e54ed3113ca11828c9f8c8578a8f5198bfe0", + "size": 34418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7c6e54ed3113ca11828c9f8c8578a8f5198bfe0" + }, + { + "path": "webp/sandstorm.webp", + "mode": "100644", + "type": "blob", + "sha": "f5c255802a30c1cd0c5df5deecfe2a676907df1e", + "size": 4980, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5c255802a30c1cd0c5df5deecfe2a676907df1e" + }, + { + "path": "webp/satisfactory.webp", + "mode": "100644", + "type": "blob", + "sha": "f992fd8570194adc7aba5ee1fb859aab6694d515", + "size": 100110, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f992fd8570194adc7aba5ee1fb859aab6694d515" + }, + { + "path": "webp/scanservjs.webp", + "mode": "100644", + "type": "blob", + "sha": "09276999a17e37c2840c2b6e974c22615c05ecbc", + "size": 47612, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/09276999a17e37c2840c2b6e974c22615c05ecbc" + }, + { + "path": "webp/schedulearn-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "c1f19311051e64b584acaaaa50b52a77602fcdc4", + "size": 22536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1f19311051e64b584acaaaa50b52a77602fcdc4" + }, + { + "path": "webp/schedulearn.webp", + "mode": "100644", + "type": "blob", + "sha": "053afd7faebb20b9a65d341232a0fb29ce2ff752", + "size": 30098, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/053afd7faebb20b9a65d341232a0fb29ce2ff752" + }, + { + "path": "webp/schneider.webp", + "mode": "100644", + "type": "blob", + "sha": "efff1d3bf0ec1dd882a867777f93f59d5378f667", + "size": 22902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/efff1d3bf0ec1dd882a867777f93f59d5378f667" + }, + { + "path": "webp/scraperr.webp", + "mode": "100644", + "type": "blob", + "sha": "968adbdb4d0037d4edc1110dccf8840df735eb5f", + "size": 81148, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/968adbdb4d0037d4edc1110dccf8840df735eb5f" + }, + { + "path": "webp/scrcpy.webp", + "mode": "100644", + "type": "blob", + "sha": "cc84558c10173769f6af326710a3e7443e874a76", + "size": 27472, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cc84558c10173769f6af326710a3e7443e874a76" + }, + { + "path": "webp/screenconnect.webp", + "mode": "100644", + "type": "blob", + "sha": "2b03f4212f195df6be7aee0cc602a98951006980", + "size": 844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b03f4212f195df6be7aee0cc602a98951006980" + }, + { + "path": "webp/scrutiny-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ee25bb640bd8b22d0d0c19c6f5d01a2cb8d4d74b", + "size": 123356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee25bb640bd8b22d0d0c19c6f5d01a2cb8d4d74b" + }, + { + "path": "webp/scrutiny.webp", + "mode": "100644", + "type": "blob", + "sha": "3f4a1a5d04301f1e7d00f0579b02d2ae5bc64c7e", + "size": 48414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f4a1a5d04301f1e7d00f0579b02d2ae5bc64c7e" + }, + { + "path": "webp/scrypted.webp", + "mode": "100644", + "type": "blob", + "sha": "e51b3abd14b735904e74878aeca0f21758b26082", + "size": 67122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e51b3abd14b735904e74878aeca0f21758b26082" + }, + { + "path": "webp/seafile.webp", + "mode": "100644", + "type": "blob", + "sha": "ba5f113b214187681ef454b9999339af60fae594", + "size": 41680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ba5f113b214187681ef454b9999339af60fae594" + }, + { + "path": "webp/searx.webp", + "mode": "100644", + "type": "blob", + "sha": "24a968bfd1085750decc0a8bac693b37e9b056ee", + "size": 24638, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24a968bfd1085750decc0a8bac693b37e9b056ee" + }, + { + "path": "webp/searxng.webp", + "mode": "100644", + "type": "blob", + "sha": "6fe27a6e8488800c014f89096af70171802cbc6d", + "size": 25946, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fe27a6e8488800c014f89096af70171802cbc6d" + }, + { + "path": "webp/secureai-tools-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d098b377ecde4a71f8e0d81dacbad135f7d5605a", + "size": 8792, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d098b377ecde4a71f8e0d81dacbad135f7d5605a" + }, + { + "path": "webp/secureai-tools.webp", + "mode": "100644", + "type": "blob", + "sha": "de2b1996c30ce0b02e0f37f649a399b617b8c31b", + "size": 12096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de2b1996c30ce0b02e0f37f649a399b617b8c31b" + }, + { + "path": "webp/security-onion-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e77167d70682ab2bfa329cd3d380a01f84ad6dff", + "size": 29790, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e77167d70682ab2bfa329cd3d380a01f84ad6dff" + }, + { + "path": "webp/security-onion.webp", + "mode": "100644", + "type": "blob", + "sha": "672a431cb96f26dcd382fe3afcd93c11ac541a63", + "size": 30338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/672a431cb96f26dcd382fe3afcd93c11ac541a63" + }, + { + "path": "webp/seelf.webp", + "mode": "100644", + "type": "blob", + "sha": "3e757f33ed7eb4266370f9fb708691c428354b2c", + "size": 36546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e757f33ed7eb4266370f9fb708691c428354b2c" + }, + { + "path": "webp/selenium.webp", + "mode": "100644", + "type": "blob", + "sha": "7f3411bbc3b05e53c4c0a48711f36adc96529325", + "size": 27114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f3411bbc3b05e53c4c0a48711f36adc96529325" + }, + { + "path": "webp/self-hosted-gateway.webp", + "mode": "100644", + "type": "blob", + "sha": "aba7e98744744378c41c69624563d8e63149f103", + "size": 14924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aba7e98744744378c41c69624563d8e63149f103" + }, + { + "path": "webp/selfh-st-light.webp", + "mode": "100644", + "type": "blob", + "sha": "31996872334c43b494569874ace7b9b93605a270", + "size": 17770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/31996872334c43b494569874ace7b9b93605a270" + }, + { + "path": "webp/selfh-st.webp", + "mode": "100644", + "type": "blob", + "sha": "aca30785595e472e0896a59d020452e61f283c49", + "size": 18640, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aca30785595e472e0896a59d020452e61f283c49" + }, + { + "path": "webp/selfhosted-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ab0b8a2ccb65cf98e95e45fcadd94d43c0a6c933", + "size": 6928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ab0b8a2ccb65cf98e95e45fcadd94d43c0a6c933" + }, + { + "path": "webp/selfhosted.webp", + "mode": "100644", + "type": "blob", + "sha": "1bcc84bb85b37040c5ac905ea6fa7efb8526923c", + "size": 6532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1bcc84bb85b37040c5ac905ea6fa7efb8526923c" + }, + { + "path": "webp/semaphore-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "52be180a4bb294779c084621cb7d202842cdaf55", + "size": 31752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/52be180a4bb294779c084621cb7d202842cdaf55" + }, + { + "path": "webp/semaphore.webp", + "mode": "100644", + "type": "blob", + "sha": "6eda786859d2e9ae74795c800f4498dc9189fb14", + "size": 33250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6eda786859d2e9ae74795c800f4498dc9189fb14" + }, + { + "path": "webp/send.webp", + "mode": "100644", + "type": "blob", + "sha": "6e6505a90fdaa52677bc51329d217fe5be846cea", + "size": 21742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e6505a90fdaa52677bc51329d217fe5be846cea" + }, + { + "path": "webp/sendgrid.webp", + "mode": "100644", + "type": "blob", + "sha": "eaa55ff0e82841c69c0d1b146583bf8ed0938938", + "size": 3058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eaa55ff0e82841c69c0d1b146583bf8ed0938938" + }, + { + "path": "webp/sendinblue.webp", + "mode": "100644", + "type": "blob", + "sha": "a3e5fe2e29354c7951f2cf50ca9660c1ae085465", + "size": 35214, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3e5fe2e29354c7951f2cf50ca9660c1ae085465" + }, + { + "path": "webp/sensu.webp", + "mode": "100644", + "type": "blob", + "sha": "f588761db465522f6bbbbe8e3e493ad4ce16bd70", + "size": 21928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f588761db465522f6bbbbe8e3e493ad4ce16bd70" + }, + { + "path": "webp/sentry-light.webp", + "mode": "100644", + "type": "blob", + "sha": "500fe3c7d9a022eb7c2c2e6e1ab1298a778e1649", + "size": 9560, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/500fe3c7d9a022eb7c2c2e6e1ab1298a778e1649" + }, + { + "path": "webp/sentry.webp", + "mode": "100644", + "type": "blob", + "sha": "e446727b719f537e25a9e76b53c29b5fb4a6a761", + "size": 9554, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e446727b719f537e25a9e76b53c29b5fb4a6a761" + }, + { + "path": "webp/seq.webp", + "mode": "100644", + "type": "blob", + "sha": "467b3632658b5a232871e08cfdd82d7559330682", + "size": 9850, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/467b3632658b5a232871e08cfdd82d7559330682" + }, + { + "path": "webp/series-troxide.webp", + "mode": "100644", + "type": "blob", + "sha": "1dd3b212b5d3df70ad124ceebf0586caf88c0829", + "size": 41514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1dd3b212b5d3df70ad124ceebf0586caf88c0829" + }, + { + "path": "webp/serpbear.webp", + "mode": "100644", + "type": "blob", + "sha": "84c07d2c148565c03037b5c7c35116d8048fff28", + "size": 16630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84c07d2c148565c03037b5c7c35116d8048fff28" + }, + { + "path": "webp/servarr-light.webp", + "mode": "100644", + "type": "blob", + "sha": "edce26e67e162dec5c26819802b45f26cd9adcf9", + "size": 92934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/edce26e67e162dec5c26819802b45f26cd9adcf9" + }, + { + "path": "webp/servarr.webp", + "mode": "100644", + "type": "blob", + "sha": "364019fca036cc1c78f2b519db26d2053e086dff", + "size": 97662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/364019fca036cc1c78f2b519db26d2053e086dff" + }, + { + "path": "webp/serviio-light.webp", + "mode": "100644", + "type": "blob", + "sha": "76a1a45727b64e994eaeff353cd5da2af6a2696d", + "size": 42130, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76a1a45727b64e994eaeff353cd5da2af6a2696d" + }, + { + "path": "webp/serviio.webp", + "mode": "100644", + "type": "blob", + "sha": "9c4f31d4998b94adc09fecb86540e71f5bf2b952", + "size": 42038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c4f31d4998b94adc09fecb86540e71f5bf2b952" + }, + { + "path": "webp/session.webp", + "mode": "100644", + "type": "blob", + "sha": "5935697f5c3f8fbab9455dbe0ef25bdbc705833e", + "size": 59216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5935697f5c3f8fbab9455dbe0ef25bdbc705833e" + }, + { + "path": "webp/seznam.webp", + "mode": "100644", + "type": "blob", + "sha": "d22b4c255710eba3772b2fa4fad64b2754e33498", + "size": 18316, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d22b4c255710eba3772b2fa4fad64b2754e33498" + }, + { + "path": "webp/sftpgo.webp", + "mode": "100644", + "type": "blob", + "sha": "660f1f02bdf6d8e31bc8f9305552e1ae06da67aa", + "size": 40476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/660f1f02bdf6d8e31bc8f9305552e1ae06da67aa" + }, + { + "path": "webp/shaarli.webp", + "mode": "100644", + "type": "blob", + "sha": "454f3207248458f5106c5bccd2d3d8306c1ee92f", + "size": 62338, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/454f3207248458f5106c5bccd2d3d8306c1ee92f" + }, + { + "path": "webp/shell-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9ea42879f8e6b500ef83a9778663c4ca61052539", + "size": 8494, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ea42879f8e6b500ef83a9778663c4ca61052539" + }, + { + "path": "webp/shell-tips-light.webp", + "mode": "100644", + "type": "blob", + "sha": "dd9aada1259eb2662fc0eaf97d3e98e847c42ba0", + "size": 2024, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd9aada1259eb2662fc0eaf97d3e98e847c42ba0" + }, + { + "path": "webp/shell-tips.webp", + "mode": "100644", + "type": "blob", + "sha": "24a6940a8248709196067f11088fd8ef7e59001c", + "size": 1988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/24a6940a8248709196067f11088fd8ef7e59001c" + }, + { + "path": "webp/shell.webp", + "mode": "100644", + "type": "blob", + "sha": "a9b3a3ff64427421ae6889847806b4428c8bb09b", + "size": 12178, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a9b3a3ff64427421ae6889847806b4428c8bb09b" + }, + { + "path": "webp/shellhub.webp", + "mode": "100644", + "type": "blob", + "sha": "956893cb59ca248d57f8fc98356db303ca731837", + "size": 32946, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/956893cb59ca248d57f8fc98356db303ca731837" + }, + { + "path": "webp/shellngn.webp", + "mode": "100644", + "type": "blob", + "sha": "4938dd1eb2b95f88c6e2928c48e2aa13a6b17d55", + "size": 49010, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4938dd1eb2b95f88c6e2928c48e2aa13a6b17d55" + }, + { + "path": "webp/shelly.webp", + "mode": "100644", + "type": "blob", + "sha": "4a0b86aef942791f80d8a090cf0974b8e35f1b6c", + "size": 65330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a0b86aef942791f80d8a090cf0974b8e35f1b6c" + }, + { + "path": "webp/shinkro.webp", + "mode": "100644", + "type": "blob", + "sha": "74057d33dc813233e26ce79ab7606e4b1259f2fa", + "size": 53778, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/74057d33dc813233e26ce79ab7606e4b1259f2fa" + }, + { + "path": "webp/shinobi.webp", + "mode": "100644", + "type": "blob", + "sha": "65d6dbf7a541436216fe5f5a8bee268c2a8a483a", + "size": 158862, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65d6dbf7a541436216fe5f5a8bee268c2a8a483a" + }, + { + "path": "webp/shiori.webp", + "mode": "100644", + "type": "blob", + "sha": "4ca7c4062a3cb9474fd97a3c9ecafd462b80b774", + "size": 44990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ca7c4062a3cb9474fd97a3c9ecafd462b80b774" + }, + { + "path": "webp/shlink.webp", + "mode": "100644", + "type": "blob", + "sha": "18eb5458c0e4e0e596379784c38cf0efc07109ac", + "size": 29668, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18eb5458c0e4e0e596379784c38cf0efc07109ac" + }, + { + "path": "webp/shoko-server.webp", + "mode": "100644", + "type": "blob", + "sha": "7d008057ca0d0d0d98818c2cea366105dc355f85", + "size": 60262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d008057ca0d0d0d98818c2cea366105dc355f85" + }, + { + "path": "webp/shoko.webp", + "mode": "100644", + "type": "blob", + "sha": "8b6ef5f6f67e1bc19f270e188601ca71d591cd6e", + "size": 54250, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b6ef5f6f67e1bc19f270e188601ca71d591cd6e" + }, + { + "path": "webp/shopify.webp", + "mode": "100644", + "type": "blob", + "sha": "6bc50184e9bd56a74a2833cb10f6da2cfd1bd08b", + "size": 35292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6bc50184e9bd56a74a2833cb10f6da2cfd1bd08b" + }, + { + "path": "webp/shortcut.webp", + "mode": "100644", + "type": "blob", + "sha": "afa0a449d678b277a552231e325ecb21cf648841", + "size": 53514, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afa0a449d678b277a552231e325ecb21cf648841" + }, + { + "path": "webp/sickbeard.webp", + "mode": "100644", + "type": "blob", + "sha": "27efb97e0454a5b3adcf1a154141afe3f01128ed", + "size": 121394, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27efb97e0454a5b3adcf1a154141afe3f01128ed" + }, + { + "path": "webp/sickchill.webp", + "mode": "100644", + "type": "blob", + "sha": "189a36b875365a7d8b1f308234d0cf3ac3b3d10c", + "size": 36624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/189a36b875365a7d8b1f308234d0cf3ac3b3d10c" + }, + { + "path": "webp/sickgear.webp", + "mode": "100644", + "type": "blob", + "sha": "187cf7b4aa85a8973d1e3c7245b83de4b2692be5", + "size": 40570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/187cf7b4aa85a8973d1e3c7245b83de4b2692be5" + }, + { + "path": "webp/signal.webp", + "mode": "100644", + "type": "blob", + "sha": "bb46fbc11b81cbaaea574cc489f918208312d9ac", + "size": 37360, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb46fbc11b81cbaaea574cc489f918208312d9ac" + }, + { + "path": "webp/signoz.webp", + "mode": "100644", + "type": "blob", + "sha": "e094ff2245df73c1b43d61bad40443ae6f6d390d", + "size": 70056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e094ff2245df73c1b43d61bad40443ae6f6d390d" + }, + { + "path": "webp/sigstore.webp", + "mode": "100644", + "type": "blob", + "sha": "28078fceb24ba417e9e7bfd829d51222969c4403", + "size": 38894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28078fceb24ba417e9e7bfd829d51222969c4403" + }, + { + "path": "webp/silae.webp", + "mode": "100644", + "type": "blob", + "sha": "3e2c1b38b2f8e879562e1cbf65f57fd47f263a7a", + "size": 38224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e2c1b38b2f8e879562e1cbf65f57fd47f263a7a" + }, + { + "path": "webp/silverbullet.webp", + "mode": "100644", + "type": "blob", + "sha": "8775521cf4de235072024cffa5f682b6ad6fc0ed", + "size": 62540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8775521cf4de235072024cffa5f682b6ad6fc0ed" + }, + { + "path": "webp/simplelogin.webp", + "mode": "100644", + "type": "blob", + "sha": "e8ff7aa1c5ad453f062d320d781a24556c6e605c", + "size": 62988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8ff7aa1c5ad453f062d320d781a24556c6e605c" + }, + { + "path": "webp/simplex-chat.webp", + "mode": "100644", + "type": "blob", + "sha": "5bd843c4ca1dab7fc8474a0a733a6244e8d47416", + "size": 31648, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bd843c4ca1dab7fc8474a0a733a6244e8d47416" + }, + { + "path": "webp/sinusbot.webp", + "mode": "100644", + "type": "blob", + "sha": "2dfe3c27c4ff32c133b7bba872e950d389ffa77e", + "size": 28194, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2dfe3c27c4ff32c133b7bba872e950d389ffa77e" + }, + { + "path": "webp/sipeed.webp", + "mode": "100644", + "type": "blob", + "sha": "3c5a2d8e771059eb980b07d497e6f55c47003827", + "size": 21712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c5a2d8e771059eb980b07d497e6f55c47003827" + }, + { + "path": "webp/siyuan.webp", + "mode": "100644", + "type": "blob", + "sha": "dd9415c44bd4b7a8cdc65084880e6d02aa5ea3f3", + "size": 8750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd9415c44bd4b7a8cdc65084880e6d02aa5ea3f3" + }, + { + "path": "webp/sketchup-make.webp", + "mode": "100644", + "type": "blob", + "sha": "e519b161c6ac36e7005788e826b1fc67119a30fc", + "size": 27572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e519b161c6ac36e7005788e826b1fc67119a30fc" + }, + { + "path": "webp/skylink-fibernet.webp", + "mode": "100644", + "type": "blob", + "sha": "5da5b11d167c5ecb4951d7043105f9415ba16185", + "size": 6800, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5da5b11d167c5ecb4951d7043105f9415ba16185" + }, + { + "path": "webp/skype.webp", + "mode": "100644", + "type": "blob", + "sha": "a850ef6a8502b4ee63e66ce155cac3953c6244f3", + "size": 62724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a850ef6a8502b4ee63e66ce155cac3953c6244f3" + }, + { + "path": "webp/slaanesh.webp", + "mode": "100644", + "type": "blob", + "sha": "5c9b328051240b0e3f62e270eea497169c6297f7", + "size": 59744, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c9b328051240b0e3f62e270eea497169c6297f7" + }, + { + "path": "webp/slack.webp", + "mode": "100644", + "type": "blob", + "sha": "215f97cd44b2566579abbfd6e59a940ff7e7259f", + "size": 23568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/215f97cd44b2566579abbfd6e59a940ff7e7259f" + }, + { + "path": "webp/slash-light.webp", + "mode": "100644", + "type": "blob", + "sha": "05e7c856ba4428361cfec76bb55003dced99c4cc", + "size": 8876, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05e7c856ba4428361cfec76bb55003dced99c4cc" + }, + { + "path": "webp/slash.webp", + "mode": "100644", + "type": "blob", + "sha": "a3ae1dfbc7304dffd0fae4908bdb1427e2397d0d", + "size": 7608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3ae1dfbc7304dffd0fae4908bdb1427e2397d0d" + }, + { + "path": "webp/slice.webp", + "mode": "100644", + "type": "blob", + "sha": "805ab70a810f5904534158da47211330374ebf20", + "size": 30898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/805ab70a810f5904534158da47211330374ebf20" + }, + { + "path": "webp/slidev.webp", + "mode": "100644", + "type": "blob", + "sha": "8ebdc6ce82dd888cd1b68238631e0757fc9366b3", + "size": 34776, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ebdc6ce82dd888cd1b68238631e0757fc9366b3" + }, + { + "path": "webp/slink-light.webp", + "mode": "100644", + "type": "blob", + "sha": "86e41f1ddb61d73767d00871a9dac2cca533b95d", + "size": 30416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86e41f1ddb61d73767d00871a9dac2cca533b95d" + }, + { + "path": "webp/slink.webp", + "mode": "100644", + "type": "blob", + "sha": "0ed552d9031b3d068629c973638aa7f2cdbbce02", + "size": 40464, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0ed552d9031b3d068629c973638aa7f2cdbbce02" + }, + { + "path": "webp/slskd.webp", + "mode": "100644", + "type": "blob", + "sha": "c07f92d8449ad3e600e676f9ef4be825b7c64f76", + "size": 34418, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c07f92d8449ad3e600e676f9ef4be825b7c64f76" + }, + { + "path": "webp/slurpit-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "4b37d970be7695548cc41246986832ce9f1a03e4", + "size": 33106, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b37d970be7695548cc41246986832ce9f1a03e4" + }, + { + "path": "webp/slurpit.webp", + "mode": "100644", + "type": "blob", + "sha": "b254352759465c62e11a4f2fba25b3433433ccad", + "size": 31646, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b254352759465c62e11a4f2fba25b3433433ccad" + }, + { + "path": "webp/smartfox.webp", + "mode": "100644", + "type": "blob", + "sha": "ee2d5321fc9d4b0c9d9fc0f7a401055fc7e9f432", + "size": 31388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee2d5321fc9d4b0c9d9fc0f7a401055fc7e9f432" + }, + { + "path": "webp/smlight.webp", + "mode": "100644", + "type": "blob", + "sha": "a28ecc59318483691746a600efbaec62dda8cfcc", + "size": 44168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a28ecc59318483691746a600efbaec62dda8cfcc" + }, + { + "path": "webp/smokeping.webp", + "mode": "100644", + "type": "blob", + "sha": "7a7f406107fcd504596866739a7d1135a1efcfcb", + "size": 12440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a7f406107fcd504596866739a7d1135a1efcfcb" + }, + { + "path": "webp/snapcast.webp", + "mode": "100644", + "type": "blob", + "sha": "4a1d253b458fc10c018f6d468e8331c323ed236b", + "size": 74066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a1d253b458fc10c018f6d468e8331c323ed236b" + }, + { + "path": "webp/snapchat-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "397b9a4e5d6ade383550e0a20b38df00b1ed4fa7", + "size": 37352, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/397b9a4e5d6ade383550e0a20b38df00b1ed4fa7" + }, + { + "path": "webp/snapchat.webp", + "mode": "100644", + "type": "blob", + "sha": "973a2dbbeb7963683edb569e110b6ee1e706ef97", + "size": 39526, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/973a2dbbeb7963683edb569e110b6ee1e706ef97" + }, + { + "path": "webp/snapdrop.webp", + "mode": "100644", + "type": "blob", + "sha": "f5e3ddca9b23c179d49ed32ad899d0729b435a99", + "size": 71262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f5e3ddca9b23c179d49ed32ad899d0729b435a99" + }, + { + "path": "webp/snappymail-light.webp", + "mode": "100644", + "type": "blob", + "sha": "738dcb616f868faa2505b1fe15fc24cf7637a58a", + "size": 4958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/738dcb616f868faa2505b1fe15fc24cf7637a58a" + }, + { + "path": "webp/snappymail.webp", + "mode": "100644", + "type": "blob", + "sha": "cfdcb6a04577d0753f5719c1f9cc10f65698c7ed", + "size": 4952, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cfdcb6a04577d0753f5719c1f9cc10f65698c7ed" + }, + { + "path": "webp/snibox.webp", + "mode": "100644", + "type": "blob", + "sha": "41c43872d33e8a038fe2c583b9541781905e7130", + "size": 10476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41c43872d33e8a038fe2c583b9541781905e7130" + }, + { + "path": "webp/snikket.webp", + "mode": "100644", + "type": "blob", + "sha": "64014afb0e9997a380dc2c8c04f37a95f6061b8a", + "size": 57208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64014afb0e9997a380dc2c8c04f37a95f6061b8a" + }, + { + "path": "webp/snipe-it.webp", + "mode": "100644", + "type": "blob", + "sha": "7a37e1462e3539879749984d5d53c9c8b332652e", + "size": 85068, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a37e1462e3539879749984d5d53c9c8b332652e" + }, + { + "path": "webp/snippetbox.webp", + "mode": "100644", + "type": "blob", + "sha": "5d869c5887a191a4cf9f860800199d14fff044b7", + "size": 11644, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d869c5887a191a4cf9f860800199d14fff044b7" + }, + { + "path": "webp/socialhome.webp", + "mode": "100644", + "type": "blob", + "sha": "96b89638f1e869e87468e6682b0fbc4fc6f3fbda", + "size": 4496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96b89638f1e869e87468e6682b0fbc4fc6f3fbda" + }, + { + "path": "webp/sogo.webp", + "mode": "100644", + "type": "blob", + "sha": "00791409967c89d2051ef9a0076d65024e5d3f3a", + "size": 51158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00791409967c89d2051ef9a0076d65024e5d3f3a" + }, + { + "path": "webp/solaar.webp", + "mode": "100644", + "type": "blob", + "sha": "65a38b6cbe6d51009f94c533da8e1b341bc048cf", + "size": 62604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65a38b6cbe6d51009f94c533da8e1b341bc048cf" + }, + { + "path": "webp/solid-invoice.webp", + "mode": "100644", + "type": "blob", + "sha": "7e8fc19b50b5fa09ebb721984748067e63da3b14", + "size": 23510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7e8fc19b50b5fa09ebb721984748067e63da3b14" + }, + { + "path": "webp/solidtime-light.webp", + "mode": "100644", + "type": "blob", + "sha": "8a671732503e1fcb6ac423c5fa7e31d7dde3436f", + "size": 5302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a671732503e1fcb6ac423c5fa7e31d7dde3436f" + }, + { + "path": "webp/solidtime.webp", + "mode": "100644", + "type": "blob", + "sha": "5bdc51e6e7e6118dcdbf3663809e39911f5ab520", + "size": 5298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bdc51e6e7e6118dcdbf3663809e39911f5ab520" + }, + { + "path": "webp/sonarqube.webp", + "mode": "100644", + "type": "blob", + "sha": "bf1e544a2c33ed33d9f85bace2b69c080abdfec6", + "size": 26818, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bf1e544a2c33ed33d9f85bace2b69c080abdfec6" + }, + { + "path": "webp/sonarr-4k.webp", + "mode": "100644", + "type": "blob", + "sha": "b16e0d6e36b0a2098d9017862fd1b155890f22db", + "size": 69906, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b16e0d6e36b0a2098d9017862fd1b155890f22db" + }, + { + "path": "webp/sonarr-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "7ba92377c259f2232ae58c7a9d9dc2743cc56dd8", + "size": 51306, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ba92377c259f2232ae58c7a9d9dc2743cc56dd8" + }, + { + "path": "webp/sonarr.webp", + "mode": "100644", + "type": "blob", + "sha": "9d57566eb31d83cdb9bf47aca219bf8209a9d51e", + "size": 54978, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d57566eb31d83cdb9bf47aca219bf8209a9d51e" + }, + { + "path": "webp/sophos-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "7f337f049e0e4ab6d08b0522cc908e9a499bf676", + "size": 36540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7f337f049e0e4ab6d08b0522cc908e9a499bf676" + }, + { + "path": "webp/sophos.webp", + "mode": "100644", + "type": "blob", + "sha": "4b0054613ecdb366526eba4b09956c7d70dfeda7", + "size": 35700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b0054613ecdb366526eba4b09956c7d70dfeda7" + }, + { + "path": "webp/soulseek.webp", + "mode": "100644", + "type": "blob", + "sha": "28bf9b55894e2d90158fcf7bdc9dd68cb85ff26c", + "size": 64430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28bf9b55894e2d90158fcf7bdc9dd68cb85ff26c" + }, + { + "path": "webp/sourcegraph.webp", + "mode": "100644", + "type": "blob", + "sha": "6028d32cce4731f7017214079c0a1387bcc9172e", + "size": 36356, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6028d32cce4731f7017214079c0a1387bcc9172e" + }, + { + "path": "webp/spamassassin.webp", + "mode": "100644", + "type": "blob", + "sha": "9ad6777481eb03f206e71c8522dc5f967e3f9ab3", + "size": 153676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ad6777481eb03f206e71c8522dc5f967e3f9ab3" + }, + { + "path": "webp/spark.webp", + "mode": "100644", + "type": "blob", + "sha": "88d04c55606872e3b60206ad4d58a1e930dc7c53", + "size": 25100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/88d04c55606872e3b60206ad4d58a1e930dc7c53" + }, + { + "path": "webp/sparkleshare.webp", + "mode": "100644", + "type": "blob", + "sha": "3b5d57b8994db62c61abafa2a7cb6bb22d59b836", + "size": 40570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b5d57b8994db62c61abafa2a7cb6bb22d59b836" + }, + { + "path": "webp/sparky-fitness.webp", + "mode": "100644", + "type": "blob", + "sha": "130a46430b77544f3eb495189bf53a02ce0678b2", + "size": 73922, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/130a46430b77544f3eb495189bf53a02ce0678b2" + }, + { + "path": "webp/specifically-clementines.webp", + "mode": "100644", + "type": "blob", + "sha": "2df93a917a3a85f81856c458a0fcb13da28c74a2", + "size": 99486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2df93a917a3a85f81856c458a0fcb13da28c74a2" + }, + { + "path": "webp/specter-desktop.webp", + "mode": "100644", + "type": "blob", + "sha": "a3430bc2eb97a23a6e0d57099944c58511099df6", + "size": 52570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3430bc2eb97a23a6e0d57099944c58511099df6" + }, + { + "path": "webp/speedtest-tracker.webp", + "mode": "100644", + "type": "blob", + "sha": "c7d35cb43b66516cd93e8dc6e8b31a6e92b37838", + "size": 6858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c7d35cb43b66516cd93e8dc6e8b31a6e92b37838" + }, + { + "path": "webp/sphinx-doc.webp", + "mode": "100644", + "type": "blob", + "sha": "b570803cef7de75433311f8d1c4f392802296eb2", + "size": 42226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b570803cef7de75433311f8d1c4f392802296eb2" + }, + { + "path": "webp/sphinx-relay.webp", + "mode": "100644", + "type": "blob", + "sha": "503623fa2aae06eac9ab7ec34ac244723a20edd6", + "size": 43582, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/503623fa2aae06eac9ab7ec34ac244723a20edd6" + }, + { + "path": "webp/sphinx.webp", + "mode": "100644", + "type": "blob", + "sha": "b570803cef7de75433311f8d1c4f392802296eb2", + "size": 42226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b570803cef7de75433311f8d1c4f392802296eb2" + }, + { + "path": "webp/spiceworks.webp", + "mode": "100644", + "type": "blob", + "sha": "f26b873bef9318331d0b8038c1576ad14d76fae4", + "size": 40710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f26b873bef9318331d0b8038c1576ad14d76fae4" + }, + { + "path": "webp/spiderfoot.webp", + "mode": "100644", + "type": "blob", + "sha": "dadbc32cef4abe5cba32dcadc061654c7e76e382", + "size": 84502, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dadbc32cef4abe5cba32dcadc061654c7e76e382" + }, + { + "path": "webp/spliit.webp", + "mode": "100644", + "type": "blob", + "sha": "cf61569457f51965ba3edf541ba42dc8b5f9800b", + "size": 40726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf61569457f51965ba3edf541ba42dc8b5f9800b" + }, + { + "path": "webp/splunk.webp", + "mode": "100644", + "type": "blob", + "sha": "67cf6c8c9efc9a72ad956c80e591173710f435f4", + "size": 28118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/67cf6c8c9efc9a72ad956c80e591173710f435f4" + }, + { + "path": "webp/spoolman.webp", + "mode": "100644", + "type": "blob", + "sha": "0e13c0a91daa3a466ab56518e645cc15b449151e", + "size": 42422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e13c0a91daa3a466ab56518e645cc15b449151e" + }, + { + "path": "webp/spotify.webp", + "mode": "100644", + "type": "blob", + "sha": "df85702512d944d076ca224390515b06b82630a7", + "size": 44426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df85702512d944d076ca224390515b06b82630a7" + }, + { + "path": "webp/spotnet.webp", + "mode": "100644", + "type": "blob", + "sha": "89ab148a204d0e191029587db8b3eae766c89e1e", + "size": 36636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/89ab148a204d0e191029587db8b3eae766c89e1e" + }, + { + "path": "webp/spree-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "c5e081de69eeb28cbd2f4b750ab0d64cd85b2131", + "size": 4964, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5e081de69eeb28cbd2f4b750ab0d64cd85b2131" + }, + { + "path": "webp/spree.webp", + "mode": "100644", + "type": "blob", + "sha": "1a4cd15ad8947b4fbf3fbb567b209b3710ca5a04", + "size": 4960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a4cd15ad8947b4fbf3fbb567b209b3710ca5a04" + }, + { + "path": "webp/springboot-initializer.webp", + "mode": "100644", + "type": "blob", + "sha": "649028c94da6ed76b684dfd5396ad6b6400bbacd", + "size": 30386, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/649028c94da6ed76b684dfd5396ad6b6400bbacd" + }, + { + "path": "webp/sqlitebrowser.webp", + "mode": "100644", + "type": "blob", + "sha": "8e1ea9e5b54bf9046bfde5854a2a83222e3a2345", + "size": 27388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8e1ea9e5b54bf9046bfde5854a2a83222e3a2345" + }, + { + "path": "webp/squeezebox-server.webp", + "mode": "100644", + "type": "blob", + "sha": "2557e8fcb56f41be6033cdddec4ed320da9295e3", + "size": 34480, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2557e8fcb56f41be6033cdddec4ed320da9295e3" + }, + { + "path": "webp/squidex.webp", + "mode": "100644", + "type": "blob", + "sha": "856ed8be5f758ace9be808bd542fa7531d406335", + "size": 26378, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/856ed8be5f758ace9be808bd542fa7531d406335" + }, + { + "path": "webp/squirrel-servers-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "a023271faa7664c26fb548b83528811b0e048b41", + "size": 156924, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a023271faa7664c26fb548b83528811b0e048b41" + }, + { + "path": "webp/sshwifty.webp", + "mode": "100644", + "type": "blob", + "sha": "68e668ff11fafc9a88b7098eaa86e47c00d6c973", + "size": 83372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68e668ff11fafc9a88b7098eaa86e47c00d6c973" + }, + { + "path": "webp/sst-dev-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "285a9209976ac88a7bc6671cff25b02ee3110785", + "size": 16334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/285a9209976ac88a7bc6671cff25b02ee3110785" + }, + { + "path": "webp/sst-dev.webp", + "mode": "100644", + "type": "blob", + "sha": "93f1530241a270d548bb29934db5fb73a4511ae6", + "size": 17388, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/93f1530241a270d548bb29934db5fb73a4511ae6" + }, + { + "path": "webp/stalwart-mail-server.webp", + "mode": "100644", + "type": "blob", + "sha": "bba0f3a4fedfce51091867e8506108f9714e4209", + "size": 36586, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bba0f3a4fedfce51091867e8506108f9714e4209" + }, + { + "path": "webp/stalwart.webp", + "mode": "100644", + "type": "blob", + "sha": "497246807c6b9d7fd44dc95ae84414a2e650acbb", + "size": 62440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/497246807c6b9d7fd44dc95ae84414a2e650acbb" + }, + { + "path": "webp/standard-notes.webp", + "mode": "100644", + "type": "blob", + "sha": "1803f8f4c751d0cc493dbaa1c78c7f16bbb18208", + "size": 13346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1803f8f4c751d0cc493dbaa1c78c7f16bbb18208" + }, + { + "path": "webp/startpage.webp", + "mode": "100644", + "type": "blob", + "sha": "e73791359646f3742af54a5801efe05809399fe6", + "size": 117296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e73791359646f3742af54a5801efe05809399fe6" + }, + { + "path": "webp/stash.webp", + "mode": "100644", + "type": "blob", + "sha": "42ce14e16f30c9714f22fc06789fd3902b0e4196", + "size": 30528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42ce14e16f30c9714f22fc06789fd3902b0e4196" + }, + { + "path": "webp/statping-ng.webp", + "mode": "100644", + "type": "blob", + "sha": "bccd0c5c248f3bc341770f59def3531a00588072", + "size": 27504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bccd0c5c248f3bc341770f59def3531a00588072" + }, + { + "path": "webp/statping.webp", + "mode": "100644", + "type": "blob", + "sha": "bccd0c5c248f3bc341770f59def3531a00588072", + "size": 27504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bccd0c5c248f3bc341770f59def3531a00588072" + }, + { + "path": "webp/stb-proxy.webp", + "mode": "100644", + "type": "blob", + "sha": "2d8d62185f33cd923a599c557ce7a9551db77175", + "size": 12604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2d8d62185f33cd923a599c557ce7a9551db77175" + }, + { + "path": "webp/steam.webp", + "mode": "100644", + "type": "blob", + "sha": "7d9e898797c49bf7b20d649f16e818f6811dba40", + "size": 55564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d9e898797c49bf7b20d649f16e818f6811dba40" + }, + { + "path": "webp/step-ca.webp", + "mode": "100644", + "type": "blob", + "sha": "4ed274c3dac21a802eaeb6d58ab5bc7aadf2796c", + "size": 22858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ed274c3dac21a802eaeb6d58ab5bc7aadf2796c" + }, + { + "path": "webp/stirling-pdf.webp", + "mode": "100644", + "type": "blob", + "sha": "06d3847676264a34892f0f2fc5e97966c6643861", + "size": 42842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/06d3847676264a34892f0f2fc5e97966c6643861" + }, + { + "path": "webp/storj.webp", + "mode": "100644", + "type": "blob", + "sha": "ea786f9e86e4cf75e5c9f368ff4dcd628940a3fe", + "size": 42940, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea786f9e86e4cf75e5c9f368ff4dcd628940a3fe" + }, + { + "path": "webp/storm.webp", + "mode": "100644", + "type": "blob", + "sha": "2212b9d93f82fbf8a402627c22c80ac3b0a8a3d8", + "size": 22052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2212b9d93f82fbf8a402627c22c80ac3b0a8a3d8" + }, + { + "path": "webp/stormkit.webp", + "mode": "100644", + "type": "blob", + "sha": "90483fb734c144c053b0e3660800a0509bc0cca5", + "size": 31134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90483fb734c144c053b0e3660800a0509bc0cca5" + }, + { + "path": "webp/strapi.webp", + "mode": "100644", + "type": "blob", + "sha": "f8c7351478a1f1cf8c1fa2fc7e1d51e96664467c", + "size": 12830, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8c7351478a1f1cf8c1fa2fc7e1d51e96664467c" + }, + { + "path": "webp/strava.webp", + "mode": "100644", + "type": "blob", + "sha": "8daf654e996916b166a512b21c3fba05511e5147", + "size": 15052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8daf654e996916b166a512b21c3fba05511e5147" + }, + { + "path": "webp/stream-harvestarr.webp", + "mode": "100644", + "type": "blob", + "sha": "701145c56ed83128197c3ef6733eb769cfad4eee", + "size": 164850, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/701145c56ed83128197c3ef6733eb769cfad4eee" + }, + { + "path": "webp/streama.webp", + "mode": "100644", + "type": "blob", + "sha": "2f6f6622f3f9e21f7abe6066d88791c69b0d6c96", + "size": 5304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f6f6622f3f9e21f7abe6066d88791c69b0d6c96" + }, + { + "path": "webp/stremio.webp", + "mode": "100644", + "type": "blob", + "sha": "8b1c8c075f782bf1bc5fe99e1f644b3c94b195b8", + "size": 18608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b1c8c075f782bf1bc5fe99e1f644b3c94b195b8" + }, + { + "path": "webp/stump-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "894351e144cccd36c4a343d420a5c7c83de4953f", + "size": 117878, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/894351e144cccd36c4a343d420a5c7c83de4953f" + }, + { + "path": "webp/stump.webp", + "mode": "100644", + "type": "blob", + "sha": "ff45948e085aff0a62194579c90fc10c223eebec", + "size": 93028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ff45948e085aff0a62194579c90fc10c223eebec" + }, + { + "path": "webp/sub-store.webp", + "mode": "100644", + "type": "blob", + "sha": "8f250ca35227f147cfd39c57b8c5ad97401ef6b1", + "size": 41140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f250ca35227f147cfd39c57b8c5ad97401ef6b1" + }, + { + "path": "webp/subatic.webp", + "mode": "100644", + "type": "blob", + "sha": "1ab2a1a5b9c0400c938cad11c7c78d33394dc94f", + "size": 18750, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1ab2a1a5b9c0400c938cad11c7c78d33394dc94f" + }, + { + "path": "webp/subdl.webp", + "mode": "100644", + "type": "blob", + "sha": "ecf11a079b941ef71ad0c4a8dd6a770c8a6fd134", + "size": 13016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ecf11a079b941ef71ad0c4a8dd6a770c8a6fd134" + }, + { + "path": "webp/substreamer.webp", + "mode": "100644", + "type": "blob", + "sha": "4a3f425bde1a24a39c2b97f86b00ea0514627b1b", + "size": 40146, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4a3f425bde1a24a39c2b97f86b00ea0514627b1b" + }, + { + "path": "webp/suggest-arr.webp", + "mode": "100644", + "type": "blob", + "sha": "f2ab66a9cfab9b304b04c989b09bd52918897ec4", + "size": 81458, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f2ab66a9cfab9b304b04c989b09bd52918897ec4" + }, + { + "path": "webp/sun-panel.webp", + "mode": "100644", + "type": "blob", + "sha": "c89a440ec3fc8f3efa299915d10c8a27ef204109", + "size": 20274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c89a440ec3fc8f3efa299915d10c8a27ef204109" + }, + { + "path": "webp/sunsama.webp", + "mode": "100644", + "type": "blob", + "sha": "cb666fc0d2252a308b69a78c502aaf3cc845a5c9", + "size": 34328, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cb666fc0d2252a308b69a78c502aaf3cc845a5c9" + }, + { + "path": "webp/sunshine.webp", + "mode": "100644", + "type": "blob", + "sha": "d1eff6f922689359046f4a62ab03ab3fc947eb12", + "size": 63544, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1eff6f922689359046f4a62ab03ab3fc947eb12" + }, + { + "path": "webp/supabase.webp", + "mode": "100644", + "type": "blob", + "sha": "b1d73371849d5cbab392d505edb4ef839901b39f", + "size": 16026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1d73371849d5cbab392d505edb4ef839901b39f" + }, + { + "path": "webp/superlist.webp", + "mode": "100644", + "type": "blob", + "sha": "376e0af11d59f38723ab5db97b8712df6e261883", + "size": 56118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/376e0af11d59f38723ab5db97b8712df6e261883" + }, + { + "path": "webp/supermicro.webp", + "mode": "100644", + "type": "blob", + "sha": "7293352c069e57737cbe448e0d05e4b93dc5516c", + "size": 109324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7293352c069e57737cbe448e0d05e4b93dc5516c" + }, + { + "path": "webp/surveymonkey.webp", + "mode": "100644", + "type": "blob", + "sha": "79f7bb3cfbbe06b0bb636f8113057ac71c95a4c8", + "size": 24392, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79f7bb3cfbbe06b0bb636f8113057ac71c95a4c8" + }, + { + "path": "webp/suwayomi-light.webp", + "mode": "100644", + "type": "blob", + "sha": "de681a09bad3be6dbd79833e849683133bc75d2a", + "size": 44334, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/de681a09bad3be6dbd79833e849683133bc75d2a" + }, + { + "path": "webp/suwayomi.webp", + "mode": "100644", + "type": "blob", + "sha": "c578bc24a0926c620fdb01dc8c11b0d1ce58af08", + "size": 45016, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c578bc24a0926c620fdb01dc8c11b0d1ce58af08" + }, + { + "path": "webp/svelte.webp", + "mode": "100644", + "type": "blob", + "sha": "19bb0c2f3c5db85bed46998065c20c59d0e2bb87", + "size": 52372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19bb0c2f3c5db85bed46998065c20c59d0e2bb87" + }, + { + "path": "webp/swagger.webp", + "mode": "100644", + "type": "blob", + "sha": "ee1bdc42075cccb89fe18672056745c38699ccfe", + "size": 76456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee1bdc42075cccb89fe18672056745c38699ccfe" + }, + { + "path": "webp/swarmpit.webp", + "mode": "100644", + "type": "blob", + "sha": "abef3c847a4d7c071ff64ef4fc85da701db79c07", + "size": 56372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/abef3c847a4d7c071ff64ef4fc85da701db79c07" + }, + { + "path": "webp/swift.webp", + "mode": "100644", + "type": "blob", + "sha": "2be945f03ee96c320bcbd8440d873a7a11616838", + "size": 59484, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2be945f03ee96c320bcbd8440d873a7a11616838" + }, + { + "path": "webp/swizzin.webp", + "mode": "100644", + "type": "blob", + "sha": "7a2870a6ff59b5a09bec9f2176856f242745cd8c", + "size": 17032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7a2870a6ff59b5a09bec9f2176856f242745cd8c" + }, + { + "path": "webp/syft.webp", + "mode": "100644", + "type": "blob", + "sha": "8c204fc6e9046980d81cdb7025dfe341a851828c", + "size": 53290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8c204fc6e9046980d81cdb7025dfe341a851828c" + }, + { + "path": "webp/symedia.webp", + "mode": "100644", + "type": "blob", + "sha": "3f78bf4ee83b8a7d20857d1c910d3a51123153ad", + "size": 124370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3f78bf4ee83b8a7d20857d1c910d3a51123153ad" + }, + { + "path": "webp/symmetricom-light.webp", + "mode": "100644", + "type": "blob", + "sha": "50d2ff22f449d5345644322e70ab8b7a73ddcd61", + "size": 17970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/50d2ff22f449d5345644322e70ab8b7a73ddcd61" + }, + { + "path": "webp/symmetricom.webp", + "mode": "100644", + "type": "blob", + "sha": "cd9846b0abfca842eb4c855eacba6c39bb59ea72", + "size": 16998, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd9846b0abfca842eb4c855eacba6c39bb59ea72" + }, + { + "path": "webp/sympa.webp", + "mode": "100644", + "type": "blob", + "sha": "caea1d0f50c04aa8f2698b88e5936c162a4b825c", + "size": 24966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/caea1d0f50c04aa8f2698b88e5936c162a4b825c" + }, + { + "path": "webp/synapse-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ae9b5d4a5c3098b8dd8eecdab2cf5d3f9ef3ada7", + "size": 8686, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ae9b5d4a5c3098b8dd8eecdab2cf5d3f9ef3ada7" + }, + { + "path": "webp/synapse.webp", + "mode": "100644", + "type": "blob", + "sha": "b85755a0d9fd9294d53d75b9cc41bc6f711b41d0", + "size": 8680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b85755a0d9fd9294d53d75b9cc41bc6f711b41d0" + }, + { + "path": "webp/syncany.webp", + "mode": "100644", + "type": "blob", + "sha": "34b45251c5f4e254167635b15090259f8b9499f3", + "size": 29870, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/34b45251c5f4e254167635b15090259f8b9499f3" + }, + { + "path": "webp/synclounge-light.webp", + "mode": "100644", + "type": "blob", + "sha": "068766d15e01a424f0597ad5f6848d7a74cd460e", + "size": 10956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/068766d15e01a424f0597ad5f6848d7a74cd460e" + }, + { + "path": "webp/synclounge.webp", + "mode": "100644", + "type": "blob", + "sha": "971815ab2f78c8867cde1cd86ff1d4f515d5c8a4", + "size": 25838, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/971815ab2f78c8867cde1cd86ff1d4f515d5c8a4" + }, + { + "path": "webp/syncplay.webp", + "mode": "100644", + "type": "blob", + "sha": "8ad258ad61be2a3960351a5931fcbe77eb3c449a", + "size": 55820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ad258ad61be2a3960351a5931fcbe77eb3c449a" + }, + { + "path": "webp/syncthing-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "91370dd9203d9315a662e03bce23a049172cdca1", + "size": 80772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/91370dd9203d9315a662e03bce23a049172cdca1" + }, + { + "path": "webp/syncthing.webp", + "mode": "100644", + "type": "blob", + "sha": "08ae1d906a3354d080ea4bacf235f629f599e1fb", + "size": 77032, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08ae1d906a3354d080ea4bacf235f629f599e1fb" + }, + { + "path": "webp/synology-audio-station.webp", + "mode": "100644", + "type": "blob", + "sha": "e675da6bba3205e1d1756ca10d7986ccb99a897a", + "size": 22808, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e675da6bba3205e1d1756ca10d7986ccb99a897a" + }, + { + "path": "webp/synology-calendar.webp", + "mode": "100644", + "type": "blob", + "sha": "20d553d49c4e6a8ec315471eacc445a60b329ee3", + "size": 17988, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/20d553d49c4e6a8ec315471eacc445a60b329ee3" + }, + { + "path": "webp/synology-chat.webp", + "mode": "100644", + "type": "blob", + "sha": "18323f03b76b05a1af4be29b0c6f60192343a154", + "size": 26990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18323f03b76b05a1af4be29b0c6f60192343a154" + }, + { + "path": "webp/synology-cloud-sync.webp", + "mode": "100644", + "type": "blob", + "sha": "fd00921624c80689595996b2126ad43c1c47bbf9", + "size": 41400, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fd00921624c80689595996b2126ad43c1c47bbf9" + }, + { + "path": "webp/synology-contacts.webp", + "mode": "100644", + "type": "blob", + "sha": "35c163aecd4cc7f2539c90d44e844ee737fd7a42", + "size": 22050, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35c163aecd4cc7f2539c90d44e844ee737fd7a42" + }, + { + "path": "webp/synology-document-viewer.webp", + "mode": "100644", + "type": "blob", + "sha": "7d197350e8c91b4515b56b3236a74fa9148ace85", + "size": 29260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d197350e8c91b4515b56b3236a74fa9148ace85" + }, + { + "path": "webp/synology-download-station.webp", + "mode": "100644", + "type": "blob", + "sha": "5ca95dc2c6cbc38182c4d043574ba1b1b9a2ae34", + "size": 17208, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ca95dc2c6cbc38182c4d043574ba1b1b9a2ae34" + }, + { + "path": "webp/synology-drive-server.webp", + "mode": "100644", + "type": "blob", + "sha": "ce7422788b82335a9ba2347b41dc9edd79451f43", + "size": 28900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce7422788b82335a9ba2347b41dc9edd79451f43" + }, + { + "path": "webp/synology-drive.webp", + "mode": "100644", + "type": "blob", + "sha": "ce7422788b82335a9ba2347b41dc9edd79451f43", + "size": 28900, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ce7422788b82335a9ba2347b41dc9edd79451f43" + }, + { + "path": "webp/synology-dsm.webp", + "mode": "100644", + "type": "blob", + "sha": "449137900078a0f32b91a1105586b25c7ace038b", + "size": 21426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/449137900078a0f32b91a1105586b25c7ace038b" + }, + { + "path": "webp/synology-file-station.webp", + "mode": "100644", + "type": "blob", + "sha": "ed7add4b1d0c8bca31f97391c613c435010823dc", + "size": 20736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ed7add4b1d0c8bca31f97391c613c435010823dc" + }, + { + "path": "webp/synology-light.webp", + "mode": "100644", + "type": "blob", + "sha": "da69c799d273d105b200a46687328f10abfff4a9", + "size": 8234, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da69c799d273d105b200a46687328f10abfff4a9" + }, + { + "path": "webp/synology-mail-plus.webp", + "mode": "100644", + "type": "blob", + "sha": "8471c751423f34319e615918492e2515dca24160", + "size": 18142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8471c751423f34319e615918492e2515dca24160" + }, + { + "path": "webp/synology-mail-station.webp", + "mode": "100644", + "type": "blob", + "sha": "c4121c2d89006afb34616082e856b5533be06647", + "size": 17656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c4121c2d89006afb34616082e856b5533be06647" + }, + { + "path": "webp/synology-note-station.webp", + "mode": "100644", + "type": "blob", + "sha": "650aa1a015ec3a3d6040d50686b3e2c8e7063291", + "size": 37242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/650aa1a015ec3a3d6040d50686b3e2c8e7063291" + }, + { + "path": "webp/synology-office.webp", + "mode": "100644", + "type": "blob", + "sha": "1a3ae5ec7ed88cac41f31c030b64c9358a35768a", + "size": 33022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1a3ae5ec7ed88cac41f31c030b64c9358a35768a" + }, + { + "path": "webp/synology-pdfviewer.webp", + "mode": "100644", + "type": "blob", + "sha": "7d197350e8c91b4515b56b3236a74fa9148ace85", + "size": 29260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7d197350e8c91b4515b56b3236a74fa9148ace85" + }, + { + "path": "webp/synology-photo-station.webp", + "mode": "100644", + "type": "blob", + "sha": "d67d2cbfdfaccefbb2e486e1d710321cdc6ec32f", + "size": 20240, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d67d2cbfdfaccefbb2e486e1d710321cdc6ec32f" + }, + { + "path": "webp/synology-photos.webp", + "mode": "100644", + "type": "blob", + "sha": "3c1cb1195088f0cf49a5fea8c4247b0a9480cf17", + "size": 35436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c1cb1195088f0cf49a5fea8c4247b0a9480cf17" + }, + { + "path": "webp/synology-surveillance-station.webp", + "mode": "100644", + "type": "blob", + "sha": "b0f89a05f0ae85eb4ca8d66480b5402689207e47", + "size": 42720, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0f89a05f0ae85eb4ca8d66480b5402689207e47" + }, + { + "path": "webp/synology-text-editor.webp", + "mode": "100644", + "type": "blob", + "sha": "42b8148eec493524151dffd3be227f6622e3d012", + "size": 47558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/42b8148eec493524151dffd3be227f6622e3d012" + }, + { + "path": "webp/synology-video-station.webp", + "mode": "100644", + "type": "blob", + "sha": "f69ff788e9d90ca445c9eb84e5baa43cb29ed921", + "size": 18118, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f69ff788e9d90ca445c9eb84e5baa43cb29ed921" + }, + { + "path": "webp/synology-vmm.webp", + "mode": "100644", + "type": "blob", + "sha": "6b74f633d770fd3f17b70dd65ea6afea3b3ed75e", + "size": 38814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6b74f633d770fd3f17b70dd65ea6afea3b3ed75e" + }, + { + "path": "webp/synology-webstation.webp", + "mode": "100644", + "type": "blob", + "sha": "386d2813c938b5892209bbf37db42c125dbebd94", + "size": 39598, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/386d2813c938b5892209bbf37db42c125dbebd94" + }, + { + "path": "webp/synology.webp", + "mode": "100644", + "type": "blob", + "sha": "0223ebba53add54d18a864a66d0b15a9f27c6378", + "size": 11628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0223ebba53add54d18a864a66d0b15a9f27c6378" + }, + { + "path": "webp/sysreptor.webp", + "mode": "100644", + "type": "blob", + "sha": "4b40320dbfddd93b17c0210fc56746475e2f2d09", + "size": 17120, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b40320dbfddd93b17c0210fc56746475e2f2d09" + }, + { + "path": "webp/t3-chat.webp", + "mode": "100644", + "type": "blob", + "sha": "b0b874815539e3b5e78f3bab2ed6f1c4b117b91a", + "size": 55976, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0b874815539e3b5e78f3bab2ed6f1c4b117b91a" + }, + { + "path": "webp/tabula.webp", + "mode": "100644", + "type": "blob", + "sha": "8a67cae20d88ba6741f36230be5e8306dbdd25fc", + "size": 24022, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8a67cae20d88ba6741f36230be5e8306dbdd25fc" + }, + { + "path": "webp/tacticalrmm.webp", + "mode": "100644", + "type": "blob", + "sha": "922a887a7bfa908279815aa50a76b0ef32df96f7", + "size": 26054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/922a887a7bfa908279815aa50a76b0ef32df96f7" + }, + { + "path": "webp/taiga.webp", + "mode": "100644", + "type": "blob", + "sha": "2770ebcade28d742114a0b1662cdbc9670b2ca41", + "size": 46606, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2770ebcade28d742114a0b1662cdbc9670b2ca41" + }, + { + "path": "webp/tailscale-light.webp", + "mode": "100644", + "type": "blob", + "sha": "73a8fa1b13d508ffead4795b87822784cc44b93f", + "size": 12002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/73a8fa1b13d508ffead4795b87822784cc44b93f" + }, + { + "path": "webp/tailscale.webp", + "mode": "100644", + "type": "blob", + "sha": "e7588ad4c3c04bf2fa6efe46721ce1a6d574498a", + "size": 7556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e7588ad4c3c04bf2fa6efe46721ce1a6d574498a" + }, + { + "path": "webp/tailwind.webp", + "mode": "100644", + "type": "blob", + "sha": "35532def9c65aa0e959e17b2fc31e39a5886200e", + "size": 31242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/35532def9c65aa0e959e17b2fc31e39a5886200e" + }, + { + "path": "webp/talos.webp", + "mode": "100644", + "type": "blob", + "sha": "5bf4ec8c308166158a665bb8d6b20061a8c96464", + "size": 47672, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bf4ec8c308166158a665bb8d6b20061a8c96464" + }, + { + "path": "webp/tandoor-recipes.webp", + "mode": "100644", + "type": "blob", + "sha": "8cc6e5d9871e446f25c1dda8dba3b446fce836ae", + "size": 52274, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8cc6e5d9871e446f25c1dda8dba3b446fce836ae" + }, + { + "path": "webp/tangerine-ui.webp", + "mode": "100644", + "type": "blob", + "sha": "f6116457ce8a6e09a8a8b2d54169c64ae49d139e", + "size": 44724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6116457ce8a6e09a8a8b2d54169c64ae49d139e" + }, + { + "path": "webp/tanoshi.webp", + "mode": "100644", + "type": "blob", + "sha": "9dd0bd96272fc716d193a09a11ecb7f1170a6046", + "size": 33226, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9dd0bd96272fc716d193a09a11ecb7f1170a6046" + }, + { + "path": "webp/tar1090.webp", + "mode": "100644", + "type": "blob", + "sha": "f75516589c61ed738f89f5aba4a483610a41213c", + "size": 2950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f75516589c61ed738f89f5aba4a483610a41213c" + }, + { + "path": "webp/taskcafe.webp", + "mode": "100644", + "type": "blob", + "sha": "ec695ed4c36bb5f17abdbda1bd5601234c148685", + "size": 44616, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec695ed4c36bb5f17abdbda1bd5601234c148685" + }, + { + "path": "webp/tasmoadmin.webp", + "mode": "100644", + "type": "blob", + "sha": "0096f7f2633eaf5e7e353f10b3b5ee39067f52c9", + "size": 5320, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0096f7f2633eaf5e7e353f10b3b5ee39067f52c9" + }, + { + "path": "webp/tasmocompiler.webp", + "mode": "100644", + "type": "blob", + "sha": "7bb6db33ff5bdc9094dc5c0dfcbb32cbee912043", + "size": 47534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7bb6db33ff5bdc9094dc5c0dfcbb32cbee912043" + }, + { + "path": "webp/tasmota-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d5869833282e6ccc7e306c9ecae7f4b348149f38", + "size": 4692, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d5869833282e6ccc7e306c9ecae7f4b348149f38" + }, + { + "path": "webp/tasmota.webp", + "mode": "100644", + "type": "blob", + "sha": "382935c5f54185969fa69fa3479077884d625b2e", + "size": 5728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/382935c5f54185969fa69fa3479077884d625b2e" + }, + { + "path": "webp/tautulli.webp", + "mode": "100644", + "type": "blob", + "sha": "d0867175b2537ac9b4f35a6b4ef53ec4926d21b0", + "size": 38630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d0867175b2537ac9b4f35a6b4ef53ec4926d21b0" + }, + { + "path": "webp/tdarr.webp", + "mode": "100644", + "type": "blob", + "sha": "578c97b2cc096648f7bda9d7c08b2eb667596c39", + "size": 148276, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/578c97b2cc096648f7bda9d7c08b2eb667596c39" + }, + { + "path": "webp/team-viewer.webp", + "mode": "100644", + "type": "blob", + "sha": "7ecc6c988790758aca4a1c7f7e300122e9c9fc65", + "size": 20066, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ecc6c988790758aca4a1c7f7e300122e9c9fc65" + }, + { + "path": "webp/teamcity-light.webp", + "mode": "100644", + "type": "blob", + "sha": "7ad98d7962119240a6cdf975d6067a68fa95c7dc", + "size": 34656, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ad98d7962119240a6cdf975d6067a68fa95c7dc" + }, + { + "path": "webp/teamcity.webp", + "mode": "100644", + "type": "blob", + "sha": "a4fcc96da42db74f6bb9e9501762dd50212098dc", + "size": 33594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a4fcc96da42db74f6bb9e9501762dd50212098dc" + }, + { + "path": "webp/teamspeak.webp", + "mode": "100644", + "type": "blob", + "sha": "873e295f837f50646e27a3c0437894e18255a940", + "size": 69648, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/873e295f837f50646e27a3c0437894e18255a940" + }, + { + "path": "webp/teamtailor.webp", + "mode": "100644", + "type": "blob", + "sha": "1cac7770a1bb2d9daf9c95d77cafb0669fe651f3", + "size": 21726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cac7770a1bb2d9daf9c95d77cafb0669fe651f3" + }, + { + "path": "webp/technitium.webp", + "mode": "100644", + "type": "blob", + "sha": "c9f1aab43e2415b4659f7a6468556565f6c57ac6", + "size": 8100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9f1aab43e2415b4659f7a6468556565f6c57ac6" + }, + { + "path": "webp/teddy-cloud.webp", + "mode": "100644", + "type": "blob", + "sha": "80fe0ca5101e13f7e1a59f79b35dd58bb0f6e5ed", + "size": 55516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/80fe0ca5101e13f7e1a59f79b35dd58bb0f6e5ed" + }, + { + "path": "webp/teedy.webp", + "mode": "100644", + "type": "blob", + "sha": "5789c3aa5bd26af2cb1a77646c0efe596569297b", + "size": 14532, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5789c3aa5bd26af2cb1a77646c0efe596569297b" + }, + { + "path": "webp/telegraf.webp", + "mode": "100644", + "type": "blob", + "sha": "9eac236209ed67afc8c67db15984d8d86a07956d", + "size": 34188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9eac236209ed67afc8c67db15984d8d86a07956d" + }, + { + "path": "webp/telegram.webp", + "mode": "100644", + "type": "blob", + "sha": "9a853f207a235bffa9f3fc248ffd834c74f3063c", + "size": 40290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9a853f207a235bffa9f3fc248ffd834c74f3063c" + }, + { + "path": "webp/telekom.webp", + "mode": "100644", + "type": "blob", + "sha": "0bd64308ceac37c61d250a23c112f5b07afd6264", + "size": 6570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0bd64308ceac37c61d250a23c112f5b07afd6264" + }, + { + "path": "webp/teleport.webp", + "mode": "100644", + "type": "blob", + "sha": "d9d567ab737352fde3f8d5b4a63d0b609d0d07e5", + "size": 33628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d9d567ab737352fde3f8d5b4a63d0b609d0d07e5" + }, + { + "path": "webp/tenable-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "28727a871f5c35ab98f3aa9bedeadfc22a1189ed", + "size": 12984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/28727a871f5c35ab98f3aa9bedeadfc22a1189ed" + }, + { + "path": "webp/tenable.webp", + "mode": "100644", + "type": "blob", + "sha": "3aa5046416705ecadc55083ad3595e619e28ac87", + "size": 53100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3aa5046416705ecadc55083ad3595e619e28ac87" + }, + { + "path": "webp/tenda.webp", + "mode": "100644", + "type": "blob", + "sha": "cad2136d68870b24588bd6cdc96f64f2a2bae32d", + "size": 108412, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cad2136d68870b24588bd6cdc96f64f2a2bae32d" + }, + { + "path": "webp/terminal.webp", + "mode": "100644", + "type": "blob", + "sha": "3e69551cc17efec0ad2a6d33a7cea28b1eb8e245", + "size": 10520, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3e69551cc17efec0ad2a6d33a7cea28b1eb8e245" + }, + { + "path": "webp/termix.webp", + "mode": "100644", + "type": "blob", + "sha": "16edc2b316bf143abb7d548482aaf926ec249caf", + "size": 36960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/16edc2b316bf143abb7d548482aaf926ec249caf" + }, + { + "path": "webp/terraform.webp", + "mode": "100644", + "type": "blob", + "sha": "a0cc5fb7cd7ddfe240655f4957d392e4f748c1cd", + "size": 14456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a0cc5fb7cd7ddfe240655f4957d392e4f748c1cd" + }, + { + "path": "webp/terraria.webp", + "mode": "100644", + "type": "blob", + "sha": "4eff86b9092dbc7834d8e070cc2772b153383306", + "size": 93716, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4eff86b9092dbc7834d8e070cc2772b153383306" + }, + { + "path": "webp/teslamate-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5f8eb3a84fced994429c79032b57203d2cdcd2c1", + "size": 7992, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5f8eb3a84fced994429c79032b57203d2cdcd2c1" + }, + { + "path": "webp/teslamate.webp", + "mode": "100644", + "type": "blob", + "sha": "299559c5a08c469c1863294e9bac2a20b6412603", + "size": 7440, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/299559c5a08c469c1863294e9bac2a20b6412603" + }, + { + "path": "webp/thanos.webp", + "mode": "100644", + "type": "blob", + "sha": "8811114825c87632cb790735217a8b5e955cfce5", + "size": 8298, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8811114825c87632cb790735217a8b5e955cfce5" + }, + { + "path": "webp/the-onion.webp", + "mode": "100644", + "type": "blob", + "sha": "092b3d3e11b29754d5e36e46a3a8873430d278f7", + "size": 36534, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/092b3d3e11b29754d5e36e46a3a8873430d278f7" + }, + { + "path": "webp/the-pirate-bay.webp", + "mode": "100644", + "type": "blob", + "sha": "372e01d90a103964dbd9d04f1975d350aa32ffdf", + "size": 108572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/372e01d90a103964dbd9d04f1975d350aa32ffdf" + }, + { + "path": "webp/the-proxy-bay.webp", + "mode": "100644", + "type": "blob", + "sha": "372e01d90a103964dbd9d04f1975d350aa32ffdf", + "size": 108572, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/372e01d90a103964dbd9d04f1975d350aa32ffdf" + }, + { + "path": "webp/theia-light.webp", + "mode": "100644", + "type": "blob", + "sha": "432b8c0b36503711a794a2ffd69496407412d623", + "size": 9910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/432b8c0b36503711a794a2ffd69496407412d623" + }, + { + "path": "webp/theia.webp", + "mode": "100644", + "type": "blob", + "sha": "bcd9006c9ca3b8ce52ac50d868bc5d09cc0763ff", + "size": 8166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bcd9006c9ca3b8ce52ac50d868bc5d09cc0763ff" + }, + { + "path": "webp/thelounge.webp", + "mode": "100644", + "type": "blob", + "sha": "1160eadb4bd9e420552c432673b7c4d665f3d360", + "size": 41728, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1160eadb4bd9e420552c432673b7c4d665f3d360" + }, + { + "path": "webp/themepark.webp", + "mode": "100644", + "type": "blob", + "sha": "1c6d493b2805146276fb08cb4cefad6b9cf748e0", + "size": 99518, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c6d493b2805146276fb08cb4cefad6b9cf748e0" + }, + { + "path": "webp/theodinproject.webp", + "mode": "100644", + "type": "blob", + "sha": "18ca4d0adbb9e3b3b137ac487ed2f329c80d17f2", + "size": 25676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18ca4d0adbb9e3b3b137ac487ed2f329c80d17f2" + }, + { + "path": "webp/thin-linc.webp", + "mode": "100644", + "type": "blob", + "sha": "c22c00bbd7b54d5bb96e153fdf07322b380c5bed", + "size": 11216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c22c00bbd7b54d5bb96e153fdf07322b380c5bed" + }, + { + "path": "webp/thingsboard.webp", + "mode": "100644", + "type": "blob", + "sha": "8dc64100a3648e2cff7b2cf57bd80fdeca5ac084", + "size": 42846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8dc64100a3648e2cff7b2cf57bd80fdeca5ac084" + }, + { + "path": "webp/threadfin.webp", + "mode": "100644", + "type": "blob", + "sha": "2bee790e53cb1e040635ef87bb14b64d6383bf35", + "size": 1628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2bee790e53cb1e040635ef87bb14b64d6383bf35" + }, + { + "path": "webp/threads-light.webp", + "mode": "100644", + "type": "blob", + "sha": "672b20f15c44c11ee2756c66a749aadedd8b9c9f", + "size": 10058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/672b20f15c44c11ee2756c66a749aadedd8b9c9f" + }, + { + "path": "webp/threads.webp", + "mode": "100644", + "type": "blob", + "sha": "0de784b9ded1a152b70632a8455b244be3e7d9db", + "size": 9002, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0de784b9ded1a152b70632a8455b244be3e7d9db" + }, + { + "path": "webp/thunderbird.webp", + "mode": "100644", + "type": "blob", + "sha": "102c46f17ca4906647d82915228e9723bfdcb178", + "size": 81966, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/102c46f17ca4906647d82915228e9723bfdcb178" + }, + { + "path": "webp/thunderhub-light.webp", + "mode": "100644", + "type": "blob", + "sha": "918f4e09e50f656231e30d544283f2f463b853fd", + "size": 6304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/918f4e09e50f656231e30d544283f2f463b853fd" + }, + { + "path": "webp/thunderhub.webp", + "mode": "100644", + "type": "blob", + "sha": "122d3c007fdd1ad833b9debd542bc51f86bb19f3", + "size": 1302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/122d3c007fdd1ad833b9debd542bc51f86bb19f3" + }, + { + "path": "webp/tianji-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2173529751b71032b2317cd5eb83141af2e2e227", + "size": 13942, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2173529751b71032b2317cd5eb83141af2e2e227" + }, + { + "path": "webp/tianji.webp", + "mode": "100644", + "type": "blob", + "sha": "13b4021cfff65d58619ebc125fdd0a79a0de1b91", + "size": 14452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/13b4021cfff65d58619ebc125fdd0a79a0de1b91" + }, + { + "path": "webp/ticky.webp", + "mode": "100644", + "type": "blob", + "sha": "6e266c241295a4866654aa05a72aa0ef28cb35b2", + "size": 52402, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e266c241295a4866654aa05a72aa0ef28cb35b2" + }, + { + "path": "webp/tidal-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "2f293f3cf918f7ae36aef02a7e5f9518dbf78400", + "size": 2984, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2f293f3cf918f7ae36aef02a7e5f9518dbf78400" + }, + { + "path": "webp/tidal.webp", + "mode": "100644", + "type": "blob", + "sha": "f3a3b13fd04b6132ee882cfcb5e9bd9b65579281", + "size": 5256, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f3a3b13fd04b6132ee882cfcb5e9bd9b65579281" + }, + { + "path": "webp/tiddlywiki-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6ccaa41e54a73f3870148b2dd6af57bfb83f0a62", + "size": 8090, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6ccaa41e54a73f3870148b2dd6af57bfb83f0a62" + }, + { + "path": "webp/tiddlywiki.webp", + "mode": "100644", + "type": "blob", + "sha": "2ca28e9303d553b861521bc25b958319f4e9a1dc", + "size": 8084, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ca28e9303d553b861521bc25b958319f4e9a1dc" + }, + { + "path": "webp/tiktok-light.webp", + "mode": "100644", + "type": "blob", + "sha": "97fcca709cc15c93e057efc8c0d8665ec5f0d379", + "size": 42290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/97fcca709cc15c93e057efc8c0d8665ec5f0d379" + }, + { + "path": "webp/tiktok.webp", + "mode": "100644", + "type": "blob", + "sha": "7c78d850db20a6aac2c8a8524a6340020d1de72b", + "size": 43636, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7c78d850db20a6aac2c8a8524a6340020d1de72b" + }, + { + "path": "webp/timemachines-light.webp", + "mode": "100644", + "type": "blob", + "sha": "40c21ae842137c97b56676c9a6c31516fd591cf6", + "size": 28816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/40c21ae842137c97b56676c9a6c31516fd591cf6" + }, + { + "path": "webp/timemachines.webp", + "mode": "100644", + "type": "blob", + "sha": "7db8dee5a3b39bab00b4d10a2153a69501f01f96", + "size": 29414, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7db8dee5a3b39bab00b4d10a2153a69501f01f96" + }, + { + "path": "webp/timetagger-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d315ccba557834e6247697d3f9fd60ea81b9bfcf", + "size": 2626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d315ccba557834e6247697d3f9fd60ea81b9bfcf" + }, + { + "path": "webp/timetagger.webp", + "mode": "100644", + "type": "blob", + "sha": "7cf4aa6ac2b5e084584a9ccf500d7660bd1526ab", + "size": 3000, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7cf4aa6ac2b5e084584a9ccf500d7660bd1526ab" + }, + { + "path": "webp/ting-isp.webp", + "mode": "100644", + "type": "blob", + "sha": "5e2feec65e8d45825505f4045881159d1764b404", + "size": 30144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e2feec65e8d45825505f4045881159d1764b404" + }, + { + "path": "webp/tiny-media-manager.webp", + "mode": "100644", + "type": "blob", + "sha": "5bb91fc2d7530d38d81f072c2ccf86645ee9cd68", + "size": 33738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bb91fc2d7530d38d81f072c2ccf86645ee9cd68" + }, + { + "path": "webp/tinyauth.webp", + "mode": "100644", + "type": "blob", + "sha": "8b8dd1d1bf1a62c8fc6ee9600d835e668e9fb2f2", + "size": 73570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b8dd1d1bf1a62c8fc6ee9600d835e668e9fb2f2" + }, + { + "path": "webp/tinypilot.webp", + "mode": "100644", + "type": "blob", + "sha": "5e904a54d30de5a1428072f4ddbd0be726c2831e", + "size": 9322, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5e904a54d30de5a1428072f4ddbd0be726c2831e" + }, + { + "path": "webp/tinytinyrss.webp", + "mode": "100644", + "type": "blob", + "sha": "a3f0e724b66305836cb29fca33aa211c26d0c7f6", + "size": 41556, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3f0e724b66305836cb29fca33aa211c26d0c7f6" + }, + { + "path": "webp/tipi.webp", + "mode": "100644", + "type": "blob", + "sha": "61ad3cf4929bba47f9a1b95ee24f336038474496", + "size": 28102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/61ad3cf4929bba47f9a1b95ee24f336038474496" + }, + { + "path": "webp/tmdb.webp", + "mode": "100644", + "type": "blob", + "sha": "e1409a743b462e1c06046485c67f4440b3d7f823", + "size": 41770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e1409a743b462e1c06046485c67f4440b3d7f823" + }, + { + "path": "webp/todoist-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "ebd149ba6ce8b6d4e88696488e4e38f6a6a4daa4", + "size": 52114, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ebd149ba6ce8b6d4e88696488e4e38f6a6a4daa4" + }, + { + "path": "webp/todoist.webp", + "mode": "100644", + "type": "blob", + "sha": "6084d91d1ac7b970f35fffad14d3b5fa3e715055", + "size": 49140, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6084d91d1ac7b970f35fffad14d3b5fa3e715055" + }, + { + "path": "webp/toggl-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "f8476116392442583cd28d9ba6baa08ba6032763", + "size": 28574, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8476116392442583cd28d9ba6baa08ba6032763" + }, + { + "path": "webp/toggl.webp", + "mode": "100644", + "type": "blob", + "sha": "851b2a92fa48d9706d42cb3247e63d489daae723", + "size": 22582, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/851b2a92fa48d9706d42cb3247e63d489daae723" + }, + { + "path": "webp/tolgee.webp", + "mode": "100644", + "type": "blob", + "sha": "5d70210fd20ac4bba89287a6268af85bdf1310ef", + "size": 14914, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d70210fd20ac4bba89287a6268af85bdf1310ef" + }, + { + "path": "webp/tooljet-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "1921a663c27a4c503af80353847a152022f84c1f", + "size": 26552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1921a663c27a4c503af80353847a152022f84c1f" + }, + { + "path": "webp/tooljet.webp", + "mode": "100644", + "type": "blob", + "sha": "402c4e07ba8b615f0f42586d7c9c153290de543a", + "size": 26516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/402c4e07ba8b615f0f42586d7c9c153290de543a" + }, + { + "path": "webp/topdesk.webp", + "mode": "100644", + "type": "blob", + "sha": "01a9e1b5157940f10d0d2ebdaa40c7774d98418b", + "size": 17390, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/01a9e1b5157940f10d0d2ebdaa40c7774d98418b" + }, + { + "path": "webp/tor.webp", + "mode": "100644", + "type": "blob", + "sha": "8945ac8711de8f24d6f6e56a68a8b1a8cb3b4e60", + "size": 55542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8945ac8711de8f24d6f6e56a68a8b1a8cb3b4e60" + }, + { + "path": "webp/torrserver.webp", + "mode": "100644", + "type": "blob", + "sha": "4e6b829e3470dc2c3e4d713d2fa11dcdbf272bcf", + "size": 164474, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4e6b829e3470dc2c3e4d713d2fa11dcdbf272bcf" + }, + { + "path": "webp/touitomamout.webp", + "mode": "100644", + "type": "blob", + "sha": "18cf2184a814185b2eb9da8ac56baabf964c5341", + "size": 57266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/18cf2184a814185b2eb9da8ac56baabf964c5341" + }, + { + "path": "webp/tp-link.webp", + "mode": "100644", + "type": "blob", + "sha": "260a4d6647754217e12562e723ef9063099b63d3", + "size": 12468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/260a4d6647754217e12562e723ef9063099b63d3" + }, + { + "path": "webp/tpdb.webp", + "mode": "100644", + "type": "blob", + "sha": "ef6ba91fc8bb518091e384a32dc09fad6ccf3bd7", + "size": 52112, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ef6ba91fc8bb518091e384a32dc09fad6ccf3bd7" + }, + { + "path": "webp/traccar-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "1cf22b7f2f4eeeeecf3a13924e31389c7fae2af0", + "size": 19546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1cf22b7f2f4eeeeecf3a13924e31389c7fae2af0" + }, + { + "path": "webp/traccar.webp", + "mode": "100644", + "type": "blob", + "sha": "172bff4262ba5edd30dd358d370bd0549edcf5d4", + "size": 14954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/172bff4262ba5edd30dd358d370bd0549edcf5d4" + }, + { + "path": "webp/trading-view-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "8f3078b4a22e457e3321e0c85a4936b8f0364b40", + "size": 4588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f3078b4a22e457e3321e0c85a4936b8f0364b40" + }, + { + "path": "webp/trading-view.webp", + "mode": "100644", + "type": "blob", + "sha": "5d91c4ecf907b0f3bc5887ec483c8aa073b93cc8", + "size": 4618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d91c4ecf907b0f3bc5887ec483c8aa073b93cc8" + }, + { + "path": "webp/traefik-proxy.webp", + "mode": "100644", + "type": "blob", + "sha": "c9b03e9c73dd9b7dddbf9b18262c60d0cd2cb03e", + "size": 37704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c9b03e9c73dd9b7dddbf9b18262c60d0cd2cb03e" + }, + { + "path": "webp/traefik.webp", + "mode": "100644", + "type": "blob", + "sha": "a652e6aea58af617a41a59ff14facb05e6a302e3", + "size": 42864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a652e6aea58af617a41a59ff14facb05e6a302e3" + }, + { + "path": "webp/traggo.webp", + "mode": "100644", + "type": "blob", + "sha": "77551c18fad31dc0d8d5f64ef4d633b22fff37d3", + "size": 74270, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/77551c18fad31dc0d8d5f64ef4d633b22fff37d3" + }, + { + "path": "webp/trailarr.webp", + "mode": "100644", + "type": "blob", + "sha": "c6d7c808f7e12e8641749755c6f5202ee5935e89", + "size": 29770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c6d7c808f7e12e8641749755c6f5202ee5935e89" + }, + { + "path": "webp/trakt.webp", + "mode": "100644", + "type": "blob", + "sha": "469246393df66592c7fa2dbf24f0974b46d95ad5", + "size": 97624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/469246393df66592c7fa2dbf24f0974b46d95ad5" + }, + { + "path": "webp/transmission.webp", + "mode": "100644", + "type": "blob", + "sha": "dc3e36cf76946e7c9f6b7314611b1aa63f14a207", + "size": 42116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc3e36cf76946e7c9f6b7314611b1aa63f14a207" + }, + { + "path": "webp/trash-guides.webp", + "mode": "100644", + "type": "blob", + "sha": "11843c4e76b79fef1d6c48dcda8750fe19ec04cb", + "size": 210632, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11843c4e76b79fef1d6c48dcda8750fe19ec04cb" + }, + { + "path": "webp/trellix-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "860ab2e51a64dcc38246f1e6d902608a435df97c", + "size": 25536, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/860ab2e51a64dcc38246f1e6d902608a435df97c" + }, + { + "path": "webp/trellix.webp", + "mode": "100644", + "type": "blob", + "sha": "0e3dd8b26611ae2eb7b30e37a3b300bd6bdb129c", + "size": 32160, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e3dd8b26611ae2eb7b30e37a3b300bd6bdb129c" + }, + { + "path": "webp/trilium.webp", + "mode": "100644", + "type": "blob", + "sha": "f9769e26f9ac46e1420a0c695a14a87f98e30121", + "size": 45836, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9769e26f9ac46e1420a0c695a14a87f98e30121" + }, + { + "path": "webp/triliumnext.webp", + "mode": "100644", + "type": "blob", + "sha": "33876f579f00f38b2554e78dfa7a024a8c7a6bda", + "size": 51890, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33876f579f00f38b2554e78dfa7a024a8c7a6bda" + }, + { + "path": "webp/trivy.webp", + "mode": "100644", + "type": "blob", + "sha": "4b96680a3e0bedb251687ffd22f5d066ef0a99f2", + "size": 20990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b96680a3e0bedb251687ffd22f5d066ef0a99f2" + }, + { + "path": "webp/trmnl-android.webp", + "mode": "100644", + "type": "blob", + "sha": "78fc4c54da10c3ac5596c3d002b01947d6dd3df8", + "size": 34842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/78fc4c54da10c3ac5596c3d002b01947d6dd3df8" + }, + { + "path": "webp/trmnl.webp", + "mode": "100644", + "type": "blob", + "sha": "6123306e5ee61d59a5de6be5801ef6ea9e410e2b", + "size": 30956, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6123306e5ee61d59a5de6be5801ef6ea9e410e2b" + }, + { + "path": "webp/troddit.webp", + "mode": "100644", + "type": "blob", + "sha": "05d415cd0e2a7209a88b0fa2a1e44af8d782408f", + "size": 16958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05d415cd0e2a7209a88b0fa2a1e44af8d782408f" + }, + { + "path": "webp/trudesk.webp", + "mode": "100644", + "type": "blob", + "sha": "4ddae86b767e1ea13f384d324f7dd91cf5ade51f", + "size": 2628, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ddae86b767e1ea13f384d324f7dd91cf5ade51f" + }, + { + "path": "webp/truecommand.webp", + "mode": "100644", + "type": "blob", + "sha": "2b3e9c149203e1ae213d38080a3f62b73d22b28c", + "size": 67038, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b3e9c149203e1ae213d38080a3f62b73d22b28c" + }, + { + "path": "webp/truenas-core.webp", + "mode": "100644", + "type": "blob", + "sha": "d26f00160849e91a859fc23bffe8861c64af332c", + "size": 32272, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d26f00160849e91a859fc23bffe8861c64af332c" + }, + { + "path": "webp/truenas-enterprise.webp", + "mode": "100644", + "type": "blob", + "sha": "e6e8eab14dd87cb7b12c54110c66f95205966ffb", + "size": 16426, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6e8eab14dd87cb7b12c54110c66f95205966ffb" + }, + { + "path": "webp/truenas-scale.webp", + "mode": "100644", + "type": "blob", + "sha": "b3a59d64e6cbc326f0380d3ba2944da90fa93af3", + "size": 58950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b3a59d64e6cbc326f0380d3ba2944da90fa93af3" + }, + { + "path": "webp/truenas.webp", + "mode": "100644", + "type": "blob", + "sha": "467cda43310867bb632ba185ee9a98842254ddbc", + "size": 35408, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/467cda43310867bb632ba185ee9a98842254ddbc" + }, + { + "path": "webp/tryhackme.webp", + "mode": "100644", + "type": "blob", + "sha": "256723c6d116fa482e05e844083e5298adb7d48d", + "size": 35470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/256723c6d116fa482e05e844083e5298adb7d48d" + }, + { + "path": "webp/tsd-proxy.webp", + "mode": "100644", + "type": "blob", + "sha": "07d01ac5d5cd0d200471b3d1e8cd5864c0f5acd0", + "size": 32054, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/07d01ac5d5cd0d200471b3d1e8cd5864c0f5acd0" + }, + { + "path": "webp/tube-archivist-light.webp", + "mode": "100644", + "type": "blob", + "sha": "838c8d57d09321a606785eb16f373917c6a6361a", + "size": 31082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/838c8d57d09321a606785eb16f373917c6a6361a" + }, + { + "path": "webp/tube-archivist.webp", + "mode": "100644", + "type": "blob", + "sha": "b455153d3ec5ae1b81a19a4964909e94e1bf0bdb", + "size": 34330, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b455153d3ec5ae1b81a19a4964909e94e1bf0bdb" + }, + { + "path": "webp/tubesync-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1931e0b4fff39bea55e67be8a99787026739f484", + "size": 19048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1931e0b4fff39bea55e67be8a99787026739f484" + }, + { + "path": "webp/tubesync.webp", + "mode": "100644", + "type": "blob", + "sha": "d6d2174fe26395ef62948ddfcbcf5562b3e24f42", + "size": 24824, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d6d2174fe26395ef62948ddfcbcf5562b3e24f42" + }, + { + "path": "webp/tugtainer.webp", + "mode": "100644", + "type": "blob", + "sha": "59f71180dea6f5c2f871019f5b0a893de763a478", + "size": 6904, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/59f71180dea6f5c2f871019f5b0a893de763a478" + }, + { + "path": "webp/tumblr.webp", + "mode": "100644", + "type": "blob", + "sha": "499e33c73160d2abe1ad2c235ea5b1b7465eadef", + "size": 21688, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/499e33c73160d2abe1ad2c235ea5b1b7465eadef" + }, + { + "path": "webp/tunarr.webp", + "mode": "100644", + "type": "blob", + "sha": "bc58e9e88a504a2e356d359dec756d0319d418a4", + "size": 15970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc58e9e88a504a2e356d359dec756d0319d418a4" + }, + { + "path": "webp/tunnelix.webp", + "mode": "100644", + "type": "blob", + "sha": "70815c521cefa790bacccae4a53cede0e9cf63e1", + "size": 36368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/70815c521cefa790bacccae4a53cede0e9cf63e1" + }, + { + "path": "webp/turbopack-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6d0654d1cee25ff84f80a6b4b2eb8b76b81cabd0", + "size": 20302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d0654d1cee25ff84f80a6b4b2eb8b76b81cabd0" + }, + { + "path": "webp/turbopack.webp", + "mode": "100644", + "type": "blob", + "sha": "8ff9173a3902d43bf1d3e37de0cefb48af920be3", + "size": 20682, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ff9173a3902d43bf1d3e37de0cefb48af920be3" + }, + { + "path": "webp/tuta.webp", + "mode": "100644", + "type": "blob", + "sha": "68d65ca3462c45103afbb11bc0c829c95bbfcefb", + "size": 11954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68d65ca3462c45103afbb11bc0c829c95bbfcefb" + }, + { + "path": "webp/tux.webp", + "mode": "100644", + "type": "blob", + "sha": "815ecf0c6c699b0c89e603f9ef96afb04028365e", + "size": 56948, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/815ecf0c6c699b0c89e603f9ef96afb04028365e" + }, + { + "path": "webp/tvdb.webp", + "mode": "100644", + "type": "blob", + "sha": "54964a4481924649df67462674a627efeaf6a893", + "size": 27588, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/54964a4481924649df67462674a627efeaf6a893" + }, + { + "path": "webp/tvheadend.webp", + "mode": "100644", + "type": "blob", + "sha": "87b9cad166dd8e624032f8fa82968b39eb91bd08", + "size": 17376, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87b9cad166dd8e624032f8fa82968b39eb91bd08" + }, + { + "path": "webp/tvp-vod.webp", + "mode": "100644", + "type": "blob", + "sha": "431ac57fee1bb284bb21b01e298c9c07c6006089", + "size": 38938, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/431ac57fee1bb284bb21b01e298c9c07c6006089" + }, + { + "path": "webp/tweakers.webp", + "mode": "100644", + "type": "blob", + "sha": "454032a216bf2bb12bce79419a2a54437fc32937", + "size": 27910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/454032a216bf2bb12bce79419a2a54437fc32937" + }, + { + "path": "webp/twingate-light.webp", + "mode": "100644", + "type": "blob", + "sha": "167c11144b1b1519fd9a2c5983c25a6cd8ba7b4c", + "size": 4028, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/167c11144b1b1519fd9a2c5983c25a6cd8ba7b4c" + }, + { + "path": "webp/twingate.webp", + "mode": "100644", + "type": "blob", + "sha": "b1985fd36a76dfa584130873ec247500e4e8d4e1", + "size": 4476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b1985fd36a76dfa584130873ec247500e4e8d4e1" + }, + { + "path": "webp/twitch.webp", + "mode": "100644", + "type": "blob", + "sha": "27a075b28322f9b5b33f6d5c759952c9fa73fdc5", + "size": 5894, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27a075b28322f9b5b33f6d5c759952c9fa73fdc5" + }, + { + "path": "webp/twitter.webp", + "mode": "100644", + "type": "blob", + "sha": "bb00bb04fec81a4bda669e9c1ce1316f382dbd47", + "size": 26712, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb00bb04fec81a4bda669e9c1ce1316f382dbd47" + }, + { + "path": "webp/txlog.webp", + "mode": "100644", + "type": "blob", + "sha": "db147231851c37fc382cc408acc7e3906e02fe6a", + "size": 27040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db147231851c37fc382cc408acc7e3906e02fe6a" + }, + { + "path": "webp/typemill-light.webp", + "mode": "100644", + "type": "blob", + "sha": "c3dd9537d2e79a1b01ccc07020e52879f8940528", + "size": 14700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c3dd9537d2e79a1b01ccc07020e52879f8940528" + }, + { + "path": "webp/typemill.webp", + "mode": "100644", + "type": "blob", + "sha": "a258ee6542cc56e751814896b082270ca01a543f", + "size": 14262, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a258ee6542cc56e751814896b082270ca01a543f" + }, + { + "path": "webp/typescript.webp", + "mode": "100644", + "type": "blob", + "sha": "1fdf319440761dd13e9c2ebb7ad4ed93fafbd085", + "size": 21108, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1fdf319440761dd13e9c2ebb7ad4ed93fafbd085" + }, + { + "path": "webp/typesense.webp", + "mode": "100644", + "type": "blob", + "sha": "bb23bf886effd7b7ae3667dca5c9ace92e65fb11", + "size": 72746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb23bf886effd7b7ae3667dca5c9ace92e65fb11" + }, + { + "path": "webp/typo3.webp", + "mode": "100644", + "type": "blob", + "sha": "ee08a7250412882492312a32e438f17220d48671", + "size": 17012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ee08a7250412882492312a32e438f17220d48671" + }, + { + "path": "webp/ubiquiti-networks.webp", + "mode": "100644", + "type": "blob", + "sha": "1d750b050b3023d04e1adcad2480efb0595f6b9d", + "size": 32404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d750b050b3023d04e1adcad2480efb0595f6b9d" + }, + { + "path": "webp/ubiquiti-unifi.webp", + "mode": "100644", + "type": "blob", + "sha": "27f53ebffdc5f7e4a335a276bccc58e6ea46bef0", + "size": 13102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27f53ebffdc5f7e4a335a276bccc58e6ea46bef0" + }, + { + "path": "webp/ubiquiti.webp", + "mode": "100644", + "type": "blob", + "sha": "1d750b050b3023d04e1adcad2480efb0595f6b9d", + "size": 32404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d750b050b3023d04e1adcad2480efb0595f6b9d" + }, + { + "path": "webp/ubooquity.webp", + "mode": "100644", + "type": "blob", + "sha": "36a1926267f37e1f7d2b1ebfecdac0e57d30a810", + "size": 37366, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/36a1926267f37e1f7d2b1ebfecdac0e57d30a810" + }, + { + "path": "webp/ubuntu-linux-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "d21e81ea833adc87dcde22ca17dcda2fbcd6f6a2", + "size": 30470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d21e81ea833adc87dcde22ca17dcda2fbcd6f6a2" + }, + { + "path": "webp/ubuntu-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "e42d81e7b28315b4cbd75350f2a7f966103f05d8", + "size": 32486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e42d81e7b28315b4cbd75350f2a7f966103f05d8" + }, + { + "path": "webp/uc-browser.webp", + "mode": "100644", + "type": "blob", + "sha": "e5881f4998a65d00e6c8c1b31d3ce9e13f28c0d6", + "size": 67166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5881f4998a65d00e6c8c1b31d3ce9e13f28c0d6" + }, + { + "path": "webp/udemy-light.webp", + "mode": "100644", + "type": "blob", + "sha": "8b836d68da95f29c75f9281fc9075b57c4b195a0", + "size": 8582, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8b836d68da95f29c75f9281fc9075b57c4b195a0" + }, + { + "path": "webp/udemy.webp", + "mode": "100644", + "type": "blob", + "sha": "f9a7ec89ba2b59b97a3e381618546941003ed972", + "size": 7742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f9a7ec89ba2b59b97a3e381618546941003ed972" + }, + { + "path": "webp/ugreen-nas.webp", + "mode": "100644", + "type": "blob", + "sha": "f91f733ffb539eb21fd18ceb73b139c5b3574284", + "size": 44624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f91f733ffb539eb21fd18ceb73b139c5b3574284" + }, + { + "path": "webp/ugreen.webp", + "mode": "100644", + "type": "blob", + "sha": "2b3d679efbdddea027f101c9a7b4cd643838b6c6", + "size": 21204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b3d679efbdddea027f101c9a7b4cd643838b6c6" + }, + { + "path": "webp/ultimate-guitar-light.webp", + "mode": "100644", + "type": "blob", + "sha": "aabc7edb67cd56873e00bed559c5d048084b6ab7", + "size": 38746, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aabc7edb67cd56873e00bed559c5d048084b6ab7" + }, + { + "path": "webp/ultimate-guitar.webp", + "mode": "100644", + "type": "blob", + "sha": "eb745b53087efea3aa69b66411156609a9ed9dbf", + "size": 42026, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eb745b53087efea3aa69b66411156609a9ed9dbf" + }, + { + "path": "webp/umami-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e50d7c845169bf6391b8e210cf269ceebfdb3da1", + "size": 4436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e50d7c845169bf6391b8e210cf269ceebfdb3da1" + }, + { + "path": "webp/umami.webp", + "mode": "100644", + "type": "blob", + "sha": "00dc84e557c1dfcc34be6cc30eb7aa595a31e293", + "size": 4430, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/00dc84e557c1dfcc34be6cc30eb7aa595a31e293" + }, + { + "path": "webp/umbrel.webp", + "mode": "100644", + "type": "blob", + "sha": "df2ffcf1d015d0c93516125f24866a43b53c5256", + "size": 23204, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df2ffcf1d015d0c93516125f24866a43b53c5256" + }, + { + "path": "webp/unbound.webp", + "mode": "100644", + "type": "blob", + "sha": "b21ae8adc0a081fad19944026d141e127e7878a1", + "size": 23006, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b21ae8adc0a081fad19944026d141e127e7878a1" + }, + { + "path": "webp/uncomplicated-alert-receiver.webp", + "mode": "100644", + "type": "blob", + "sha": "3ded25f6fef6cdacee4b10ef9831cc3db0a7f4ce", + "size": 43718, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ded25f6fef6cdacee4b10ef9831cc3db0a7f4ce" + }, + { + "path": "webp/undb.webp", + "mode": "100644", + "type": "blob", + "sha": "8f6c0c2374feea9f8ed62f7456396ef72922a76e", + "size": 40584, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f6c0c2374feea9f8ed62f7456396ef72922a76e" + }, + { + "path": "webp/unifi-controller.webp", + "mode": "100644", + "type": "blob", + "sha": "ea5956c0e41b5f218489664f19aac363dcb5673f", + "size": 62444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea5956c0e41b5f218489664f19aac363dcb5673f" + }, + { + "path": "webp/unifi-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e5bb7c0f11a710df7dd2f9063f59700e815a63de", + "size": 35816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5bb7c0f11a710df7dd2f9063f59700e815a63de" + }, + { + "path": "webp/unifi-drive.webp", + "mode": "100644", + "type": "blob", + "sha": "324e84e2ea3647a124f59d5ef57a0714a5e2249e", + "size": 39014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/324e84e2ea3647a124f59d5ef57a0714a5e2249e" + }, + { + "path": "webp/unifi-protect.webp", + "mode": "100644", + "type": "blob", + "sha": "d37af4f9151f2846bc53891da555e151b159bba8", + "size": 54290, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d37af4f9151f2846bc53891da555e151b159bba8" + }, + { + "path": "webp/unifi-voucher-site.webp", + "mode": "100644", + "type": "blob", + "sha": "def8b6977b09cd965a5514d67b6a1f5787374ac8", + "size": 59018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/def8b6977b09cd965a5514d67b6a1f5787374ac8" + }, + { + "path": "webp/unifi.webp", + "mode": "100644", + "type": "blob", + "sha": "1d750b050b3023d04e1adcad2480efb0595f6b9d", + "size": 32404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d750b050b3023d04e1adcad2480efb0595f6b9d" + }, + { + "path": "webp/unimus.webp", + "mode": "100644", + "type": "blob", + "sha": "700d0d8a74c16531c2f42e3b59f5ae631e993c2e", + "size": 28436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/700d0d8a74c16531c2f42e3b59f5ae631e993c2e" + }, + { + "path": "webp/unity-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "dfcc5261003d21b0ec4884baa9cddfc962252264", + "size": 4540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dfcc5261003d21b0ec4884baa9cddfc962252264" + }, + { + "path": "webp/unity.webp", + "mode": "100644", + "type": "blob", + "sha": "036d6df417edc90b3566d5a60a3bd594f6e9ba16", + "size": 4516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/036d6df417edc90b3566d5a60a3bd594f6e9ba16" + }, + { + "path": "webp/universal-media-server.webp", + "mode": "100644", + "type": "blob", + "sha": "87672a14e00a2c1b4071a79651fd68a61a746b46", + "size": 44854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87672a14e00a2c1b4071a79651fd68a61a746b46" + }, + { + "path": "webp/university-applied-sciences-brandenburg.webp", + "mode": "100644", + "type": "blob", + "sha": "997cf41e8639f4667aefa613f287f725007055d2", + "size": 8488, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/997cf41e8639f4667aefa613f287f725007055d2" + }, + { + "path": "webp/unmanic.webp", + "mode": "100644", + "type": "blob", + "sha": "9d1a69301376424081fdff134e2898aa3d7ee124", + "size": 11516, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9d1a69301376424081fdff134e2898aa3d7ee124" + }, + { + "path": "webp/unraid.webp", + "mode": "100644", + "type": "blob", + "sha": "85a3bea67496b70e92055decffbb75b180e5c97c", + "size": 7608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/85a3bea67496b70e92055decffbb75b180e5c97c" + }, + { + "path": "webp/untangle.webp", + "mode": "100644", + "type": "blob", + "sha": "9b2a9326adb198cc2aebd09f37db69c6dc68886d", + "size": 26798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9b2a9326adb198cc2aebd09f37db69c6dc68886d" + }, + { + "path": "webp/updog.webp", + "mode": "100644", + "type": "blob", + "sha": "76b480508cc015728b1ae2524c33de3e5702a139", + "size": 47604, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76b480508cc015728b1ae2524c33de3e5702a139" + }, + { + "path": "webp/ups.webp", + "mode": "100644", + "type": "blob", + "sha": "5ac1253e356f09e97e56887982a097d830e09bff", + "size": 41218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5ac1253e356f09e97e56887982a097d830e09bff" + }, + { + "path": "webp/upsnap.webp", + "mode": "100644", + "type": "blob", + "sha": "b61e5fcc695fff5c19a63a43f12db8ac262ce0f2", + "size": 95986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b61e5fcc695fff5c19a63a43f12db8ac262ce0f2" + }, + { + "path": "webp/uptime-kuma.webp", + "mode": "100644", + "type": "blob", + "sha": "0fa26762360d372e11421691dab29ba19aaea0d8", + "size": 30538, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0fa26762360d372e11421691dab29ba19aaea0d8" + }, + { + "path": "webp/uptimerobot.webp", + "mode": "100644", + "type": "blob", + "sha": "02c3ef164cbdd546a9773690aaded2c67a591144", + "size": 20292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/02c3ef164cbdd546a9773690aaded2c67a591144" + }, + { + "path": "webp/upvote-rss.webp", + "mode": "100644", + "type": "blob", + "sha": "60b9826d3eb6fa62a5c87cfc6a56b2f4e3635ee6", + "size": 30618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/60b9826d3eb6fa62a5c87cfc6a56b2f4e3635ee6" + }, + { + "path": "webp/upwork.webp", + "mode": "100644", + "type": "blob", + "sha": "2c2163b4e4c484551138858a775833fe5a903b19", + "size": 36990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2c2163b4e4c484551138858a775833fe5a903b19" + }, + { + "path": "webp/urbackup-server.webp", + "mode": "100644", + "type": "blob", + "sha": "f7c54e774870c2c806cc5781ad6270e0cd9e25d5", + "size": 24260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7c54e774870c2c806cc5781ad6270e0cd9e25d5" + }, + { + "path": "webp/urbackup.webp", + "mode": "100644", + "type": "blob", + "sha": "f7c54e774870c2c806cc5781ad6270e0cd9e25d5", + "size": 24260, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7c54e774870c2c806cc5781ad6270e0cd9e25d5" + }, + { + "path": "webp/usermin.webp", + "mode": "100644", + "type": "blob", + "sha": "e6d2052938b8c7c2c9a56c0af00975b8850f4869", + "size": 53652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e6d2052938b8c7c2c9a56c0af00975b8850f4869" + }, + { + "path": "webp/valetudo.webp", + "mode": "100644", + "type": "blob", + "sha": "cf2eb77478cdf0b13200b67e925346b04350dd2d", + "size": 33722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cf2eb77478cdf0b13200b67e925346b04350dd2d" + }, + { + "path": "webp/valkey.webp", + "mode": "100644", + "type": "blob", + "sha": "596170b0c29931fb73bd05b70ea79ab988043ada", + "size": 28510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/596170b0c29931fb73bd05b70ea79ab988043ada" + }, + { + "path": "webp/vault-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ca3fb5f9fbe9f88e6c93c5d618cf46de2df34d45", + "size": 19482, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ca3fb5f9fbe9f88e6c93c5d618cf46de2df34d45" + }, + { + "path": "webp/vault.webp", + "mode": "100644", + "type": "blob", + "sha": "33995931c44104e2fc8c08f5ab288c0729346f2e", + "size": 20048, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/33995931c44104e2fc8c08f5ab288c0729346f2e" + }, + { + "path": "webp/vaultwarden-light.webp", + "mode": "100644", + "type": "blob", + "sha": "4cc86e02e443d85554d182d1d7e4e92c829e5e4e", + "size": 13132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cc86e02e443d85554d182d1d7e4e92c829e5e4e" + }, + { + "path": "webp/vaultwarden.webp", + "mode": "100644", + "type": "blob", + "sha": "e9e16cd980a32cc51e207bc69197d875ae38dee4", + "size": 11758, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9e16cd980a32cc51e207bc69197d875ae38dee4" + }, + { + "path": "webp/vector.webp", + "mode": "100644", + "type": "blob", + "sha": "6f5cdc16f487dfd365d3b19381e604be186125c8", + "size": 39230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6f5cdc16f487dfd365d3b19381e604be186125c8" + }, + { + "path": "webp/veeam.webp", + "mode": "100644", + "type": "blob", + "sha": "3d4f5dccf0712cfbcfaea52915d5f9e6d685f402", + "size": 11354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d4f5dccf0712cfbcfaea52915d5f9e6d685f402" + }, + { + "path": "webp/vera-crypt.webp", + "mode": "100644", + "type": "blob", + "sha": "096c974a057d3f9d916515e786a028e7ca0fbaf5", + "size": 55268, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/096c974a057d3f9d916515e786a028e7ca0fbaf5" + }, + { + "path": "webp/vercel-light.webp", + "mode": "100644", + "type": "blob", + "sha": "bb0513d7e4ae682f8aca5a334b2501f62b6841b2", + "size": 3296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bb0513d7e4ae682f8aca5a334b2501f62b6841b2" + }, + { + "path": "webp/vercel.webp", + "mode": "100644", + "type": "blob", + "sha": "3ae4709df04838cf618bc2c84bd3a806008f5eaa", + "size": 3288, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ae4709df04838cf618bc2c84bd3a806008f5eaa" + }, + { + "path": "webp/verizon.webp", + "mode": "100644", + "type": "blob", + "sha": "6d61f12591a879092f9d7860050c751f32ede2b4", + "size": 14104, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d61f12591a879092f9d7860050c751f32ede2b4" + }, + { + "path": "webp/verriflo-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "e9e89bac634089265ee35cc49afc7c4debcb5038", + "size": 28384, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e9e89bac634089265ee35cc49afc7c4debcb5038" + }, + { + "path": "webp/verriflo.webp", + "mode": "100644", + "type": "blob", + "sha": "b73c329bff47ee983a3af40fbce8768600283fe7", + "size": 28216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b73c329bff47ee983a3af40fbce8768600283fe7" + }, + { + "path": "webp/vertiv-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "ea9b6578cbf250d3de04a442ed77b2c7229724ee", + "size": 6018, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ea9b6578cbf250d3de04a442ed77b2c7229724ee" + }, + { + "path": "webp/vertiv.webp", + "mode": "100644", + "type": "blob", + "sha": "192710c1f758ca99e646f7248916ec9b038552a5", + "size": 6012, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/192710c1f758ca99e646f7248916ec9b038552a5" + }, + { + "path": "webp/vi.webp", + "mode": "100644", + "type": "blob", + "sha": "daedb937a7417d502bfdb1784f44a295b34c16f0", + "size": 16154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/daedb937a7417d502bfdb1784f44a295b34c16f0" + }, + { + "path": "webp/viber.webp", + "mode": "100644", + "type": "blob", + "sha": "aa53221eb5e2db8a2ad56afe11decb3932b21ee6", + "size": 36626, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/aa53221eb5e2db8a2ad56afe11decb3932b21ee6" + }, + { + "path": "webp/victorialogs.webp", + "mode": "100644", + "type": "blob", + "sha": "c5cc02a7416ebc29c3015de1ed093ceb4bb893c8", + "size": 28138, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c5cc02a7416ebc29c3015de1ed093ceb4bb893c8" + }, + { + "path": "webp/victoriametrics-light.webp", + "mode": "100644", + "type": "blob", + "sha": "6d15679dd5d0e74042c2069d464c0cebc7ddf2f2", + "size": 8158, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d15679dd5d0e74042c2069d464c0cebc7ddf2f2" + }, + { + "path": "webp/victoriametrics.webp", + "mode": "100644", + "type": "blob", + "sha": "84a4e7108e4c33fd7d80f723945de5506fe992df", + "size": 6846, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/84a4e7108e4c33fd7d80f723945de5506fe992df" + }, + { + "path": "webp/victron-energy.webp", + "mode": "100644", + "type": "blob", + "sha": "fa85771983530f6726266091b357cfb12b6d8e99", + "size": 63694, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fa85771983530f6726266091b357cfb12b6d8e99" + }, + { + "path": "webp/vidzy.webp", + "mode": "100644", + "type": "blob", + "sha": "6d5cf86d815d0ce6565d85ecdc9237df636d0d31", + "size": 10888, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6d5cf86d815d0ce6565d85ecdc9237df636d0d31" + }, + { + "path": "webp/viewtube.webp", + "mode": "100644", + "type": "blob", + "sha": "79d5897d8c43aaa26ffc6103bd5c52fdb8a1a591", + "size": 61404, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79d5897d8c43aaa26ffc6103bd5c52fdb8a1a591" + }, + { + "path": "webp/vikunja.webp", + "mode": "100644", + "type": "blob", + "sha": "655f64cc992a8b504e39d70f44e2bed436bb267a", + "size": 50014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/655f64cc992a8b504e39d70f44e2bed436bb267a" + }, + { + "path": "webp/vinchin-backup.webp", + "mode": "100644", + "type": "blob", + "sha": "babf281cf0eef41966dd0264192af7cfaf6ee6f3", + "size": 46528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/babf281cf0eef41966dd0264192af7cfaf6ee6f3" + }, + { + "path": "webp/virgin-media.webp", + "mode": "100644", + "type": "blob", + "sha": "6e1f673917d89fc6c157e1420b3bec1ffe24b67d", + "size": 78354, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6e1f673917d89fc6c157e1420b3bec1ffe24b67d" + }, + { + "path": "webp/virtualmin.webp", + "mode": "100644", + "type": "blob", + "sha": "b686e57f9e68b4743c6944b4e6bcc486077f8b3d", + "size": 75180, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b686e57f9e68b4743c6944b4e6bcc486077f8b3d" + }, + { + "path": "webp/virtualradarserver.webp", + "mode": "100644", + "type": "blob", + "sha": "05baf83e225e37c5df4f704f3b279cbc39a8125b", + "size": 30094, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/05baf83e225e37c5df4f704f3b279cbc39a8125b" + }, + { + "path": "webp/viseron-light.webp", + "mode": "100644", + "type": "blob", + "sha": "5d67e96c3ef34fc4e3e66cb25e8dd4cc6f72e485", + "size": 187798, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5d67e96c3ef34fc4e3e66cb25e8dd4cc6f72e485" + }, + { + "path": "webp/viseron.webp", + "mode": "100644", + "type": "blob", + "sha": "69a427a7efd3f6410d5bf32366b7bf884cf6a1cc", + "size": 177292, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/69a427a7efd3f6410d5bf32366b7bf884cf6a1cc" + }, + { + "path": "webp/visual-studio-code.webp", + "mode": "100644", + "type": "blob", + "sha": "af4e7e92dadf8a13e339df28f142f20cadbb67ff", + "size": 33950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af4e7e92dadf8a13e339df28f142f20cadbb67ff" + }, + { + "path": "webp/vitalpbx.webp", + "mode": "100644", + "type": "blob", + "sha": "9973b56c580b03a3ce578198f2e3e4ba50856955", + "size": 20310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9973b56c580b03a3ce578198f2e3e4ba50856955" + }, + { + "path": "webp/vite.webp", + "mode": "100644", + "type": "blob", + "sha": "677b6c75dffb1a453b55d948d3b578da065ef2b0", + "size": 44216, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/677b6c75dffb1a453b55d948d3b578da065ef2b0" + }, + { + "path": "webp/vitest.webp", + "mode": "100644", + "type": "blob", + "sha": "850542af0bfd3311a5f9a0cf04236f2b4692e4e9", + "size": 21488, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/850542af0bfd3311a5f9a0cf04236f2b4692e4e9" + }, + { + "path": "webp/vito-deploy.webp", + "mode": "100644", + "type": "blob", + "sha": "d93b0c9bbdfdd299c61a1e310fd15d07afec31e2", + "size": 34926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d93b0c9bbdfdd299c61a1e310fd15d07afec31e2" + }, + { + "path": "webp/vivaldi.webp", + "mode": "100644", + "type": "blob", + "sha": "014cefebf2291865051d6c29a14008511237fa3e", + "size": 51916, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/014cefebf2291865051d6c29a14008511237fa3e" + }, + { + "path": "webp/vmware-esxi.webp", + "mode": "100644", + "type": "blob", + "sha": "9ecd7ae3e7c65dfee05cb1967abb6ddbceb3275b", + "size": 28934, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ecd7ae3e7c65dfee05cb1967abb6ddbceb3275b" + }, + { + "path": "webp/vmware-horizon.webp", + "mode": "100644", + "type": "blob", + "sha": "0478c92a0d515e49bbcbdb63554c2ed8577dd1d3", + "size": 26548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0478c92a0d515e49bbcbdb63554c2ed8577dd1d3" + }, + { + "path": "webp/vmware-vcenter.webp", + "mode": "100644", + "type": "blob", + "sha": "d3aa3ab0672310e1342a84a8ada201e0943e5f8e", + "size": 22950, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d3aa3ab0672310e1342a84a8ada201e0943e5f8e" + }, + { + "path": "webp/vmware-workstation.webp", + "mode": "100644", + "type": "blob", + "sha": "63ad3e18764a725e9dac5f3976bfdce34a40df91", + "size": 17986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/63ad3e18764a725e9dac5f3976bfdce34a40df91" + }, + { + "path": "webp/vmware.webp", + "mode": "100644", + "type": "blob", + "sha": "b0f31c36bd648b3a12410ed58fefe149df264899", + "size": 11752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b0f31c36bd648b3a12410ed58fefe149df264899" + }, + { + "path": "webp/vn-stat.webp", + "mode": "100644", + "type": "blob", + "sha": "a5c64ade29d520010860a4b5a59e3a82e7fb0b44", + "size": 2350, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a5c64ade29d520010860a4b5a59e3a82e7fb0b44" + }, + { + "path": "webp/vodafone.webp", + "mode": "100644", + "type": "blob", + "sha": "90985fbfb7768afcd31d18ef96fbf2791989d183", + "size": 33546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/90985fbfb7768afcd31d18ef96fbf2791989d183" + }, + { + "path": "webp/voilib.webp", + "mode": "100644", + "type": "blob", + "sha": "2021269f7105bdbae9ab3cafd7476e68c1e3c028", + "size": 27958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2021269f7105bdbae9ab3cafd7476e68c1e3c028" + }, + { + "path": "webp/voip-info.webp", + "mode": "100644", + "type": "blob", + "sha": "707cc8b5b30bd45c81e44a6c6dde4d532bc7a69b", + "size": 36562, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/707cc8b5b30bd45c81e44a6c6dde4d532bc7a69b" + }, + { + "path": "webp/voip-ms.webp", + "mode": "100644", + "type": "blob", + "sha": "686bca2c2845cb1877e203e4ac2a0d5803d2a362", + "size": 18448, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/686bca2c2845cb1877e203e4ac2a0d5803d2a362" + }, + { + "path": "webp/voltaserve-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3d736e7392a4c415dde98cc7c0c7f7c89aa4c143", + "size": 8436, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3d736e7392a4c415dde98cc7c0c7f7c89aa4c143" + }, + { + "path": "webp/voltaserve.webp", + "mode": "100644", + "type": "blob", + "sha": "9037ac2836f36838bae14d41597859e121e3a84c", + "size": 7766, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9037ac2836f36838bae14d41597859e121e3a84c" + }, + { + "path": "webp/volumio-light.webp", + "mode": "100644", + "type": "blob", + "sha": "0b086432079a0048b34984627d197e0c99a493d1", + "size": 12630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b086432079a0048b34984627d197e0c99a493d1" + }, + { + "path": "webp/volumio.webp", + "mode": "100644", + "type": "blob", + "sha": "1c48fbbb612958bc144524987a1b3bec331385fb", + "size": 16524, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c48fbbb612958bc144524987a1b3bec331385fb" + }, + { + "path": "webp/voron.webp", + "mode": "100644", + "type": "blob", + "sha": "8ea78982393f6f2a9fcb75db82372ebcda301fe1", + "size": 25820, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8ea78982393f6f2a9fcb75db82372ebcda301fe1" + }, + { + "path": "webp/vouchervault.webp", + "mode": "100644", + "type": "blob", + "sha": "a89401c0a35712a66eb5b899868ffc3e48b81c8e", + "size": 65450, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a89401c0a35712a66eb5b899868ffc3e48b81c8e" + }, + { + "path": "webp/vscode.webp", + "mode": "100644", + "type": "blob", + "sha": "96803c3e9eac299afa23915017ea7ad75a1c8ab0", + "size": 43864, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96803c3e9eac299afa23915017ea7ad75a1c8ab0" + }, + { + "path": "webp/vtvgo.webp", + "mode": "100644", + "type": "blob", + "sha": "3155be2e6b59f9a20b29072e6e1bc083766f279e", + "size": 95248, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3155be2e6b59f9a20b29072e6e1bc083766f279e" + }, + { + "path": "webp/vuetorrent.webp", + "mode": "100644", + "type": "blob", + "sha": "db07e824e867fe537a994b2ad2a04b5832ce2212", + "size": 16908, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db07e824e867fe537a994b2ad2a04b5832ce2212" + }, + { + "path": "webp/vultr.webp", + "mode": "100644", + "type": "blob", + "sha": "084a38e246ea10a2f3af9b472e6b0c426f9e3475", + "size": 22468, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/084a38e246ea10a2f3af9b472e6b0c426f9e3475" + }, + { + "path": "webp/vuplus.webp", + "mode": "100644", + "type": "blob", + "sha": "96427dea3c4240cc6560b4b39c90242143e9874d", + "size": 21020, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/96427dea3c4240cc6560b4b39c90242143e9874d" + }, + { + "path": "webp/wakapi.webp", + "mode": "100644", + "type": "blob", + "sha": "016d478bbf0ea39809d0219c2c3383a8eb1447c1", + "size": 33100, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/016d478bbf0ea39809d0219c2c3383a8eb1447c1" + }, + { + "path": "webp/wakatime-light.webp", + "mode": "100644", + "type": "blob", + "sha": "4affee9d30b0c138f15881cbef32c89c46d0450d", + "size": 9242, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4affee9d30b0c138f15881cbef32c89c46d0450d" + }, + { + "path": "webp/wakatime.webp", + "mode": "100644", + "type": "blob", + "sha": "369e073ac26111e81b0a0010e72d31ce91dda989", + "size": 8168, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/369e073ac26111e81b0a0010e72d31ce91dda989" + }, + { + "path": "webp/wallabag-light.webp", + "mode": "100644", + "type": "blob", + "sha": "64e883802d86947b43377611076dafc1b657679c", + "size": 6860, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64e883802d86947b43377611076dafc1b657679c" + }, + { + "path": "webp/wallabag.webp", + "mode": "100644", + "type": "blob", + "sha": "d12e20e557c7cb332a98203ee25dfb5140f820b4", + "size": 6854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d12e20e557c7cb332a98203ee25dfb5140f820b4" + }, + { + "path": "webp/wallos.webp", + "mode": "100644", + "type": "blob", + "sha": "a3da5308cd654c6e228df696e00fa8231698483c", + "size": 25874, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3da5308cd654c6e228df696e00fa8231698483c" + }, + { + "path": "webp/wanderer-light.webp", + "mode": "100644", + "type": "blob", + "sha": "2ec8ced5263bcb6cadc26e241bd54f152175852e", + "size": 15034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2ec8ced5263bcb6cadc26e241bd54f152175852e" + }, + { + "path": "webp/wanderer.webp", + "mode": "100644", + "type": "blob", + "sha": "af9b9570acaa64dc7ec606aa3c17ad405dc1d4f5", + "size": 26738, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af9b9570acaa64dc7ec606aa3c17ad405dc1d4f5" + }, + { + "path": "webp/wanikani.webp", + "mode": "100644", + "type": "blob", + "sha": "428ee4d8682c7d358d34e140a3fba5d0022cdff7", + "size": 133134, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/428ee4d8682c7d358d34e140a3fba5d0022cdff7" + }, + { + "path": "webp/ward.webp", + "mode": "100644", + "type": "blob", + "sha": "08da34419289aa987da1c82a35f78f63b8703538", + "size": 82990, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/08da34419289aa987da1c82a35f78f63b8703538" + }, + { + "path": "webp/warpgate.webp", + "mode": "100644", + "type": "blob", + "sha": "5638365bac8033a7fc0f7eeeb7a0167be117ecfc", + "size": 273630, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5638365bac8033a7fc0f7eeeb7a0167be117ecfc" + }, + { + "path": "webp/warracker.webp", + "mode": "100644", + "type": "blob", + "sha": "7373affc25e55871df0d4388efdadbcf5629fc36", + "size": 14082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7373affc25e55871df0d4388efdadbcf5629fc36" + }, + { + "path": "webp/watcharr-light.webp", + "mode": "100644", + "type": "blob", + "sha": "e84dbe575cb781d65180a88d3f1018b636e9f2f4", + "size": 21040, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e84dbe575cb781d65180a88d3f1018b636e9f2f4" + }, + { + "path": "webp/watcharr.webp", + "mode": "100644", + "type": "blob", + "sha": "ec691f1c7105ca95ebf8eb12ee631c16acd79bc3", + "size": 18188, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec691f1c7105ca95ebf8eb12ee631c16acd79bc3" + }, + { + "path": "webp/watcher.webp", + "mode": "100644", + "type": "blob", + "sha": "235737195c2a019d675b7f2c5441c28995bb2fe3", + "size": 22346, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/235737195c2a019d675b7f2c5441c28995bb2fe3" + }, + { + "path": "webp/watchlistarr.webp", + "mode": "100644", + "type": "blob", + "sha": "131185e99ebcc4e91a29f6746695c3158179ce7f", + "size": 173496, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/131185e99ebcc4e91a29f6746695c3158179ce7f" + }, + { + "path": "webp/watchtower.webp", + "mode": "100644", + "type": "blob", + "sha": "fe7926fc30629b04cdce6f25eddcb6a2e8e11d09", + "size": 51364, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe7926fc30629b04cdce6f25eddcb6a2e8e11d09" + }, + { + "path": "webp/watchyourlan.webp", + "mode": "100644", + "type": "blob", + "sha": "4b80e006a397de1376f4e83f596cfd400a4575fc", + "size": 43858, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b80e006a397de1376f4e83f596cfd400a4575fc" + }, + { + "path": "webp/watchyourports.webp", + "mode": "100644", + "type": "blob", + "sha": "66d541e105c373ea65fafc470df2d9862c1d04a3", + "size": 29310, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/66d541e105c373ea65fafc470df2d9862c1d04a3" + }, + { + "path": "webp/wavelog.webp", + "mode": "100644", + "type": "blob", + "sha": "cdeb0116e86fcf25ea84847035adf90486e0a3d7", + "size": 48036, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cdeb0116e86fcf25ea84847035adf90486e0a3d7" + }, + { + "path": "webp/waze.webp", + "mode": "100644", + "type": "blob", + "sha": "e5f8543ef9d83cc624034e03aa702541c8371b6c", + "size": 46078, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e5f8543ef9d83cc624034e03aa702541c8371b6c" + }, + { + "path": "webp/wazuh.webp", + "mode": "100644", + "type": "blob", + "sha": "2b2c100069e3954b7418d2394e7a5f354b0975c6", + "size": 26230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2b2c100069e3954b7418d2394e7a5f354b0975c6" + }, + { + "path": "webp/wbo.webp", + "mode": "100644", + "type": "blob", + "sha": "f57fc317bfd97521a3582ab0450d0593b9bac964", + "size": 202074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f57fc317bfd97521a3582ab0450d0593b9bac964" + }, + { + "path": "webp/wd-mycloud.webp", + "mode": "100644", + "type": "blob", + "sha": "1baae426543e536624ebb0e2df91dee457fe31c0", + "size": 38416, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1baae426543e536624ebb0e2df91dee457fe31c0" + }, + { + "path": "webp/web-check-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "5309c5d2fa98eab718010301b799ca7348b42f3b", + "size": 13650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5309c5d2fa98eab718010301b799ca7348b42f3b" + }, + { + "path": "webp/web-check.webp", + "mode": "100644", + "type": "blob", + "sha": "0b91e49f9bad34ac652f4e8c05863aa7baae351d", + "size": 14832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0b91e49f9bad34ac652f4e8c05863aa7baae351d" + }, + { + "path": "webp/web-whisper.webp", + "mode": "100644", + "type": "blob", + "sha": "1edd7a497f668b81d37d1219f7008e977ade451b", + "size": 116810, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1edd7a497f668b81d37d1219f7008e977ade451b" + }, + { + "path": "webp/webdav.webp", + "mode": "100644", + "type": "blob", + "sha": "136dc796c1bcc31c8e62d86c38ce4b2ebef63a7d", + "size": 32452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/136dc796c1bcc31c8e62d86c38ce4b2ebef63a7d" + }, + { + "path": "webp/webdb.webp", + "mode": "100644", + "type": "blob", + "sha": "29ffe8802b704eb4b3620861139c3560fc51eecd", + "size": 75674, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/29ffe8802b704eb4b3620861139c3560fc51eecd" + }, + { + "path": "webp/webex.webp", + "mode": "100644", + "type": "blob", + "sha": "7299c5cd3ce89a99fe41724318872ef37b6e77e0", + "size": 84558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7299c5cd3ce89a99fe41724318872ef37b6e77e0" + }, + { + "path": "webp/webhook.webp", + "mode": "100644", + "type": "blob", + "sha": "389176dbc157182dd063621265a51d87ef64268e", + "size": 38396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/389176dbc157182dd063621265a51d87ef64268e" + }, + { + "path": "webp/webhookd.webp", + "mode": "100644", + "type": "blob", + "sha": "1033fefbcb53c2d513e85af99b19e0c27b292f24", + "size": 22142, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1033fefbcb53c2d513e85af99b19e0c27b292f24" + }, + { + "path": "webp/webkit.webp", + "mode": "100644", + "type": "blob", + "sha": "476fcff235c6c83457c7cad90ac447ea77a26538", + "size": 91344, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/476fcff235c6c83457c7cad90ac447ea77a26538" + }, + { + "path": "webp/webmin.webp", + "mode": "100644", + "type": "blob", + "sha": "dd8b199d03aa134de5a803c6adf30fe5f4a2a747", + "size": 48122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dd8b199d03aa134de5a803c6adf30fe5f4a2a747" + }, + { + "path": "webp/webtools.webp", + "mode": "100644", + "type": "blob", + "sha": "8adb84e2b820b00e97fe93880cd4fb0c1ed24156", + "size": 40476, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8adb84e2b820b00e97fe93880cd4fb0c1ed24156" + }, + { + "path": "webp/webtop.webp", + "mode": "100644", + "type": "blob", + "sha": "9c61c9f4788020ab658dec91d55579fc03280a83", + "size": 52504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9c61c9f4788020ab658dec91d55579fc03280a83" + }, + { + "path": "webp/webtorrent.webp", + "mode": "100644", + "type": "blob", + "sha": "4851114f0566a1e6a462915790a3f82202c5f6c0", + "size": 46064, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4851114f0566a1e6a462915790a3f82202c5f6c0" + }, + { + "path": "webp/webtrees.webp", + "mode": "100644", + "type": "blob", + "sha": "65c14ec655d50ab29a8a74d75980964cc2afd8d2", + "size": 53704, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/65c14ec655d50ab29a8a74d75980964cc2afd8d2" + }, + { + "path": "webp/wekan.webp", + "mode": "100644", + "type": "blob", + "sha": "19414ea1d99d76773ea24ea6c3f8327884d0450a", + "size": 40082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/19414ea1d99d76773ea24ea6c3f8327884d0450a" + }, + { + "path": "webp/wero-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "9babfdf61806362bbb19f75b8137efb04dcccec8", + "size": 7506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9babfdf61806362bbb19f75b8137efb04dcccec8" + }, + { + "path": "webp/wero.webp", + "mode": "100644", + "type": "blob", + "sha": "8af56c9a54f09270b86ca2ee3dd2985ddbed8fec", + "size": 10486, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8af56c9a54f09270b86ca2ee3dd2985ddbed8fec" + }, + { + "path": "webp/western-digital.webp", + "mode": "100644", + "type": "blob", + "sha": "a774cf806e90190915665c7d69c59150678810dd", + "size": 23740, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a774cf806e90190915665c7d69c59150678810dd" + }, + { + "path": "webp/wetty.webp", + "mode": "100644", + "type": "blob", + "sha": "86c25315c360924f00f0ace4733245805c347a89", + "size": 17102, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/86c25315c360924f00f0ace4733245805c347a89" + }, + { + "path": "webp/wevr-labs.webp", + "mode": "100644", + "type": "blob", + "sha": "e8454ea5a1d19d05c86098e0327fe3f10ba0e775", + "size": 31122, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e8454ea5a1d19d05c86098e0327fe3f10ba0e775" + }, + { + "path": "webp/wg-gen-web-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b7bc78d0cdb3cec248626cec0c6962653786ef19", + "size": 13624, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7bc78d0cdb3cec248626cec0c6962653786ef19" + }, + { + "path": "webp/wg-gen-web.webp", + "mode": "100644", + "type": "blob", + "sha": "f93623c3c82a7837f59bf2afc75698bb16df6944", + "size": 12848, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f93623c3c82a7837f59bf2afc75698bb16df6944" + }, + { + "path": "webp/wger.webp", + "mode": "100644", + "type": "blob", + "sha": "f43fccc3c979b6ef8429dd98c4d72e5b4e5c38cb", + "size": 27842, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f43fccc3c979b6ef8429dd98c4d72e5b4e5c38cb" + }, + { + "path": "webp/whatnot.webp", + "mode": "100644", + "type": "blob", + "sha": "568cb8f04e19dc6d8eeae00d08bc293ba038fcb4", + "size": 41812, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/568cb8f04e19dc6d8eeae00d08bc293ba038fcb4" + }, + { + "path": "webp/whats-up-docker.webp", + "mode": "100644", + "type": "blob", + "sha": "a916e714bfc0cb18036402a90232bfba6eac27a4", + "size": 237770, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a916e714bfc0cb18036402a90232bfba6eac27a4" + }, + { + "path": "webp/whatsapp.webp", + "mode": "100644", + "type": "blob", + "sha": "2db0c50145a6a0fe41676f2da71665d5cfb6cd6b", + "size": 51802, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2db0c50145a6a0fe41676f2da71665d5cfb6cd6b" + }, + { + "path": "webp/whisparr.webp", + "mode": "100644", + "type": "blob", + "sha": "e217b8462540d7e591bdd2f30fa00c418239777f", + "size": 88442, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e217b8462540d7e591bdd2f30fa00c418239777f" + }, + { + "path": "webp/whodb.webp", + "mode": "100644", + "type": "blob", + "sha": "bba7fa7958b9edc5d62a0b5368e8d9f1ee8f9103", + "size": 31892, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bba7fa7958b9edc5d62a0b5368e8d9f1ee8f9103" + }, + { + "path": "webp/whoogle.webp", + "mode": "100644", + "type": "blob", + "sha": "cba12de97d766ba81ded62b39d49ba286b4a750e", + "size": 13342, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cba12de97d766ba81ded62b39d49ba286b4a750e" + }, + { + "path": "webp/wifiman.webp", + "mode": "100644", + "type": "blob", + "sha": "68ea77b187a7c5db62942b6f4d593c248d8d7b85", + "size": 36470, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68ea77b187a7c5db62942b6f4d593c248d8d7b85" + }, + { + "path": "webp/wiki-go.webp", + "mode": "100644", + "type": "blob", + "sha": "2fb115ea32f40595939d76c1d3022912a73d67bf", + "size": 35570, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2fb115ea32f40595939d76c1d3022912a73d67bf" + }, + { + "path": "webp/wikidocs.webp", + "mode": "100644", + "type": "blob", + "sha": "3c4df92884e5093202d862c08901bcc2285bd50e", + "size": 12844, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3c4df92884e5093202d862c08901bcc2285bd50e" + }, + { + "path": "webp/wikijs-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "f139a83fed8207a9dd95b3039c65b797e9a8a0a9", + "size": 204568, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f139a83fed8207a9dd95b3039c65b797e9a8a0a9" + }, + { + "path": "webp/wikijs.webp", + "mode": "100644", + "type": "blob", + "sha": "d17710ea637a216daf5cc2738bc38818b12ced7a", + "size": 129096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d17710ea637a216daf5cc2738bc38818b12ced7a" + }, + { + "path": "webp/wikipedia-light.webp", + "mode": "100644", + "type": "blob", + "sha": "934b778ed7212c444ee49995da5f519dacfd5441", + "size": 14676, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/934b778ed7212c444ee49995da5f519dacfd5441" + }, + { + "path": "webp/wikipedia.webp", + "mode": "100644", + "type": "blob", + "sha": "108b019682f7ecbcbe74e9f34579cb48b4503eec", + "size": 13324, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/108b019682f7ecbcbe74e9f34579cb48b4503eec" + }, + { + "path": "webp/willow.webp", + "mode": "100644", + "type": "blob", + "sha": "72bd9337427429ffdc19f7a24c23f8a8644eb1e6", + "size": 53654, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72bd9337427429ffdc19f7a24c23f8a8644eb1e6" + }, + { + "path": "webp/windmill.webp", + "mode": "100644", + "type": "blob", + "sha": "4447ee67325cd2c7be4337fd1c1f2337764c23a9", + "size": 30336, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4447ee67325cd2c7be4337fd1c1f2337764c23a9" + }, + { + "path": "webp/windows-10.webp", + "mode": "100644", + "type": "blob", + "sha": "a00a17af1cfd05c5093c8e8520d7dd7cf0c06462", + "size": 10238, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a00a17af1cfd05c5093c8e8520d7dd7cf0c06462" + }, + { + "path": "webp/windows-11.webp", + "mode": "100644", + "type": "blob", + "sha": "4cded19e8aa849dff78db80bbd111d92a85fe514", + "size": 11396, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4cded19e8aa849dff78db80bbd111d92a85fe514" + }, + { + "path": "webp/windows-7.webp", + "mode": "100644", + "type": "blob", + "sha": "a24a1e6225f66120a99c243123aef6dc0a44279f", + "size": 114080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a24a1e6225f66120a99c243123aef6dc0a44279f" + }, + { + "path": "webp/windows-95-light.webp", + "mode": "100644", + "type": "blob", + "sha": "8f7ee24b481e44b5f873e210c8b29bc8be16c8b2", + "size": 46788, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8f7ee24b481e44b5f873e210c8b29bc8be16c8b2" + }, + { + "path": "webp/windows-95.webp", + "mode": "100644", + "type": "blob", + "sha": "a15d89c238c92dd67125b6104a7ecafa9ffd558a", + "size": 48528, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a15d89c238c92dd67125b6104a7ecafa9ffd558a" + }, + { + "path": "webp/windows-98.webp", + "mode": "100644", + "type": "blob", + "sha": "3cefb07a766f5367084eee8bd6f0b445aef76853", + "size": 48960, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3cefb07a766f5367084eee8bd6f0b445aef76853" + }, + { + "path": "webp/windows-retro-light.webp", + "mode": "100644", + "type": "blob", + "sha": "1e0dbe1ade9c183ec9eca8876b64977a47f9df42", + "size": 35618, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1e0dbe1ade9c183ec9eca8876b64977a47f9df42" + }, + { + "path": "webp/windows-retro.webp", + "mode": "100644", + "type": "blob", + "sha": "27109cad5a831db289b5eadaf6b5ac49d701ca13", + "size": 32736, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/27109cad5a831db289b5eadaf6b5ac49d701ca13" + }, + { + "path": "webp/windows-vista.webp", + "mode": "100644", + "type": "blob", + "sha": "eae181c0c62deb1618ed9bcb916eb385208b14c9", + "size": 116832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eae181c0c62deb1618ed9bcb916eb385208b14c9" + }, + { + "path": "webp/windows-xp.webp", + "mode": "100644", + "type": "blob", + "sha": "76300c9fbc3c0fbaa6a8b83f9900ccb87793a9c2", + "size": 98902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76300c9fbc3c0fbaa6a8b83f9900ccb87793a9c2" + }, + { + "path": "webp/wireguard.webp", + "mode": "100644", + "type": "blob", + "sha": "d1c008d8289e40f17c87a4d287f5952dc8da0f95", + "size": 71652, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d1c008d8289e40f17c87a4d287f5952dc8da0f95" + }, + { + "path": "webp/wirenboard.webp", + "mode": "100644", + "type": "blob", + "sha": "2705e0fb587f2c9ea17db697c4b51ac345654458", + "size": 44132, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2705e0fb587f2c9ea17db697c4b51ac345654458" + }, + { + "path": "webp/wireshark.webp", + "mode": "100644", + "type": "blob", + "sha": "72c3c44f1fe792d9a94648feacbaae8655057a2d", + "size": 134166, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72c3c44f1fe792d9a94648feacbaae8655057a2d" + }, + { + "path": "webp/wizarr.webp", + "mode": "100644", + "type": "blob", + "sha": "c104503070b672c45bdb0c8c9be3b7487141e92f", + "size": 43372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c104503070b672c45bdb0c8c9be3b7487141e92f" + }, + { + "path": "webp/wled.webp", + "mode": "100644", + "type": "blob", + "sha": "5cd6ffa9cab12cd33099a3afb12268df031acaa9", + "size": 3080, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5cd6ffa9cab12cd33099a3afb12268df031acaa9" + }, + { + "path": "webp/wolfi-light.webp", + "mode": "100644", + "type": "blob", + "sha": "b97e3c7aa23c1e710f32f3495d8c37cfdb7dd836", + "size": 34546, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b97e3c7aa23c1e710f32f3495d8c37cfdb7dd836" + }, + { + "path": "webp/wolfi.webp", + "mode": "100644", + "type": "blob", + "sha": "e089b3773eb3ed850f794c27f9fed1d4c81dadba", + "size": 62550, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/e089b3773eb3ed850f794c27f9fed1d4c81dadba" + }, + { + "path": "webp/woocommerce.webp", + "mode": "100644", + "type": "blob", + "sha": "6fd71ae90318382ca3aed7c938b93499c066b5e9", + "size": 76264, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6fd71ae90318382ca3aed7c938b93499c066b5e9" + }, + { + "path": "webp/woodpecker-ci.webp", + "mode": "100644", + "type": "blob", + "sha": "cd756e7e6833f9ec83a2f4ca2f5a5dbec76a229a", + "size": 6548, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/cd756e7e6833f9ec83a2f4ca2f5a5dbec76a229a" + }, + { + "path": "webp/wooting-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "11f471e4d68470fc4cf37f5bc5ad25f95f93c695", + "size": 2082, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/11f471e4d68470fc4cf37f5bc5ad25f95f93c695" + }, + { + "path": "webp/wooting.webp", + "mode": "100644", + "type": "blob", + "sha": "5a6c944b00e900f98de5b571faa254b486011afb", + "size": 2042, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a6c944b00e900f98de5b571faa254b486011afb" + }, + { + "path": "webp/wordpress.webp", + "mode": "100644", + "type": "blob", + "sha": "803ebef8fdbab89b2a56230c88fdba2bd1e98c53", + "size": 65056, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/803ebef8fdbab89b2a56230c88fdba2bd1e98c53" + }, + { + "path": "webp/workadventure.webp", + "mode": "100644", + "type": "blob", + "sha": "af1ca5ba5f6ba9832ed6ff1c9130b01af8142780", + "size": 15096, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af1ca5ba5f6ba9832ed6ff1c9130b01af8142780" + }, + { + "path": "webp/worklenz.webp", + "mode": "100644", + "type": "blob", + "sha": "b5740c51bf0735b4cdb3c9823ac1ee0e77b7bf22", + "size": 23144, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b5740c51bf0735b4cdb3c9823ac1ee0e77b7bf22" + }, + { + "path": "webp/wotdle-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f8be26f74c06557184d715a2eaa5f3e64817bb5a", + "size": 5902, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f8be26f74c06557184d715a2eaa5f3e64817bb5a" + }, + { + "path": "webp/wotdle.webp", + "mode": "100644", + "type": "blob", + "sha": "3872146ed9514f7ff920021731c11e329d1738b1", + "size": 7680, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3872146ed9514f7ff920021731c11e329d1738b1" + }, + { + "path": "webp/wownero.webp", + "mode": "100644", + "type": "blob", + "sha": "b823e8bab6b4c227f6ee333a644b13159a8e0559", + "size": 79370, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b823e8bab6b4c227f6ee333a644b13159a8e0559" + }, + { + "path": "webp/writefreely-light.webp", + "mode": "100644", + "type": "blob", + "sha": "64d7cb957c6f499e0c4ebf0a04d080b27fd6624e", + "size": 14014, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/64d7cb957c6f499e0c4ebf0a04d080b27fd6624e" + }, + { + "path": "webp/writefreely.webp", + "mode": "100644", + "type": "blob", + "sha": "299f191a3ee845c9450adb4fd503571ed622ed6e", + "size": 13382, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/299f191a3ee845c9450adb4fd503571ed622ed6e" + }, + { + "path": "webp/wsz.webp", + "mode": "100644", + "type": "blob", + "sha": "22a3d69753bf146f96a49124dd7af242c7d330f0", + "size": 118742, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/22a3d69753bf146f96a49124dd7af242c7d330f0" + }, + { + "path": "webp/x-light.webp", + "mode": "100644", + "type": "blob", + "sha": "3a02199562aa5ed8408a78a54086e4af748ee37b", + "size": 9814, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3a02199562aa5ed8408a78a54086e4af748ee37b" + }, + { + "path": "webp/x.webp", + "mode": "100644", + "type": "blob", + "sha": "68f8241babd3fa89ffb7cd8e909a46b49243ff7a", + "size": 7420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68f8241babd3fa89ffb7cd8e909a46b49243ff7a" + }, + { + "path": "webp/xbackbone.webp", + "mode": "100644", + "type": "blob", + "sha": "032448361cea48b58157a106eca4342d5ffa0ca6", + "size": 41706, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/032448361cea48b58157a106eca4342d5ffa0ca6" + }, + { + "path": "webp/xbox-game-pass.webp", + "mode": "100644", + "type": "blob", + "sha": "afc609e5e9350fa0514ac0a0ad8d1544c6e35bc2", + "size": 59722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afc609e5e9350fa0514ac0a0ad8d1544c6e35bc2" + }, + { + "path": "webp/xbox.webp", + "mode": "100644", + "type": "blob", + "sha": "45c316a474e1395fbfbad18f3bac7134bb0767f6", + "size": 27816, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/45c316a474e1395fbfbad18f3bac7134bb0767f6" + }, + { + "path": "webp/xbrowsersync.webp", + "mode": "100644", + "type": "blob", + "sha": "76bea36f26e82e3df01186a6a4ae833d53993dd4", + "size": 61116, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/76bea36f26e82e3df01186a6a4ae833d53993dd4" + }, + { + "path": "webp/xcp-ng.webp", + "mode": "100644", + "type": "blob", + "sha": "82f94b83ca91e00e1298347e717212f717e93e07", + "size": 84854, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82f94b83ca91e00e1298347e717212f717e93e07" + }, + { + "path": "webp/xen-orchestra.webp", + "mode": "100644", + "type": "blob", + "sha": "9fa00cece226536181a50d23b0e047339413aec4", + "size": 142422, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9fa00cece226536181a50d23b0e047339413aec4" + }, + { + "path": "webp/xiaomi-global.webp", + "mode": "100644", + "type": "blob", + "sha": "3525ff19702a6ef8fb9ea24fc54ba48459a694bb", + "size": 20662, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3525ff19702a6ef8fb9ea24fc54ba48459a694bb" + }, + { + "path": "webp/xigmanas.webp", + "mode": "100644", + "type": "blob", + "sha": "5bc96e0e9d6da96ecc42a88d14f391283803a001", + "size": 28714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5bc96e0e9d6da96ecc42a88d14f391283803a001" + }, + { + "path": "webp/xmr.webp", + "mode": "100644", + "type": "blob", + "sha": "41cbfff9ec6127f4366432be432455abe5e8ed58", + "size": 23724, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/41cbfff9ec6127f4366432be432455abe5e8ed58" + }, + { + "path": "webp/xmrig.webp", + "mode": "100644", + "type": "blob", + "sha": "5804f0318cff631f98c4f3b9017b5e839b191a94", + "size": 47608, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5804f0318cff631f98c4f3b9017b5e839b191a94" + }, + { + "path": "webp/xpipe.webp", + "mode": "100644", + "type": "blob", + "sha": "6785e4fbf2aec455b1d563be32ec8ba8ec12fb63", + "size": 56666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6785e4fbf2aec455b1d563be32ec8ba8ec12fb63" + }, + { + "path": "webp/xteve.webp", + "mode": "100644", + "type": "blob", + "sha": "af7f90e34286d31777b5415e47b58167466f428d", + "size": 8826, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/af7f90e34286d31777b5415e47b58167466f428d" + }, + { + "path": "webp/xubuntu-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "8abe4282c7126b67c68196405f4bbdb50bb16421", + "size": 24420, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8abe4282c7126b67c68196405f4bbdb50bb16421" + }, + { + "path": "webp/xwiki.webp", + "mode": "100644", + "type": "blob", + "sha": "177a256e955adfbc933f2d38e9f72aa336e96432", + "size": 12714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/177a256e955adfbc933f2d38e9f72aa336e96432" + }, + { + "path": "webp/yaade.webp", + "mode": "100644", + "type": "blob", + "sha": "f7b453506ccdf29b612fb75cc33185eff838c862", + "size": 7456, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f7b453506ccdf29b612fb75cc33185eff838c862" + }, + { + "path": "webp/yac-reader.webp", + "mode": "100644", + "type": "blob", + "sha": "b58a9a7510c756af7f14de0f428c6cdd9aee4281", + "size": 30700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b58a9a7510c756af7f14de0f428c6cdd9aee4281" + }, + { + "path": "webp/yacd-blue.webp", + "mode": "100644", + "type": "blob", + "sha": "c1ffdc25958e3fcc0887c9cf0856ba9f974f9544", + "size": 9700, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c1ffdc25958e3fcc0887c9cf0856ba9f974f9544" + }, + { + "path": "webp/yacd.webp", + "mode": "100644", + "type": "blob", + "sha": "d2aa9bed23fc96a4e0e4c3d3d93aef581d81486b", + "size": 2196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d2aa9bed23fc96a4e0e4c3d3d93aef581d81486b" + }, + { + "path": "webp/yacht.webp", + "mode": "100644", + "type": "blob", + "sha": "afaf11351939b0eb45fdcb81f6e884a83fe1f5b5", + "size": 40434, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/afaf11351939b0eb45fdcb81f6e884a83fe1f5b5" + }, + { + "path": "webp/yahoo-mail.webp", + "mode": "100644", + "type": "blob", + "sha": "b020ebcff06d7934e5e05c0292a10edb2e145c95", + "size": 52898, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b020ebcff06d7934e5e05c0292a10edb2e145c95" + }, + { + "path": "webp/yahoo.webp", + "mode": "100644", + "type": "blob", + "sha": "786bcdbd33cedb3b416bb6bbe04d6bf1df53cad4", + "size": 22610, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/786bcdbd33cedb3b416bb6bbe04d6bf1df53cad4" + }, + { + "path": "webp/yamtrack-light.webp", + "mode": "100644", + "type": "blob", + "sha": "540f86c18a487aa1806e7072669efe170950c8db", + "size": 10200, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/540f86c18a487aa1806e7072669efe170950c8db" + }, + { + "path": "webp/yamtrack.webp", + "mode": "100644", + "type": "blob", + "sha": "6245e0350993a88b323e4e637566ae8c26b2cdf1", + "size": 17462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6245e0350993a88b323e4e637566ae8c26b2cdf1" + }, + { + "path": "webp/yandex.webp", + "mode": "100644", + "type": "blob", + "sha": "0e5e99686fe47b2ea40413e1c3f63af5b58785f9", + "size": 13954, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/0e5e99686fe47b2ea40413e1c3f63af5b58785f9" + }, + { + "path": "webp/yarn-social.webp", + "mode": "100644", + "type": "blob", + "sha": "a3f28e013a09489b43defc1b1a86f5dea1e76841", + "size": 35506, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a3f28e013a09489b43defc1b1a86f5dea1e76841" + }, + { + "path": "webp/yarr-light.webp", + "mode": "100644", + "type": "blob", + "sha": "ced516c692776fb2f5218b9265e9ff83ae10611f", + "size": 12722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ced516c692776fb2f5218b9265e9ff83ae10611f" + }, + { + "path": "webp/yarr.webp", + "mode": "100644", + "type": "blob", + "sha": "2a1053477085df5fcfd816f235f66d2084079e70", + "size": 17302, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/2a1053477085df5fcfd816f235f66d2084079e70" + }, + { + "path": "webp/yazi.webp", + "mode": "100644", + "type": "blob", + "sha": "db3e301b3721b36112dc21296a5be67cef4917f8", + "size": 90452, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/db3e301b3721b36112dc21296a5be67cef4917f8" + }, + { + "path": "webp/ycombinator-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "3b80c75a599ec4b6fa05feb9e2432ca287b0f118", + "size": 17152, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3b80c75a599ec4b6fa05feb9e2432ca287b0f118" + }, + { + "path": "webp/ycombinator.webp", + "mode": "100644", + "type": "blob", + "sha": "100f3b62df25d2784acd38dc1ddfbc17ef85005e", + "size": 15558, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/100f3b62df25d2784acd38dc1ddfbc17ef85005e" + }, + { + "path": "webp/ymarks.webp", + "mode": "100644", + "type": "blob", + "sha": "4eb13630366210623932d2731cbf993789d5edab", + "size": 3492, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4eb13630366210623932d2731cbf993789d5edab" + }, + { + "path": "webp/ynab.webp", + "mode": "100644", + "type": "blob", + "sha": "b7e702637681606134c0f2edc2298e2104439dfc", + "size": 41444, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b7e702637681606134c0f2edc2298e2104439dfc" + }, + { + "path": "webp/your-spotify.webp", + "mode": "100644", + "type": "blob", + "sha": "ec2b1cdde3f20b87234c4886ed17df873d90ca92", + "size": 24722, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec2b1cdde3f20b87234c4886ed17df873d90ca92" + }, + { + "path": "webp/yourls.webp", + "mode": "100644", + "type": "blob", + "sha": "b099a3a871aabd7b61fd97c36f089c1636b9cdb6", + "size": 73666, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b099a3a871aabd7b61fd97c36f089c1636b9cdb6" + }, + { + "path": "webp/youtarr.webp", + "mode": "100644", + "type": "blob", + "sha": "5af3263164db070e7a1b6d39e67a165364a99b73", + "size": 133928, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5af3263164db070e7a1b6d39e67a165364a99b73" + }, + { + "path": "webp/youtube-dl.webp", + "mode": "100644", + "type": "blob", + "sha": "79918d8060b68b0dc514d2f037ee037cf2710b18", + "size": 35034, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/79918d8060b68b0dc514d2f037ee037cf2710b18" + }, + { + "path": "webp/youtube-kids.webp", + "mode": "100644", + "type": "blob", + "sha": "4ff178cba03c237b94f8422a8c2e0ab1e5d5268b", + "size": 64230, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4ff178cba03c237b94f8422a8c2e0ab1e5d5268b" + }, + { + "path": "webp/youtube-music.webp", + "mode": "100644", + "type": "blob", + "sha": "a26838925e147711723a52eac7488b5603e4cd42", + "size": 42594, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a26838925e147711723a52eac7488b5603e4cd42" + }, + { + "path": "webp/youtube-tv.webp", + "mode": "100644", + "type": "blob", + "sha": "15099c51ee2524fb853344f19efa099cc434a35f", + "size": 10490, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/15099c51ee2524fb853344f19efa099cc434a35f" + }, + { + "path": "webp/youtube.webp", + "mode": "100644", + "type": "blob", + "sha": "5a94a03904898de25bfd38f7d8a86dfd7d4711ae", + "size": 18868, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5a94a03904898de25bfd38f7d8a86dfd7d4711ae" + }, + { + "path": "webp/yt-dlp.webp", + "mode": "100644", + "type": "blob", + "sha": "d59b246cd37314bc0f7834e3ad71fd524b2b8d0c", + "size": 78462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d59b246cd37314bc0f7834e3ad71fd524b2b8d0c" + }, + { + "path": "webp/yts.webp", + "mode": "100644", + "type": "blob", + "sha": "81bcdb98398757cc0220bfd0ce1f37a5496516dd", + "size": 76510, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/81bcdb98398757cc0220bfd0ce1f37a5496516dd" + }, + { + "path": "webp/yuno-host-light.webp", + "mode": "100644", + "type": "blob", + "sha": "4273cb1edc104dd104e2e3381ab3870c4c907743", + "size": 21504, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4273cb1edc104dd104e2e3381ab3870c4c907743" + }, + { + "path": "webp/yunohost.webp", + "mode": "100644", + "type": "blob", + "sha": "a66a1fb00b010a3a4b8518cedbace887f147fbba", + "size": 18726, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/a66a1fb00b010a3a4b8518cedbace887f147fbba" + }, + { + "path": "webp/z-ai.webp", + "mode": "100644", + "type": "blob", + "sha": "3ed45f7c35d158555fff8b8be59ef8a08433cca8", + "size": 9058, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3ed45f7c35d158555fff8b8be59ef8a08433cca8" + }, + { + "path": "webp/z-wave-js-ui.webp", + "mode": "100644", + "type": "blob", + "sha": "770da7729d846e9551f63cc4d133c0210c14b8cf", + "size": 32052, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/770da7729d846e9551f63cc4d133c0210c14b8cf" + }, + { + "path": "webp/zabbix.webp", + "mode": "100644", + "type": "blob", + "sha": "8537d4e7ea14ad7a7e961ef76917a4989cb53f1e", + "size": 23970, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/8537d4e7ea14ad7a7e961ef76917a4989cb53f1e" + }, + { + "path": "webp/zabka.webp", + "mode": "100644", + "type": "blob", + "sha": "bc8b5350c4026d596fb3850386c1ca1bdb8e52d7", + "size": 46224, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/bc8b5350c4026d596fb3850386c1ca1bdb8e52d7" + }, + { + "path": "webp/zalo.webp", + "mode": "100644", + "type": "blob", + "sha": "c806a63a4a5f2b09c4352697eea4050eae32e364", + "size": 51710, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/c806a63a4a5f2b09c4352697eea4050eae32e364" + }, + { + "path": "webp/zammad.webp", + "mode": "100644", + "type": "blob", + "sha": "f6e7486bd48a5e374f1fc6732135c436f5a3d09b", + "size": 56462, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f6e7486bd48a5e374f1fc6732135c436f5a3d09b" + }, + { + "path": "webp/zapier-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "32c4710355d03295db16ca6dd0758df1e995db2d", + "size": 22154, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/32c4710355d03295db16ca6dd0758df1e995db2d" + }, + { + "path": "webp/zapier.webp", + "mode": "100644", + "type": "blob", + "sha": "da5086b96a3771e9f4725ab30eabe372a8151e49", + "size": 32714, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/da5086b96a3771e9f4725ab30eabe372a8151e49" + }, + { + "path": "webp/zashboard-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "dc257c4f7b1445a6144bf853bd6e17deca3b2b36", + "size": 5300, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/dc257c4f7b1445a6144bf853bd6e17deca3b2b36" + }, + { + "path": "webp/zashboard.webp", + "mode": "100644", + "type": "blob", + "sha": "4b0765b48e43d993a35b8ad95262d7c4bf645d81", + "size": 5296, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/4b0765b48e43d993a35b8ad95262d7c4bf645d81" + }, + { + "path": "webp/zen-browser-dark.webp", + "mode": "100644", + "type": "blob", + "sha": "5c4bb3c9818068eb3a68b77fde77a78b1d2e70e1", + "size": 52540, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/5c4bb3c9818068eb3a68b77fde77a78b1d2e70e1" + }, + { + "path": "webp/zen-browser.webp", + "mode": "100644", + "type": "blob", + "sha": "eeeb34eed7e253cc34a67603894d7d241a24d55d", + "size": 54564, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/eeeb34eed7e253cc34a67603894d7d241a24d55d" + }, + { + "path": "webp/zenarmor.webp", + "mode": "100644", + "type": "blob", + "sha": "3914665fe7ac9a417c8f026f10133f4c7e9e0bae", + "size": 14076, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3914665fe7ac9a417c8f026f10133f4c7e9e0bae" + }, + { + "path": "webp/zendesk.webp", + "mode": "100644", + "type": "blob", + "sha": "3900cae665a418cc553181786bd4dd4f170427c5", + "size": 20072, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/3900cae665a418cc553181786bd4dd4f170427c5" + }, + { + "path": "webp/zerotier-light.webp", + "mode": "100644", + "type": "blob", + "sha": "17857ed0ae897dfdc32a08099fb22c2df0cfcec4", + "size": 28542, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/17857ed0ae897dfdc32a08099fb22c2df0cfcec4" + }, + { + "path": "webp/zerotier.webp", + "mode": "100644", + "type": "blob", + "sha": "6a551a343e4ae24bf10c1a37da7dbf3035e2505d", + "size": 32332, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a551a343e4ae24bf10c1a37da7dbf3035e2505d" + }, + { + "path": "webp/zigbee2mqtt-light.webp", + "mode": "100644", + "type": "blob", + "sha": "68ddea6ad3c9dd12ba50fd1dd3e212b7e6d1ccdd", + "size": 46004, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/68ddea6ad3c9dd12ba50fd1dd3e212b7e6d1ccdd" + }, + { + "path": "webp/zigbee2mqtt.webp", + "mode": "100644", + "type": "blob", + "sha": "df0ef843dfd235212f4ca45122bac82190582675", + "size": 49650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/df0ef843dfd235212f4ca45122bac82190582675" + }, + { + "path": "webp/zima-os.webp", + "mode": "100644", + "type": "blob", + "sha": "755ff336dacde20b283df94ca924b04ee065e1d9", + "size": 52650, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/755ff336dacde20b283df94ca924b04ee065e1d9" + }, + { + "path": "webp/zimbra.webp", + "mode": "100644", + "type": "blob", + "sha": "9316e8e38043528f8c7851ad5d8530e889d6c4de", + "size": 76910, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9316e8e38043528f8c7851ad5d8530e889d6c4de" + }, + { + "path": "webp/zipcaptions.webp", + "mode": "100644", + "type": "blob", + "sha": "82ede69c01ac8eeb86f88e3c7a8929e366d3b365", + "size": 21304, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/82ede69c01ac8eeb86f88e3c7a8929e366d3b365" + }, + { + "path": "webp/zipline-diced.webp", + "mode": "100644", + "type": "blob", + "sha": "1c56ae448b9117901109fbf7313a9326f85ba41c", + "size": 34986, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1c56ae448b9117901109fbf7313a9326f85ba41c" + }, + { + "path": "webp/zipline-light.webp", + "mode": "100644", + "type": "blob", + "sha": "d66302c8826cf3f205619dda7a48a4e7d23af2f5", + "size": 9372, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/d66302c8826cf3f205619dda7a48a4e7d23af2f5" + }, + { + "path": "webp/zipline.webp", + "mode": "100644", + "type": "blob", + "sha": "48b94859ff0f971419f2b19f8687c2c8b3a4ef3e", + "size": 9368, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/48b94859ff0f971419f2b19f8687c2c8b3a4ef3e" + }, + { + "path": "webp/zitadel-light.webp", + "mode": "100644", + "type": "blob", + "sha": "9ea357d53dc949902b307a02b1146223e8e512cd", + "size": 21958, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/9ea357d53dc949902b307a02b1146223e8e512cd" + }, + { + "path": "webp/zitadel.webp", + "mode": "100644", + "type": "blob", + "sha": "ec6824d18393a2cce70ab2629c590f336486099f", + "size": 27498, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/ec6824d18393a2cce70ab2629c590f336486099f" + }, + { + "path": "webp/znc.webp", + "mode": "100644", + "type": "blob", + "sha": "6a6b51b970b5607fe2073df6970b9e4f2c23066d", + "size": 30196, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/6a6b51b970b5607fe2073df6970b9e4f2c23066d" + }, + { + "path": "webp/zohomail.webp", + "mode": "100644", + "type": "blob", + "sha": "72b610f00564b63d8b06ebcccf1962cc1cf83ba6", + "size": 32202, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/72b610f00564b63d8b06ebcccf1962cc1cf83ba6" + }, + { + "path": "webp/zomro.webp", + "mode": "100644", + "type": "blob", + "sha": "b823e80a02a82e2ab267ab9c85ee691a93b89c79", + "size": 97136, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b823e80a02a82e2ab267ab9c85ee691a93b89c79" + }, + { + "path": "webp/zoneminder.webp", + "mode": "100644", + "type": "blob", + "sha": "87260552aad6a4c00e54c9f25d396241906c436d", + "size": 43446, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/87260552aad6a4c00e54c9f25d396241906c436d" + }, + { + "path": "webp/zoom-alt.webp", + "mode": "100644", + "type": "blob", + "sha": "fb354c5255bb110a372c565c46b8b035682bb22b", + "size": 76752, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fb354c5255bb110a372c565c46b8b035682bb22b" + }, + { + "path": "webp/zoom.webp", + "mode": "100644", + "type": "blob", + "sha": "7ae61d627b9698dda1e5b9a1ff8e39a07d57f1a6", + "size": 20552, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/7ae61d627b9698dda1e5b9a1ff8e39a07d57f1a6" + }, + { + "path": "webp/zoraxy.webp", + "mode": "100644", + "type": "blob", + "sha": "223e2419bf0f489f741c33d028d2cee6bd30b5ac", + "size": 20832, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/223e2419bf0f489f741c33d028d2cee6bd30b5ac" + }, + { + "path": "webp/zorin-linux.webp", + "mode": "100644", + "type": "blob", + "sha": "b90ae6a90cda8d14bf47ba4f35071681537a36b4", + "size": 26772, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/b90ae6a90cda8d14bf47ba4f35071681537a36b4" + }, + { + "path": "webp/zot-registry.webp", + "mode": "100644", + "type": "blob", + "sha": "034aa74acc5e87c1a4df4a1ed1c3a851f08f19bb", + "size": 24190, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/034aa74acc5e87c1a4df4a1ed1c3a851f08f19bb" + }, + { + "path": "webp/zulip.webp", + "mode": "100644", + "type": "blob", + "sha": "860dd69561e84e6177716ff1318173def235b818", + "size": 17822, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/860dd69561e84e6177716ff1318173def235b818" + }, + { + "path": "webp/zwavejs2mqtt.webp", + "mode": "100644", + "type": "blob", + "sha": "688fe7c3c768f1f68b45bac1812538788e1b8a02", + "size": 26218, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/688fe7c3c768f1f68b45bac1812538788e1b8a02" + }, + { + "path": "webp/zyxel-communications-light.webp", + "mode": "100644", + "type": "blob", + "sha": "f1a71c92ab53ba2b7739318aa7381cd161c83b9f", + "size": 34266, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/f1a71c92ab53ba2b7739318aa7381cd161c83b9f" + }, + { + "path": "webp/zyxel-communications.webp", + "mode": "100644", + "type": "blob", + "sha": "1d56636fbb0142d7f3796df35e7b1a53555aa26e", + "size": 36886, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/1d56636fbb0142d7f3796df35e7b1a53555aa26e" + }, + { + "path": "webp/zyxel-networks-light.webp", + "mode": "100644", + "type": "blob", + "sha": "fe1a65b386ceb32a9a2a16bc6e5174278f7f148a", + "size": 38074, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/fe1a65b386ceb32a9a2a16bc6e5174278f7f148a" + }, + { + "path": "webp/zyxel-networks.webp", + "mode": "100644", + "type": "blob", + "sha": "850263ef71e907f247fee344416245068f134cee", + "size": 37926, + "url": "https://api.github.com/repos/homarr-labs/dashboard-icons/git/blobs/850263ef71e907f247fee344416245068f134cee" + } + ], + "truncated": false +} diff --git a/replacement.txt b/replacement.txt new file mode 100644 index 0000000..3ef1ac3 --- /dev/null +++ b/replacement.txt @@ -0,0 +1,7 @@ + const homelabIcons = [ + "1337x", "13ft", "1panel", "1password-dark", "1password", "20i-dark", "20i", "2fauth-light", "2fauth", "3cx-light", "3cx", "4chan", "5etools-dark", "5etools", "7zip", "a-mule", "aboard", "act", "action1", "activepieces", "actual-budget", "adblock", "adguard-home-sync", "adguard-home", "adminer", "adobe", "ads-b-exchange", "adsb", "advanzia", "adventure-log", "affine-light", "affine", "agile-freaks", "agregarr", "air-trail", "airsonic", "airtable", "airtel", "airvpn", "akamai", "akaunting", "akkoma-light", "akkoma", "alarmpi", "albert-heijn", "alertmanager", "alexa", "algo", "ali-mail", "aliexpress", "alist", "aliyun", "alloy", "alltube-light", "alltube", "alma-linux", "alpine-linux", "amazon-light", "amazon-prime", "amazon-web-services-light", "amazon-web-services", "amazon", "amcrest-cloud", "amcrest", "amd-light", "amd", "ami-alt-light", "ami-alt", "ami", "amp", "ampache", "android-auto-dark", "android-auto", "android-robot", "android", "anghami", "angular", "anime-kai", "anonaddy", "ansible-light", "ansible", "any-listen", "anything-llm-light", "anything-llm", "apache-airflow", "apache-answer", "apache-cassandra", "apache-cloudstack", "apache-druid", "apache-openoffice", "apache-solr", "apache-subversion", "apache-tomcat-light", "apache-tomcat", "apache", "apc", "apiscp", "app-store", "appdaemon", "appflowy", "apple-alt", "apple-light", "apple-maps", "apple-music", "apple-podcasts", "apple-tv-plus-light", "apple-tv-plus", "apple", "apprise", "appwrite", "ara-records-ansible", "arcane", "arch-linux", "archidekt", "archisteamfarm", "archivebox", "archiveteam-warrior-light", "archiveteam-warrior", "arduino", "argo-cd", "ariang", "arm", "arris-light", "arris", "artifacthub", "artifactory", "aruba", "asana", "asciinema", "asrock-rack-ipmi", "asrock-rack", "assetgrid", "asterisk", "astral", "astuto-light", "astuto", "asus-full", "asus-rog", "asus-router", "asus", "asustor", "at-t", "atlassian-bamboo", "atlassian-bitbucket", "atlassian-confluence", "atlassian-jira", "atlassian-opsgenie", "atlassian-trello", "atlassian", "atuin-light", "atuin", "audacity", "audiobookshelf", "aura", "auracast", "authelia", "authentik", "authman", "auto-cad", "auto-mcs", "autobangumi-dark", "autobangumi", "autobrr", "automad-light", "automad", "avg", "avigilon", "avm-fritzbox-light", "avm-fritzbox", "aws-ecs", "aws-light", "aws", "awtrix", "awwesome", "awx", "axis", "aya", "azuracast", "azure-container-instances", "azure-container-service", "azure-devops", "azure-dns", "azure", "bab-technologie-dark", "bab-technologie", "babybuddy", "backblaze", "backrest-light", "backrest", "bacula", "badge", "baikal", "bale", "balena-cloud", "balena-etcher", "ballerina", "bandcamp", "bar-assistant", "barcodebuddy", "baserow", "basilisk", "bastillion", "batocera-linux", "bazarr-dark", "bazarr", "bazecor", "be-quiet", "beaver-habit-tracker-light", "beaver-habit-tracker", "bechtle", "beef-light", "beef", "beets", "benotes", "bentopdf", "beszel-light", "beszel", "betanin", "bewcloud", "bible-gateway", "bibliogram", "biblioreads-light", "biblioreads", "biedronka", "bigcapital", "bilibili", "bing", "binner-dark", "binner", "birdnet", "bitbucket", "bitcoin", "bithumen", "bitmagnet", "bitwarden", "bitwig-studio-dark", "bitwig-studio", "blocky", "blogger", "blue-iris", "blue-letter-bible", "bluesky", "bluetooth", "bluewallet", "bobcat-miner", "boinc", "book-lore", "booklogr-light", "booklogr", "booksonic", "bookstack", "bootstrap", "borg", "borgmatic-light", "borgmatic", "bottom-dark", "bottom", "boundary", "box", "boxarr", "brave-dev", "brave", "brewpi", "brick-tracker", "bright-move", "brillcam", "broad-link", "broadcastchannel-light", "broadcastchannel", "brocade", "brother", "browserless-light", "browserless", "browsh", "btcpay-server", "buddy", "budget-board", "budget-zero", "budgetbee-light", "budgetbee", "budibase", "buffalo", "build-better-dark", "build-better", "buildium", "bunkerweb", "bunny", "buxfer", "bytestash", "c", "cabernet", "cabot", "cachyos-linux", "cacti", "caddy", "cadvisor", "cal-com-light", "cal-com", "calckey", "caldera", "calibre-web-automated-book-downloader", "calibre-web", "calibre", "camera-ui", "canonical", "canvas-lms", "cap-cut-dark", "cap-cut", "capacities-dark", "capacities", "caprover", "cardigann-light", "cardigann", "carrefour", "casaos", "castopod", "cc-light", "cc", "centos", "ceph", "cert-manager", "cert-warden-light", "cert-warden", "cessna", "chainguard", "changedetection", "channels-dvr", "chaptarr", "chart-db", "chatbetter", "chatgpt", "chatpad-ai", "chatwoot", "check-cle", "checkmate", "checkmk", "cherry", "chess", "chevereto", "chhoto-url", "chibisafe", "chiefonboarding", "chirpy", "chowdown", "chroma", "chrome-beta", "chrome-canary", "chrome-dev", "chrome-devtools", "chrome-remote-desktop", "chrome", "chromecast-light", "chromecast", "chromium", "chronograf", "cilium-light", "cilium", "cinny-light", "cinny", "ciphermail", "cisco", "clam-av", "clash", "claude-ai-light", "claude-ai", "cleanuperr", "clickhouse", "clickup", "cloud66", "cloud9-light", "cloud9", "cloudbeaver", "cloudcmd", "cloudflare-pages", "cloudflare-zero-trust", "cloudflare", "cloudpanel", "cloudreve", "cloudstream", "cobalt-dark", "cobalt", "cockpit-cms-light", "cockpit-cms", "cockpit-light", "cockpit", "code-cademy-dark", "code-cademy", "code-server", "code", "codeberg", "codellm", "coder-light", "coder", "codestats-light", "codestats", "codex-light", "codex", "codimd-light", "codimd", "collabora-online", "comfy-ui", "commafeed-light", "commafeed", "commento-light", "commento", "compreface", "concourse", "confix", "confluence", "consul", "contabo", "control-d-dark", "control-d", "converse-light", "converse", "convertx", "convex", "cooler-control", "coolify", "copyparty", "copyq", "core-control", "coredns", "coreos", "cosign", "cosmos-cloud", "costco", "couchdb", "couchpotato", "counter-analytics", "counter-strike-2", "counter-strike-global-offensive", "coursera", "cozy", "cpanel", "cpp", "crafty-controller", "crater-invoice", "crazydomains", "cribl-light", "cribl", "cron-master", "cronicle", "cross-seed-square", "cross-seed", "crowdin-dark", "crowdin", "crowdsec", "crunchyroll", "cryptomator", "cryptpad", "csharp", "css-light", "css", "ctfreak", "cup", "cups-light", "cups", "cura", "cyber-power-full", "cyberchef", "czkawka", "d-link", "dagster-dark", "dagster-light", "dahua", "dalibo", "daps", "dart", "dashboard-icons-dark", "dashboard-icons", "dashdot", "dashwise", "dashy", "datadog", "davical", "davis", "dawarich", "dc-os", "dd-wrt-light", "dd-wrt", "ddclient", "ddns-updater", "debian-linux", "deemix", "deepl-dark", "deepl", "deepseek", "deezer", "defguard", "dell", "deluge", "deno-light", "deno", "denodo", "denon-light", "denon", "deployarr", "develancacheui", "devtooly-light", "devtooly", "dia", "diagrams-net", "diamond-aircraft", "dietpi", "digi-kam", "digikey", "digital-ocean", "dilg", "dillinger-light", "dillinger", "dim-light", "dim", "diners-club", "directadmin", "directus", "discord", "discourse-light", "discourse", "diskover", "disney-plus", "dispatcharr", "distribution", "diun", "dixa", "diyhue", "dlna", "docassemble-light", "docassemble", "docker-amd", "docker-amvd", "docker-compose", "docker-engine", "docker-gc", "docker-mailserver-light", "docker-mailserver", "docker-moby", "docker-volume-backup", "docker", "dockge", "docking-station", "dockpeek-dark", "dockpeek", "dockstarter", "dockwatch", "docmost", "docsify", "docspell", "documenso", "docusaurus", "docuseal", "dogpile", "dokemon", "dokploy-dark", "dokploy", "dokuwiki", "dolibarr", "dolphin", "domainmod", "domoticz", "donetick", "doplarr", "doppler", "dopplertask", "double-commander", "double-take-dark", "double-take", "dovecot", "dozzle", "dragon-ruby", "draw-io", "draytek", "dream-host-dark", "dream-host", "drone", "drop", "dropbox", "dropout-light", "dropout", "droppy-dark", "droppy", "dub-light", "dub", "duckdns-light", "duckdns", "duckduckgo", "dumbassets", "dumbpad", "duo", "duplicacy", "duplicati", "dynmap", "easy-gate-light", "easy-gate", "ebay", "eblocker", "edge-dev", "edge", "edgeos-light", "edgeos", "eitaa", "elastic-beats", "elastic-kibana", "elastic-logstash", "elastic", "elasticsearch", "electron", "electronic-arts", "electrum", "element", "eleventy-light", "eleventy", "elgato-wave-link", "eliza-os", "elysian", "emacs", "embraer", "emby", "embystat", "emq-light", "emq", "emqx", "emsesp", "emulatorjs", "enbizcard", "enclosed-light", "enclosed", "endeavouros-linux", "endless-light", "endless", "endurain", "enhance", "enshrouded", "ente-photos", "entergy", "epic-games-light", "epic-games", "epson-iprint", "ersatztv", "erste-george", "erste", "esphome-alt-light", "esphome-alt", "esphome-light", "esphome", "espocrm", "espressif", "etcd", "etesync", "ethereum", "etherpad", "evcc", "evebox", "evernote", "eweka", "excalidraw", "exercism-dark", "exercism", "expense-owl", "ezbookkeeping", "f-droid", "f1-dash", "f5-networks", "facebook-messenger", "facebook", "falcon-christmas", "falcon-player-dark", "falcon-player", "fast-com-light", "fast-com", "fasten-health", "fastmail", "fedora-alt", "fedora", "feedbase-light", "feedbase", "feedbin-light", "feedbin", "feedly", "feedlynx-light", "feedlynx", "feishin", "fenrus-light", "fenrus", "ferdi", "ferdium", "fermentrack", "ferretdb", "fibaro", "fidelity", "fider", "figma", "filebot", "filebrowser-quantum", "filebrowser", "filecloud", "fileflows", "filegator", "filepizza", "filerun", "files-community", "files", "filestash", "filezilla", "finamp", "findroid", "fios-light", "fios", "firebase", "firefly-iii", "firefly", "firefox-beta", "firefox-developer-edition", "firefox-lite", "firefox-nightly", "firefox-reality", "firefox-send", "firefox", "fireshare", "firewalla", "fittrackee", "fl-studio", "fladder", "flame", "flaresolverr", "flarum", "flat-notes", "flathub-dark", "flathub", "flatnotes", "flatpak", "fleetdm", "flexget", "flightaware", "flightradar24-light", "flightradar24", "floatplane", "flogo", "flood", "floorp", "flowise", "flowtunes", "fluent-reader", "fluffychat-dark", "fluffychat", "fluidd", "flux-cd", "fly-io", "fmd", "fnos", "focalboard", "foldingathome", "fontawesome", "foreflight-dark", "foreflight", "forgejo", "forte-light", "forte", "fortinet", "foscam", "fossil", "foundry-vtt", "franz", "free-dns", "free-sas", "freebox-delta", "freebox-pop", "freebox-revolution", "freedombox", "freeipa", "freenas", "freenom", "freepbx", "freescout", "freshping-dark", "freshping", "freshrss", "friendica", "frigate-light", "frigate", "fritzbox-light", "fritzbox", "fronius", "frp", "fulcio", "funkwhale-light", "funkwhale", "fusionauth-light", "fusionauth", "fusionpbx", "gamevault", "gameyfin-light", "gameyfin", "gaps", "garage", "garmin-connect", "garuda-linux", "gaseous", "gatsby", "gatus", "gboard", "geckoview", "genius", "gentoo-linux", "geo-guessr", "gerbera", "gerrit", "get-iplayer", "ghost-light", "ghost", "ghostfolio", "ghostty", "gigaset", "gimp", "git", "gitbook", "gitea", "gitee", "github-light", "github", "gitlab", "gitsign", "gladys-assistant", "glance", "glances-light", "glances", "glinet-dark", "glinet", "glitchtip", "glpi", "gluetun", "gmail", "go", "go2rtc", "goaccess-light", "goaccess", "godaddy-alt", "godaddy", "godot", "gogs", "golink-dark", "golink", "gollum", "gomft", "gone-man-switch", "gonic", "goodreads", "google-admin", "google-admob", "google-alerts", "google-analytics", "google-assistant", "google-calendar", "google-chat", "google-chrome", "google-classroom", "google-cloud-platform", "google-cloud-print", "google-colab", "google-compute-engine", "google-contacts", "google-docs", "google-domains", "google-drive", "google-earth", "google-fi", "google-finance", "google-fit", "google-fonts", "google-forms", "google-gemini", "google-home", "google-jules", "google-keep", "google-lens", "google-maps", "google-meet", "google-messages", "google-news", "google-one", "google-pay", "google-photos", "google-play-books", "google-play-games", "google-play", "google-podcasts", "google-scholar", "google-search-console", "google-sheets", "google-shopping", "google-sites", "google-slides", "google-street-view", "google-tag-manager", "google-translate", "google-tv", "google-voice", "google-wallet", "google-wifi", "google", "gopeed", "gose", "gotenberg", "gotify", "gotosocial", "gpt4free", "grafana", "gramps-web", "gramps", "grandstream", "grav-light", "grav", "gravity", "graylog", "greenbone-light", "greenbone", "greenlight", "grimoire", "grist", "grocy", "grok-dark", "grok", "grype", "guacamole-light", "guacamole", "habit-trove", "habitica-dark", "habitica", "hacker-news", "hammond-light", "hammond", "handbrake", "haproxy", "haptic-light", "haptic", "harbor", "hard-forum", "harvester", "hasheous", "hashicorp-boundary", "hashicorp-consul", "hashicorp-nomad", "hashicorp-packer", "hashicorp-terraform", "hashicorp-vagrant", "hashicorp-vault", "hashicorp-waypoint", "hastypaste", "hasura", "hathway", "hatsh-light", "hatsh", "hbo-light", "hbo", "hdhomerun-light", "hdhomerun", "headlamp-dark", "headlamp", "headphones", "headscale", "healthchecks", "hedgedoc", "heimdall-light", "heimdall", "helium-token", "helm", "helper-scripts", "hemmelig-light", "hemmelig", "hetzner-h", "hetzner", "hexo", "hexos", "heyform", "hi-anime", "hifiberry", "hikvision", "hilook", "hivedav", "hl-audiomuse-ai", "hoarder-light", "hoarder", "hollo-light", "hollo", "homarr", "home-assistant-alt", "home-assistant", "homebox", "homebridge", "homelabids", "homepage", "homer", "homeseer", "homey", "honda-jet", "honeygain", "hoobs", "hoppscotch", "hortusfox", "hostinger", "hotio", "hp", "html-light", "html", "huawei", "hubitat", "hubzilla", "hugging-face", "huginn", "hugo", "hulu", "humhub", "huntarr", "hydra", "hyperion", "hyperpipe-light", "hyperpipe", "hyprland", "i-librarian", "i2p-light", "i2p", "i2pd", "ical", "icecast", "icinga-full-light", "icinga-full", "icinga-light", "icinga", "icloud", "idealo", "ideco", "idrac", "idrive", "ihatemoney", "ikuai", "ilo", "image-maid", "immich-frame-light", "immich-frame", "immich-kiosk-light", "immich-kiosk", "immich-power-tools", "immich-public-proxy", "immich", "incus", "infinite-craft", "infisical", "influxdb", "infoblox", "infomaniak-k", "infomaniak-kdrive-dark", "infomaniak-kdrive-light", "infomaniak-kmeet-dark", "infomaniak-kmeet-light", "infomaniak-swisstransfer-dark", "infomaniak-swisstransfer-light", "inoreader", "insanelymac", "instagram", "intellij", "inventree", "invidious", "invisioncommunity", "invoice-ninja-light", "invoice-ninja", "invoiceninja-light", "invoiceninja", "invoke-ai", "iobroker", "ionos", "ipboard", "ipcamtalk", "ipfs-light", "ipfs", "irc", "iredmail", "ispconfig", "ispy", "issabel-pbx-dark", "issabel-pbx-wordmark-dark", "issabel-pbx-wordmark", "issabel-pbx", "it-tools-light", "it-tools", "italki", "itau", "jackett-light", "jackett", "jaeger", "jamf", "jamstack", "java", "javascript-light", "javascript", "jdownloader", "jdownloader2", "jeedom", "jekyll", "jellyfin-vue", "jellyfin", "jellyseerr", "jellystat-dark", "jellystat", "jelu", "jenkins", "jetbrains-fleet", "jetbrains-toolbox", "jetbrains-youtrack", "jetkvm-full", "jetkvm", "jfrog", "jio", "jiohotstar", "jira", "jitsi-meet", "jitsi", "joal", "joomla", "joplin", "jotty", "jujutsu-vcs", "julia", "jupyter", "jwt-io-light", "jwt-io", "k-speeder", "kagi", "kaizoku", "kali-linux", "kamatera", "kanboard-light", "kanboard", "kanidm", "kapacitor", "kapowarr", "karakeep-dark", "karakeep", "karaoke-eternal", "kasm-workspaces", "kasm", "kasten-k10", "kaufland", "kavita", "kbin", "keenetic-alt", "keenetic-new", "keenetic", "keepassxc", "keila", "kerberos", "kestra", "keycloak", "keyoxide-alt", "keyoxide", "kibana", "kick-light", "kick", "kimai", "kimi-ai", "kinto", "kitana", "kitchenowl", "kiwix-light", "kiwix", "kleinanzeigen", "kleopatra", "klipper", "knx", "ko-fi", "ko-insight", "koboldcpp", "kodi", "koel", "koillection-light", "koillection", "koito", "kokoro-web", "kometa", "komga", "komodo", "kontoj", "kook", "kopia", "kotlin", "kpn", "krakend", "krusader", "ksuite", "kubecraft", "kubernetes-dashboard", "kubernetes", "kubuntu-linux", "kutt", "kyoo", "lancache", "lancommander-light", "lancommander", "lanraragi", "laravel", "lark", "lastpass", "lazylibrarian", "ldap-account-manager", "leanote", "leantime", "leargas-security", "leetcode-dark", "leetcode", "lemmy-light", "lemmy", "lemonldap-ng", "lets-encrypt", "lexmark", "libation", "librechat", "libreddit-light", "libreddit", "libremdb", "librenms", "libreoffice-light", "libreoffice", "librephotos-light", "librephotos", "librespeed-light", "librespeed", "librewolf", "librex", "librey", "librum", "lichess-dark", "lichess", "lidarr", "lidl", "lightning-terminal", "lighttpd", "limesurvey", "linear-dark", "linear", "linguacafe", "linkace", "linkding", "linkedin", "linkstack", "linksys", "linkwarden", "linode", "linux-mint", "linux", "linuxdo", "linuxgsm", "linuxserver-io", "liremdb", "listenbrainz", "listmonk", "lite-speed", "littlelink-custom", "livebook", "lldap-dark", "lldap", "lms-mixtape", "lnbits", "lobe-chat", "local-content-share", "local-xpose", "locals-light", "locals", "lodestone", "logitech-gaming", "logitech-legacy", "logitech-light", "logitech", "logseq", "logstash", "logto", "loki", "longhorn", "lostack", "loxone-full", "loxone", "lsio", "lua", "lubelogger", "lubuntu-linux", "ludus-dark", "ludus", "lunalytics", "lunasea", "luxriot", "lychee", "lynx-light", "lynx", "lyrion-dark", "lyrion", "macmon", "mail-in-a-box", "mailchimp-light", "mailchimp", "mailcow", "mailcowsogo", "mailfence", "mailgun", "mailhog", "mailjet", "mailpit", "mailu", "mainsail", "maintainerr", "mak", "makemkv", "maker-world-dark", "maker-world", "maloja", "manga-dex", "mango", "manjaro-linux", "mantisbt", "many-notes", "manyfold", "maptiler", "marginalia", "mariadb", "marimo", "marktplaats", "marzban", "mastodon", "matomo", "matrix-light", "matrix-synapse-light", "matrix-synapse", "matrix", "matter-light", "matter", "matterbridge", "mattermost", "mautic", "max", "mayan-edms-light", "mayan-edms", "maybe", "mazanoke", "mbin", "mcmyadmin", "mealie", "medama", "media-manager", "mediathekview", "mediawiki", "medium-dark", "medium-light", "mediux", "medusa-light", "medusa", "mega-nz-dark", "mega-nz", "meilisearch", "mem-ai", "memories-light", "memories", "memos", "mempool", "meraki", "mercusys", "mergeable-dark", "mergeable", "meshcentral", "meshping-light", "meshping", "meshtastic", "meta", "metabase", "metabrainz", "metallb", "metube", "microbin", "microsoft-365-admin-center", "microsoft-365", "microsoft-access", "microsoft-azure", "microsoft-bing", "microsoft-copilot", "microsoft-defender", "microsoft-edge", "microsoft-excel", "microsoft-exchange", "microsoft-intune", "microsoft-office", "microsoft-onedrive", "microsoft-onenote", "microsoft-outlook", "microsoft-power-automate", "microsoft-powerpoint", "microsoft-remote-desktop", "microsoft-sharepoint", "microsoft-sql-server-light", "microsoft-sql-server", "microsoft-teams", "microsoft-to-do", "microsoft-windows", "microsoft-word", "microsoft", "midjourney-light", "midjourney", "mikrotik-light", "mikrotik", "minecraft", "mineos", "miniflux-light", "miniflux", "minimserver", "minio-light", "minio", "miro", "misp", "misskey-light", "misskey", "mistral-ai", "mitra", "mixpost", "mkdocs-light", "mkdocs", "mkvtoolnix", "ml-flow-wordmark-dark", "ml-flow-wordmark", "mobaxterm", "mobilizon", "mobotix-light", "mobotix", "mochahost", "modrinth", "mojeek", "molecule", "monero", "mongodb", "monica-light", "monica", "monit", "monkeytype", "moode-audio", "moodist-dark", "moodist", "moodle-light", "moodle", "morphos", "morss", "mosquitto", "motioneye-dark", "motioneye", "mousehole-dark", "mousehole", "movie-pilot", "mpm", "mqtt", "mstream", "mtlynch-picoshare", "mullvad-browser", "mullvad-vpn", "mullvad", "multi-scrobbler", "mumble-light", "mumble", "musescore", "music-assistant-light", "music-assistant", "musicbrainz", "my-guitar-tabs", "myheats-light", "myheats", "mylar", "mympd", "myspeed", "mysql", "mysterium", "n8n", "nagios", "name-silo", "namecheap", "nasa", "nastool", "natwest", "nautical-backup", "navidrome-light", "navidrome", "ncore", "neko-light", "neko", "neo4j", "neocities", "neodb", "neon-tech", "neonlink", "netalertx-light", "netalertx", "netapp-light", "netapp", "netatmo", "netbird", "netboot", "netbootxyz", "netbox-dark", "netbox-full-dark", "netbox-full", "netbox", "netcam-studio", "netdata", "netflix", "netgear-light", "netgear-orbi", "netgear", "netlify", "netmaker", "netsurf-light", "netsurf", "netvisor", "network-ups-tools", "network-weathermap", "networking-toolbox-dark", "networking-toolbox", "newegg", "newsblur", "newshosting-dark", "newshosting", "nextcloud-blue", "nextcloud-calendar", "nextcloud-contacts", "nextcloud-cookbook", "nextcloud-cospend", "nextcloud-deck", "nextcloud-files", "nextcloud-ncdownloader", "nextcloud-news", "nextcloud-notes", "nextcloud-photos", "nextcloud-social", "nextcloud-tables", "nextcloud-talk", "nextcloud-tasks", "nextcloud-timemanager", "nextcloud-white", "nextcloud", "nextcloudpi", "nextdns", "nexterm", "nextjs-light", "nextjs", "nextpvr", "nexus-dark", "nexus", "nezha", "nginx-proxy-manager", "nginx", "nicotine-plus", "nightscout-light", "nightscout", "nintendo-switch", "nitter", "nixos", "no-ip", "nocobase-light", "nocobase", "nocodb", "node-red", "nodebb", "nodejs-alt", "nodejs", "noisedash", "nomad", "nomie", "nordvpn", "note-mark", "notebook-lm-dark", "notebook-lm", "notesnook-light", "notesnook", "notifiarr", "notion-calendar", "notion-light", "notion-mail", "notion", "nowshowing", "npm", "ntfy", "ntop", "ntopng", "nu-nl", "nut-webgui", "nut", "nutanix", "nvidia", "nxfilter", "nxlog", "nzbgeek", "nzbget", "nzbhydra", "nzbhydra2-light", "nzbhydra2", "oauth2-proxy", "obico", "obitalk", "observium", "observo-ai", "obsidian", "obtainium", "octoeverywhere", "octoprint", "ocular", "oculus-light", "oculus", "odoo", "odysee-full-dark", "odysee-full-light", "odysee", "office-365", "oh-my-posh-dark", "oh-my-posh", "olivetin-light", "olivetin", "ollama-dark", "ollama", "omada", "ombi", "omni-tools-full", "omni-tools", "omnic-forge-dark", "omnic-forge", "omnidb", "omnivore", "onedev-light", "onedev", "oneuptime-light", "oneuptime", "onlyfans-dark", "onlyfans", "onlyoffice", "onshape-dark", "onshape", "ookla-speedtest", "open-classrooms", "open-cloud-dark", "open-cloud", "open-observe", "open-regex", "open-resume", "open-router-dark", "open-router", "open-source-initiative", "open-wb", "open-webui-light", "open-webui", "openai-light", "openai", "openaudible", "openchangelog-light", "openchangelog", "opencode-dark", "opencode", "opencost", "openeats-light", "openeats", "openemr-light", "openemr", "opengarage", "opengist-light", "opengist", "openhab", "openldap", "openlist", "openmaptiles", "openmediavault", "openoffice", "openpanel-light", "openpanel", "openproject", "openreads", "opensearch", "openshift-dark", "openshift", "openspeedtest", "opensprinkler", "openstack", "openstreetmap", "opensuse", "opentalk", "opentofu", "openvas", "openvpn", "openwebrx-plus-dark", "openwebrx-plus", "openwrt", "openziti", "opera-beta", "opera-developer", "opera-mini-beta", "opera-mini", "opera-neon", "opera-touch", "opera", "opnform", "opnsense", "oracle-cloud", "oracle", "orange", "orb", "orcaslicer", "oreilly-dark", "oreilly", "organizr", "origin", "oscarr-light", "oscarr", "osticket", "osu", "otter-wiki-dark", "otter-wiki", "our-shopping-list", "outline-light", "outline", "overclockers", "overleaf", "overseerr", "ovh", "ovirt-light", "ovirt", "owasp-zap", "owncast", "owncloud", "ownphotos-light", "ownphotos", "owntone", "owntracks", "oxker-light", "oxker", "p-cal", "p1ib", "packetfence-dark", "packetfence-full-dark", "packetfence-full", "packetfence", "pagerduty", "pairdrop", "palemoon", "palmr", "palo-alto", "pangolin", "paperless-ng", "paperless-ngx", "paperless", "papermark-light", "papermark", "papermerge-light", "papermerge", "papra", "parseable", "part-db-light", "part-db", "partkeepr", "passbolt", "passwordpusher-light", "passwordpusher", "passwork", "pastatool-light", "pastatool", "pastebin-dark", "pastebin", "pastey", "patchmon", "patreon-light", "patreon", "payload-light", "payload", "paymenter", "paypal", "pdfding-light", "pdfding", "peacock-light", "peacock", "peanut-light", "peanut", "peertube", "pelican-panel", "penpot-light", "penpot", "peppermint", "pepperminty-wiki", "perlite", "perplexity-book-dark", "perplexity-book-light", "perplexity-dark", "perplexity-light", "petio", "pfsense-light", "pfsense", "pg-back-web", "pgadmin", "pgbackweb-dark", "pgbackweb-light", "phanpy", "phantombot", "phase-dark", "phase", "phoneinfoga-light", "phoneinfoga", "phorge-light", "phorge", "phoscon-light", "phoscon", "photonix-light", "photonix", "photopea", "photoprism-light", "photoprism", "photostructure-dark", "photostructure", "photoview", "php-light", "php", "phpipam", "phpldapadmin", "phpmyadmin", "pi-alert", "pi-hole-unbound", "pi-hole", "pia", "piaware", "picsur-light", "picsur", "pigallery2-dark", "pigallery2", "pikapods", "pikvm-light", "pikvm", "pinchflat", "pinepods", "pingdom-light", "pingdom", "pingvin-dark", "pingvin-share-dark", "pingvin-share", "pingvin", "pinkary", "pinry", "pinterest", "pioneer-light", "pioneer", "piped", "pirate-proxy", "pivpn", "piwigo", "pixelfed", "plane", "planka-dark", "planka", "plant-it", "plantuml", "platzi", "plausible", "playstation", "pleroma", "plesk", "plex-alt-light", "plex-alt", "plex-light", "plex-meta-manager-light", "plex-meta-manager", "plex-rewind", "plex", "plexdrive", "plexrequests-light", "plexrequests", "plexripper", "plume", "pluralsight", "pocket-casts-dark", "pocket-casts", "pocket-id-light", "pocket-id", "pocketbase-dark", "pocketbase", "podfetch-light", "podfetch", "podgrab", "podify", "podman", "podnapisi", "policycontroller", "poly", "polywork", "porkbun", "port-note", "portainer-alt", "portainer-be-dark", "portainer-be", "portainer-dark", "portainer", "portracker-dark", "portracker", "portus", "postal", "poste", "posterizarr", "postgres", "postgresql", "postgresus", "posthog-light", "posthog", "postiz-dark", "postiz", "powerbi", "powerdns", "powerpanel", "premium-mobile", "premiumize", "pretix", "price-buddy", "primal", "prime-video-alt-dark", "prime-video-alt", "prime-video-light", "prime-video", "printables", "printer", "pritunl", "privacyidea", "private-internet-access", "privatebin", "profilarr", "projection-lab", "projectsend", "prometheus", "proton-calendar", "proton-docs", "proton-drive", "proton-lumo", "proton-mail", "proton-pass", "proton-vpn", "proton-wallet", "prowlarr", "proxmox-light", "proxmox", "prtg", "prusa-research", "psitransfer", "pterodactyl", "public-pool", "pufferpanel", "pulsarr", "pulse", "purelymail", "pushfish", "pushover", "putty", "pve-scripts-local", "pwndrop-light", "pwndrop", "pwpush-light", "pwpush", "pydio", "pyload", "python", "qbittorrent", "qd-today", "qdirstat", "qdrant", "qinglong", "qnap", "quant-ux", "quay", "questdb", "quetre", "qui", "quickshare", "quickwit", "quizlet", "qutebrowser", "qwen", "qwik", "r", "rabbitmq", "racknerd-dark", "racknerd", "radarr-4k", "radarr", "radicale", "rainloop", "rallly", "ramp-dark", "ramp", "rancher", "raneto", "raritan-light", "raritan", "raspberry-pi-light", "raspberry-pi", "raspberrymatic", "rathole", "rclone", "rdt-client", "reactive-resume-light", "reactive-resume", "reactjs", "readarr", "readeck", "readthedocs-light", "readthedocs", "readwise-reader-dark", "readwise-reader", "real-debrid", "realhosting", "recalbox", "receipt-wrangler", "recipesage", "recipya", "recomendarr", "recyclarr", "reddit", "redhat-linux", "redict", "redis", "redlib-light", "redlib", "redmine", "rekor", "release-argus", "remmina", "remnawave", "remnote", "remotely", "renovate", "reolink", "reposilite-dark", "reposilite", "requestly", "requestrr", "resiliosync-full-dark", "resiliosync-full", "resiliosync", "restic", "restreamer", "retrom", "revanced-manager", "revolt-light", "revolt", "rhasspy-dark", "rhasspy", "rhodecode", "richy", "rimgo-light", "rimgo", "riot", "ripe", "riverside-fm-light", "riverside-fm", "robinhood", "rocket-chat", "rocky-linux", "romm", "rompya", "rook", "root-me-dark", "root-me", "rotki", "roundcube", "router", "rozetkaua", "rpi-monitor", "rport", "rspamd", "rss-bridge", "rss-translator", "rsshub", "rstudio", "rstudioserver", "ruby", "ruckus-unleashed", "rumble", "rundeck", "runeaudio", "runonflux", "runson-light", "runson", "rust-dark", "rust", "rustdesk", "rutorrent", "ryot-light", "ryot", "sabnzbd-light", "sabnzbd", "safari-ios", "safari", "safeline", "sagemcom", "salad", "salt-project", "saltcorn", "samba-server", "samsung-internet", "sandstorm", "satisfactory", "scanservjs", "schedulearn-dark", "schedulearn", "schneider", "scraperr", "scrcpy", "screenconnect", "scrutiny-light", "scrutiny", "scrypted", "seafile", "searx", "searxng", "secureai-tools-light", "secureai-tools", "security-onion-dark", "security-onion", "seelf", "selenium", "self-hosted-gateway", "selfh-st-light", "selfh-st", "selfhosted-light", "selfhosted", "semaphore-dark", "semaphore", "send", "sendgrid", "sendinblue", "sensu", "sentry-light", "sentry", "seq", "series-troxide", "serpbear", "servarr-light", "servarr", "serviio-light", "serviio", "session", "seznam", "sftpgo", "shaarli", "shell-light", "shell-tips-light", "shell-tips", "shell", "shellhub", "shellngn", "shelly", "shinkro", "shinobi", "shiori", "shlink", "shoko-server", "shoko", "shopify", "shortcut", "sickbeard", "sickchill", "sickgear", "signal", "signoz", "sigstore", "silae", "silverbullet", "simplelogin", "simplex-chat", "sinusbot", "sipeed", "siyuan", "sketchup-make", "skylink-fibernet", "skype", "slaanesh", "slack", "slash-light", "slash", "slice", "slidev", "slink-light", "slink", "slskd", "slurpit-dark", "slurpit", "smartfox", "smlight", "smokeping", "snapcast", "snapchat-dark", "snapchat", "snapdrop", "snappymail-light", "snappymail", "snibox", "snikket", "snipe-it", "snippetbox", "socialhome", "sogo", "solaar", "solid-invoice", "solidtime-light", "solidtime", "sonarqube", "sonarr-4k", "sonarr-dark", "sonarr", "sophos-dark", "sophos", "soulseek", "sourcegraph", "spamassassin", "spark", "sparkleshare", "sparky-fitness", "specifically-clementines", "specter-desktop", "speedtest-tracker", "sphinx-doc", "sphinx-relay", "sphinx", "spiceworks", "spiderfoot", "spliit", "splunk", "spoolman", "spotify", "spotnet", "spree-dark", "spree", "springboot-initializer", "sqlitebrowser", "squeezebox-server", "squidex", "squirrel-servers-manager", "sshwifty", "sst-dev-dark", "sst-dev", "stalwart-mail-server", "stalwart", "standard-notes", "startpage", "stash", "statping-ng", "statping", "stb-proxy", "steam", "step-ca", "stirling-pdf", "storj", "storm", "stormkit", "strapi", "strava", "stream-harvestarr", "streama", "stremio", "stump-alt", "stump", "sub-store", "subatic", "subdl", "substreamer", "suggest-arr", "sun-panel", "sunsama", "sunshine", "supabase", "superlist", "supermicro", "surveymonkey", "suwayomi-light", "suwayomi", "svelte", "swagger", "swarmpit", "swift", "swizzin", "syft", "symedia", "symmetricom-light", "symmetricom", "sympa", "synapse-light", "synapse", "syncany", "synclounge-light", "synclounge", "syncplay", "syncthing-dark", "syncthing", "synology-audio-station", "synology-calendar", "synology-chat", "synology-cloud-sync", "synology-contacts", "synology-document-viewer", "synology-download-station", "synology-drive-server", "synology-drive", "synology-dsm", "synology-file-station", "synology-light", "synology-mail-plus", "synology-mail-station", "synology-note-station", "synology-office", "synology-pdfviewer", "synology-photo-station", "synology-photos", "synology-surveillance-station", "synology-text-editor", "synology-video-station", "synology-vmm", "synology-webstation", "synology", "sysreptor", "t3-chat", "tabula", "tacticalrmm", "taiga", "tailscale-light", "tailscale", "tailwind", "talos", "tandoor-recipes", "tangerine-ui", "tanoshi", "tar1090", "taskcafe", "tasmoadmin", "tasmocompiler", "tasmota-light", "tasmota", "tautulli", "tdarr", "team-viewer", "teamcity-light", "teamcity", "teamspeak", "teamtailor", "technitium", "teddy-cloud", "teedy", "telegraf", "telegram", "telekom", "teleport", "tenable-dark", "tenable", "tenda", "terminal", "termix", "terraform", "terraria", "teslamate-light", "teslamate", "thanos", "the-onion", "the-pirate-bay", "the-proxy-bay", "theia-light", "theia", "thelounge", "themepark", "theodinproject", "thin-linc", "thingsboard", "threadfin", "threads-light", "threads", "thunderbird", "thunderhub-light", "thunderhub", "tianji-light", "tianji", "ticky", "tidal-dark", "tidal", "tiddlywiki-light", "tiddlywiki", "tiktok-light", "tiktok", "timemachines-light", "timemachines", "timetagger-light", "timetagger", "ting-isp", "tiny-media-manager", "tinyauth", "tinypilot", "tinytinyrss", "tipi", "tmdb", "todoist-dark", "todoist", "toggl-dark", "toggl", "tolgee", "tooljet-dark", "tooljet", "topdesk", "tor", "torrserver", "touitomamout", "tp-link", "tpdb", "traccar-dark", "traccar", "trading-view-dark", "trading-view", "traefik-proxy", "traefik", "traggo", "trailarr", "trakt", "transmission", "trash-guides", "trellix-dark", "trellix", "trilium", "triliumnext", "trivy", "trmnl-android", "trmnl", "troddit", "trudesk", "truecommand", "truenas-core", "truenas-enterprise", "truenas-scale", "truenas", "tryhackme", "tsd-proxy", "tube-archivist-light", "tube-archivist", "tubesync-light", "tubesync", "tugtainer", "tumblr", "tunarr", "tunnelix", "turbopack-light", "turbopack", "tuta", "tux", "tvdb", "tvheadend", "tvp-vod", "tweakers", "twingate-light", "twingate", "twitch", "twitter", "txlog", "typemill-light", "typemill", "typescript", "typesense", "typo3", "ubiquiti-networks", "ubiquiti-unifi", "ubiquiti", "ubooquity", "ubuntu-linux-alt", "ubuntu-linux", "uc-browser", "udemy-light", "udemy", "ugreen-nas", "ugreen", "ultimate-guitar-light", "ultimate-guitar", "umami-light", "umami", "umbrel", "unbound", "uncomplicated-alert-receiver", "undb", "unifi-controller", "unifi-dark", "unifi-drive", "unifi-protect", "unifi-voucher-site", "unifi", "unimus", "unity-dark", "unity", "universal-media-server", "university-applied-sciences-brandenburg", "unmanic", "unraid", "untangle", "updog", "ups", "upsnap", "uptime-kuma", "uptimerobot", "upvote-rss", "upwork", "urbackup-server", "urbackup", "usermin", "valetudo", "valkey", "vault-light", "vault", "vaultwarden-light", "vaultwarden", "vector", "veeam", "vera-crypt", "vercel-light", "vercel", "verizon", "verriflo-dark", "verriflo", "vertiv-dark", "vertiv", "vi", "viber", "victorialogs", "victoriametrics-light", "victoriametrics", "victron-energy", "vidzy", "viewtube", "vikunja", "vinchin-backup", "virgin-media", "virtualmin", "virtualradarserver", "viseron-light", "viseron", "visual-studio-code", "vitalpbx", "vite", "vitest", "vito-deploy", "vivaldi", "vmware-esxi", "vmware-horizon", "vmware-vcenter", "vmware-workstation", "vmware", "vn-stat", "vodafone", "voilib", "voip-info", "voip-ms", "voltaserve-light", "voltaserve", "volumio-light", "volumio", "voron", "vouchervault", "vscode", "vtvgo", "vuetorrent", "vultr", "vuplus", "wakapi", "wakatime-light", "wakatime", "wallabag-light", "wallabag", "wallos", "wanderer-light", "wanderer", "wanikani", "ward", "warpgate", "warracker", "watcharr-light", "watcharr", "watcher", "watchlistarr", "watchtower", "watchyourlan", "watchyourports", "wavelog", "waze", "wazuh", "wbo", "wd-mycloud", "web-check-dark", "web-check", "web-whisper", "webdav", "webdb", "webex", "webhook", "webhookd", "webkit", "webmin", "webtools", "webtop", "webtorrent", "webtrees", "wekan", "wero-dark", "wero", "western-digital", "wetty", "wevr-labs", "wg-gen-web-light", "wg-gen-web", "wger", "whatnot", "whats-up-docker", "whatsapp", "whisparr", "whodb", "whoogle", "wifiman", "wiki-go", "wikidocs", "wikijs-alt", "wikijs", "wikipedia-light", "wikipedia", "willow", "windmill", "windows-10", "windows-11", "windows-7", "windows-95-light", "windows-95", "windows-98", "windows-retro-light", "windows-retro", "windows-vista", "windows-xp", "wireguard", "wirenboard", "wireshark", "wizarr", "wled", "wolfi-light", "wolfi", "woocommerce", "woodpecker-ci", "wooting-dark", "wooting", "wordpress", "workadventure", "worklenz", "wotdle-light", "wotdle", "wownero", "writefreely-light", "writefreely", "wsz", "x-light", "x", "xbackbone", "xbox-game-pass", "xbox", "xbrowsersync", "xcp-ng", "xen-orchestra", "xiaomi-global", "xigmanas", "xmr", "xmrig", "xpipe", "xteve", "xubuntu-linux", "xwiki", "yaade", "yac-reader", "yacd-blue", "yacd", "yacht", "yahoo-mail", "yahoo", "yamtrack-light", "yamtrack", "yandex", "yarn-social", "yarr-light", "yarr", "yazi", "ycombinator-dark", "ycombinator", "ymarks", "ynab", "your-spotify", "yourls", "youtarr", "youtube-dl", "youtube-kids", "youtube-music", "youtube-tv", "youtube", "yt-dlp", "yts", "yuno-host-light", "yunohost", "z-ai", "z-wave-js-ui", "zabbix", "zabka", "zalo", "zammad", "zapier-dark", "zapier", "zashboard-dark", "zashboard", "zen-browser-dark", "zen-browser", "zenarmor", "zendesk", "zerotier-light", "zerotier", "zigbee2mqtt-light", "zigbee2mqtt", "zima-os", "zimbra", "zipcaptions", "zipline-diced", "zipline-light", "zipline", "zitadel-light", "zitadel", "znc", "zohomail", "zomro", "zoneminder", "zoom-alt", "zoom", "zoraxy", "zorin-linux", "zot-registry", "zulip", "zwavejs2mqtt", "zyxel-communications-light", "zyxel-communications", "zyxel-networks-light", "zyxel-networks" + ]; + + const fontawesomeIcons = [ + "fa-solid fa-house", "fa-solid fa-magnifying-glass", "fa-solid fa-user", "fa-solid fa-check", "fa-solid fa-download", "fa-solid fa-image", "fa-solid fa-phone", "fa-solid fa-bars", "fa-solid fa-envelope", "fa-solid fa-star", "fa-solid fa-location-dot", "fa-solid fa-music", "fa-solid fa-wand-magic-sparkles", "fa-solid fa-heart", "fa-solid fa-arrow-right", "fa-solid fa-circle-xmark", "fa-solid fa-bomb", "fa-solid fa-poo", "fa-solid fa-camera-retro", "fa-solid fa-cloud", "fa-solid fa-comment", "fa-solid fa-pen-nib", "fa-solid fa-arrow-up", "fa-solid fa-hippo", "fa-solid fa-face-smile", "fa-solid fa-calendar-days", "fa-solid fa-paperclip", "fa-solid fa-shield-halved", "fa-solid fa-file", "fa-solid fa-bell", "fa-solid fa-cart-shopping", "fa-solid fa-clipboard", "fa-solid fa-filter", "fa-solid fa-circle-info", "fa-solid fa-arrow-trend-up", "fa-solid fa-bolt", "fa-solid fa-car", "fa-solid fa-ghost", "fa-solid fa-mug-hot", "fa-solid fa-circle-user", "fa-solid fa-pen", "fa-solid fa-umbrella", "fa-solid fa-gift", "fa-solid fa-film", "fa-solid fa-list", "fa-solid fa-gear", "fa-solid fa-trash", "fa-solid fa-circle-up", "fa-solid fa-video", "fa-solid fa-chain", "fa-solid fa-gamepad", "fa-solid fa-server", "fa-solid fa-database", "fa-solid fa-network-wired", "fa-solid fa-wifi", "fa-solid fa-microchip", "fa-solid fa-hard-drive", "fa-solid fa-laptop", "fa-solid fa-desktop", "fa-solid fa-mobile", "fa-solid fa-tablet", "fa-solid fa-tv", "fa-solid fa-print", "fa-solid fa-terminal", "fa-solid fa-code", "fa-solid fa-bug", "fa-solid fa-layer-group", "fa-solid fa-users", "fa-solid fa-user-secret", "fa-solid fa-lock", "fa-solid fa-unlock", "fa-solid fa-key", "fa-solid fa-passport", "fa-solid fa-id-card", "fa-solid fa-address-book", "fa-solid fa-globe", "fa-solid fa-earth-americas", "fa-solid fa-earth-europe", "fa-solid fa-earth-africa", "fa-solid fa-earth-asia", "fa-solid fa-sun", "fa-solid fa-moon", "fa-solid fa-cloud-sun", "fa-solid fa-cloud-rain", "fa-solid fa-snowflake", "fa-solid fa-fire", "fa-solid fa-water", "fa-solid fa-wind", "fa-solid fa-tree", "fa-solid fa-seedling", "fa-solid fa-leaf", "fa-solid fa-cannabis", "fa-solid fa-paw", "fa-solid fa-dog", "fa-solid fa-cat", "fa-solid fa-horse", "fa-solid fa-fish", "fa-solid fa-crow", "fa-solid fa-hospital", "fa-solid fa-syringe", "fa-solid fa-capsules", "fa-solid fa-pills", "fa-solid fa-briefcase-medical", "fa-solid fa-stethoscope", "fa-solid fa-book", "fa-solid fa-book-open", "fa-solid fa-book-bookmark", "fa-solid fa-bookmark", "fa-solid fa-graduation-cap", "fa-solid fa-school", "fa-solid fa-money-bill", "fa-solid fa-money-bill-wave", "fa-solid fa-coins", "fa-solid fa-credit-card", "fa-solid fa-wallet", "fa-solid fa-piggy-bank", "fa-solid fa-chart-simple", "fa-solid fa-chart-pie", "fa-solid fa-chart-area", "fa-solid fa-chart-column", "fa-solid fa-chart-line", "fa-solid fa-diagram-project", "fa-solid fa-thumbs-up", "fa-solid fa-thumbs-down", "fa-solid fa-hand-point-up", "fa-solid fa-hand-point-down", "fa-solid fa-hand-point-left", "fa-solid fa-hand-point-right", "fa-solid fa-envelope-open", "fa-solid fa-envelope-open-text", "fa-solid fa-inbox", "fa-solid fa-paper-plane", "fa-solid fa-share", "fa-solid fa-share-nodes", "fa-solid fa-clock", "fa-solid fa-stopwatch", "fa-solid fa-hourglass", "fa-solid fa-hourglass-start", "fa-solid fa-hourglass-half", "fa-solid fa-hourglass-end", "fa-solid fa-calendar", "fa-solid fa-calendar-check", "fa-solid fa-calendar-plus", "fa-solid fa-calendar-minus", "fa-solid fa-calendar-xmark", "fa-solid fa-rss", "fa-solid fa-podcast", "fa-solid fa-radio", "fa-solid fa-microphone", "fa-solid fa-microphone-lines", "fa-solid fa-headphones", "fa-solid fa-sliders", "fa-solid fa-table-columns", "fa-solid fa-table-list", "fa-solid fa-table-cells", "fa-solid fa-table-cells-large", "fa-solid fa-toggle-on", "fa-solid fa-toggle-off", "fa-solid fa-circle-check", "fa-solid fa-circle-pause", "fa-solid fa-circle-stop", "fa-solid fa-circle-play", "fa-solid fa-power-off", "fa-solid fa-plug", "fa-solid fa-plug-circle-plus", "fa-solid fa-plug-circle-minus", "fa-solid fa-plug-circle-check", "fa-solid fa-plug-circle-xmark", "fa-solid fa-ethernet", "fa-solid fa-satellite-dish", "fa-solid fa-satellite", "fa-solid fa-tower-broadcast", "fa-solid fa-tower-cell", "fa-solid fa-signal", "fa-brands fa-github", "fa-brands fa-docker", "fa-brands fa-linux", "fa-brands fa-windows", "fa-brands fa-apple", "fa-brands fa-android", "fa-brands fa-google", "fa-brands fa-google-drive", "fa-brands fa-google-play", "fa-brands fa-aws", "fa-brands fa-cloudflare", "fa-brands fa-digital-ocean", "fa-brands fa-python", "fa-brands fa-js", "fa-brands fa-html5", "fa-brands fa-css3", "fa-brands fa-react", "fa-brands fa-vuejs", "fa-brands fa-angular", "fa-brands fa-node", "fa-brands fa-npm", "fa-brands fa-yarn", "fa-brands fa-php", "fa-brands fa-java", "fa-brands fa-rust", "fa-brands fa-golang", "fa-brands fa-wordpress", "fa-brands fa-joomla", "fa-brands fa-drupal", "fa-brands fa-magento", "fa-brands fa-shopify", "fa-brands fa-squarespace", "fa-brands fa-wix", "fa-brands fa-weebly", "fa-brands fa-medium", "fa-brands fa-tumblr", "fa-brands fa-blogger", "fa-brands fa-ghost", "fa-brands fa-discord", "fa-brands fa-slack", "fa-brands fa-telegram", "fa-brands fa-whatsapp", "fa-brands fa-facebook-messenger", "fa-brands fa-skype", "fa-brands fa-twitter", "fa-brands fa-facebook", "fa-brands fa-instagram", "fa-brands fa-linkedin", "fa-brands fa-youtube", "fa-brands fa-twitch", "fa-brands fa-tiktok", "fa-brands fa-snapchat", "fa-brands fa-pinterest", "fa-brands fa-reddit", "fa-brands fa-quora", "fa-brands fa-stack-overflow", "fa-brands fa-spotify", "fa-brands fa-itunes", "fa-brands fa-soundcloud", "fa-brands fa-bandcamp", "fa-brands fa-steam", "fa-brands fa-xbox", "fa-brands fa-playstation", "fa-brands fa-battle-net", "fa-brands fa-itch-io", "fa-brands fa-unity", "fa-brands fa-unreal-engine", "fa-brands fa-bitcoin", "fa-brands fa-ethereum", "fa-brands fa-paypal", "fa-brands fa-stripe", "fa-brands fa-cc-visa", "fa-brands fa-cc-mastercard", "fa-brands fa-cc-amex", "fa-brands fa-cc-discover", "fa-brands fa-cc-jcb", "fa-brands fa-cc-diners-club", "fa-brands fa-amazon", "fa-brands fa-ebay", "fa-brands fa-alipay", "fa-brands fa-kickstarter", "fa-brands fa-patreon", "fa-brands fa-trello", "fa-brands fa-atlassian", "fa-brands fa-jira", "fa-brands fa-bitbucket", "fa-brands fa-confluence", "fa-brands fa-dropbox", "fa-brands fa-box", "fa-brands fa-evernote", "fa-brands fa-salesforce", "fa-brands fa-hubspot", "fa-brands fa-mailchimp", "fa-brands fa-waze", "fa-brands fa-uber", "fa-brands fa-lyft", "fa-brands fa-airbnb", "fa-brands fa-strava", "fa-brands fa-fitbit", "fa-brands fa-nutritionix", "fa-brands fa-imdb", "fa-brands fa-wikipedia-w", "fa-brands fa-researchgate", "fa-brands fa-chrome", "fa-brands fa-firefox", "fa-brands fa-firefox-browser", "fa-brands fa-edge", "fa-brands fa-safari", "fa-brands fa-opera", "fa-brands fa-internet-explorer", "fa-brands fa-ubuntu", "fa-brands fa-centos", "fa-brands fa-fedora", "fa-brands fa-redhat", "fa-brands fa-suse", "fa-brands fa-raspberry-pi", "fa-brands fa-freebsd" + ]; \ No newline at end of file diff --git a/replacement_fa.txt b/replacement_fa.txt new file mode 100644 index 0000000..e5e4b54 --- /dev/null +++ b/replacement_fa.txt @@ -0,0 +1,6 @@ +const homelabIcons = [ "1337x", "13ft", "1panel", "1password-dark", "1password", "20i-dark", "20i", "2fauth-light", "2fauth", "3cx-light", "3cx", "4chan", "5etools-dark", "5etools", "7zip", "a-mule", "aboard", "act", "action1", "activepieces", "actual-budget", "adblock", "adguard-home-sync", "adguard-home", "adminer", "adobe", "ads-b-exchange", "adsb", "advanzia", "adventure-log", "affine-light", "affine", "agile-freaks", "agregarr", "air-trail", "airsonic", "airtable", "airtel", "airvpn", "akamai", "akaunting", "akkoma-light", "akkoma", "alarmpi", "albert-heijn", "alertmanager", "alexa", "algo", "ali-mail", "aliexpress", "alist", "aliyun", "alloy", "alltube-light", "alltube", "alma-linux", "alpine-linux", "amazon-light", "amazon-prime", "amazon-web-services-light", "amazon-web-services", "amazon", "amcrest-cloud", "amcrest", "amd-light", "amd", "ami-alt-light", "ami-alt", "ami", "amp", "ampache", "android-auto-dark", "android-auto", "android-robot", "android", "anghami", "angular", "anime-kai", "anonaddy", "ansible-light", "ansible", "any-listen", "anything-llm-light", "anything-llm", "apache-airflow", "apache-answer", "apache-cassandra", "apache-cloudstack", "apache-druid", "apache-openoffice", "apache-solr", "apache-subversion", "apache-tomcat-light", "apache-tomcat", "apache", "apc", "apiscp", "app-store", "appdaemon", "appflowy", "apple-alt", "apple-light", "apple-maps", "apple-music", "apple-podcasts", "apple-tv-plus-light", "apple-tv-plus", "apple", "apprise", "appwrite", "ara-records-ansible", "arcane", "arch-linux", "archidekt", "archisteamfarm", "archivebox", "archiveteam-warrior-light", "archiveteam-warrior", "arduino", "argo-cd", "ariang", "arm", "arris-light", "arris", "artifacthub", "artifactory", "aruba", "asana", "asciinema", "asrock-rack-ipmi", "asrock-rack", "assetgrid", "asterisk", "astral", "astuto-light", "astuto", "asus-full", "asus-rog", "asus-router", "asus", "asustor", "at-t", "atlassian-bamboo", "atlassian-bitbucket", "atlassian-confluence", "atlassian-jira", "atlassian-opsgenie", "atlassian-trello", "atlassian", "atuin-light", "atuin", "audacity", "audiobookshelf", "aura", "auracast", "authelia", "authentik", "authman", "auto-cad", "auto-mcs", "autobangumi-dark", "autobangumi", "autobrr", "automad-light", "automad", "avg", "avigilon", "avm-fritzbox-light", "avm-fritzbox", "aws-ecs", "aws-light", "aws", "awtrix", "awwesome", "awx", "axis", "aya", "azuracast", "azure-container-instances", "azure-container-service", "azure-devops", "azure-dns", "azure", "bab-technologie-dark", "bab-technologie", "babybuddy", "backblaze", "backrest-light", "backrest", "bacula", "badge", "baikal", "bale", "balena-cloud", "balena-etcher", "ballerina", "bandcamp", "bar-assistant", "barcodebuddy", "baserow", "basilisk", "bastillion", "batocera-linux", "bazarr-dark", "bazarr", "bazecor", "be-quiet", "beaver-habit-tracker-light", "beaver-habit-tracker", "bechtle", "beef-light", "beef", "beets", "benotes", "bentopdf", "beszel-light", "beszel", "betanin", "bewcloud", "bible-gateway", "bibliogram", "biblioreads-light", "biblioreads", "biedronka", "bigcapital", "bilibili", "bing", "binner-dark", "binner", "birdnet", "bitbucket", "bitcoin", "bithumen", "bitmagnet", "bitwarden", "bitwig-studio-dark", "bitwig-studio", "blocky", "blogger", "blue-iris", "blue-letter-bible", "bluesky", "bluetooth", "bluewallet", "bobcat-miner", "boinc", "book-lore", "booklogr-light", "booklogr", "booksonic", "bookstack", "bootstrap", "borg", "borgmatic-light", "borgmatic", "bottom-dark", "bottom", "boundary", "box", "boxarr", "brave-dev", "brave", "brewpi", "brick-tracker", "bright-move", "brillcam", "broad-link", "broadcastchannel-light", "broadcastchannel", "brocade", "brother", "browserless-light", "browserless", "browsh", "btcpay-server", "buddy", "budget-board", "budget-zero", "budgetbee-light", "budgetbee", "budibase", "buffalo", "build-better-dark", "build-better", "buildium", "bunkerweb", "bunny", "buxfer", "bytestash", "c", "cabernet", "cabot", "cachyos-linux", "cacti", "caddy", "cadvisor", "cal-com-light", "cal-com", "calckey", "caldera", "calibre-web-automated-book-downloader", "calibre-web", "calibre", "camera-ui", "canonical", "canvas-lms", "cap-cut-dark", "cap-cut", "capacities-dark", "capacities", "caprover", "cardigann-light", "cardigann", "carrefour", "casaos", "castopod", "cc-light", "cc", "centos", "ceph", "cert-manager", "cert-warden-light", "cert-warden", "cessna", "chainguard", "changedetection", "channels-dvr", "chaptarr", "chart-db", "chatbetter", "chatgpt", "chatpad-ai", "chatwoot", "check-cle", "checkmate", "checkmk", "cherry", "chess", "chevereto", "chhoto-url", "chibisafe", "chiefonboarding", "chirpy", "chowdown", "chroma", "chrome-beta", "chrome-canary", "chrome-dev", "chrome-devtools", "chrome-remote-desktop", "chrome", "chromecast-light", "chromecast", "chromium", "chronograf", "cilium-light", "cilium", "cinny-light", "cinny", "ciphermail", "cisco", "clam-av", "clash", "claude-ai-light", "claude-ai", "cleanuperr", "clickhouse", "clickup", "cloud66", "cloud9-light", "cloud9", "cloudbeaver", "cloudcmd", "cloudflare-pages", "cloudflare-zero-trust", "cloudflare", "cloudpanel", "cloudreve", "cloudstream", "cobalt-dark", "cobalt", "cockpit-cms-light", "cockpit-cms", "cockpit-light", "cockpit", "code-cademy-dark", "code-cademy", "code-server", "code", "codeberg", "codellm", "coder-light", "coder", "codestats-light", "codestats", "codex-light", "codex", "codimd-light", "codimd", "collabora-online", "comfy-ui", "commafeed-light", "commafeed", "commento-light", "commento", "compreface", "concourse", "confix", "confluence", "consul", "contabo", "control-d-dark", "control-d", "converse-light", "converse", "convertx", "convex", "cooler-control", "coolify", "copyparty", "copyq", "core-control", "coredns", "coreos", "cosign", "cosmos-cloud", "costco", "couchdb", "couchpotato", "counter-analytics", "counter-strike-2", "counter-strike-global-offensive", "coursera", "cozy", "cpanel", "cpp", "crafty-controller", "crater-invoice", "crazydomains", "cribl-light", "cribl", "cron-master", "cronicle", "cross-seed-square", "cross-seed", "crowdin-dark", "crowdin", "crowdsec", "crunchyroll", "cryptomator", "cryptpad", "csharp", "css-light", "css", "ctfreak", "cup", "cups-light", "cups", "cura", "cyber-power-full", "cyberchef", "czkawka", "d-link", "dagster-dark", "dagster-light", "dahua", "dalibo", "daps", "dart", "dashboard-icons-dark", "dashboard-icons", "dashdot", "dashwise", "dashy", "datadog", "davical", "davis", "dawarich", "dc-os", "dd-wrt-light", "dd-wrt", "ddclient", "ddns-updater", "debian-linux", "deemix", "deepl-dark", "deepl", "deepseek", "deezer", "defguard", "dell", "deluge", "deno-light", "deno", "denodo", "denon-light", "denon", "deployarr", "develancacheui", "devtooly-light", "devtooly", "dia", "diagrams-net", "diamond-aircraft", "dietpi", "digi-kam", "digikey", "digital-ocean", "dilg", "dillinger-light", "dillinger", "dim-light", "dim", "diners-club", "directadmin", "directus", "discord", "discourse-light", "discourse", "diskover", "disney-plus", "dispatcharr", "distribution", "diun", "dixa", "diyhue", "dlna", "docassemble-light", "docassemble", "docker-amd", "docker-amvd", "docker-compose", "docker-engine", "docker-gc", "docker-mailserver-light", "docker-mailserver", "docker-moby", "docker-volume-backup", "docker", "dockge", "docking-station", "dockpeek-dark", "dockpeek", "dockstarter", "dockwatch", "docmost", "docsify", "docspell", "documenso", "docusaurus", "docuseal", "dogpile", "dokemon", "dokploy-dark", "dokploy", "dokuwiki", "dolibarr", "dolphin", "domainmod", "domoticz", "donetick", "doplarr", "doppler", "dopplertask", "double-commander", "double-take-dark", "double-take", "dovecot", "dozzle", "dragon-ruby", "draw-io", "draytek", "dream-host-dark", "dream-host", "drone", "drop", "dropbox", "dropout-light", "dropout", "droppy-dark", "droppy", "dub-light", "dub", "duckdns-light", "duckdns", "duckduckgo", "dumbassets", "dumbpad", "duo", "duplicacy", "duplicati", "dynmap", "easy-gate-light", "easy-gate", "ebay", "eblocker", "edge-dev", "edge", "edgeos-light", "edgeos", "eitaa", "elastic-beats", "elastic-kibana", "elastic-logstash", "elastic", "elasticsearch", "electron", "electronic-arts", "electrum", "element", "eleventy-light", "eleventy", "elgato-wave-link", "eliza-os", "elysian", "emacs", "embraer", "emby", "embystat", "emq-light", "emq", "emqx", "emsesp", "emulatorjs", "enbizcard", "enclosed-light", "enclosed", "endeavouros-linux", "endless-light", "endless", "endurain", "enhance", "enshrouded", "ente-photos", "entergy", "epic-games-light", "epic-games", "epson-iprint", "ersatztv", "erste-george", "erste", "esphome-alt-light", "esphome-alt", "esphome-light", "esphome", "espocrm", "espressif", "etcd", "etesync", "ethereum", "etherpad", "evcc", "evebox", "evernote", "eweka", "excalidraw", "exercism-dark", "exercism", "expense-owl", "ezbookkeeping", "f-droid", "f1-dash", "f5-networks", "facebook-messenger", "facebook", "falcon-christmas", "falcon-player-dark", "falcon-player", "fast-com-light", "fast-com", "fasten-health", "fastmail", "fedora-alt", "fedora", "feedbase-light", "feedbase", "feedbin-light", "feedbin", "feedly", "feedlynx-light", "feedlynx", "feishin", "fenrus-light", "fenrus", "ferdi", "ferdium", "fermentrack", "ferretdb", "fibaro", "fidelity", "fider", "figma", "filebot", "filebrowser-quantum", "filebrowser", "filecloud", "fileflows", "filegator", "filepizza", "filerun", "files-community", "files", "filestash", "filezilla", "finamp", "findroid", "fios-light", "fios", "firebase", "firefly-iii", "firefly", "firefox-beta", "firefox-developer-edition", "firefox-lite", "firefox-nightly", "firefox-reality", "firefox-send", "firefox", "fireshare", "firewalla", "fittrackee", "fl-studio", "fladder", "flame", "flaresolverr", "flarum", "flat-notes", "flathub-dark", "flathub", "flatnotes", "flatpak", "fleetdm", "flexget", "flightaware", "flightradar24-light", "flightradar24", "floatplane", "flogo", "flood", "floorp", "flowise", "flowtunes", "fluent-reader", "fluffychat-dark", "fluffychat", "fluidd", "flux-cd", "fly-io", "fmd", "fnos", "focalboard", "foldingathome", "fontawesome", "foreflight-dark", "foreflight", "forgejo", "forte-light", "forte", "fortinet", "foscam", "fossil", "foundry-vtt", "franz", "free-dns", "free-sas", "freebox-delta", "freebox-pop", "freebox-revolution", "freedombox", "freeipa", "freenas", "freenom", "freepbx", "freescout", "freshping-dark", "freshping", "freshrss", "friendica", "frigate-light", "frigate", "fritzbox-light", "fritzbox", "fronius", "frp", "fulcio", "funkwhale-light", "funkwhale", "fusionauth-light", "fusionauth", "fusionpbx", "gamevault", "gameyfin-light", "gameyfin", "gaps", "garage", "garmin-connect", "garuda-linux", "gaseous", "gatsby", "gatus", "gboard", "geckoview", "genius", "gentoo-linux", "geo-guessr", "gerbera", "gerrit", "get-iplayer", "ghost-light", "ghost", "ghostfolio", "ghostty", "gigaset", "gimp", "git", "gitbook", "gitea", "gitee", "github-light", "github", "gitlab", "gitsign", "gladys-assistant", "glance", "glances-light", "glances", "glinet-dark", "glinet", "glitchtip", "glpi", "gluetun", "gmail", "go", "go2rtc", "goaccess-light", "goaccess", "godaddy-alt", "godaddy", "godot", "gogs", "golink-dark", "golink", "gollum", "gomft", "gone-man-switch", "gonic", "goodreads", "google-admin", "google-admob", "google-alerts", "google-analytics", "google-assistant", "google-calendar", "google-chat", "google-chrome", "google-classroom", "google-cloud-platform", "google-cloud-print", "google-colab", "google-compute-engine", "google-contacts", "google-docs", "google-domains", "google-drive", "google-earth", "google-fi", "google-finance", "google-fit", "google-fonts", "google-forms", "google-gemini", "google-home", "google-jules", "google-keep", "google-lens", "google-maps", "google-meet", "google-messages", "google-news", "google-one", "google-pay", "google-photos", "google-play-books", "google-play-games", "google-play", "google-podcasts", "google-scholar", "google-search-console", "google-sheets", "google-shopping", "google-sites", "google-slides", "google-street-view", "google-tag-manager", "google-translate", "google-tv", "google-voice", "google-wallet", "google-wifi", "google", "gopeed", "gose", "gotenberg", "gotify", "gotosocial", "gpt4free", "grafana", "gramps-web", "gramps", "grandstream", "grav-light", "grav", "gravity", "graylog", "greenbone-light", "greenbone", "greenlight", "grimoire", "grist", "grocy", "grok-dark", "grok", "grype", "guacamole-light", "guacamole", "habit-trove", "habitica-dark", "habitica", "hacker-news", "hammond-light", "hammond", "handbrake", "haproxy", "haptic-light", "haptic", "harbor", "hard-forum", "harvester", "hasheous", "hashicorp-boundary", "hashicorp-consul", "hashicorp-nomad", "hashicorp-packer", "hashicorp-terraform", "hashicorp-vagrant", "hashicorp-vault", "hashicorp-waypoint", "hastypaste", "hasura", "hathway", "hatsh-light", "hatsh", "hbo-light", "hbo", "hdhomerun-light", "hdhomerun", "headlamp-dark", "headlamp", "headphones", "headscale", "healthchecks", "hedgedoc", "heimdall-light", "heimdall", "helium-token", "helm", "helper-scripts", "hemmelig-light", "hemmelig", "hetzner-h", "hetzner", "hexo", "hexos", "heyform", "hi-anime", "hifiberry", "hikvision", "hilook", "hivedav", "hl-audiomuse-ai", "hoarder-light", "hoarder", "hollo-light", "hollo", "homarr", "home-assistant-alt", "home-assistant", "homebox", "homebridge", "homelabids", "homepage", "homer", "homeseer", "homey", "honda-jet", "honeygain", "hoobs", "hoppscotch", "hortusfox", "hostinger", "hotio", "hp", "html-light", "html", "huawei", "hubitat", "hubzilla", "hugging-face", "huginn", "hugo", "hulu", "humhub", "huntarr", "hydra", "hyperion", "hyperpipe-light", "hyperpipe", "hyprland", "i-librarian", "i2p-light", "i2p", "i2pd", "ical", "icecast", "icinga-full-light", "icinga-full", "icinga-light", "icinga", "icloud", "idealo", "ideco", "idrac", "idrive", "ihatemoney", "ikuai", "ilo", "image-maid", "immich-frame-light", "immich-frame", "immich-kiosk-light", "immich-kiosk", "immich-power-tools", "immich-public-proxy", "immich", "incus", "infinite-craft", "infisical", "influxdb", "infoblox", "infomaniak-k", "infomaniak-kdrive-dark", "infomaniak-kdrive-light", "infomaniak-kmeet-dark", "infomaniak-kmeet-light", "infomaniak-swisstransfer-dark", "infomaniak-swisstransfer-light", "inoreader", "insanelymac", "instagram", "intellij", "inventree", "invidious", "invisioncommunity", "invoice-ninja-light", "invoice-ninja", "invoiceninja-light", "invoiceninja", "invoke-ai", "iobroker", "ionos", "ipboard", "ipcamtalk", "ipfs-light", "ipfs", "irc", "iredmail", "ispconfig", "ispy", "issabel-pbx-dark", "issabel-pbx-wordmark-dark", "issabel-pbx-wordmark", "issabel-pbx", "it-tools-light", "it-tools", "italki", "itau", "jackett-light", "jackett", "jaeger", "jamf", "jamstack", "java", "javascript-light", "javascript", "jdownloader", "jdownloader2", "jeedom", "jekyll", "jellyfin-vue", "jellyfin", "jellyseerr", "jellystat-dark", "jellystat", "jelu", "jenkins", "jetbrains-fleet", "jetbrains-toolbox", "jetbrains-youtrack", "jetkvm-full", "jetkvm", "jfrog", "jio", "jiohotstar", "jira", "jitsi-meet", "jitsi", "joal", "joomla", "joplin", "jotty", "jujutsu-vcs", "julia", "jupyter", "jwt-io-light", "jwt-io", "k-speeder", "kagi", "kaizoku", "kali-linux", "kamatera", "kanboard-light", "kanboard", "kanidm", "kapacitor", "kapowarr", "karakeep-dark", "karakeep", "karaoke-eternal", "kasm-workspaces", "kasm", "kasten-k10", "kaufland", "kavita", "kbin", "keenetic-alt", "keenetic-new", "keenetic", "keepassxc", "keila", "kerberos", "kestra", "keycloak", "keyoxide-alt", "keyoxide", "kibana", "kick-light", "kick", "kimai", "kimi-ai", "kinto", "kitana", "kitchenowl", "kiwix-light", "kiwix", "kleinanzeigen", "kleopatra", "klipper", "knx", "ko-fi", "ko-insight", "koboldcpp", "kodi", "koel", "koillection-light", "koillection", "koito", "kokoro-web", "kometa", "komga", "komodo", "kontoj", "kook", "kopia", "kotlin", "kpn", "krakend", "krusader", "ksuite", "kubecraft", "kubernetes-dashboard", "kubernetes", "kubuntu-linux", "kutt", "kyoo", "lancache", "lancommander-light", "lancommander", "lanraragi", "laravel", "lark", "lastpass", "lazylibrarian", "ldap-account-manager", "leanote", "leantime", "leargas-security", "leetcode-dark", "leetcode", "lemmy-light", "lemmy", "lemonldap-ng", "lets-encrypt", "lexmark", "libation", "librechat", "libreddit-light", "libreddit", "libremdb", "librenms", "libreoffice-light", "libreoffice", "librephotos-light", "librephotos", "librespeed-light", "librespeed", "librewolf", "librex", "librey", "librum", "lichess-dark", "lichess", "lidarr", "lidl", "lightning-terminal", "lighttpd", "limesurvey", "linear-dark", "linear", "linguacafe", "linkace", "linkding", "linkedin", "linkstack", "linksys", "linkwarden", "linode", "linux-mint", "linux", "linuxdo", "linuxgsm", "linuxserver-io", "liremdb", "listenbrainz", "listmonk", "lite-speed", "littlelink-custom", "livebook", "lldap-dark", "lldap", "lms-mixtape", "lnbits", "lobe-chat", "local-content-share", "local-xpose", "locals-light", "locals", "lodestone", "logitech-gaming", "logitech-legacy", "logitech-light", "logitech", "logseq", "logstash", "logto", "loki", "longhorn", "lostack", "loxone-full", "loxone", "lsio", "lua", "lubelogger", "lubuntu-linux", "ludus-dark", "ludus", "lunalytics", "lunasea", "luxriot", "lychee", "lynx-light", "lynx", "lyrion-dark", "lyrion", "macmon", "mail-in-a-box", "mailchimp-light", "mailchimp", "mailcow", "mailcowsogo", "mailfence", "mailgun", "mailhog", "mailjet", "mailpit", "mailu", "mainsail", "maintainerr", "mak", "makemkv", "maker-world-dark", "maker-world", "maloja", "manga-dex", "mango", "manjaro-linux", "mantisbt", "many-notes", "manyfold", "maptiler", "marginalia", "mariadb", "marimo", "marktplaats", "marzban", "mastodon", "matomo", "matrix-light", "matrix-synapse-light", "matrix-synapse", "matrix", "matter-light", "matter", "matterbridge", "mattermost", "mautic", "max", "mayan-edms-light", "mayan-edms", "maybe", "mazanoke", "mbin", "mcmyadmin", "mealie", "medama", "media-manager", "mediathekview", "mediawiki", "medium-dark", "medium-light", "mediux", "medusa-light", "medusa", "mega-nz-dark", "mega-nz", "meilisearch", "mem-ai", "memories-light", "memories", "memos", "mempool", "meraki", "mercusys", "mergeable-dark", "mergeable", "meshcentral", "meshping-light", "meshping", "meshtastic", "meta", "metabase", "metabrainz", "metallb", "metube", "microbin", "microsoft-365-admin-center", "microsoft-365", "microsoft-access", "microsoft-azure", "microsoft-bing", "microsoft-copilot", "microsoft-defender", "microsoft-edge", "microsoft-excel", "microsoft-exchange", "microsoft-intune", "microsoft-office", "microsoft-onedrive", "microsoft-onenote", "microsoft-outlook", "microsoft-power-automate", "microsoft-powerpoint", "microsoft-remote-desktop", "microsoft-sharepoint", "microsoft-sql-server-light", "microsoft-sql-server", "microsoft-teams", "microsoft-to-do", "microsoft-windows", "microsoft-word", "microsoft", "midjourney-light", "midjourney", "mikrotik-light", "mikrotik", "minecraft", "mineos", "miniflux-light", "miniflux", "minimserver", "minio-light", "minio", "miro", "misp", "misskey-light", "misskey", "mistral-ai", "mitra", "mixpost", "mkdocs-light", "mkdocs", "mkvtoolnix", "ml-flow-wordmark-dark", "ml-flow-wordmark", "mobaxterm", "mobilizon", "mobotix-light", "mobotix", "mochahost", "modrinth", "mojeek", "molecule", "monero", "mongodb", "monica-light", "monica", "monit", "monkeytype", "moode-audio", "moodist-dark", "moodist", "moodle-light", "moodle", "morphos", "morss", "mosquitto", "motioneye-dark", "motioneye", "mousehole-dark", "mousehole", "movie-pilot", "mpm", "mqtt", "mstream", "mtlynch-picoshare", "mullvad-browser", "mullvad-vpn", "mullvad", "multi-scrobbler", "mumble-light", "mumble", "musescore", "music-assistant-light", "music-assistant", "musicbrainz", "my-guitar-tabs", "myheats-light", "myheats", "mylar", "mympd", "myspeed", "mysql", "mysterium", "n8n", "nagios", "name-silo", "namecheap", "nasa", "nastool", "natwest", "nautical-backup", "navidrome-light", "navidrome", "ncore", "neko-light", "neko", "neo4j", "neocities", "neodb", "neon-tech", "neonlink", "netalertx-light", "netalertx", "netapp-light", "netapp", "netatmo", "netbird", "netboot", "netbootxyz", "netbox-dark", "netbox-full-dark", "netbox-full", "netbox", "netcam-studio", "netdata", "netflix", "netgear-light", "netgear-orbi", "netgear", "netlify", "netmaker", "netsurf-light", "netsurf", "netvisor", "network-ups-tools", "network-weathermap", "networking-toolbox-dark", "networking-toolbox", "newegg", "newsblur", "newshosting-dark", "newshosting", "nextcloud-blue", "nextcloud-calendar", "nextcloud-contacts", "nextcloud-cookbook", "nextcloud-cospend", "nextcloud-deck", "nextcloud-files", "nextcloud-ncdownloader", "nextcloud-news", "nextcloud-notes", "nextcloud-photos", "nextcloud-social", "nextcloud-tables", "nextcloud-talk", "nextcloud-tasks", "nextcloud-timemanager", "nextcloud-white", "nextcloud", "nextcloudpi", "nextdns", "nexterm", "nextjs-light", "nextjs", "nextpvr", "nexus-dark", "nexus", "nezha", "nginx-proxy-manager", "nginx", "nicotine-plus", "nightscout-light", "nightscout", "nintendo-switch", "nitter", "nixos", "no-ip", "nocobase-light", "nocobase", "nocodb", "node-red", "nodebb", "nodejs-alt", "nodejs", "noisedash", "nomad", "nomie", "nordvpn", "note-mark", "notebook-lm-dark", "notebook-lm", "notesnook-light", "notesnook", "notifiarr", "notion-calendar", "notion-light", "notion-mail", "notion", "nowshowing", "npm", "ntfy", "ntop", "ntopng", "nu-nl", "nut-webgui", "nut", "nutanix", "nvidia", "nxfilter", "nxlog", "nzbgeek", "nzbget", "nzbhydra", "nzbhydra2-light", "nzbhydra2", "oauth2-proxy", "obico", "obitalk", "observium", "observo-ai", "obsidian", "obtainium", "octoeverywhere", "octoprint", "ocular", "oculus-light", "oculus", "odoo", "odysee-full-dark", "odysee-full-light", "odysee", "office-365", "oh-my-posh-dark", "oh-my-posh", "olivetin-light", "olivetin", "ollama-dark", "ollama", "omada", "ombi", "omni-tools-full", "omni-tools", "omnic-forge-dark", "omnic-forge", "omnidb", "omnivore", "onedev-light", "onedev", "oneuptime-light", "oneuptime", "onlyfans-dark", "onlyfans", "onlyoffice", "onshape-dark", "onshape", "ookla-speedtest", "open-classrooms", "open-cloud-dark", "open-cloud", "open-observe", "open-regex", "open-resume", "open-router-dark", "open-router", "open-source-initiative", "open-wb", "open-webui-light", "open-webui", "openai-light", "openai", "openaudible", "openchangelog-light", "openchangelog", "opencode-dark", "opencode", "opencost", "openeats-light", "openeats", "openemr-light", "openemr", "opengarage", "opengist-light", "opengist", "openhab", "openldap", "openlist", "openmaptiles", "openmediavault", "openoffice", "openpanel-light", "openpanel", "openproject", "openreads", "opensearch", "openshift-dark", "openshift", "openspeedtest", "opensprinkler", "openstack", "openstreetmap", "opensuse", "opentalk", "opentofu", "openvas", "openvpn", "openwebrx-plus-dark", "openwebrx-plus", "openwrt", "openziti", "opera-beta", "opera-developer", "opera-mini-beta", "opera-mini", "opera-neon", "opera-touch", "opera", "opnform", "opnsense", "oracle-cloud", "oracle", "orange", "orb", "orcaslicer", "oreilly-dark", "oreilly", "organizr", "origin", "oscarr-light", "oscarr", "osticket", "osu", "otter-wiki-dark", "otter-wiki", "our-shopping-list", "outline-light", "outline", "overclockers", "overleaf", "overseerr", "ovh", "ovirt-light", "ovirt", "owasp-zap", "owncast", "owncloud", "ownphotos-light", "ownphotos", "owntone", "owntracks", "oxker-light", "oxker", "p-cal", "p1ib", "packetfence-dark", "packetfence-full-dark", "packetfence-full", "packetfence", "pagerduty", "pairdrop", "palemoon", "palmr", "palo-alto", "pangolin", "paperless-ng", "paperless-ngx", "paperless", "papermark-light", "papermark", "papermerge-light", "papermerge", "papra", "parseable", "part-db-light", "part-db", "partkeepr", "passbolt", "passwordpusher-light", "passwordpusher", "passwork", "pastatool-light", "pastatool", "pastebin-dark", "pastebin", "pastey", "patchmon", "patreon-light", "patreon", "payload-light", "payload", "paymenter", "paypal", "pdfding-light", "pdfding", "peacock-light", "peacock", "peanut-light", "peanut", "peertube", "pelican-panel", "penpot-light", "penpot", "peppermint", "pepperminty-wiki", "perlite", "perplexity-book-dark", "perplexity-book-light", "perplexity-dark", "perplexity-light", "petio", "pfsense-light", "pfsense", "pg-back-web", "pgadmin", "pgbackweb-dark", "pgbackweb-light", "phanpy", "phantombot", "phase-dark", "phase", "phoneinfoga-light", "phoneinfoga", "phorge-light", "phorge", "phoscon-light", "phoscon", "photonix-light", "photonix", "photopea", "photoprism-light", "photoprism", "photostructure-dark", "photostructure", "photoview", "php-light", "php", "phpipam", "phpldapadmin", "phpmyadmin", "pi-alert", "pi-hole-unbound", "pi-hole", "pia", "piaware", "picsur-light", "picsur", "pigallery2-dark", "pigallery2", "pikapods", "pikvm-light", "pikvm", "pinchflat", "pinepods", "pingdom-light", "pingdom", "pingvin-dark", "pingvin-share-dark", "pingvin-share", "pingvin", "pinkary", "pinry", "pinterest", "pioneer-light", "pioneer", "piped", "pirate-proxy", "pivpn", "piwigo", "pixelfed", "plane", "planka-dark", "planka", "plant-it", "plantuml", "platzi", "plausible", "playstation", "pleroma", "plesk", "plex-alt-light", "plex-alt", "plex-light", "plex-meta-manager-light", "plex-meta-manager", "plex-rewind", "plex", "plexdrive", "plexrequests-light", "plexrequests", "plexripper", "plume", "pluralsight", "pocket-casts-dark", "pocket-casts", "pocket-id-light", "pocket-id", "pocketbase-dark", "pocketbase", "podfetch-light", "podfetch", "podgrab", "podify", "podman", "podnapisi", "policycontroller", "poly", "polywork", "porkbun", "port-note", "portainer-alt", "portainer-be-dark", "portainer-be", "portainer-dark", "portainer", "portracker-dark", "portracker", "portus", "postal", "poste", "posterizarr", "postgres", "postgresql", "postgresus", "posthog-light", "posthog", "postiz-dark", "postiz", "powerbi", "powerdns", "powerpanel", "premium-mobile", "premiumize", "pretix", "price-buddy", "primal", "prime-video-alt-dark", "prime-video-alt", "prime-video-light", "prime-video", "printables", "printer", "pritunl", "privacyidea", "private-internet-access", "privatebin", "profilarr", "projection-lab", "projectsend", "prometheus", "proton-calendar", "proton-docs", "proton-drive", "proton-lumo", "proton-mail", "proton-pass", "proton-vpn", "proton-wallet", "prowlarr", "proxmox-light", "proxmox", "prtg", "prusa-research", "psitransfer", "pterodactyl", "public-pool", "pufferpanel", "pulsarr", "pulse", "purelymail", "pushfish", "pushover", "putty", "pve-scripts-local", "pwndrop-light", "pwndrop", "pwpush-light", "pwpush", "pydio", "pyload", "python", "qbittorrent", "qd-today", "qdirstat", "qdrant", "qinglong", "qnap", "quant-ux", "quay", "questdb", "quetre", "qui", "quickshare", "quickwit", "quizlet", "qutebrowser", "qwen", "qwik", "r", "rabbitmq", "racknerd-dark", "racknerd", "radarr-4k", "radarr", "radicale", "rainloop", "rallly", "ramp-dark", "ramp", "rancher", "raneto", "raritan-light", "raritan", "raspberry-pi-light", "raspberry-pi", "raspberrymatic", "rathole", "rclone", "rdt-client", "reactive-resume-light", "reactive-resume", "reactjs", "readarr", "readeck", "readthedocs-light", "readthedocs", "readwise-reader-dark", "readwise-reader", "real-debrid", "realhosting", "recalbox", "receipt-wrangler", "recipesage", "recipya", "recomendarr", "recyclarr", "reddit", "redhat-linux", "redict", "redis", "redlib-light", "redlib", "redmine", "rekor", "release-argus", "remmina", "remnawave", "remnote", "remotely", "renovate", "reolink", "reposilite-dark", "reposilite", "requestly", "requestrr", "resiliosync-full-dark", "resiliosync-full", "resiliosync", "restic", "restreamer", "retrom", "revanced-manager", "revolt-light", "revolt", "rhasspy-dark", "rhasspy", "rhodecode", "richy", "rimgo-light", "rimgo", "riot", "ripe", "riverside-fm-light", "riverside-fm", "robinhood", "rocket-chat", "rocky-linux", "romm", "rompya", "rook", "root-me-dark", "root-me", "rotki", "roundcube", "router", "rozetkaua", "rpi-monitor", "rport", "rspamd", "rss-bridge", "rss-translator", "rsshub", "rstudio", "rstudioserver", "ruby", "ruckus-unleashed", "rumble", "rundeck", "runeaudio", "runonflux", "runson-light", "runson", "rust-dark", "rust", "rustdesk", "rutorrent", "ryot-light", "ryot", "sabnzbd-light", "sabnzbd", "safari-ios", "safari", "safeline", "sagemcom", "salad", "salt-project", "saltcorn", "samba-server", "samsung-internet", "sandstorm", "satisfactory", "scanservjs", "schedulearn-dark", "schedulearn", "schneider", "scraperr", "scrcpy", "screenconnect", "scrutiny-light", "scrutiny", "scrypted", "seafile", "searx", "searxng", "secureai-tools-light", "secureai-tools", "security-onion-dark", "security-onion", "seelf", "selenium", "self-hosted-gateway", "selfh-st-light", "selfh-st", "selfhosted-light", "selfhosted", "semaphore-dark", "semaphore", "send", "sendgrid", "sendinblue", "sensu", "sentry-light", "sentry", "seq", "series-troxide", "serpbear", "servarr-light", "servarr", "serviio-light", "serviio", "session", "seznam", "sftpgo", "shaarli", "shell-light", "shell-tips-light", "shell-tips", "shell", "shellhub", "shellngn", "shelly", "shinkro", "shinobi", "shiori", "shlink", "shoko-server", "shoko", "shopify", "shortcut", "sickbeard", "sickchill", "sickgear", "signal", "signoz", "sigstore", "silae", "silverbullet", "simplelogin", "simplex-chat", "sinusbot", "sipeed", "siyuan", "sketchup-make", "skylink-fibernet", "skype", "slaanesh", "slack", "slash-light", "slash", "slice", "slidev", "slink-light", "slink", "slskd", "slurpit-dark", "slurpit", "smartfox", "smlight", "smokeping", "snapcast", "snapchat-dark", "snapchat", "snapdrop", "snappymail-light", "snappymail", "snibox", "snikket", "snipe-it", "snippetbox", "socialhome", "sogo", "solaar", "solid-invoice", "solidtime-light", "solidtime", "sonarqube", "sonarr-4k", "sonarr-dark", "sonarr", "sophos-dark", "sophos", "soulseek", "sourcegraph", "spamassassin", "spark", "sparkleshare", "sparky-fitness", "specifically-clementines", "specter-desktop", "speedtest-tracker", "sphinx-doc", "sphinx-relay", "sphinx", "spiceworks", "spiderfoot", "spliit", "splunk", "spoolman", "spotify", "spotnet", "spree-dark", "spree", "springboot-initializer", "sqlitebrowser", "squeezebox-server", "squidex", "squirrel-servers-manager", "sshwifty", "sst-dev-dark", "sst-dev", "stalwart-mail-server", "stalwart", "standard-notes", "startpage", "stash", "statping-ng", "statping", "stb-proxy", "steam", "step-ca", "stirling-pdf", "storj", "storm", "stormkit", "strapi", "strava", "stream-harvestarr", "streama", "stremio", "stump-alt", "stump", "sub-store", "subatic", "subdl", "substreamer", "suggest-arr", "sun-panel", "sunsama", "sunshine", "supabase", "superlist", "supermicro", "surveymonkey", "suwayomi-light", "suwayomi", "svelte", "swagger", "swarmpit", "swift", "swizzin", "syft", "symedia", "symmetricom-light", "symmetricom", "sympa", "synapse-light", "synapse", "syncany", "synclounge-light", "synclounge", "syncplay", "syncthing-dark", "syncthing", "synology-audio-station", "synology-calendar", "synology-chat", "synology-cloud-sync", "synology-contacts", "synology-document-viewer", "synology-download-station", "synology-drive-server", "synology-drive", "synology-dsm", "synology-file-station", "synology-light", "synology-mail-plus", "synology-mail-station", "synology-note-station", "synology-office", "synology-pdfviewer", "synology-photo-station", "synology-photos", "synology-surveillance-station", "synology-text-editor", "synology-video-station", "synology-vmm", "synology-webstation", "synology", "sysreptor", "t3-chat", "tabula", "tacticalrmm", "taiga", "tailscale-light", "tailscale", "tailwind", "talos", "tandoor-recipes", "tangerine-ui", "tanoshi", "tar1090", "taskcafe", "tasmoadmin", "tasmocompiler", "tasmota-light", "tasmota", "tautulli", "tdarr", "team-viewer", "teamcity-light", "teamcity", "teamspeak", "teamtailor", "technitium", "teddy-cloud", "teedy", "telegraf", "telegram", "telekom", "teleport", "tenable-dark", "tenable", "tenda", "terminal", "termix", "terraform", "terraria", "teslamate-light", "teslamate", "thanos", "the-onion", "the-pirate-bay", "the-proxy-bay", "theia-light", "theia", "thelounge", "themepark", "theodinproject", "thin-linc", "thingsboard", "threadfin", "threads-light", "threads", "thunderbird", "thunderhub-light", "thunderhub", "tianji-light", "tianji", "ticky", "tidal-dark", "tidal", "tiddlywiki-light", "tiddlywiki", "tiktok-light", "tiktok", "timemachines-light", "timemachines", "timetagger-light", "timetagger", "ting-isp", "tiny-media-manager", "tinyauth", "tinypilot", "tinytinyrss", "tipi", "tmdb", "todoist-dark", "todoist", "toggl-dark", "toggl", "tolgee", "tooljet-dark", "tooljet", "topdesk", "tor", "torrserver", "touitomamout", "tp-link", "tpdb", "traccar-dark", "traccar", "trading-view-dark", "trading-view", "traefik-proxy", "traefik", "traggo", "trailarr", "trakt", "transmission", "trash-guides", "trellix-dark", "trellix", "trilium", "triliumnext", "trivy", "trmnl-android", "trmnl", "troddit", "trudesk", "truecommand", "truenas-core", "truenas-enterprise", "truenas-scale", "truenas", "tryhackme", "tsd-proxy", "tube-archivist-light", "tube-archivist", "tubesync-light", "tubesync", "tugtainer", "tumblr", "tunarr", "tunnelix", "turbopack-light", "turbopack", "tuta", "tux", "tvdb", "tvheadend", "tvp-vod", "tweakers", "twingate-light", "twingate", "twitch", "twitter", "txlog", "typemill-light", "typemill", "typescript", "typesense", "typo3", "ubiquiti-networks", "ubiquiti-unifi", "ubiquiti", "ubooquity", "ubuntu-linux-alt", "ubuntu-linux", "uc-browser", "udemy-light", "udemy", "ugreen-nas", "ugreen", "ultimate-guitar-light", "ultimate-guitar", "umami-light", "umami", "umbrel", "unbound", "uncomplicated-alert-receiver", "undb", "unifi-controller", "unifi-dark", "unifi-drive", "unifi-protect", "unifi-voucher-site", "unifi", "unimus", "unity-dark", "unity", "universal-media-server", "university-applied-sciences-brandenburg", "unmanic", "unraid", "untangle", "updog", "ups", "upsnap", "uptime-kuma", "uptimerobot", "upvote-rss", "upwork", "urbackup-server", "urbackup", "usermin", "valetudo", "valkey", "vault-light", "vault", "vaultwarden-light", "vaultwarden", "vector", "veeam", "vera-crypt", "vercel-light", "vercel", "verizon", "verriflo-dark", "verriflo", "vertiv-dark", "vertiv", "vi", "viber", "victorialogs", "victoriametrics-light", "victoriametrics", "victron-energy", "vidzy", "viewtube", "vikunja", "vinchin-backup", "virgin-media", "virtualmin", "virtualradarserver", "viseron-light", "viseron", "visual-studio-code", "vitalpbx", "vite", "vitest", "vito-deploy", "vivaldi", "vmware-esxi", "vmware-horizon", "vmware-vcenter", "vmware-workstation", "vmware", "vn-stat", "vodafone", "voilib", "voip-info", "voip-ms", "voltaserve-light", "voltaserve", "volumio-light", "volumio", "voron", "vouchervault", "vscode", "vtvgo", "vuetorrent", "vultr", "vuplus", "wakapi", "wakatime-light", "wakatime", "wallabag-light", "wallabag", "wallos", "wanderer-light", "wanderer", "wanikani", "ward", "warpgate", "warracker", "watcharr-light", "watcharr", "watcher", "watchlistarr", "watchtower", "watchyourlan", "watchyourports", "wavelog", "waze", "wazuh", "wbo", "wd-mycloud", "web-check-dark", "web-check", "web-whisper", "webdav", "webdb", "webex", "webhook", "webhookd", "webkit", "webmin", "webtools", "webtop", "webtorrent", "webtrees", "wekan", "wero-dark", "wero", "western-digital", "wetty", "wevr-labs", "wg-gen-web-light", "wg-gen-web", "wger", "whatnot", "whats-up-docker", "whatsapp", "whisparr", "whodb", "whoogle", "wifiman", "wiki-go", "wikidocs", "wikijs-alt", "wikijs", "wikipedia-light", "wikipedia", "willow", "windmill", "windows-10", "windows-11", "windows-7", "windows-95-light", "windows-95", "windows-98", "windows-retro-light", "windows-retro", "windows-vista", "windows-xp", "wireguard", "wirenboard", "wireshark", "wizarr", "wled", "wolfi-light", "wolfi", "woocommerce", "woodpecker-ci", "wooting-dark", "wooting", "wordpress", "workadventure", "worklenz", "wotdle-light", "wotdle", "wownero", "writefreely-light", "writefreely", "wsz", "x-light", "x", "xbackbone", "xbox-game-pass", "xbox", "xbrowsersync", "xcp-ng", "xen-orchestra", "xiaomi-global", "xigmanas", "xmr", "xmrig", "xpipe", "xteve", "xubuntu-linux", "xwiki", "yaade", "yac-reader", "yacd-blue", "yacd", "yacht", "yahoo-mail", "yahoo", "yamtrack-light", "yamtrack", "yandex", "yarn-social", "yarr-light", "yarr", "yazi", "ycombinator-dark", "ycombinator", "ymarks", "ynab", "your-spotify", "yourls", "youtarr", "youtube-dl", "youtube-kids", "youtube-music", "youtube-tv", "youtube", "yt-dlp", "yts", "yuno-host-light", "yunohost", "z-ai", "z-wave-js-ui", "zabbix", "zabka", "zalo", "zammad", "zapier-dark", "zapier", "zashboard-dark", "zashboard", "zen-browser-dark", "zen-browser", "zenarmor", "zendesk", "zerotier-light", "zerotier", "zigbee2mqtt-light", "zigbee2mqtt", "zima-os", "zimbra", "zipcaptions", "zipline-diced", "zipline-light", "zipline", "zitadel-light", "zitadel", "znc", "zohomail", "zomro", "zoneminder", "zoom-alt", "zoom", "zoraxy", "zorin-linux", "zot-registry", "zulip", "zwavejs2mqtt", "zyxel-communications-light", "zyxel-communications", "zyxel-networks-light", "zyxel-networks" + ]; + + const fontawesomeIcons = [ + "fa-brands fa-500px", "fa-brands fa-accessible-icon", "fa-brands fa-accusoft", "fa-brands fa-acquisitions-incorporated", "fa-solid fa-ad", "fa-solid fa-address-book", "fa-regular fa-address-book", "fa-solid fa-address-card", "fa-regular fa-address-card", "fa-solid fa-adjust", "fa-brands fa-adn", "fa-brands fa-adversal", "fa-brands fa-affiliatetheme", "fa-solid fa-air-freshener", "fa-brands fa-airbnb", "fa-brands fa-algolia", "fa-solid fa-align-center", "fa-solid fa-align-justify", "fa-solid fa-align-left", "fa-solid fa-align-right", "fa-brands fa-alipay", "fa-solid fa-allergies", "fa-brands fa-amazon", "fa-brands fa-amazon-pay", "fa-solid fa-ambulance", "fa-solid fa-american-sign-language-interpreting", "fa-brands fa-amilia", "fa-solid fa-anchor", "fa-brands fa-android", "fa-brands fa-angellist", "fa-solid fa-angle-double-down", "fa-solid fa-angle-double-left", "fa-solid fa-angle-double-right", "fa-solid fa-angle-double-up", "fa-solid fa-angle-down", "fa-solid fa-angle-left", "fa-solid fa-angle-right", "fa-solid fa-angle-up", "fa-solid fa-angry", "fa-regular fa-angry", "fa-brands fa-angrycreative", "fa-brands fa-angular", "fa-solid fa-ankh", "fa-brands fa-app-store", "fa-brands fa-app-store-ios", "fa-brands fa-apper", "fa-brands fa-apple", "fa-solid fa-apple-alt", "fa-brands fa-apple-pay", "fa-solid fa-archive", "fa-solid fa-archway", "fa-solid fa-arrow-alt-circle-down", "fa-regular fa-arrow-alt-circle-down", "fa-solid fa-arrow-alt-circle-left", "fa-regular fa-arrow-alt-circle-left", "fa-solid fa-arrow-alt-circle-right", "fa-regular fa-arrow-alt-circle-right", "fa-solid fa-arrow-alt-circle-up", "fa-regular fa-arrow-alt-circle-up", "fa-solid fa-arrow-circle-down", "fa-solid fa-arrow-circle-left", "fa-solid fa-arrow-circle-right", "fa-solid fa-arrow-circle-up", "fa-solid fa-arrow-down", "fa-solid fa-arrow-left", "fa-solid fa-arrow-right", "fa-solid fa-arrow-up", "fa-solid fa-arrows-alt", "fa-solid fa-arrows-alt-h", "fa-solid fa-arrows-alt-v", "fa-brands fa-artstation", "fa-solid fa-assistive-listening-systems", "fa-solid fa-asterisk", "fa-brands fa-asymmetrik", "fa-solid fa-at", "fa-solid fa-atlas", "fa-brands fa-atlassian", "fa-solid fa-atom", "fa-brands fa-audible", "fa-solid fa-audio-description", "fa-brands fa-autoprefixer", "fa-brands fa-avianex", "fa-brands fa-aviato", "fa-solid fa-award", "fa-brands fa-aws", "fa-solid fa-baby", "fa-solid fa-baby-carriage", "fa-solid fa-backspace", "fa-solid fa-backward", "fa-solid fa-bacon", "fa-solid fa-bacteria", "fa-solid fa-bacterium", "fa-solid fa-bahai", "fa-solid fa-balance-scale", "fa-solid fa-balance-scale-left", "fa-solid fa-balance-scale-right", "fa-solid fa-ban", "fa-solid fa-band-aid", "fa-brands fa-bandcamp", "fa-solid fa-barcode", "fa-solid fa-bars", "fa-solid fa-baseball-ball", "fa-solid fa-basketball-ball", "fa-solid fa-bath", "fa-solid fa-battery-empty", "fa-solid fa-battery-full", "fa-solid fa-battery-half", "fa-solid fa-battery-quarter", "fa-solid fa-battery-three-quarters", "fa-brands fa-battle-net", "fa-solid fa-bed", "fa-solid fa-beer", "fa-brands fa-behance", "fa-brands fa-behance-square", "fa-solid fa-bell", "fa-regular fa-bell", "fa-solid fa-bell-slash", "fa-regular fa-bell-slash", "fa-solid fa-bezier-curve", "fa-solid fa-bible", "fa-solid fa-bicycle", "fa-solid fa-biking", "fa-brands fa-bimobject", "fa-solid fa-binoculars", "fa-solid fa-biohazard", "fa-solid fa-birthday-cake", "fa-brands fa-bitbucket", "fa-brands fa-bitcoin", "fa-brands fa-bity", "fa-brands fa-black-tie", "fa-brands fa-blackberry", "fa-solid fa-blender", "fa-solid fa-blender-phone", "fa-solid fa-blind", "fa-solid fa-blog", "fa-brands fa-blogger", "fa-brands fa-blogger-b", "fa-brands fa-bluetooth", "fa-brands fa-bluetooth-b", "fa-solid fa-bold", "fa-solid fa-bolt", "fa-solid fa-bomb", "fa-solid fa-bone", "fa-solid fa-bong", "fa-solid fa-book", "fa-solid fa-book-dead", "fa-solid fa-book-medical", "fa-solid fa-book-open", "fa-solid fa-book-reader", "fa-solid fa-bookmark", "fa-regular fa-bookmark", "fa-brands fa-bootstrap", "fa-solid fa-border-all", "fa-solid fa-border-none", "fa-solid fa-border-style", "fa-solid fa-bowling-ball", "fa-solid fa-box", "fa-solid fa-box-open", "fa-solid fa-box-tissue", "fa-solid fa-boxes", "fa-solid fa-braille", "fa-solid fa-brain", "fa-solid fa-bread-slice", "fa-solid fa-briefcase", "fa-solid fa-briefcase-medical", "fa-solid fa-broadcast-tower", "fa-solid fa-broom", "fa-solid fa-brush", "fa-brands fa-btc", "fa-brands fa-buffer", "fa-solid fa-bug", "fa-solid fa-building", "fa-regular fa-building", "fa-solid fa-bullhorn", "fa-solid fa-bullseye", "fa-solid fa-burn", "fa-brands fa-buromobelexperte", "fa-solid fa-bus", "fa-solid fa-bus-alt", "fa-solid fa-business-time", "fa-brands fa-buy-n-large", "fa-brands fa-buysellads", "fa-solid fa-calculator", "fa-solid fa-calendar", "fa-regular fa-calendar", "fa-solid fa-calendar-alt", "fa-regular fa-calendar-alt", "fa-solid fa-calendar-check", "fa-regular fa-calendar-check", "fa-solid fa-calendar-day", "fa-solid fa-calendar-minus", "fa-regular fa-calendar-minus", "fa-solid fa-calendar-plus", "fa-regular fa-calendar-plus", "fa-solid fa-calendar-times", "fa-regular fa-calendar-times", "fa-solid fa-calendar-week", "fa-solid fa-camera", "fa-solid fa-camera-retro", "fa-solid fa-campground", "fa-brands fa-canadian-maple-leaf", "fa-solid fa-candy-cane", "fa-solid fa-cannabis", "fa-solid fa-capsules", "fa-solid fa-car", "fa-solid fa-car-alt", "fa-solid fa-car-battery", "fa-solid fa-car-crash", "fa-solid fa-car-side", "fa-solid fa-caravan", "fa-solid fa-caret-down", "fa-solid fa-caret-left", "fa-solid fa-caret-right", "fa-solid fa-caret-square-down", "fa-regular fa-caret-square-down", "fa-solid fa-caret-square-left", "fa-regular fa-caret-square-left", "fa-solid fa-caret-square-right", "fa-regular fa-caret-square-right", "fa-solid fa-caret-square-up", "fa-regular fa-caret-square-up", "fa-solid fa-caret-up", "fa-solid fa-carrot", "fa-solid fa-cart-arrow-down", "fa-solid fa-cart-plus", "fa-solid fa-cash-register", "fa-solid fa-cat", "fa-brands fa-cc-amazon-pay", "fa-brands fa-cc-amex", "fa-brands fa-cc-apple-pay", "fa-brands fa-cc-diners-club", "fa-brands fa-cc-discover", "fa-brands fa-cc-jcb", "fa-brands fa-cc-mastercard", "fa-brands fa-cc-paypal", "fa-brands fa-cc-stripe", "fa-brands fa-cc-visa", "fa-brands fa-centercode", "fa-brands fa-centos", "fa-solid fa-certificate", "fa-solid fa-chair", "fa-solid fa-chalkboard", "fa-solid fa-chalkboard-teacher", "fa-solid fa-charging-station", "fa-solid fa-chart-area", "fa-solid fa-chart-bar", "fa-regular fa-chart-bar", "fa-solid fa-chart-line", "fa-solid fa-chart-pie", "fa-solid fa-check", "fa-solid fa-check-circle", "fa-regular fa-check-circle", "fa-solid fa-check-double", "fa-solid fa-check-square", "fa-regular fa-check-square", "fa-solid fa-cheese", "fa-solid fa-chess", "fa-solid fa-chess-bishop", "fa-solid fa-chess-board", "fa-solid fa-chess-king", "fa-solid fa-chess-knight", "fa-solid fa-chess-pawn", "fa-solid fa-chess-queen", "fa-solid fa-chess-rook", "fa-solid fa-chevron-circle-down", "fa-solid fa-chevron-circle-left", "fa-solid fa-chevron-circle-right", "fa-solid fa-chevron-circle-up", "fa-solid fa-chevron-down", "fa-solid fa-chevron-left", "fa-solid fa-chevron-right", "fa-solid fa-chevron-up", "fa-solid fa-child", "fa-brands fa-chrome", "fa-brands fa-chromecast", "fa-solid fa-church", "fa-solid fa-circle", "fa-regular fa-circle", "fa-solid fa-circle-notch", "fa-solid fa-city", "fa-solid fa-clinic-medical", "fa-solid fa-clipboard", "fa-regular fa-clipboard", "fa-solid fa-clipboard-check", "fa-solid fa-clipboard-list", "fa-solid fa-clock", "fa-regular fa-clock", "fa-solid fa-clone", "fa-regular fa-clone", "fa-solid fa-closed-captioning", "fa-regular fa-closed-captioning", "fa-solid fa-cloud", "fa-solid fa-cloud-download-alt", "fa-solid fa-cloud-meatball", "fa-solid fa-cloud-moon", "fa-solid fa-cloud-moon-rain", "fa-solid fa-cloud-rain", "fa-solid fa-cloud-showers-heavy", "fa-solid fa-cloud-sun", "fa-solid fa-cloud-sun-rain", "fa-solid fa-cloud-upload-alt", "fa-brands fa-cloudflare", "fa-brands fa-cloudscale", "fa-brands fa-cloudsmith", "fa-brands fa-cloudversify", "fa-solid fa-cocktail", "fa-solid fa-code", "fa-solid fa-code-branch", "fa-brands fa-codepen", "fa-brands fa-codiepie", "fa-solid fa-coffee", "fa-solid fa-cog", "fa-solid fa-cogs", "fa-solid fa-coins", "fa-solid fa-columns", "fa-solid fa-comment", "fa-regular fa-comment", "fa-solid fa-comment-alt", "fa-regular fa-comment-alt", "fa-solid fa-comment-dollar", "fa-solid fa-comment-dots", "fa-regular fa-comment-dots", "fa-solid fa-comment-medical", "fa-solid fa-comment-slash", "fa-solid fa-comments", "fa-regular fa-comments", "fa-solid fa-comments-dollar", "fa-solid fa-compact-disc", "fa-solid fa-compass", "fa-regular fa-compass", "fa-solid fa-compress", "fa-solid fa-compress-alt", "fa-solid fa-compress-arrows-alt", "fa-solid fa-concierge-bell", "fa-brands fa-confluence", "fa-brands fa-connectdevelop", "fa-brands fa-contao", "fa-solid fa-cookie", "fa-solid fa-cookie-bite", "fa-solid fa-copy", "fa-regular fa-copy", "fa-solid fa-copyright", "fa-regular fa-copyright", "fa-brands fa-cotton-bureau", "fa-solid fa-couch", "fa-brands fa-cpanel", "fa-brands fa-creative-commons", "fa-brands fa-creative-commons-by", "fa-brands fa-creative-commons-nc", "fa-brands fa-creative-commons-nc-eu", "fa-brands fa-creative-commons-nc-jp", "fa-brands fa-creative-commons-nd", "fa-brands fa-creative-commons-pd", "fa-brands fa-creative-commons-pd-alt", "fa-brands fa-creative-commons-remix", "fa-brands fa-creative-commons-sa", "fa-brands fa-creative-commons-sampling", "fa-brands fa-creative-commons-sampling-plus", "fa-brands fa-creative-commons-share", "fa-brands fa-creative-commons-zero", "fa-solid fa-credit-card", "fa-regular fa-credit-card", "fa-brands fa-critical-role", "fa-solid fa-crop", "fa-solid fa-crop-alt", "fa-solid fa-cross", "fa-solid fa-crosshairs", "fa-solid fa-crow", "fa-solid fa-crown", "fa-solid fa-crutch", "fa-brands fa-css3", "fa-brands fa-css3-alt", "fa-solid fa-cube", "fa-solid fa-cubes", "fa-solid fa-cut", "fa-brands fa-cuttlefish", "fa-brands fa-d-and-d", "fa-brands fa-d-and-d-beyond", "fa-brands fa-dailymotion", "fa-brands fa-dashcube", "fa-solid fa-database", "fa-solid fa-deaf", "fa-brands fa-deezer", "fa-brands fa-delicious", "fa-solid fa-democrat", "fa-brands fa-deploydog", "fa-brands fa-deskpro", "fa-solid fa-desktop", "fa-brands fa-dev", "fa-brands fa-deviantart", "fa-solid fa-dharmachakra", "fa-brands fa-dhl", "fa-solid fa-diagnoses", "fa-brands fa-diaspora", "fa-solid fa-dice", "fa-solid fa-dice-d20", "fa-solid fa-dice-d6", "fa-solid fa-dice-five", "fa-solid fa-dice-four", "fa-solid fa-dice-one", "fa-solid fa-dice-six", "fa-solid fa-dice-three", "fa-solid fa-dice-two", "fa-brands fa-digg", "fa-brands fa-digital-ocean", "fa-solid fa-digital-tachograph", "fa-solid fa-directions", "fa-brands fa-discord", "fa-brands fa-discourse", "fa-solid fa-disease", "fa-solid fa-divide", "fa-solid fa-dizzy", "fa-regular fa-dizzy", "fa-solid fa-dna", "fa-brands fa-dochub", "fa-brands fa-docker", "fa-solid fa-dog", "fa-solid fa-dollar-sign", "fa-solid fa-dolly", "fa-solid fa-dolly-flatbed", "fa-solid fa-donate", "fa-solid fa-door-closed", "fa-solid fa-door-open", "fa-solid fa-dot-circle", "fa-regular fa-dot-circle", "fa-solid fa-dove", "fa-solid fa-download", "fa-brands fa-draft2digital", "fa-solid fa-drafting-compass", "fa-solid fa-dragon", "fa-solid fa-draw-polygon", "fa-brands fa-dribbble", "fa-brands fa-dribbble-square", "fa-brands fa-dropbox", "fa-solid fa-drum", "fa-solid fa-drum-steelpan", "fa-solid fa-drumstick-bite", "fa-brands fa-drupal", "fa-solid fa-dumbbell", "fa-solid fa-dumpster", "fa-solid fa-dumpster-fire", "fa-solid fa-dungeon", "fa-brands fa-dyalog", "fa-brands fa-earlybirds", "fa-brands fa-ebay", "fa-brands fa-edge", "fa-brands fa-edge-legacy", "fa-solid fa-edit", "fa-regular fa-edit", "fa-solid fa-egg", "fa-solid fa-eject", "fa-brands fa-elementor", "fa-solid fa-ellipsis-h", "fa-solid fa-ellipsis-v", "fa-brands fa-ello", "fa-brands fa-ember", "fa-brands fa-empire", "fa-solid fa-envelope", "fa-regular fa-envelope", "fa-solid fa-envelope-open", "fa-regular fa-envelope-open", "fa-solid fa-envelope-open-text", "fa-solid fa-envelope-square", "fa-brands fa-envira", "fa-solid fa-equals", "fa-solid fa-eraser", "fa-brands fa-erlang", "fa-brands fa-ethereum", "fa-solid fa-ethernet", "fa-brands fa-etsy", "fa-solid fa-euro-sign", "fa-brands fa-evernote", "fa-solid fa-exchange-alt", "fa-solid fa-exclamation", "fa-solid fa-exclamation-circle", "fa-solid fa-exclamation-triangle", "fa-solid fa-expand", "fa-solid fa-expand-alt", "fa-solid fa-expand-arrows-alt", "fa-brands fa-expeditedssl", "fa-solid fa-external-link-alt", "fa-solid fa-external-link-square-alt", "fa-solid fa-eye", "fa-regular fa-eye", "fa-solid fa-eye-dropper", "fa-solid fa-eye-slash", "fa-regular fa-eye-slash", "fa-brands fa-facebook", "fa-brands fa-facebook-f", "fa-brands fa-facebook-messenger", "fa-brands fa-facebook-square", "fa-solid fa-fan", "fa-brands fa-fantasy-flight-games", "fa-solid fa-fast-backward", "fa-solid fa-fast-forward", "fa-solid fa-faucet", "fa-solid fa-fax", "fa-solid fa-feather", "fa-solid fa-feather-alt", "fa-brands fa-fedex", "fa-brands fa-fedora", "fa-solid fa-female", "fa-solid fa-fighter-jet", "fa-brands fa-figma", "fa-solid fa-file", "fa-regular fa-file", "fa-solid fa-file-alt", "fa-regular fa-file-alt", "fa-solid fa-file-archive", "fa-regular fa-file-archive", "fa-solid fa-file-audio", "fa-regular fa-file-audio", "fa-solid fa-file-code", "fa-regular fa-file-code", "fa-solid fa-file-contract", "fa-solid fa-file-csv", "fa-solid fa-file-download", "fa-solid fa-file-excel", "fa-regular fa-file-excel", "fa-solid fa-file-export", "fa-solid fa-file-image", "fa-regular fa-file-image", "fa-solid fa-file-import", "fa-solid fa-file-invoice", "fa-solid fa-file-invoice-dollar", "fa-solid fa-file-medical", "fa-solid fa-file-medical-alt", "fa-solid fa-file-pdf", "fa-regular fa-file-pdf", "fa-solid fa-file-powerpoint", "fa-regular fa-file-powerpoint", "fa-solid fa-file-prescription", "fa-solid fa-file-signature", "fa-solid fa-file-upload", "fa-solid fa-file-video", "fa-regular fa-file-video", "fa-solid fa-file-word", "fa-regular fa-file-word", "fa-solid fa-fill", "fa-solid fa-fill-drip", "fa-solid fa-film", "fa-solid fa-filter", "fa-solid fa-fingerprint", "fa-solid fa-fire", "fa-solid fa-fire-alt", "fa-solid fa-fire-extinguisher", "fa-brands fa-firefox", "fa-brands fa-firefox-browser", "fa-solid fa-first-aid", "fa-brands fa-first-order", "fa-brands fa-first-order-alt", "fa-brands fa-firstdraft", "fa-solid fa-fish", "fa-solid fa-fist-raised", "fa-solid fa-flag", "fa-regular fa-flag", "fa-solid fa-flag-checkered", "fa-solid fa-flag-usa", "fa-solid fa-flask", "fa-brands fa-flickr", "fa-brands fa-flipboard", "fa-solid fa-flushed", "fa-regular fa-flushed", "fa-brands fa-fly", "fa-solid fa-folder", "fa-regular fa-folder", "fa-solid fa-folder-minus", "fa-solid fa-folder-open", "fa-regular fa-folder-open", "fa-solid fa-folder-plus", "fa-solid fa-font", "fa-brands fa-font-awesome", "fa-brands fa-font-awesome-alt", "fa-brands fa-font-awesome-flag", "fa-regular fa-font-awesome-logo-full", "fa-solid fa-font-awesome-logo-full", "fa-brands fa-font-awesome-logo-full", "fa-brands fa-fonticons", "fa-brands fa-fonticons-fi", "fa-solid fa-football-ball", "fa-brands fa-fort-awesome", "fa-brands fa-fort-awesome-alt", "fa-brands fa-forumbee", "fa-solid fa-forward", "fa-brands fa-foursquare", "fa-brands fa-free-code-camp", "fa-brands fa-freebsd", "fa-solid fa-frog", "fa-solid fa-frown", "fa-regular fa-frown", "fa-solid fa-frown-open", "fa-regular fa-frown-open", "fa-brands fa-fulcrum", "fa-solid fa-funnel-dollar", "fa-solid fa-futbol", "fa-regular fa-futbol", "fa-brands fa-galactic-republic", "fa-brands fa-galactic-senate", "fa-solid fa-gamepad", "fa-solid fa-gas-pump", "fa-solid fa-gavel", "fa-solid fa-gem", "fa-regular fa-gem", "fa-solid fa-genderless", "fa-brands fa-get-pocket", "fa-brands fa-gg", "fa-brands fa-gg-circle", "fa-solid fa-ghost", "fa-solid fa-gift", "fa-solid fa-gifts", "fa-brands fa-git", "fa-brands fa-git-alt", "fa-brands fa-git-square", "fa-brands fa-github", "fa-brands fa-github-alt", "fa-brands fa-github-square", "fa-brands fa-gitkraken", "fa-brands fa-gitlab", "fa-brands fa-gitter", "fa-solid fa-glass-cheers", "fa-solid fa-glass-martini", "fa-solid fa-glass-martini-alt", "fa-solid fa-glass-whiskey", "fa-solid fa-glasses", "fa-brands fa-glide", "fa-brands fa-glide-g", "fa-solid fa-globe", "fa-solid fa-globe-africa", "fa-solid fa-globe-americas", "fa-solid fa-globe-asia", "fa-solid fa-globe-europe", "fa-brands fa-gofore", "fa-solid fa-golf-ball", "fa-brands fa-goodreads", "fa-brands fa-goodreads-g", "fa-brands fa-google", "fa-brands fa-google-drive", "fa-brands fa-google-pay", "fa-brands fa-google-play", "fa-brands fa-google-plus", "fa-brands fa-google-plus-g", "fa-brands fa-google-plus-square", "fa-brands fa-google-wallet", "fa-solid fa-gopuram", "fa-solid fa-graduation-cap", "fa-brands fa-gratipay", "fa-brands fa-grav", "fa-solid fa-greater-than", "fa-solid fa-greater-than-equal", "fa-solid fa-grimace", "fa-regular fa-grimace", "fa-solid fa-grin", "fa-regular fa-grin", "fa-solid fa-grin-alt", "fa-regular fa-grin-alt", "fa-solid fa-grin-beam", "fa-regular fa-grin-beam", "fa-solid fa-grin-beam-sweat", "fa-regular fa-grin-beam-sweat", "fa-solid fa-grin-hearts", "fa-regular fa-grin-hearts", "fa-solid fa-grin-squint", "fa-regular fa-grin-squint", "fa-solid fa-grin-squint-tears", "fa-regular fa-grin-squint-tears", "fa-solid fa-grin-stars", "fa-regular fa-grin-stars", "fa-solid fa-grin-tears", "fa-regular fa-grin-tears", "fa-solid fa-grin-tongue", "fa-regular fa-grin-tongue", "fa-solid fa-grin-tongue-squint", "fa-regular fa-grin-tongue-squint", "fa-solid fa-grin-tongue-wink", "fa-regular fa-grin-tongue-wink", "fa-solid fa-grin-wink", "fa-regular fa-grin-wink", "fa-solid fa-grip-horizontal", "fa-solid fa-grip-lines", "fa-solid fa-grip-lines-vertical", "fa-solid fa-grip-vertical", "fa-brands fa-gripfire", "fa-brands fa-grunt", "fa-brands fa-guilded", "fa-solid fa-guitar", "fa-brands fa-gulp", "fa-solid fa-h-square", "fa-brands fa-hacker-news", "fa-brands fa-hacker-news-square", "fa-brands fa-hackerrank", "fa-solid fa-hamburger", "fa-solid fa-hammer", "fa-solid fa-hamsa", "fa-solid fa-hand-holding", "fa-solid fa-hand-holding-heart", "fa-solid fa-hand-holding-medical", "fa-solid fa-hand-holding-usd", "fa-solid fa-hand-holding-water", "fa-solid fa-hand-lizard", "fa-regular fa-hand-lizard", "fa-solid fa-hand-middle-finger", "fa-solid fa-hand-paper", "fa-regular fa-hand-paper", "fa-solid fa-hand-peace", "fa-regular fa-hand-peace", "fa-solid fa-hand-point-down", "fa-regular fa-hand-point-down", "fa-solid fa-hand-point-left", "fa-regular fa-hand-point-left", "fa-solid fa-hand-point-right", "fa-regular fa-hand-point-right", "fa-solid fa-hand-point-up", "fa-regular fa-hand-point-up", "fa-solid fa-hand-pointer", "fa-regular fa-hand-pointer", "fa-solid fa-hand-rock", "fa-regular fa-hand-rock", "fa-solid fa-hand-scissors", "fa-regular fa-hand-scissors", "fa-solid fa-hand-sparkles", "fa-solid fa-hand-spock", "fa-regular fa-hand-spock", "fa-solid fa-hands", "fa-solid fa-hands-helping", "fa-solid fa-hands-wash", "fa-solid fa-handshake", "fa-regular fa-handshake", "fa-solid fa-handshake-alt-slash", "fa-solid fa-handshake-slash", "fa-solid fa-hanukiah", "fa-solid fa-hard-hat", "fa-solid fa-hashtag", "fa-solid fa-hat-cowboy", "fa-solid fa-hat-cowboy-side", "fa-solid fa-hat-wizard", "fa-solid fa-hdd", "fa-regular fa-hdd", "fa-solid fa-head-side-cough", "fa-solid fa-head-side-cough-slash", "fa-solid fa-head-side-mask", "fa-solid fa-head-side-virus", "fa-solid fa-heading", "fa-solid fa-headphones", "fa-solid fa-headphones-alt", "fa-solid fa-headset", "fa-solid fa-heart", "fa-regular fa-heart", "fa-solid fa-heart-broken", "fa-solid fa-heartbeat", "fa-solid fa-helicopter", "fa-solid fa-highlighter", "fa-solid fa-hiking", "fa-solid fa-hippo", "fa-brands fa-hips", "fa-brands fa-hire-a-helper", "fa-solid fa-history", "fa-brands fa-hive", "fa-solid fa-hockey-puck", "fa-solid fa-holly-berry", "fa-solid fa-home", "fa-brands fa-hooli", "fa-brands fa-hornbill", "fa-solid fa-horse", "fa-solid fa-horse-head", "fa-solid fa-hospital", "fa-regular fa-hospital", "fa-solid fa-hospital-alt", "fa-solid fa-hospital-symbol", "fa-solid fa-hospital-user", "fa-solid fa-hot-tub", "fa-solid fa-hotdog", "fa-solid fa-hotel", "fa-brands fa-hotjar", "fa-solid fa-hourglass", "fa-regular fa-hourglass", "fa-solid fa-hourglass-end", "fa-solid fa-hourglass-half", "fa-solid fa-hourglass-start", "fa-solid fa-house-damage", "fa-solid fa-house-user", "fa-brands fa-houzz", "fa-solid fa-hryvnia", "fa-brands fa-html5", "fa-brands fa-hubspot", "fa-solid fa-i-cursor", "fa-solid fa-ice-cream", "fa-solid fa-icicles", "fa-solid fa-icons", "fa-solid fa-id-badge", "fa-regular fa-id-badge", "fa-solid fa-id-card", "fa-regular fa-id-card", "fa-solid fa-id-card-alt", "fa-brands fa-ideal", "fa-solid fa-igloo", "fa-solid fa-image", "fa-regular fa-image", "fa-solid fa-images", "fa-regular fa-images", "fa-brands fa-imdb", "fa-solid fa-inbox", "fa-solid fa-indent", "fa-solid fa-industry", "fa-solid fa-infinity", "fa-solid fa-info", "fa-solid fa-info-circle", "fa-brands fa-innosoft", "fa-brands fa-instagram", "fa-brands fa-instagram-square", "fa-brands fa-instalod", "fa-brands fa-intercom", "fa-brands fa-internet-explorer", "fa-brands fa-invision", "fa-brands fa-ioxhost", "fa-solid fa-italic", "fa-brands fa-itch-io", "fa-brands fa-itunes", "fa-brands fa-itunes-note", "fa-brands fa-java", "fa-solid fa-jedi", "fa-brands fa-jedi-order", "fa-brands fa-jenkins", "fa-brands fa-jira", "fa-brands fa-joget", "fa-solid fa-joint", "fa-brands fa-joomla", "fa-solid fa-journal-whills", "fa-brands fa-js", "fa-brands fa-js-square", "fa-brands fa-jsfiddle", "fa-solid fa-kaaba", "fa-brands fa-kaggle", "fa-solid fa-key", "fa-brands fa-keybase", "fa-solid fa-keyboard", "fa-regular fa-keyboard", "fa-brands fa-keycdn", "fa-solid fa-khanda", "fa-brands fa-kickstarter", "fa-brands fa-kickstarter-k", "fa-solid fa-kiss", "fa-regular fa-kiss", "fa-solid fa-kiss-beam", "fa-regular fa-kiss-beam", "fa-solid fa-kiss-wink-heart", "fa-regular fa-kiss-wink-heart", "fa-solid fa-kiwi-bird", "fa-brands fa-korvue", "fa-solid fa-landmark", "fa-solid fa-language", "fa-solid fa-laptop", "fa-solid fa-laptop-code", "fa-solid fa-laptop-house", "fa-solid fa-laptop-medical", "fa-brands fa-laravel", "fa-brands fa-lastfm", "fa-brands fa-lastfm-square", "fa-solid fa-laugh", "fa-regular fa-laugh", "fa-solid fa-laugh-beam", "fa-regular fa-laugh-beam", "fa-solid fa-laugh-squint", "fa-regular fa-laugh-squint", "fa-solid fa-laugh-wink", "fa-regular fa-laugh-wink", "fa-solid fa-layer-group", "fa-solid fa-leaf", "fa-brands fa-leanpub", "fa-solid fa-lemon", "fa-regular fa-lemon", "fa-brands fa-less", "fa-solid fa-less-than", "fa-solid fa-less-than-equal", "fa-solid fa-level-down-alt", "fa-solid fa-level-up-alt", "fa-solid fa-life-ring", "fa-regular fa-life-ring", "fa-solid fa-lightbulb", "fa-regular fa-lightbulb", "fa-brands fa-line", "fa-solid fa-link", "fa-brands fa-linkedin", "fa-brands fa-linkedin-in", "fa-brands fa-linode", "fa-brands fa-linux", "fa-solid fa-lira-sign", "fa-solid fa-list", "fa-solid fa-list-alt", "fa-regular fa-list-alt", "fa-solid fa-list-ol", "fa-solid fa-list-ul", "fa-solid fa-location-arrow", "fa-solid fa-lock", "fa-solid fa-lock-open", "fa-solid fa-long-arrow-alt-down", "fa-solid fa-long-arrow-alt-left", "fa-solid fa-long-arrow-alt-right", "fa-solid fa-long-arrow-alt-up", "fa-solid fa-low-vision", "fa-solid fa-luggage-cart", "fa-solid fa-lungs", "fa-solid fa-lungs-virus", "fa-brands fa-lyft", "fa-brands fa-magento", "fa-solid fa-magic", "fa-solid fa-magnet", "fa-solid fa-mail-bulk", "fa-brands fa-mailchimp", "fa-solid fa-male", "fa-brands fa-mandalorian", "fa-solid fa-map", "fa-regular fa-map", "fa-solid fa-map-marked", "fa-solid fa-map-marked-alt", "fa-solid fa-map-marker", "fa-solid fa-map-marker-alt", "fa-solid fa-map-pin", "fa-solid fa-map-signs", "fa-brands fa-markdown", "fa-solid fa-marker", "fa-solid fa-mars", "fa-solid fa-mars-double", "fa-solid fa-mars-stroke", "fa-solid fa-mars-stroke-h", "fa-solid fa-mars-stroke-v", "fa-solid fa-mask", "fa-brands fa-mastodon", "fa-brands fa-maxcdn", "fa-brands fa-mdb", "fa-solid fa-medal", "fa-brands fa-medapps", "fa-brands fa-medium", "fa-brands fa-medium-m", "fa-solid fa-medkit", "fa-brands fa-medrt", "fa-brands fa-meetup", "fa-brands fa-megaport", "fa-solid fa-meh", "fa-regular fa-meh", "fa-solid fa-meh-blank", "fa-regular fa-meh-blank", "fa-solid fa-meh-rolling-eyes", "fa-regular fa-meh-rolling-eyes", "fa-solid fa-memory", "fa-brands fa-mendeley", "fa-solid fa-menorah", "fa-solid fa-mercury", "fa-solid fa-meteor", "fa-brands fa-microblog", "fa-solid fa-microchip", "fa-solid fa-microphone", "fa-solid fa-microphone-alt", "fa-solid fa-microphone-alt-slash", "fa-solid fa-microphone-slash", "fa-solid fa-microscope", "fa-brands fa-microsoft", "fa-solid fa-minus", "fa-solid fa-minus-circle", "fa-solid fa-minus-square", "fa-regular fa-minus-square", "fa-solid fa-mitten", "fa-brands fa-mix", "fa-brands fa-mixcloud", "fa-brands fa-mixer", "fa-brands fa-mizuni", "fa-solid fa-mobile", "fa-solid fa-mobile-alt", "fa-brands fa-modx", "fa-brands fa-monero", "fa-solid fa-money-bill", "fa-solid fa-money-bill-alt", "fa-regular fa-money-bill-alt", "fa-solid fa-money-bill-wave", "fa-solid fa-money-bill-wave-alt", "fa-solid fa-money-check", "fa-solid fa-money-check-alt", "fa-solid fa-monument", "fa-solid fa-moon", "fa-regular fa-moon", "fa-solid fa-mortar-pestle", "fa-solid fa-mosque", "fa-solid fa-motorcycle", "fa-solid fa-mountain", "fa-solid fa-mouse", "fa-solid fa-mouse-pointer", "fa-solid fa-mug-hot", "fa-solid fa-music", "fa-brands fa-napster", "fa-brands fa-neos", "fa-solid fa-network-wired", "fa-solid fa-neuter", "fa-solid fa-newspaper", "fa-regular fa-newspaper", "fa-brands fa-nimblr", "fa-brands fa-node", "fa-brands fa-node-js", "fa-solid fa-not-equal", "fa-solid fa-notes-medical", "fa-brands fa-npm", "fa-brands fa-ns8", "fa-brands fa-nutritionix", "fa-solid fa-object-group", "fa-regular fa-object-group", "fa-solid fa-object-ungroup", "fa-regular fa-object-ungroup", "fa-brands fa-octopus-deploy", "fa-brands fa-odnoklassniki", "fa-brands fa-odnoklassniki-square", "fa-solid fa-oil-can", "fa-brands fa-old-republic", "fa-solid fa-om", "fa-brands fa-opencart", "fa-brands fa-openid", "fa-brands fa-opera", "fa-brands fa-optin-monster", "fa-brands fa-orcid", "fa-brands fa-osi", "fa-solid fa-otter", "fa-solid fa-outdent", "fa-brands fa-page4", "fa-brands fa-pagelines", "fa-solid fa-pager", "fa-solid fa-paint-brush", "fa-solid fa-paint-roller", "fa-solid fa-palette", "fa-brands fa-palfed", "fa-solid fa-pallet", "fa-solid fa-paper-plane", "fa-regular fa-paper-plane", "fa-solid fa-paperclip", "fa-solid fa-parachute-box", "fa-solid fa-paragraph", "fa-solid fa-parking", "fa-solid fa-passport", "fa-solid fa-pastafarianism", "fa-solid fa-paste", "fa-brands fa-patreon", "fa-solid fa-pause", "fa-solid fa-pause-circle", "fa-regular fa-pause-circle", "fa-solid fa-paw", "fa-brands fa-paypal", "fa-solid fa-peace", "fa-solid fa-pen", "fa-solid fa-pen-alt", "fa-solid fa-pen-fancy", "fa-solid fa-pen-nib", "fa-solid fa-pen-square", "fa-solid fa-pencil-alt", "fa-solid fa-pencil-ruler", "fa-brands fa-penny-arcade", "fa-solid fa-people-arrows", "fa-solid fa-people-carry", "fa-solid fa-pepper-hot", "fa-brands fa-perbyte", "fa-solid fa-percent", "fa-solid fa-percentage", "fa-brands fa-periscope", "fa-solid fa-person-booth", "fa-brands fa-phabricator", "fa-brands fa-phoenix-framework", "fa-brands fa-phoenix-squadron", "fa-solid fa-phone", "fa-solid fa-phone-alt", "fa-solid fa-phone-slash", "fa-solid fa-phone-square", "fa-solid fa-phone-square-alt", "fa-solid fa-phone-volume", "fa-solid fa-photo-video", "fa-brands fa-php", "fa-brands fa-pied-piper", "fa-brands fa-pied-piper-alt", "fa-brands fa-pied-piper-hat", "fa-brands fa-pied-piper-pp", "fa-brands fa-pied-piper-square", "fa-solid fa-piggy-bank", "fa-solid fa-pills", "fa-brands fa-pinterest", "fa-brands fa-pinterest-p", "fa-brands fa-pinterest-square", "fa-solid fa-pizza-slice", "fa-solid fa-place-of-worship", "fa-solid fa-plane", "fa-solid fa-plane-arrival", "fa-solid fa-plane-departure", "fa-solid fa-plane-slash", "fa-solid fa-play", "fa-solid fa-play-circle", "fa-regular fa-play-circle", "fa-brands fa-playstation", "fa-solid fa-plug", "fa-solid fa-plus", "fa-solid fa-plus-circle", "fa-solid fa-plus-square", "fa-regular fa-plus-square", "fa-solid fa-podcast", "fa-solid fa-poll", "fa-solid fa-poll-h", "fa-solid fa-poo", "fa-solid fa-poo-storm", "fa-solid fa-poop", "fa-solid fa-portrait", "fa-solid fa-pound-sign", "fa-solid fa-power-off", "fa-solid fa-pray", "fa-solid fa-praying-hands", "fa-solid fa-prescription", "fa-solid fa-prescription-bottle", "fa-solid fa-prescription-bottle-alt", "fa-solid fa-print", "fa-solid fa-procedures", "fa-brands fa-product-hunt", "fa-solid fa-project-diagram", "fa-solid fa-pump-medical", "fa-solid fa-pump-soap", "fa-brands fa-pushed", "fa-solid fa-puzzle-piece", "fa-brands fa-python", "fa-brands fa-qq", "fa-solid fa-qrcode", "fa-solid fa-question", "fa-solid fa-question-circle", "fa-regular fa-question-circle", "fa-solid fa-quidditch", "fa-brands fa-quinscape", "fa-brands fa-quora", "fa-solid fa-quote-left", "fa-solid fa-quote-right", "fa-solid fa-quran", "fa-brands fa-r-project", "fa-solid fa-radiation", "fa-solid fa-radiation-alt", "fa-solid fa-rainbow", "fa-solid fa-random", "fa-brands fa-raspberry-pi", "fa-brands fa-ravelry", "fa-brands fa-react", "fa-brands fa-reacteurope", "fa-brands fa-readme", "fa-brands fa-rebel", "fa-solid fa-receipt", "fa-solid fa-record-vinyl", "fa-solid fa-recycle", "fa-brands fa-red-river", "fa-brands fa-reddit", "fa-brands fa-reddit-alien", "fa-brands fa-reddit-square", "fa-brands fa-redhat", "fa-solid fa-redo", "fa-solid fa-redo-alt", "fa-solid fa-registered", "fa-regular fa-registered", "fa-solid fa-remove-format", "fa-brands fa-renren", "fa-solid fa-reply", "fa-solid fa-reply-all", "fa-brands fa-replyd", "fa-solid fa-republican", "fa-brands fa-researchgate", "fa-brands fa-resolving", "fa-solid fa-restroom", "fa-solid fa-retweet", "fa-brands fa-rev", "fa-solid fa-ribbon", "fa-solid fa-ring", "fa-solid fa-road", "fa-solid fa-robot", "fa-solid fa-rocket", "fa-brands fa-rocketchat", "fa-brands fa-rockrms", "fa-solid fa-route", "fa-solid fa-rss", "fa-solid fa-rss-square", "fa-solid fa-ruble-sign", "fa-solid fa-ruler", "fa-solid fa-ruler-combined", "fa-solid fa-ruler-horizontal", "fa-solid fa-ruler-vertical", "fa-solid fa-running", "fa-solid fa-rupee-sign", "fa-brands fa-rust", "fa-solid fa-sad-cry", "fa-regular fa-sad-cry", "fa-solid fa-sad-tear", "fa-regular fa-sad-tear", "fa-brands fa-safari", "fa-brands fa-salesforce", "fa-brands fa-sass", "fa-solid fa-satellite", "fa-solid fa-satellite-dish", "fa-solid fa-save", "fa-regular fa-save", "fa-brands fa-schlix", "fa-solid fa-school", "fa-solid fa-screwdriver", "fa-brands fa-scribd", "fa-solid fa-scroll", "fa-solid fa-sd-card", "fa-solid fa-search", "fa-solid fa-search-dollar", "fa-solid fa-search-location", "fa-solid fa-search-minus", "fa-solid fa-search-plus", "fa-brands fa-searchengin", "fa-solid fa-seedling", "fa-brands fa-sellcast", "fa-brands fa-sellsy", "fa-solid fa-server", "fa-brands fa-servicestack", "fa-solid fa-shapes", "fa-solid fa-share", "fa-solid fa-share-alt", "fa-solid fa-share-alt-square", "fa-solid fa-share-square", "fa-regular fa-share-square", "fa-solid fa-shekel-sign", "fa-solid fa-shield-alt", "fa-solid fa-shield-virus", "fa-solid fa-ship", "fa-solid fa-shipping-fast", "fa-brands fa-shirtsinbulk", "fa-solid fa-shoe-prints", "fa-brands fa-shopify", "fa-solid fa-shopping-bag", "fa-solid fa-shopping-basket", "fa-solid fa-shopping-cart", "fa-brands fa-shopware", "fa-solid fa-shower", "fa-solid fa-shuttle-van", "fa-solid fa-sign", "fa-solid fa-sign-in-alt", "fa-solid fa-sign-language", "fa-solid fa-sign-out-alt", "fa-solid fa-signal", "fa-solid fa-signature", "fa-solid fa-sim-card", "fa-brands fa-simplybuilt", "fa-solid fa-sink", "fa-brands fa-sistrix", "fa-solid fa-sitemap", "fa-brands fa-sith", "fa-solid fa-skating", "fa-brands fa-sketch", "fa-solid fa-skiing", "fa-solid fa-skiing-nordic", "fa-solid fa-skull", "fa-solid fa-skull-crossbones", "fa-brands fa-skyatlas", "fa-brands fa-skype", "fa-brands fa-slack", "fa-brands fa-slack-hash", "fa-solid fa-slash", "fa-solid fa-sleigh", "fa-solid fa-sliders-h", "fa-brands fa-slideshare", "fa-solid fa-smile", "fa-regular fa-smile", "fa-solid fa-smile-beam", "fa-regular fa-smile-beam", "fa-solid fa-smile-wink", "fa-regular fa-smile-wink", "fa-solid fa-smog", "fa-solid fa-smoking", "fa-solid fa-smoking-ban", "fa-solid fa-sms", "fa-brands fa-snapchat", "fa-brands fa-snapchat-ghost", "fa-brands fa-snapchat-square", "fa-solid fa-snowboarding", "fa-solid fa-snowflake", "fa-regular fa-snowflake", "fa-solid fa-snowman", "fa-solid fa-snowplow", "fa-solid fa-soap", "fa-solid fa-socks", "fa-solid fa-solar-panel", "fa-solid fa-sort", "fa-solid fa-sort-alpha-down", "fa-solid fa-sort-alpha-down-alt", "fa-solid fa-sort-alpha-up", "fa-solid fa-sort-alpha-up-alt", "fa-solid fa-sort-amount-down", "fa-solid fa-sort-amount-down-alt", "fa-solid fa-sort-amount-up", "fa-solid fa-sort-amount-up-alt", "fa-solid fa-sort-down", "fa-solid fa-sort-numeric-down", "fa-solid fa-sort-numeric-down-alt", "fa-solid fa-sort-numeric-up", "fa-solid fa-sort-numeric-up-alt", "fa-solid fa-sort-up", "fa-brands fa-soundcloud", "fa-brands fa-sourcetree", "fa-solid fa-spa", "fa-solid fa-space-shuttle", "fa-brands fa-speakap", "fa-brands fa-speaker-deck", "fa-solid fa-spell-check", "fa-solid fa-spider", "fa-solid fa-spinner", "fa-solid fa-splotch", "fa-brands fa-spotify", "fa-solid fa-spray-can", "fa-solid fa-square", "fa-regular fa-square", "fa-solid fa-square-full", "fa-solid fa-square-root-alt", "fa-brands fa-squarespace", "fa-brands fa-stack-exchange", "fa-brands fa-stack-overflow", "fa-brands fa-stackpath", "fa-solid fa-stamp", "fa-solid fa-star", "fa-regular fa-star", "fa-solid fa-star-and-crescent", "fa-solid fa-star-half", "fa-regular fa-star-half", "fa-solid fa-star-half-alt", "fa-solid fa-star-of-david", "fa-solid fa-star-of-life", "fa-brands fa-staylinked", "fa-brands fa-steam", "fa-brands fa-steam-square", "fa-brands fa-steam-symbol", "fa-solid fa-step-backward", "fa-solid fa-step-forward", "fa-solid fa-stethoscope", "fa-brands fa-sticker-mule", "fa-solid fa-sticky-note", "fa-regular fa-sticky-note", "fa-solid fa-stop", "fa-solid fa-stop-circle", "fa-regular fa-stop-circle", "fa-solid fa-stopwatch", "fa-solid fa-stopwatch-20", "fa-solid fa-store", "fa-solid fa-store-alt", "fa-solid fa-store-alt-slash", "fa-solid fa-store-slash", "fa-brands fa-strava", "fa-solid fa-stream", "fa-solid fa-street-view", "fa-solid fa-strikethrough", "fa-brands fa-stripe", "fa-brands fa-stripe-s", "fa-solid fa-stroopwafel", "fa-brands fa-studiovinari", "fa-brands fa-stumbleupon", "fa-brands fa-stumbleupon-circle", "fa-solid fa-subscript", "fa-solid fa-subway", "fa-solid fa-suitcase", "fa-solid fa-suitcase-rolling", "fa-solid fa-sun", "fa-regular fa-sun", "fa-brands fa-superpowers", "fa-solid fa-superscript", "fa-brands fa-supple", "fa-solid fa-surprise", "fa-regular fa-surprise", "fa-brands fa-suse", "fa-solid fa-swatchbook", "fa-brands fa-swift", "fa-solid fa-swimmer", "fa-solid fa-swimming-pool", "fa-brands fa-symfony", "fa-solid fa-synagogue", "fa-solid fa-sync", "fa-solid fa-sync-alt", "fa-solid fa-syringe", "fa-solid fa-table", "fa-solid fa-table-tennis", "fa-solid fa-tablet", "fa-solid fa-tablet-alt", "fa-solid fa-tablets", "fa-solid fa-tachometer-alt", "fa-solid fa-tag", "fa-solid fa-tags", "fa-solid fa-tape", "fa-solid fa-tasks", "fa-solid fa-taxi", "fa-brands fa-teamspeak", "fa-solid fa-teeth", "fa-solid fa-teeth-open", "fa-brands fa-telegram", "fa-brands fa-telegram-plane", "fa-solid fa-temperature-high", "fa-solid fa-temperature-low", "fa-brands fa-tencent-weibo", "fa-solid fa-tenge", "fa-solid fa-terminal", "fa-solid fa-text-height", "fa-solid fa-text-width", "fa-solid fa-th", "fa-solid fa-th-large", "fa-solid fa-th-list", "fa-brands fa-the-red-yeti", "fa-solid fa-theater-masks", "fa-brands fa-themeco", "fa-brands fa-themeisle", "fa-solid fa-thermometer", "fa-solid fa-thermometer-empty", "fa-solid fa-thermometer-full", "fa-solid fa-thermometer-half", "fa-solid fa-thermometer-quarter", "fa-solid fa-thermometer-three-quarters", "fa-brands fa-think-peaks", "fa-solid fa-thumbs-down", "fa-regular fa-thumbs-down", "fa-solid fa-thumbs-up", "fa-regular fa-thumbs-up", "fa-solid fa-thumbtack", "fa-solid fa-ticket-alt", "fa-brands fa-tiktok", "fa-solid fa-times", "fa-solid fa-times-circle", "fa-regular fa-times-circle", "fa-solid fa-tint", "fa-solid fa-tint-slash", "fa-solid fa-tired", "fa-regular fa-tired", "fa-solid fa-toggle-off", "fa-solid fa-toggle-on", "fa-solid fa-toilet", "fa-solid fa-toilet-paper", "fa-solid fa-toilet-paper-slash", "fa-solid fa-toolbox", "fa-solid fa-tools", "fa-solid fa-tooth", "fa-solid fa-torah", "fa-solid fa-torii-gate", "fa-solid fa-tractor", "fa-brands fa-trade-federation", "fa-solid fa-trademark", "fa-solid fa-traffic-light", "fa-solid fa-trailer", "fa-solid fa-train", "fa-solid fa-tram", "fa-solid fa-transgender", "fa-solid fa-transgender-alt", "fa-solid fa-trash", "fa-solid fa-trash-alt", "fa-regular fa-trash-alt", "fa-solid fa-trash-restore", "fa-solid fa-trash-restore-alt", "fa-solid fa-tree", "fa-brands fa-trello", "fa-solid fa-trophy", "fa-solid fa-truck", "fa-solid fa-truck-loading", "fa-solid fa-truck-monster", "fa-solid fa-truck-moving", "fa-solid fa-truck-pickup", "fa-solid fa-tshirt", "fa-solid fa-tty", "fa-brands fa-tumblr", "fa-brands fa-tumblr-square", "fa-solid fa-tv", "fa-brands fa-twitch", "fa-brands fa-twitter", "fa-brands fa-twitter-square", "fa-brands fa-typo3", "fa-brands fa-uber", "fa-brands fa-ubuntu", "fa-brands fa-uikit", "fa-brands fa-umbraco", "fa-solid fa-umbrella", "fa-solid fa-umbrella-beach", "fa-brands fa-uncharted", "fa-solid fa-underline", "fa-solid fa-undo", "fa-solid fa-undo-alt", "fa-brands fa-uniregistry", "fa-brands fa-unity", "fa-solid fa-universal-access", "fa-solid fa-university", "fa-solid fa-unlink", "fa-solid fa-unlock", "fa-solid fa-unlock-alt", "fa-brands fa-unsplash", "fa-brands fa-untappd", "fa-solid fa-upload", "fa-brands fa-ups", "fa-brands fa-usb", "fa-solid fa-user", "fa-regular fa-user", "fa-solid fa-user-alt", "fa-solid fa-user-alt-slash", "fa-solid fa-user-astronaut", "fa-solid fa-user-check", "fa-solid fa-user-circle", "fa-regular fa-user-circle", "fa-solid fa-user-clock", "fa-solid fa-user-cog", "fa-solid fa-user-edit", "fa-solid fa-user-friends", "fa-solid fa-user-graduate", "fa-solid fa-user-injured", "fa-solid fa-user-lock", "fa-solid fa-user-md", "fa-solid fa-user-minus", "fa-solid fa-user-ninja", "fa-solid fa-user-nurse", "fa-solid fa-user-plus", "fa-solid fa-user-secret", "fa-solid fa-user-shield", "fa-solid fa-user-slash", "fa-solid fa-user-tag", "fa-solid fa-user-tie", "fa-solid fa-user-times", "fa-solid fa-users", "fa-solid fa-users-cog", "fa-solid fa-users-slash", "fa-brands fa-usps", "fa-brands fa-ussunnah", "fa-solid fa-utensil-spoon", "fa-solid fa-utensils", "fa-brands fa-vaadin", "fa-solid fa-vector-square", "fa-solid fa-venus", "fa-solid fa-venus-double", "fa-solid fa-venus-mars", "fa-solid fa-vest", "fa-solid fa-vest-patches", "fa-brands fa-viacoin", "fa-brands fa-viadeo", "fa-brands fa-viadeo-square", "fa-solid fa-vial", "fa-solid fa-vials", "fa-brands fa-viber", "fa-solid fa-video", "fa-solid fa-video-slash", "fa-solid fa-vihara", "fa-brands fa-vimeo", "fa-brands fa-vimeo-square", "fa-brands fa-vimeo-v", "fa-brands fa-vine", "fa-solid fa-virus", "fa-solid fa-virus-slash", "fa-solid fa-viruses", "fa-brands fa-vk", "fa-brands fa-vnv", "fa-solid fa-voicemail", "fa-solid fa-volleyball-ball", "fa-solid fa-volume-down", "fa-solid fa-volume-mute", "fa-solid fa-volume-off", "fa-solid fa-volume-up", "fa-solid fa-vote-yea", "fa-solid fa-vr-cardboard", "fa-brands fa-vuejs", "fa-solid fa-walking", "fa-solid fa-wallet", "fa-solid fa-warehouse", "fa-brands fa-watchman-monitoring", "fa-solid fa-water", "fa-solid fa-wave-square", "fa-brands fa-waze", "fa-brands fa-weebly", "fa-brands fa-weibo", "fa-solid fa-weight", "fa-solid fa-weight-hanging", "fa-brands fa-weixin", "fa-brands fa-whatsapp", "fa-brands fa-whatsapp-square", "fa-solid fa-wheelchair", "fa-brands fa-whmcs", "fa-solid fa-wifi", "fa-brands fa-wikipedia-w", "fa-solid fa-wind", "fa-solid fa-window-close", "fa-regular fa-window-close", "fa-solid fa-window-maximize", "fa-regular fa-window-maximize", "fa-solid fa-window-minimize", "fa-regular fa-window-minimize", "fa-solid fa-window-restore", "fa-regular fa-window-restore", "fa-brands fa-windows", "fa-solid fa-wine-bottle", "fa-solid fa-wine-glass", "fa-solid fa-wine-glass-alt", "fa-brands fa-wix", "fa-brands fa-wizards-of-the-coast", "fa-brands fa-wodu", "fa-brands fa-wolf-pack-battalion", "fa-solid fa-won-sign", "fa-brands fa-wordpress", "fa-brands fa-wordpress-simple", "fa-brands fa-wpbeginner", "fa-brands fa-wpexplorer", "fa-brands fa-wpforms", "fa-brands fa-wpressr", "fa-solid fa-wrench", "fa-solid fa-x-ray", "fa-brands fa-xbox", "fa-brands fa-xing", "fa-brands fa-xing-square", "fa-brands fa-y-combinator", "fa-brands fa-yahoo", "fa-brands fa-yammer", "fa-brands fa-yandex", "fa-brands fa-yandex-international", "fa-brands fa-yarn", "fa-brands fa-yelp", "fa-solid fa-yen-sign", "fa-solid fa-yin-yang", "fa-brands fa-yoast", "fa-brands fa-youtube", "fa-brands fa-youtube-square", "fa-brands fa-zhihu" + ] \ No newline at end of file diff --git a/update_admin_fa.py b/update_admin_fa.py new file mode 100644 index 0000000..9abc2c0 --- /dev/null +++ b/update_admin_fa.py @@ -0,0 +1,22 @@ + +import re + +html_path = 'app/templates/admin.html' +replacement_path = 'replacement_fa.txt' + +with open(html_path, 'r') as f: + content = f.read() + +with open(replacement_path, 'r') as f: + new_icons_block = f.read() + +# Regex to find the block +pattern = r'const homelabIcons = \[.*?\];.*?\s*const fontawesomeIcons = \[.*?\];' + +if re.search(pattern, content, re.DOTALL): + new_content = re.sub(pattern, new_icons_block, content, flags=re.DOTALL) + with open(html_path, 'w') as f: + f.write(new_content) + print("Successfully replaced icon lists.") +else: + print("Could not find the icon lists block to replace.") diff --git a/update_admin_html.py b/update_admin_html.py new file mode 100644 index 0000000..239271b --- /dev/null +++ b/update_admin_html.py @@ -0,0 +1,24 @@ + +import re + +html_path = 'app/templates/admin.html' +replacement_path = 'replacement.txt' + +with open(html_path, 'r') as f: + content = f.read() + +with open(replacement_path, 'r') as f: + new_icons_block = f.read() + +# Regex to find the block +# Matches: const homelabIcons = [ ... ]; const fontawesomeIcons = [ ... ]; +# We use dotall to match newlines. +pattern = r'const homelabIcons = \[.*?\];.*?\s*const fontawesomeIcons = \[.*?\];' + +if re.search(pattern, content, re.DOTALL): + new_content = re.sub(pattern, new_icons_block, content, flags=re.DOTALL) + with open(html_path, 'w') as f: + f.write(new_content) + print("Successfully replaced icon lists.") +else: + print("Could not find the icon lists block to replace.")