├── .editorconfig ├── .eslintrc ├── .gitignore ├── .husky └── pre-commit ├── .node-version ├── .postcssrc ├── .prettierignore ├── .prettierrc ├── CHANGES.md ├── EXTENSION_VERSION.txt ├── LICENSE ├── README.md ├── TODO.md ├── assets ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── download │ ├── download-chrome.svg │ └── download-firefox.svg ├── logo-full.png ├── mtab-showcase-1.png ├── mtab-showcase-2.png ├── mtab-showcase-3.png ├── mtab-showcase-all.png ├── mtab-showcase-old.png ├── mtab.png ├── popup.png ├── promo-marquee.png ├── promo-new │ ├── mtab-1.png │ ├── mtab-2.png │ ├── mtab-3.png │ ├── mtab-4.png │ └── mtab-5.png ├── promo.png └── resized │ ├── 1-resized.png │ ├── 2-resized.png │ ├── 3-resized.png │ ├── 4-resized.png │ └── 5-resized.png ├── bun.lockb ├── docs ├── CODING_STYLE.md ├── COMMITTING.md ├── CONTRIBUTING.md ├── OPTIONS_PAGE.md ├── PROJECT_STRUCTURE.md └── SETUP.md ├── package.json ├── scripts ├── linux │ ├── copy_assets.sh │ ├── create_manifest_chrome.sh │ ├── create_manifest_firefox.sh │ ├── package_chrome.sh │ ├── package_firefox.sh │ └── zip_source.sh └── win │ ├── copy_assets.bat │ └── create_manifest_firefox.bat ├── src ├── assets │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ ├── 64.png │ ├── favicon.ico │ ├── fonts │ │ └── JetBrainsMonoNerdFontMono-Regular.ttf │ ├── icon.png │ ├── icon.svg │ ├── icons │ │ ├── fontawesome │ │ │ └── svgs │ │ │ │ ├── brands │ │ │ │ ├── 42-group.svg │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bilibili.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluesky.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── bots.svg │ │ │ │ ├── brave-reverse.svg │ │ │ │ ├── brave.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudflare.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── cmplid.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dart-lang.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── debian.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── files-pinwheel.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── flutter.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── golang.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-scholar.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── guilded.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hashnode.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hive.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── instalod.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── jxl.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── letterboxd.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── meta.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mintbit.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nfc-directional.svg │ │ │ │ ├── nfc-symbol.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── octopus-deploy.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── odysee.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opensuse.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── padlet.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── perbyte.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── pix.svg │ │ │ │ ├── pixiv.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── screenpal.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shoelace.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── signal-messenger.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sitrox.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── space-awesome.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── square-behance.svg │ │ │ │ ├── square-bluesky.svg │ │ │ │ ├── square-dribbble.svg │ │ │ │ ├── square-facebook.svg │ │ │ │ ├── square-font-awesome-stroke.svg │ │ │ │ ├── square-font-awesome.svg │ │ │ │ ├── square-git.svg │ │ │ │ ├── square-github.svg │ │ │ │ ├── square-gitlab.svg │ │ │ │ ├── square-google-plus.svg │ │ │ │ ├── square-hacker-news.svg │ │ │ │ ├── square-instagram.svg │ │ │ │ ├── square-js.svg │ │ │ │ ├── square-lastfm.svg │ │ │ │ ├── square-letterboxd.svg │ │ │ │ ├── square-odnoklassniki.svg │ │ │ │ ├── square-pied-piper.svg │ │ │ │ ├── square-pinterest.svg │ │ │ │ ├── square-reddit.svg │ │ │ │ ├── square-snapchat.svg │ │ │ │ ├── square-steam.svg │ │ │ │ ├── square-threads.svg │ │ │ │ ├── square-tumblr.svg │ │ │ │ ├── square-twitter.svg │ │ │ │ ├── square-upwork.svg │ │ │ │ ├── square-viadeo.svg │ │ │ │ ├── square-vimeo.svg │ │ │ │ ├── square-web-awesome-stroke.svg │ │ │ │ ├── square-web-awesome.svg │ │ │ │ ├── square-whatsapp.svg │ │ │ │ ├── square-x-twitter.svg │ │ │ │ ├── square-xing.svg │ │ │ │ ├── square-youtube.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── stubber.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── threads.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uncharted.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── upwork.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── web-awesome.svg │ │ │ │ ├── webflow.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wirsindhandwerk.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wodu.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── x-twitter.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-days.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-xmark.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── circle-check.svg │ │ │ │ ├── circle-dot.svg │ │ │ │ ├── circle-down.svg │ │ │ │ ├── circle-left.svg │ │ │ │ ├── circle-pause.svg │ │ │ │ ├── circle-play.svg │ │ │ │ ├── circle-question.svg │ │ │ │ ├── circle-right.svg │ │ │ │ ├── circle-stop.svg │ │ │ │ ├── circle-up.svg │ │ │ │ ├── circle-user.svg │ │ │ │ ├── circle-xmark.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── face-angry.svg │ │ │ │ ├── face-dizzy.svg │ │ │ │ ├── face-flushed.svg │ │ │ │ ├── face-frown-open.svg │ │ │ │ ├── face-frown.svg │ │ │ │ ├── face-grimace.svg │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ ├── face-grin-beam.svg │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ ├── face-grin-squint.svg │ │ │ │ ├── face-grin-stars.svg │ │ │ │ ├── face-grin-tears.svg │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ ├── face-grin-wide.svg │ │ │ │ ├── face-grin-wink.svg │ │ │ │ ├── face-grin.svg │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ ├── face-kiss.svg │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ ├── face-laugh.svg │ │ │ │ ├── face-meh-blank.svg │ │ │ │ ├── face-meh.svg │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ ├── face-sad-cry.svg │ │ │ │ ├── face-sad-tear.svg │ │ │ │ ├── face-smile-beam.svg │ │ │ │ ├── face-smile-wink.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── face-surprise.svg │ │ │ │ ├── face-tired.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-lines.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file-zipper.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── floppy-disk.svg │ │ │ │ ├── folder-closed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── hand-back-fist.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hard-drive.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── map.svg │ │ │ │ ├── message.svg │ │ │ │ ├── money-bill-1.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── note-sticky.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pen-to-square.svg │ │ │ │ ├── rectangle-list.svg │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── share-from-square.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square-caret-down.svg │ │ │ │ ├── square-caret-left.svg │ │ │ │ ├── square-caret-right.svg │ │ │ │ ├── square-caret-up.svg │ │ │ │ ├── square-check.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-minus.svg │ │ │ │ ├── square-plus.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half-stroke.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── trash-can.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ ├── 0.svg │ │ │ │ ├── 1.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── 4.svg │ │ │ │ ├── 5.svg │ │ │ │ ├── 6.svg │ │ │ │ ├── 7.svg │ │ │ │ ├── 8.svg │ │ │ │ ├── 9.svg │ │ │ │ ├── a.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── anchor-circle-check.svg │ │ │ │ ├── anchor-circle-exclamation.svg │ │ │ │ ├── anchor-circle-xmark.svg │ │ │ │ ├── anchor-lock.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angles-down.svg │ │ │ │ ├── angles-left.svg │ │ │ │ ├── angles-right.svg │ │ │ │ ├── angles-up.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-whole.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-down-1-9.svg │ │ │ │ ├── arrow-down-9-1.svg │ │ │ │ ├── arrow-down-a-z.svg │ │ │ │ ├── arrow-down-long.svg │ │ │ │ ├── arrow-down-short-wide.svg │ │ │ │ ├── arrow-down-up-across-line.svg │ │ │ │ ├── arrow-down-up-lock.svg │ │ │ │ ├── arrow-down-wide-short.svg │ │ │ │ ├── arrow-down-z-a.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-long.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-pointer.svg │ │ │ │ ├── arrow-right-arrow-left.svg │ │ │ │ ├── arrow-right-from-bracket.svg │ │ │ │ ├── arrow-right-long.svg │ │ │ │ ├── arrow-right-to-bracket.svg │ │ │ │ ├── arrow-right-to-city.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-rotate-left.svg │ │ │ │ ├── arrow-rotate-right.svg │ │ │ │ ├── arrow-trend-down.svg │ │ │ │ ├── arrow-trend-up.svg │ │ │ │ ├── arrow-turn-down.svg │ │ │ │ ├── arrow-turn-up.svg │ │ │ │ ├── arrow-up-1-9.svg │ │ │ │ ├── arrow-up-9-1.svg │ │ │ │ ├── arrow-up-a-z.svg │ │ │ │ ├── arrow-up-from-bracket.svg │ │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ │ ├── arrow-up-long.svg │ │ │ │ ├── arrow-up-right-dots.svg │ │ │ │ ├── arrow-up-right-from-square.svg │ │ │ │ ├── arrow-up-short-wide.svg │ │ │ │ ├── arrow-up-wide-short.svg │ │ │ │ ├── arrow-up-z-a.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-down-to-line.svg │ │ │ │ ├── arrows-down-to-people.svg │ │ │ │ ├── arrows-left-right-to-line.svg │ │ │ │ ├── arrows-left-right.svg │ │ │ │ ├── arrows-rotate.svg │ │ │ │ ├── arrows-spin.svg │ │ │ │ ├── arrows-split-up-and-left.svg │ │ │ │ ├── arrows-to-circle.svg │ │ │ │ ├── arrows-to-dot.svg │ │ │ │ ├── arrows-to-eye.svg │ │ │ │ ├── arrows-turn-right.svg │ │ │ │ ├── arrows-turn-to-dots.svg │ │ │ │ ├── arrows-up-down-left-right.svg │ │ │ │ ├── arrows-up-down.svg │ │ │ │ ├── arrows-up-to-line.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── austral-sign.svg │ │ │ │ ├── award.svg │ │ │ │ ├── b.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backward-fast.svg │ │ │ │ ├── backward-step.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bag-shopping.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── baht-sign.svg │ │ │ │ ├── ban-smoking.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── bandage.svg │ │ │ │ ├── bangladeshi-taka-sign.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars-progress.svg │ │ │ │ ├── bars-staggered.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-bat-ball.svg │ │ │ │ ├── baseball.svg │ │ │ │ ├── basket-shopping.svg │ │ │ │ ├── basketball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed-pulse.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer-mug-empty.svg │ │ │ │ ├── bell-concierge.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt-lightning.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-atlas.svg │ │ │ │ ├── book-bible.svg │ │ │ │ ├── book-bookmark.svg │ │ │ │ ├── book-journal-whills.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open-reader.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-quran.svg │ │ │ │ ├── book-skull.svg │ │ │ │ ├── book-tanakh.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-top-left.svg │ │ │ │ ├── bore-hole.svg │ │ │ │ ├── bottle-droplet.svg │ │ │ │ ├── bottle-water.svg │ │ │ │ ├── bowl-food.svg │ │ │ │ ├── bowl-rice.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-archive.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes-packing.svg │ │ │ │ ├── boxes-stacked.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── brazilian-real-sign.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── bridge-circle-check.svg │ │ │ │ ├── bridge-circle-exclamation.svg │ │ │ │ ├── bridge-circle-xmark.svg │ │ │ │ ├── bridge-lock.svg │ │ │ │ ├── bridge-water.svg │ │ │ │ ├── bridge.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broom-ball.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bucket.svg │ │ │ │ ├── bug-slash.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── bugs.svg │ │ │ │ ├── building-circle-arrow-right.svg │ │ │ │ ├── building-circle-check.svg │ │ │ │ ├── building-circle-exclamation.svg │ │ │ │ ├── building-circle-xmark.svg │ │ │ │ ├── building-columns.svg │ │ │ │ ├── building-flag.svg │ │ │ │ ├── building-lock.svg │ │ │ │ ├── building-ngo.svg │ │ │ │ ├── building-shield.svg │ │ │ │ ├── building-un.svg │ │ │ │ ├── building-user.svg │ │ │ │ ├── building-wheat.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burger.svg │ │ │ │ ├── burst.svg │ │ │ │ ├── bus-simple.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── c.svg │ │ │ │ ├── cable-car.svg │ │ │ │ ├── cake-candles.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-days.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar-xmark.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera-rotate.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-burst.svg │ │ │ │ ├── car-on.svg │ │ │ │ ├── car-rear.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car-tunnel.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ │ ├── cart-flatbed.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cart-shopping.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── cedi-sign.svg │ │ │ │ ├── cent-sign.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-user.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── champagne-glasses.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-column.svg │ │ │ │ ├── chart-diagram.svg │ │ │ │ ├── chart-gantt.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── chart-simple.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-to-slot.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child-combatant.svg │ │ │ │ ├── child-dress.svg │ │ │ │ ├── child-reaching.svg │ │ │ │ ├── child.svg │ │ │ │ ├── children.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-arrow-down.svg │ │ │ │ ├── circle-arrow-left.svg │ │ │ │ ├── circle-arrow-right.svg │ │ │ │ ├── circle-arrow-up.svg │ │ │ │ ├── circle-check.svg │ │ │ │ ├── circle-chevron-down.svg │ │ │ │ ├── circle-chevron-left.svg │ │ │ │ ├── circle-chevron-right.svg │ │ │ │ ├── circle-chevron-up.svg │ │ │ │ ├── circle-dollar-to-slot.svg │ │ │ │ ├── circle-dot.svg │ │ │ │ ├── circle-down.svg │ │ │ │ ├── circle-exclamation.svg │ │ │ │ ├── circle-h.svg │ │ │ │ ├── circle-half-stroke.svg │ │ │ │ ├── circle-info.svg │ │ │ │ ├── circle-left.svg │ │ │ │ ├── circle-minus.svg │ │ │ │ ├── circle-nodes.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle-pause.svg │ │ │ │ ├── circle-play.svg │ │ │ │ ├── circle-plus.svg │ │ │ │ ├── circle-question.svg │ │ │ │ ├── circle-radiation.svg │ │ │ │ ├── circle-right.svg │ │ │ │ ├── circle-stop.svg │ │ │ │ ├── circle-up.svg │ │ │ │ ├── circle-user.svg │ │ │ │ ├── circle-xmark.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clapperboard.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard-question.svg │ │ │ │ ├── clipboard-user.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock-rotate-left.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ ├── cloud-bolt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-showers-water.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── clover.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code-commit.svg │ │ │ │ ├── code-compare.svg │ │ │ │ ├── code-fork.svg │ │ │ │ ├── code-merge.svg │ │ │ │ ├── code-pull-request.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── colon-sign.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-nodes.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment-sms.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass-drafting.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── computer-mouse.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── cow.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-simple.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cruzeiro-sign.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes-stacked.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── d.svg │ │ │ │ ├── database.svg │ │ │ │ ├── delete-left.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagram-next.svg │ │ │ │ ├── diagram-predecessor.svg │ │ │ │ ├── diagram-project.svg │ │ │ │ ├── diagram-successor.svg │ │ │ │ ├── diamond-turn-right.svg │ │ │ │ ├── diamond.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── display.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── dong-sign.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ │ ├── down-long.svg │ │ │ │ ├── download.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── droplet-slash.svg │ │ │ │ ├── droplet.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── e.svg │ │ │ │ ├── ear-deaf.svg │ │ │ │ ├── ear-listen.svg │ │ │ │ ├── earth-africa.svg │ │ │ │ ├── earth-americas.svg │ │ │ │ ├── earth-asia.svg │ │ │ │ ├── earth-europe.svg │ │ │ │ ├── earth-oceania.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── elevator.svg │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ ├── ellipsis.svg │ │ │ │ ├── envelope-circle-check.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── envelopes-bulk.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── explosion.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-low-vision.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── f.svg │ │ │ │ ├── face-angry.svg │ │ │ │ ├── face-dizzy.svg │ │ │ │ ├── face-flushed.svg │ │ │ │ ├── face-frown-open.svg │ │ │ │ ├── face-frown.svg │ │ │ │ ├── face-grimace.svg │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ ├── face-grin-beam.svg │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ ├── face-grin-squint.svg │ │ │ │ ├── face-grin-stars.svg │ │ │ │ ├── face-grin-tears.svg │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ ├── face-grin-wide.svg │ │ │ │ ├── face-grin-wink.svg │ │ │ │ ├── face-grin.svg │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ ├── face-kiss.svg │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ ├── face-laugh.svg │ │ │ │ ├── face-meh-blank.svg │ │ │ │ ├── face-meh.svg │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ ├── face-sad-cry.svg │ │ │ │ ├── face-sad-tear.svg │ │ │ │ ├── face-smile-beam.svg │ │ │ │ ├── face-smile-wink.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── face-surprise.svg │ │ │ │ ├── face-tired.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── faucet-drip.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-pointed.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── ferry.svg │ │ │ │ ├── file-arrow-down.svg │ │ │ │ ├── file-arrow-up.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-circle-check.svg │ │ │ │ ├── file-circle-exclamation.svg │ │ │ │ ├── file-circle-minus.svg │ │ │ │ ├── file-circle-plus.svg │ │ │ │ ├── file-circle-question.svg │ │ │ │ ├── file-circle-xmark.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-fragment.svg │ │ │ │ ├── file-half-dashed.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-lines.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-pen.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-shield.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-waveform.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file-zipper.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter-circle-dollar.svg │ │ │ │ ├── filter-circle-xmark.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-burner.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire-flame-curved.svg │ │ │ │ ├── fire-flame-simple.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── fish-fins.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask-vial.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── floppy-disk.svg │ │ │ │ ├── florin-sign.svg │ │ │ │ ├── folder-closed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder-tree.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football.svg │ │ │ │ ├── forward-fast.svg │ │ │ │ ├── forward-step.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── franc-sign.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── g.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gauge-high.svg │ │ │ │ ├── gauge-simple-high.svg │ │ │ │ ├── gauge-simple.svg │ │ │ │ ├── gauge.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── gears.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-water-droplet.svg │ │ │ │ ├── glass-water.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball-tee.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── grip.svg │ │ │ │ ├── group-arrows-rotate.svg │ │ │ │ ├── guarani-sign.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── gun.svg │ │ │ │ ├── h.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-back-fist.svg │ │ │ │ ├── hand-dots.svg │ │ │ │ ├── hand-fist.svg │ │ │ │ ├── hand-holding-dollar.svg │ │ │ │ ├── hand-holding-droplet.svg │ │ │ │ ├── hand-holding-hand.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── handcuffs.svg │ │ │ │ ├── hands-asl-interpreting.svg │ │ │ │ ├── hands-bound.svg │ │ │ │ ├── hands-bubbles.svg │ │ │ │ ├── hands-clapping.svg │ │ │ │ ├── hands-holding-child.svg │ │ │ │ ├── hands-holding-circle.svg │ │ │ │ ├── hands-holding.svg │ │ │ │ ├── hands-praying.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-angle.svg │ │ │ │ ├── handshake-simple-slash.svg │ │ │ │ ├── handshake-simple.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-drive.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-simple.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-circle-bolt.svg │ │ │ │ ├── heart-circle-check.svg │ │ │ │ ├── heart-circle-exclamation.svg │ │ │ │ ├── heart-circle-minus.svg │ │ │ │ ├── heart-circle-plus.svg │ │ │ │ ├── heart-circle-xmark.svg │ │ │ │ ├── heart-crack.svg │ │ │ │ ├── heart-pulse.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── helicopter-symbol.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── helmet-safety.svg │ │ │ │ ├── helmet-un.svg │ │ │ │ ├── hexagon-nodes-bolt.svg │ │ │ │ ├── hexagon-nodes.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hill-avalanche.svg │ │ │ │ ├── hill-rockslide.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub-person.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-chimney-crack.svg │ │ │ │ ├── house-chimney-medical.svg │ │ │ │ ├── house-chimney-user.svg │ │ │ │ ├── house-chimney-window.svg │ │ │ │ ├── house-chimney.svg │ │ │ │ ├── house-circle-check.svg │ │ │ │ ├── house-circle-exclamation.svg │ │ │ │ ├── house-circle-xmark.svg │ │ │ │ ├── house-crack.svg │ │ │ │ ├── house-fire.svg │ │ │ │ ├── house-flag.svg │ │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ │ ├── house-flood-water.svg │ │ │ │ ├── house-laptop.svg │ │ │ │ ├── house-lock.svg │ │ │ │ ├── house-medical-circle-check.svg │ │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ │ ├── house-medical-circle-xmark.svg │ │ │ │ ├── house-medical-flag.svg │ │ │ │ ├── house-medical.svg │ │ │ │ ├── house-signal.svg │ │ │ │ ├── house-tsunami.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── house.svg │ │ │ │ ├── hryvnia-sign.svg │ │ │ │ ├── hurricane.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── i.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-clip.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image-portrait.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── indian-rupee-sign.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── j.svg │ │ │ │ ├── jar-wheat.svg │ │ │ │ ├── jar.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── jet-fighter-up.svg │ │ │ │ ├── jet-fighter.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── jug-detergent.svg │ │ │ │ ├── k.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kip-sign.svg │ │ │ │ ├── kit-medical.svg │ │ │ │ ├── kitchen-set.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── l.svg │ │ │ │ ├── land-mine-on.svg │ │ │ │ ├── landmark-dome.svg │ │ │ │ ├── landmark-flag.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-file.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── lari-sign.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── left-long.svg │ │ │ │ ├── left-right.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── lines-leaning.svg │ │ │ │ ├── link-slash.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-check.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── litecoin-sign.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── location-crosshairs.svg │ │ │ │ ├── location-dot.svg │ │ │ │ ├── location-pin-lock.svg │ │ │ │ ├── location-pin.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── locust.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── m.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ │ ├── magnifying-glass-chart.svg │ │ │ │ ├── magnifying-glass-dollar.svg │ │ │ │ ├── magnifying-glass-location.svg │ │ │ │ ├── magnifying-glass-minus.svg │ │ │ │ ├── magnifying-glass-plus.svg │ │ │ │ ├── magnifying-glass.svg │ │ │ │ ├── manat-sign.svg │ │ │ │ ├── map-location-dot.svg │ │ │ │ ├── map-location.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-and-venus-burst.svg │ │ │ │ ├── mars-and-venus.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-right.svg │ │ │ │ ├── mars-stroke-up.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── martini-glass-citrus.svg │ │ │ │ ├── martini-glass-empty.svg │ │ │ │ ├── martini-glass.svg │ │ │ │ ├── mask-face.svg │ │ │ │ ├── mask-ventilator.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── masks-theater.svg │ │ │ │ ├── mattress-pillow.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── message.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-lines-slash.svg │ │ │ │ ├── microphone-lines.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── mill-sign.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-button.svg │ │ │ │ ├── mobile-retro.svg │ │ │ │ ├── mobile-screen-button.svg │ │ │ │ ├── mobile-screen.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-1-wave.svg │ │ │ │ ├── money-bill-1.svg │ │ │ │ ├── money-bill-transfer.svg │ │ │ │ ├── money-bill-trend-up.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill-wheat.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-bills.svg │ │ │ │ ├── money-check-dollar.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── mosquito-net.svg │ │ │ │ ├── mosquito.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mound.svg │ │ │ │ ├── mountain-city.svg │ │ │ │ ├── mountain-sun.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── mug-saucer.svg │ │ │ │ ├── music.svg │ │ │ │ ├── n.svg │ │ │ │ ├── naira-sign.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notdef.svg │ │ │ │ ├── note-sticky.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── o.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── oil-well.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── p.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── paintbrush.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── panorama.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-clip.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-ruler.svg │ │ │ │ ├── pen-to-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry-box.svg │ │ │ │ ├── people-group.svg │ │ │ │ ├── people-line.svg │ │ │ │ ├── people-pulling.svg │ │ │ │ ├── people-robbery.svg │ │ │ │ ├── people-roof.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── person-arrow-down-to-line.svg │ │ │ │ ├── person-arrow-up-from-line.svg │ │ │ │ ├── person-biking.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── person-breastfeeding.svg │ │ │ │ ├── person-burst.svg │ │ │ │ ├── person-cane.svg │ │ │ │ ├── person-chalkboard.svg │ │ │ │ ├── person-circle-check.svg │ │ │ │ ├── person-circle-exclamation.svg │ │ │ │ ├── person-circle-minus.svg │ │ │ │ ├── person-circle-plus.svg │ │ │ │ ├── person-circle-question.svg │ │ │ │ ├── person-circle-xmark.svg │ │ │ │ ├── person-digging.svg │ │ │ │ ├── person-dots-from-line.svg │ │ │ │ ├── person-dress-burst.svg │ │ │ │ ├── person-dress.svg │ │ │ │ ├── person-drowning.svg │ │ │ │ ├── person-falling-burst.svg │ │ │ │ ├── person-falling.svg │ │ │ │ ├── person-half-dress.svg │ │ │ │ ├── person-harassing.svg │ │ │ │ ├── person-hiking.svg │ │ │ │ ├── person-military-pointing.svg │ │ │ │ ├── person-military-rifle.svg │ │ │ │ ├── person-military-to-person.svg │ │ │ │ ├── person-praying.svg │ │ │ │ ├── person-pregnant.svg │ │ │ │ ├── person-rays.svg │ │ │ │ ├── person-rifle.svg │ │ │ │ ├── person-running.svg │ │ │ │ ├── person-shelter.svg │ │ │ │ ├── person-skating.svg │ │ │ │ ├── person-skiing-nordic.svg │ │ │ │ ├── person-skiing.svg │ │ │ │ ├── person-snowboarding.svg │ │ │ │ ├── person-swimming.svg │ │ │ │ ├── person-through-window.svg │ │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ │ ├── person-walking-arrow-right.svg │ │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ │ ├── person-walking-luggage.svg │ │ │ │ ├── person-walking-with-cane.svg │ │ │ │ ├── person-walking.svg │ │ │ │ ├── person.svg │ │ │ │ ├── peseta-sign.svg │ │ │ │ ├── peso-sign.svg │ │ │ │ ├── phone-flip.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-film.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-circle-check.svg │ │ │ │ ├── plane-circle-exclamation.svg │ │ │ │ ├── plane-circle-xmark.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-lock.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane-up.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── plant-wilt.svg │ │ │ │ ├── plate-wheat.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug-circle-bolt.svg │ │ │ │ ├── plug-circle-check.svg │ │ │ │ ├── plug-circle-exclamation.svg │ │ │ │ ├── plug-circle-minus.svg │ │ │ │ ├── plug-circle-plus.svg │ │ │ │ ├── plug-circle-xmark.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-minus.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── prescription-bottle-medical.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── q.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── r.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── ranking-star.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── rectangle-ad.svg │ │ │ │ ├── rectangle-list.svg │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── right-from-bracket.svg │ │ │ │ ├── right-left.svg │ │ │ │ ├── right-long.svg │ │ │ │ ├── right-to-bracket.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road-barrier.svg │ │ │ │ ├── road-bridge.svg │ │ │ │ ├── road-circle-check.svg │ │ │ │ ├── road-circle-exclamation.svg │ │ │ │ ├── road-circle-xmark.svg │ │ │ │ ├── road-lock.svg │ │ │ │ ├── road-spikes.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── rotate-left.svg │ │ │ │ ├── rotate-right.svg │ │ │ │ ├── rotate.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── rug.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── rupiah-sign.svg │ │ │ │ ├── s.svg │ │ │ │ ├── sack-dollar.svg │ │ │ │ ├── sack-xmark.svg │ │ │ │ ├── sailboat.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── scale-balanced.svg │ │ │ │ ├── scale-unbalanced-flip.svg │ │ │ │ ├── scale-unbalanced.svg │ │ │ │ ├── school-circle-check.svg │ │ │ │ ├── school-circle-exclamation.svg │ │ │ │ ├── school-circle-xmark.svg │ │ │ │ ├── school-flag.svg │ │ │ │ ├── school-lock.svg │ │ │ │ ├── school.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── screwdriver-wrench.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll-torah.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── section.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-from-square.svg │ │ │ │ ├── share-nodes.svg │ │ │ │ ├── share.svg │ │ │ │ ├── sheet-plastic.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-cat.svg │ │ │ │ ├── shield-dog.svg │ │ │ │ ├── shield-halved.svg │ │ │ │ ├── shield-heart.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shirt.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shop-lock.svg │ │ │ │ ├── shop-slash.svg │ │ │ │ ├── shop.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shrimp.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── shuttle-space.svg │ │ │ │ ├── sign-hanging.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── signs-post.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── spaghetti-monster-flying.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spoon.svg │ │ │ │ ├── spray-can-sparkles.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-arrow-up-right.svg │ │ │ │ ├── square-binary.svg │ │ │ │ ├── square-caret-down.svg │ │ │ │ ├── square-caret-left.svg │ │ │ │ ├── square-caret-right.svg │ │ │ │ ├── square-caret-up.svg │ │ │ │ ├── square-check.svg │ │ │ │ ├── square-envelope.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-h.svg │ │ │ │ ├── square-minus.svg │ │ │ │ ├── square-nfi.svg │ │ │ │ ├── square-parking.svg │ │ │ │ ├── square-pen.svg │ │ │ │ ├── square-person-confined.svg │ │ │ │ ├── square-phone-flip.svg │ │ │ │ ├── square-phone.svg │ │ │ │ ├── square-plus.svg │ │ │ │ ├── square-poll-horizontal.svg │ │ │ │ ├── square-poll-vertical.svg │ │ │ │ ├── square-root-variable.svg │ │ │ │ ├── square-rss.svg │ │ │ │ ├── square-share-nodes.svg │ │ │ │ ├── square-up-right.svg │ │ │ │ ├── square-virus.svg │ │ │ │ ├── square-xmark.svg │ │ │ │ ├── square.svg │ │ │ │ ├── staff-snake.svg │ │ │ │ ├── stairs.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── stapler.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-stroke.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sterling-sign.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── suitcase-medical.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun-plant-wilt.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── t.svg │ │ │ │ ├── table-cells-column-lock.svg │ │ │ │ ├── table-cells-large.svg │ │ │ │ ├── table-cells-row-lock.svg │ │ │ │ ├── table-cells-row-unlock.svg │ │ │ │ ├── table-cells.svg │ │ │ │ ├── table-columns.svg │ │ │ │ ├── table-list.svg │ │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-button.svg │ │ │ │ ├── tablet-screen-button.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachograph-digital.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tarp-droplet.svg │ │ │ │ ├── tarp.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-arrow-down.svg │ │ │ │ ├── temperature-arrow-up.svg │ │ │ │ ├── temperature-empty.svg │ │ │ │ ├── temperature-full.svg │ │ │ │ ├── temperature-half.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── temperature-quarter.svg │ │ │ │ ├── temperature-three-quarters.svg │ │ │ │ ├── tenge-sign.svg │ │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ │ ├── tent-arrow-left-right.svg │ │ │ │ ├── tent-arrow-turn-left.svg │ │ │ │ ├── tent-arrows-down.svg │ │ │ │ ├── tent.svg │ │ │ │ ├── tents.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-slash.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack-slash.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-simple.svg │ │ │ │ ├── ticket.svg │ │ │ │ ├── timeline.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet-portable.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toilets-portable.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tornado.svg │ │ │ │ ├── tower-broadcast.svg │ │ │ │ ├── tower-cell.svg │ │ │ │ ├── tower-observation.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train-subway.svg │ │ │ │ ├── train-tram.svg │ │ │ │ ├── train.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-arrow-up.svg │ │ │ │ ├── trash-can-arrow-up.svg │ │ │ │ ├── trash-can.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree-city.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── triangle-exclamation.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── trowel-bricks.svg │ │ │ │ ├── trowel.svg │ │ │ │ ├── truck-arrow-right.svg │ │ │ │ ├── truck-droplet.svg │ │ │ │ ├── truck-fast.svg │ │ │ │ ├── truck-field-un.svg │ │ │ │ ├── truck-field.svg │ │ │ │ ├── truck-front.svg │ │ │ │ ├── truck-medical.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck-plane.svg │ │ │ │ ├── truck-ramp-box.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── turkish-lira-sign.svg │ │ │ │ ├── turn-down.svg │ │ │ │ ├── turn-up.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── u.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── unlock-keyhole.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── up-down-left-right.svg │ │ │ │ ├── up-down.svg │ │ │ │ ├── up-long.svg │ │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ │ ├── up-right-from-square.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-doctor.svg │ │ │ │ ├── user-gear.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-group.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-large-slash.svg │ │ │ │ ├── user-large.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-pen.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-xmark.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-between-lines.svg │ │ │ │ ├── users-gear.svg │ │ │ │ ├── users-line.svg │ │ │ │ ├── users-rays.svg │ │ │ │ ├── users-rectangle.svg │ │ │ │ ├── users-slash.svg │ │ │ │ ├── users-viewfinder.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── v.svg │ │ │ │ ├── van-shuttle.svg │ │ │ │ ├── vault.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vest-patches.svg │ │ │ │ ├── vest.svg │ │ │ │ ├── vial-circle-check.svg │ │ │ │ ├── vial-virus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-covid-slash.svg │ │ │ │ ├── virus-covid.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volcano.svg │ │ │ │ ├── volleyball.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-xmark.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── w.svg │ │ │ │ ├── walkie-talkie.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── wand-magic-sparkles.svg │ │ │ │ ├── wand-magic.svg │ │ │ │ ├── wand-sparkles.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water-ladder.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── web-awesome.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight-scale.svg │ │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ │ ├── wheat-awn.svg │ │ │ │ ├── wheelchair-move.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── whiskey-glass.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-empty.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── worm.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── x.svg │ │ │ │ ├── xmark.svg │ │ │ │ ├── xmarks-lines.svg │ │ │ │ ├── y.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ ├── yin-yang.svg │ │ │ │ └── z.svg │ │ ├── remixicon │ │ │ ├── remixicon.css │ │ │ ├── remixicon.eot │ │ │ ├── remixicon.svg │ │ │ ├── remixicon.symbol.svg │ │ │ ├── remixicon.ttf │ │ │ ├── remixicon.woff │ │ │ └── remixicon.woff2 │ │ └── simpleicons │ │ │ ├── 1001tracklists.svg │ │ │ ├── 1and1.svg │ │ │ ├── 1dot1dot1dot1.svg │ │ │ ├── 1panel.svg │ │ │ ├── 1password.svg │ │ │ ├── 2fas.svg │ │ │ ├── 2k.svg │ │ │ ├── 30secondsofcode.svg │ │ │ ├── 365datascience.svg │ │ │ ├── 3m.svg │ │ │ ├── 42.svg │ │ │ ├── 4chan.svg │ │ │ ├── 4d.svg │ │ │ ├── 500px.svg │ │ │ ├── 7zip.svg │ │ │ ├── 99designs.svg │ │ │ ├── 9gag.svg │ │ │ ├── abbott.svg │ │ │ ├── abbrobotstudio.svg │ │ │ ├── abbvie.svg │ │ │ ├── aboutdotme.svg │ │ │ ├── abstract.svg │ │ │ ├── abusedotch.svg │ │ │ ├── academia.svg │ │ │ ├── accenture.svg │ │ │ ├── accusoft.svg │ │ │ ├── accuweather.svg │ │ │ ├── acer.svg │ │ │ ├── acm.svg │ │ │ ├── actigraph.svg │ │ │ ├── activision.svg │ │ │ ├── activitypub.svg │ │ │ ├── actix.svg │ │ │ ├── actualbudget.svg │ │ │ ├── acura.svg │ │ │ ├── adafruit.svg │ │ │ ├── adblock.svg │ │ │ ├── adblockplus.svg │ │ │ ├── addydotio.svg │ │ │ ├── adguard.svg │ │ │ ├── adidas.svg │ │ │ ├── adminer.svg │ │ │ ├── adobe.svg │ │ │ ├── adobeacrobatreader.svg │ │ │ ├── adobeaftereffects.svg │ │ │ ├── adobeaudition.svg │ │ │ ├── adobecreativecloud.svg │ │ │ ├── adobedreamweaver.svg │ │ │ ├── adobefonts.svg │ │ │ ├── adobeillustrator.svg │ │ │ ├── adobeindesign.svg │ │ │ ├── adobelightroom.svg │ │ │ ├── adobelightroomclassic.svg │ │ │ ├── adobephotoshop.svg │ │ │ ├── adobepremierepro.svg │ │ │ ├── adobexd.svg │ │ │ ├── adonisjs.svg │ │ │ ├── adp.svg │ │ │ ├── adroll.svg │ │ │ ├── adventofcode.svg │ │ │ ├── adyen.svg │ │ │ ├── aegisauthenticator.svg │ │ │ ├── aerlingus.svg │ │ │ ├── aeroflot.svg │ │ │ ├── aeromexico.svg │ │ │ ├── aerospike.svg │ │ │ ├── aew.svg │ │ │ ├── affine.svg │ │ │ ├── affinity.svg │ │ │ ├── affinitydesigner.svg │ │ │ ├── affinityphoto.svg │ │ │ ├── affinitypublisher.svg │ │ │ ├── aframe.svg │ │ │ ├── afterpay.svg │ │ │ ├── aftership.svg │ │ │ ├── agora.svg │ │ │ ├── aib.svg │ │ │ ├── aidungeon.svg │ │ │ ├── aiohttp.svg │ │ │ ├── aiqfome.svg │ │ │ ├── airasia.svg │ │ │ ├── airbnb.svg │ │ │ ├── airbrake.svg │ │ │ ├── airbus.svg │ │ │ ├── airbyte.svg │ │ │ ├── aircall.svg │ │ │ ├── aircanada.svg │ │ │ ├── airchina.svg │ │ │ ├── airfrance.svg │ │ │ ├── airindia.svg │ │ │ ├── airplayaudio.svg │ │ │ ├── airplayvideo.svg │ │ │ ├── airserbia.svg │ │ │ ├── airtable.svg │ │ │ ├── airtel.svg │ │ │ ├── airtransat.svg │ │ │ ├── ajv.svg │ │ │ ├── akamai.svg │ │ │ ├── akasaair.svg │ │ │ ├── akaunting.svg │ │ │ ├── akiflow.svg │ │ │ ├── alacritty.svg │ │ │ ├── alamy.svg │ │ │ ├── albertheijn.svg │ │ │ ├── alby.svg │ │ │ ├── alchemy.svg │ │ │ ├── aldinord.svg │ │ │ ├── aldisud.svg │ │ │ ├── alfaromeo.svg │ │ │ ├── alfred.svg │ │ │ ├── algolia.svg │ │ │ ├── algorand.svg │ │ │ ├── alibabacloud.svg │ │ │ ├── alibabadotcom.svg │ │ │ ├── alienware.svg │ │ │ ├── aliexpress.svg │ │ │ ├── alipay.svg │ │ │ ├── allegro.svg │ │ │ ├── alliedmodders.svg │ │ │ ├── allocine.svg │ │ │ ├── alltrails.svg │ │ │ ├── almalinux.svg │ │ │ ├── alpinedotjs.svg │ │ │ ├── alpinelinux.svg │ │ │ ├── alternativeto.svg │ │ │ ├── alteryx.svg │ │ │ ├── altiumdesigner.svg │ │ │ ├── alwaysdata.svg │ │ │ ├── alx.svg │ │ │ ├── amazon.svg │ │ │ ├── amazonalexa.svg │ │ │ ├── amazonapigateway.svg │ │ │ ├── amazoncloudwatch.svg │ │ │ ├── amazoncognito.svg │ │ │ ├── amazondocumentdb.svg │ │ │ ├── amazondynamodb.svg │ │ │ ├── amazonec2.svg │ │ │ ├── amazonecs.svg │ │ │ ├── amazoneks.svg │ │ │ ├── amazonelasticache.svg │ │ │ ├── amazonfiretv.svg │ │ │ ├── amazongames.svg │ │ │ ├── amazoniam.svg │ │ │ ├── amazonlumberyard.svg │ │ │ ├── amazonluna.svg │ │ │ ├── amazonmusic.svg │ │ │ ├── amazonpay.svg │ │ │ ├── amazonprime.svg │ │ │ ├── amazonrds.svg │ │ │ ├── amazonredshift.svg │ │ │ ├── amazonroute53.svg │ │ │ ├── amazons3.svg │ │ │ ├── amazonsimpleemailservice.svg │ │ │ ├── amazonsqs.svg │ │ │ ├── amazonwebservices.svg │ │ │ ├── amd.svg │ │ │ ├── ameba.svg │ │ │ ├── americanairlines.svg │ │ │ ├── americanexpress.svg │ │ │ ├── amg.svg │ │ │ ├── amp.svg │ │ │ ├── amul.svg │ │ │ ├── ana.svg │ │ │ ├── anaconda.svg │ │ │ ├── analogue.svg │ │ │ ├── andela.svg │ │ │ ├── android.svg │ │ │ ├── androidauto.svg │ │ │ ├── androidstudio.svg │ │ │ ├── angular.svg │ │ │ ├── anilist.svg │ │ │ ├── animalplanet.svg │ │ │ ├── ankermake.svg │ │ │ ├── anki.svg │ │ │ ├── ansible.svg │ │ │ ├── answer.svg │ │ │ ├── ansys.svg │ │ │ ├── anta.svg │ │ │ ├── antdesign.svg │ │ │ ├── antena3.svg │ │ │ ├── anthropic.svg │ │ │ ├── antv.svg │ │ │ ├── anycubic.svg │ │ │ ├── anydesk.svg │ │ │ ├── anytype.svg │ │ │ ├── aol.svg │ │ │ ├── apache.svg │ │ │ ├── apacheairflow.svg │ │ │ ├── apacheant.svg │ │ │ ├── apachecassandra.svg │ │ │ ├── apachecloudstack.svg │ │ │ ├── apachecordova.svg │ │ │ ├── apachecouchdb.svg │ │ │ ├── apachedolphinscheduler.svg │ │ │ ├── apachedruid.svg │ │ │ ├── apacheecharts.svg │ │ │ ├── apacheflink.svg │ │ │ ├── apachefreemarker.svg │ │ │ ├── apachegroovy.svg │ │ │ ├── apacheguacamole.svg │ │ │ ├── apachehadoop.svg │ │ │ ├── apachehbase.svg │ │ │ ├── apachehive.svg │ │ │ ├── apachejmeter.svg │ │ │ ├── apachekafka.svg │ │ │ ├── apachekylin.svg │ │ │ ├── apachelucene.svg │ │ │ ├── apachemaven.svg │ │ │ ├── apachenetbeanside.svg │ │ │ ├── apachenifi.svg │ │ │ ├── apacheopenoffice.svg │ │ │ ├── apacheparquet.svg │ │ │ ├── apachepulsar.svg │ │ │ ├── apacherocketmq.svg │ │ │ ├── apachesolr.svg │ │ │ ├── apachespark.svg │ │ │ ├── apachestorm.svg │ │ │ ├── apachesuperset.svg │ │ │ ├── apachetomcat.svg │ │ │ ├── aparat.svg │ │ │ ├── apifox.svg │ │ │ ├── apmterminals.svg │ │ │ ├── apollographql.svg │ │ │ ├── apostrophe.svg │ │ │ ├── appgallery.svg │ │ │ ├── appian.svg │ │ │ ├── appium.svg │ │ │ ├── apple.svg │ │ │ ├── applearcade.svg │ │ │ ├── applemusic.svg │ │ │ ├── applenews.svg │ │ │ ├── applepay.svg │ │ │ ├── applepodcasts.svg │ │ │ ├── appletv.svg │ │ │ ├── appsignal.svg │ │ │ ├── appsmith.svg │ │ │ ├── appstore.svg │ │ │ ├── appveyor.svg │ │ │ ├── appwrite.svg │ │ │ ├── aqua.svg │ │ │ ├── aral.svg │ │ │ ├── arangodb.svg │ │ │ ├── arc.svg │ │ │ ├── arcgis.svg │ │ │ ├── archicad.svg │ │ │ ├── archiveofourown.svg │ │ │ ├── archlinux.svg │ │ │ ├── ardour.svg │ │ │ ├── arduino.svg │ │ │ ├── argo.svg │ │ │ ├── argos.svg │ │ │ ├── ariakit.svg │ │ │ ├── arkecosystem.svg │ │ │ ├── arlo.svg │ │ │ ├── arm.svg │ │ │ ├── armkeil.svg │ │ │ ├── arstechnica.svg │ │ │ ├── artifacthub.svg │ │ │ ├── artixlinux.svg │ │ │ ├── artstation.svg │ │ │ ├── arxiv.svg │ │ │ ├── asahilinux.svg │ │ │ ├── asana.svg │ │ │ ├── asciidoctor.svg │ │ │ ├── asciinema.svg │ │ │ ├── asda.svg │ │ │ ├── aseprite.svg │ │ │ ├── askfm.svg │ │ │ ├── assemblyscript.svg │ │ │ ├── asterisk.svg │ │ │ ├── astonmartin.svg │ │ │ ├── astra.svg │ │ │ ├── astral.svg │ │ │ ├── astro.svg │ │ │ ├── asus.svg │ │ │ ├── atandt.svg │ │ │ ├── atari.svg │ │ │ ├── atlasos.svg │ │ │ ├── atlassian.svg │ │ │ ├── auchan.svg │ │ │ ├── audacity.svg │ │ │ ├── audi.svg │ │ │ ├── audible.svg │ │ │ ├── audiobookshelf.svg │ │ │ ├── audioboom.svg │ │ │ ├── audiomack.svg │ │ │ ├── audiotechnica.svg │ │ │ ├── aurelia.svg │ │ │ ├── auth0.svg │ │ │ ├── authelia.svg │ │ │ ├── authentik.svg │ │ │ ├── authy.svg │ │ │ ├── autocad.svg │ │ │ ├── autocannon.svg │ │ │ ├── autodesk.svg │ │ │ ├── autodeskmaya.svg │ │ │ ├── autodeskrevit.svg │ │ │ ├── autohotkey.svg │ │ │ ├── autoit.svg │ │ │ ├── automattic.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── autozone.svg │ │ │ ├── avajs.svg │ │ │ ├── avast.svg │ │ │ ├── avianca.svg │ │ │ ├── avira.svg │ │ │ ├── awesomelists.svg │ │ │ ├── awesomewm.svg │ │ │ ├── awsamplify.svg │ │ │ ├── awselasticloadbalancing.svg │ │ │ ├── awsfargate.svg │ │ │ ├── awslambda.svg │ │ │ ├── awsorganizations.svg │ │ │ ├── awssecretsmanager.svg │ │ │ ├── awwwards.svg │ │ │ ├── axios.svg │ │ │ ├── babel.svg │ │ │ ├── babelio.svg │ │ │ ├── babylondotjs.svg │ │ │ ├── backblaze.svg │ │ │ ├── backbone.svg │ │ │ ├── backbonedotjs.svg │ │ │ ├── backendless.svg │ │ │ ├── backstage.svg │ │ │ ├── badoo.svg │ │ │ ├── baidu.svg │ │ │ ├── bakalari.svg │ │ │ ├── bamboo.svg │ │ │ ├── bambulab.svg │ │ │ ├── bandcamp.svg │ │ │ ├── bandlab.svg │ │ │ ├── bandrautomation.svg │ │ │ ├── bandsintown.svg │ │ │ ├── bankofamerica.svg │ │ │ ├── barclays.svg │ │ │ ├── baremetrics.svg │ │ │ ├── barmenia.svg │ │ │ ├── basecamp.svg │ │ │ ├── baserow.svg │ │ │ ├── basicattentiontoken.svg │ │ │ ├── bastyon.svg │ │ │ ├── bat.svg │ │ │ ├── bata.svg │ │ │ ├── battledotnet.svg │ │ │ ├── bazel.svg │ │ │ ├── beatport.svg │ │ │ ├── beats.svg │ │ │ ├── beatsbydre.svg │ │ │ ├── beatstars.svg │ │ │ ├── beekeeperstudio.svg │ │ │ ├── behance.svg │ │ │ ├── beijingsubway.svg │ │ │ ├── bem.svg │ │ │ ├── bentley.svg │ │ │ ├── bento.svg │ │ │ ├── bentobox.svg │ │ │ ├── bentoml.svg │ │ │ ├── bereal.svg │ │ │ ├── betfair.svg │ │ │ ├── betterstack.svg │ │ │ ├── bevy.svg │ │ │ ├── bigbasket.svg │ │ │ ├── bigbluebutton.svg │ │ │ ├── bigcartel.svg │ │ │ ├── bigcommerce.svg │ │ │ ├── bilibili.svg │ │ │ ├── billboard.svg │ │ │ ├── bim.svg │ │ │ ├── binance.svg │ │ │ ├── biolink.svg │ │ │ ├── biome.svg │ │ │ ├── bisecthosting.svg │ │ │ ├── bit.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bitcoincash.svg │ │ │ ├── bitcoinsv.svg │ │ │ ├── bitcomet.svg │ │ │ ├── bitdefender.svg │ │ │ ├── bitly.svg │ │ │ ├── bitrise.svg │ │ │ ├── bittorrent.svg │ │ │ ├── bitwarden.svg │ │ │ ├── bitwig.svg │ │ │ ├── blackberry.svg │ │ │ ├── blackmagicdesign.svg │ │ │ ├── blazemeter.svg │ │ │ ├── blazor.svg │ │ │ ├── blender.svg │ │ │ ├── blockbench.svg │ │ │ ├── blockchaindotcom.svg │ │ │ ├── blogger.svg │ │ │ ├── bloglovin.svg │ │ │ ├── blueprint.svg │ │ │ ├── bluesky.svg │ │ │ ├── bluesound.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bmcsoftware.svg │ │ │ ├── bmw.svg │ │ │ ├── bnbchain.svg │ │ │ ├── boardgamegeek.svg │ │ │ ├── boat.svg │ │ │ ├── boehringeringelheim.svg │ │ │ ├── boeing.svg │ │ │ ├── bombardier.svg │ │ │ ├── bookalope.svg │ │ │ ├── bookbub.svg │ │ │ ├── bookmeter.svg │ │ │ ├── bookmyshow.svg │ │ │ ├── bookstack.svg │ │ │ ├── boost.svg │ │ │ ├── boosty.svg │ │ │ ├── boots.svg │ │ │ ├── bootstrap.svg │ │ │ ├── borgbackup.svg │ │ │ ├── bosch.svg │ │ │ ├── bose.svg │ │ │ ├── botblecms.svg │ │ │ ├── boulanger.svg │ │ │ ├── bower.svg │ │ │ ├── box.svg │ │ │ ├── boxysvg.svg │ │ │ ├── braintree.svg │ │ │ ├── brandfolder.svg │ │ │ ├── brave.svg │ │ │ ├── breaker.svg │ │ │ ├── brenntag.svg │ │ │ ├── brevo.svg │ │ │ ├── brex.svg │ │ │ ├── bricks.svg │ │ │ ├── britishairways.svg │ │ │ ├── broadcom.svg │ │ │ ├── bruno.svg │ │ │ ├── bsd.svg │ │ │ ├── bspwm.svg │ │ │ ├── bt.svg │ │ │ ├── buddy.svg │ │ │ ├── budibase.svg │ │ │ ├── buefy.svg │ │ │ ├── buffer.svg │ │ │ ├── bugatti.svg │ │ │ ├── bugcrowd.svg │ │ │ ├── bugsnag.svg │ │ │ ├── buhl.svg │ │ │ ├── buildkite.svg │ │ │ ├── builtbybit.svg │ │ │ ├── bukalapak.svg │ │ │ ├── bulma.svg │ │ │ ├── bun.svg │ │ │ ├── bungie.svg │ │ │ ├── bunq.svg │ │ │ ├── burgerking.svg │ │ │ ├── burpsuite.svg │ │ │ ├── burton.svg │ │ │ ├── buymeacoffee.svg │ │ │ ├── buysellads.svg │ │ │ ├── buzzfeed.svg │ │ │ ├── bvg.svg │ │ │ ├── byjus.svg │ │ │ ├── bytedance.svg │ │ │ ├── c.svg │ │ │ ├── cachet.svg │ │ │ ├── caddy.svg │ │ │ ├── cadillac.svg │ │ │ ├── cafepress.svg │ │ │ ├── caffeine.svg │ │ │ ├── cairographics.svg │ │ │ ├── cairometro.svg │ │ │ ├── caixabank.svg │ │ │ ├── cakephp.svg │ │ │ ├── caldotcom.svg │ │ │ ├── calendly.svg │ │ │ ├── calibreweb.svg │ │ │ ├── campaignmonitor.svg │ │ │ ├── camunda.svg │ │ │ ├── canonical.svg │ │ │ ├── canva.svg │ │ │ ├── canvas.svg │ │ │ ├── capacitor.svg │ │ │ ├── caprover.svg │ │ │ ├── cardano.svg │ │ │ ├── carlsberggroup.svg │ │ │ ├── carrd.svg │ │ │ ├── carrefour.svg │ │ │ ├── carthrottle.svg │ │ │ ├── carto.svg │ │ │ ├── cashapp.svg │ │ │ ├── castbox.svg │ │ │ ├── castorama.svg │ │ │ ├── castro.svg │ │ │ ├── caterpillar.svg │ │ │ ├── cbc.svg │ │ │ ├── cbs.svg │ │ │ ├── ccc.svg │ │ │ ├── ccleaner.svg │ │ │ ├── cdprojekt.svg │ │ │ ├── ce.svg │ │ │ ├── celery.svg │ │ │ ├── celestron.svg │ │ │ ├── centos.svg │ │ │ ├── ceph.svg │ │ │ ├── cesium.svg │ │ │ ├── chai.svg │ │ │ ├── chainguard.svg │ │ │ ├── chainlink.svg │ │ │ ├── chakraui.svg │ │ │ ├── channel4.svg │ │ │ ├── charles.svg │ │ │ ├── chartdotjs.svg │ │ │ ├── chartmogul.svg │ │ │ ├── chase.svg │ │ │ ├── chatbot.svg │ │ │ ├── chatwoot.svg │ │ │ ├── checkio.svg │ │ │ ├── checkmarx.svg │ │ │ ├── checkmk.svg │ │ │ ├── chedraui.svg │ │ │ ├── cheerio.svg │ │ │ ├── chef.svg │ │ │ ├── chemex.svg │ │ │ ├── chessdotcom.svg │ │ │ ├── chevrolet.svg │ │ │ ├── chianetwork.svg │ │ │ ├── chinaeasternairlines.svg │ │ │ ├── chinasouthernairlines.svg │ │ │ ├── chocolatey.svg │ │ │ ├── chromatic.svg │ │ │ ├── chromecast.svg │ │ │ ├── chromewebstore.svg │ │ │ ├── chrysler.svg │ │ │ ├── chupachups.svg │ │ │ ├── cilium.svg │ │ │ ├── cinema4d.svg │ │ │ ├── cinnamon.svg │ │ │ ├── circle.svg │ │ │ ├── circleci.svg │ │ │ ├── circuitverse.svg │ │ │ ├── cirrusci.svg │ │ │ ├── cisco.svg │ │ │ ├── citrix.svg │ │ │ ├── citroen.svg │ │ │ ├── civicrm.svg │ │ │ ├── civo.svg │ │ │ ├── ckeditor4.svg │ │ │ ├── clarifai.svg │ │ │ ├── claris.svg │ │ │ ├── clarivate.svg │ │ │ ├── claude.svg │ │ │ ├── clerk.svg │ │ │ ├── clevercloud.svg │ │ │ ├── clickhouse.svg │ │ │ ├── clickup.svg │ │ │ ├── clion.svg │ │ │ ├── cliqz.svg │ │ │ ├── clockify.svg │ │ │ ├── clojure.svg │ │ │ ├── cloud66.svg │ │ │ ├── cloudbees.svg │ │ │ ├── cloudcannon.svg │ │ │ ├── cloudera.svg │ │ │ ├── cloudflare.svg │ │ │ ├── cloudflarepages.svg │ │ │ ├── cloudflareworkers.svg │ │ │ ├── cloudfoundry.svg │ │ │ ├── cloudinary.svg │ │ │ ├── cloudron.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudways.svg │ │ │ ├── clubforce.svg │ │ │ ├── clubhouse.svg │ │ │ ├── clyp.svg │ │ │ ├── cmake.svg │ │ │ ├── cncf.svg │ │ │ ├── cnet.svg │ │ │ ├── cnn.svg │ │ │ ├── cocacola.svg │ │ │ ├── cockpit.svg │ │ │ ├── cockroachlabs.svg │ │ │ ├── cocoapods.svg │ │ │ ├── cocos.svg │ │ │ ├── coda.svg │ │ │ ├── codacy.svg │ │ │ ├── codeberg.svg │ │ │ ├── codeblocks.svg │ │ │ ├── codecademy.svg │ │ │ ├── codeceptjs.svg │ │ │ ├── codechef.svg │ │ │ ├── codeclimate.svg │ │ │ ├── codecov.svg │ │ │ ├── codecrafters.svg │ │ │ ├── codefactor.svg │ │ │ ├── codeforces.svg │ │ │ ├── codefresh.svg │ │ │ ├── codeigniter.svg │ │ │ ├── codeium.svg │ │ │ ├── codemagic.svg │ │ │ ├── codementor.svg │ │ │ ├── codemirror.svg │ │ │ ├── codenewbie.svg │ │ │ ├── codepen.svg │ │ │ ├── codeproject.svg │ │ │ ├── coder.svg │ │ │ ├── codersrank.svg │ │ │ ├── coderwall.svg │ │ │ ├── codesandbox.svg │ │ │ ├── codeship.svg │ │ │ ├── codesignal.svg │ │ │ ├── codestream.svg │ │ │ ├── codewars.svg │ │ │ ├── codingame.svg │ │ │ ├── codingninjas.svg │ │ │ ├── codio.svg │ │ │ ├── coffeescript.svg │ │ │ ├── coggle.svg │ │ │ ├── cognizant.svg │ │ │ ├── cohost.svg │ │ │ ├── coil.svg │ │ │ ├── coinbase.svg │ │ │ ├── coinmarketcap.svg │ │ │ ├── collaboraonline.svg │ │ │ ├── comicfury.svg │ │ │ ├── comma.svg │ │ │ ├── commerzbank.svg │ │ │ ├── commitlint.svg │ │ │ ├── commodore.svg │ │ │ ├── commonworkflowlanguage.svg │ │ │ ├── compilerexplorer.svg │ │ │ ├── composer.svg │ │ │ ├── comptia.svg │ │ │ ├── comsol.svg │ │ │ ├── conan.svg │ │ │ ├── concourse.svg │ │ │ ├── condaforge.svg │ │ │ ├── conekta.svg │ │ │ ├── confluence.svg │ │ │ ├── construct3.svg │ │ │ ├── consul.svg │ │ │ ├── contabo.svg │ │ │ ├── contactlesspayment.svg │ │ │ ├── containerd.svg │ │ │ ├── contao.svg │ │ │ ├── contentful.svg │ │ │ ├── contentstack.svg │ │ │ ├── continente.svg │ │ │ ├── contributorcovenant.svg │ │ │ ├── conventionalcommits.svg │ │ │ ├── convertio.svg │ │ │ ├── cookiecutter.svg │ │ │ ├── coolermaster.svg │ │ │ ├── coop.svg │ │ │ ├── copaairlines.svg │ │ │ ├── coppel.svg │ │ │ ├── cora.svg │ │ │ ├── coreldraw.svg │ │ │ ├── coronaengine.svg │ │ │ ├── coronarenderer.svg │ │ │ ├── corsair.svg │ │ │ ├── couchbase.svg │ │ │ ├── counterstrike.svg │ │ │ ├── countingworkspro.svg │ │ │ ├── coursera.svg │ │ │ ├── coveralls.svg │ │ │ ├── coze.svg │ │ │ ├── cpanel.svg │ │ │ ├── cplusplus.svg │ │ │ ├── cplusplusbuilder.svg │ │ │ ├── craftcms.svg │ │ │ ├── craftsman.svg │ │ │ ├── cratedb.svg │ │ │ ├── crayon.svg │ │ │ ├── creality.svg │ │ │ ├── createreactapp.svg │ │ │ ├── creativecommons.svg │ │ │ ├── creativetechnology.svg │ │ │ ├── credly.svg │ │ │ ├── crehana.svg │ │ │ ├── crewunited.svg │ │ │ ├── criticalrole.svg │ │ │ ├── crowdin.svg │ │ │ ├── crowdsource.svg │ │ │ ├── crunchbase.svg │ │ │ ├── crunchyroll.svg │ │ │ ├── cryengine.svg │ │ │ ├── cryptomator.svg │ │ │ ├── cryptpad.svg │ │ │ ├── crystal.svg │ │ │ ├── csdn.svg │ │ │ ├── css3.svg │ │ │ ├── cssdesignawards.svg │ │ │ ├── cssmodules.svg │ │ │ ├── csswizardry.svg │ │ │ ├── cts.svg │ │ │ ├── cucumber.svg │ │ │ ├── cultura.svg │ │ │ ├── curl.svg │ │ │ ├── curseforge.svg │ │ │ ├── customink.svg │ │ │ ├── cyberdefenders.svg │ │ │ ├── cycling74.svg │ │ │ ├── cypress.svg │ │ │ ├── cytoscapedotjs.svg │ │ │ ├── d.svg │ │ │ ├── d3dotjs.svg │ │ │ ├── dacia.svg │ │ │ ├── daf.svg │ │ │ ├── dailydotdev.svg │ │ │ ├── dailymotion.svg │ │ │ ├── daisyui.svg │ │ │ ├── dapr.svg │ │ │ ├── darkreader.svg │ │ │ ├── dart.svg │ │ │ ├── darty.svg │ │ │ ├── daserste.svg │ │ │ ├── dash.svg │ │ │ ├── dashlane.svg │ │ │ ├── dask.svg │ │ │ ├── dassaultsystemes.svg │ │ │ ├── databricks.svg │ │ │ ├── datacamp.svg │ │ │ ├── datadog.svg │ │ │ ├── datadotai.svg │ │ │ ├── datagrip.svg │ │ │ ├── dataiku.svg │ │ │ ├── datastax.svg │ │ │ ├── datefns.svg │ │ │ ├── datev.svg │ │ │ ├── datocms.svg │ │ │ ├── datto.svg │ │ │ ├── davinciresolve.svg │ │ │ ├── dazhongdianping.svg │ │ │ ├── dazn.svg │ │ │ ├── dbeaver.svg │ │ │ ├── dblp.svg │ │ │ ├── dbt.svg │ │ │ ├── dcentertainment.svg │ │ │ ├── debian.svg │ │ │ ├── debridlink.svg │ │ │ ├── decapcms.svg │ │ │ ├── decentraland.svg │ │ │ ├── dedge.svg │ │ │ ├── deepcool.svg │ │ │ ├── deepgram.svg │ │ │ ├── deepin.svg │ │ │ ├── deepl.svg │ │ │ ├── deepnote.svg │ │ │ ├── delicious.svg │ │ │ ├── deliveroo.svg │ │ │ ├── dell.svg │ │ │ ├── delonghi.svg │ │ │ ├── delphi.svg │ │ │ ├── delta.svg │ │ │ ├── deluge.svg │ │ │ ├── deno.svg │ │ │ ├── denon.svg │ │ │ ├── dependabot.svg │ │ │ ├── dependencycheck.svg │ │ │ ├── depositphotos.svg │ │ │ ├── derspiegel.svg │ │ │ ├── deutschebahn.svg │ │ │ ├── deutschebank.svg │ │ │ ├── deutschepost.svg │ │ │ ├── deutschewelle.svg │ │ │ ├── devdotto.svg │ │ │ ├── devexpress.svg │ │ │ ├── deviantart.svg │ │ │ ├── devpost.svg │ │ │ ├── devrant.svg │ │ │ ├── dgraph.svg │ │ │ ├── dhl.svg │ │ │ ├── diagramsdotnet.svg │ │ │ ├── dialogflow.svg │ │ │ ├── diaspora.svg │ │ │ ├── dictionarydotcom.svg │ │ │ ├── digg.svg │ │ │ ├── digikeyelectronics.svg │ │ │ ├── digitalocean.svg │ │ │ ├── dinersclub.svg │ │ │ ├── dior.svg │ │ │ ├── directus.svg │ │ │ ├── discogs.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── discover.svg │ │ │ ├── disqus.svg │ │ │ ├── disroot.svg │ │ │ ├── distrokid.svg │ │ │ ├── django.svg │ │ │ ├── dji.svg │ │ │ ├── dlib.svg │ │ │ ├── dlna.svg │ │ │ ├── dm.svg │ │ │ ├── docker.svg │ │ │ ├── docsdotrs.svg │ │ │ ├── docsify.svg │ │ │ ├── doctrine.svg │ │ │ ├── docusaurus.svg │ │ │ ├── dogecoin.svg │ │ │ ├── doi.svg │ │ │ ├── dolby.svg │ │ │ ├── doordash.svg │ │ │ ├── dota2.svg │ │ │ ├── dotenv.svg │ │ │ ├── dotnet.svg │ │ │ ├── douban.svg │ │ │ ├── doubanread.svg │ │ │ ├── dovecot.svg │ │ │ ├── dovetail.svg │ │ │ ├── downdetector.svg │ │ │ ├── doxygen.svg │ │ │ ├── dpd.svg │ │ │ ├── dragonframe.svg │ │ │ ├── draugiemdotlv.svg │ │ │ ├── dreamstime.svg │ │ │ ├── dribbble.svg │ │ │ ├── drizzle.svg │ │ │ ├── drone.svg │ │ │ ├── drooble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dsautomobiles.svg │ │ │ ├── dts.svg │ │ │ ├── dtube.svg │ │ │ ├── ducati.svg │ │ │ ├── duckdb.svg │ │ │ ├── duckduckgo.svg │ │ │ ├── dungeonsanddragons.svg │ │ │ ├── dunked.svg │ │ │ ├── dunzo.svg │ │ │ ├── duolingo.svg │ │ │ ├── duplicati.svg │ │ │ ├── dvc.svg │ │ │ ├── dwavesystems.svg │ │ │ ├── dwm.svg │ │ │ ├── dynatrace.svg │ │ │ ├── e.svg │ │ │ ├── e3.svg │ │ │ ├── ea.svg │ │ │ ├── eac.svg │ │ │ ├── eagle.svg │ │ │ ├── easyeda.svg │ │ │ ├── easyjet.svg │ │ │ ├── ebay.svg │ │ │ ├── ebox.svg │ │ │ ├── eclipseadoptium.svg │ │ │ ├── eclipseche.svg │ │ │ ├── eclipseide.svg │ │ │ ├── eclipsejetty.svg │ │ │ ├── eclipsemosquitto.svg │ │ │ ├── eclipsevertdotx.svg │ │ │ ├── ecosia.svg │ │ │ ├── ecovacs.svg │ │ │ ├── edeka.svg │ │ │ ├── edgeimpulse.svg │ │ │ ├── editorconfig.svg │ │ │ ├── edotleclerc.svg │ │ │ ├── educative.svg │ │ │ ├── edx.svg │ │ │ ├── egghead.svg │ │ │ ├── egnyte.svg │ │ │ ├── eight.svg │ │ │ ├── eightsleep.svg │ │ │ ├── ejs.svg │ │ │ ├── elastic.svg │ │ │ ├── elasticcloud.svg │ │ │ ├── elasticsearch.svg │ │ │ ├── elasticstack.svg │ │ │ ├── elavon.svg │ │ │ ├── electron.svg │ │ │ ├── electronbuilder.svg │ │ │ ├── electronfiddle.svg │ │ │ ├── elegoo.svg │ │ │ ├── element.svg │ │ │ ├── elementary.svg │ │ │ ├── elementor.svg │ │ │ ├── elevenlabs.svg │ │ │ ├── eleventy.svg │ │ │ ├── elgato.svg │ │ │ ├── elixir.svg │ │ │ ├── eljueves.svg │ │ │ ├── ello.svg │ │ │ ├── elm.svg │ │ │ ├── elsevier.svg │ │ │ ├── embarcadero.svg │ │ │ ├── embark.svg │ │ │ ├── emberdotjs.svg │ │ │ ├── emby.svg │ │ │ ├── emirates.svg │ │ │ ├── emlakjet.svg │ │ │ ├── empirekred.svg │ │ │ ├── endeavouros.svg │ │ │ ├── engadget.svg │ │ │ ├── enpass.svg │ │ │ ├── enterprisedb.svg │ │ │ ├── envato.svg │ │ │ ├── envoyproxy.svg │ │ │ ├── epel.svg │ │ │ ├── epicgames.svg │ │ │ ├── epson.svg │ │ │ ├── equinixmetal.svg │ │ │ ├── eraser.svg │ │ │ ├── ericsson.svg │ │ │ ├── erlang.svg │ │ │ ├── erpnext.svg │ │ │ ├── esbuild.svg │ │ │ ├── esea.svg │ │ │ ├── eslgaming.svg │ │ │ ├── eslint.svg │ │ │ ├── esotericsoftware.svg │ │ │ ├── esphome.svg │ │ │ ├── espressif.svg │ │ │ ├── esri.svg │ │ │ ├── etcd.svg │ │ │ ├── ethereum.svg │ │ │ ├── ethers.svg │ │ │ ├── ethiopianairlines.svg │ │ │ ├── etihadairways.svg │ │ │ ├── etsy.svg │ │ │ ├── europeanunion.svg │ │ │ ├── eventbrite.svg │ │ │ ├── eventstore.svg │ │ │ ├── evernote.svg │ │ │ ├── excalidraw.svg │ │ │ ├── exercism.svg │ │ │ ├── exordo.svg │ │ │ ├── exoscale.svg │ │ │ ├── expedia.svg │ │ │ ├── expensify.svg │ │ │ ├── expertsexchange.svg │ │ │ ├── expo.svg │ │ │ ├── express.svg │ │ │ ├── expressdotcom.svg │ │ │ ├── expressvpn.svg │ │ │ ├── eyeem.svg │ │ │ ├── f1.svg │ │ │ ├── f5.svg │ │ │ ├── facebook.svg │ │ │ ├── facebookgaming.svg │ │ │ ├── facebooklive.svg │ │ │ ├── faceit.svg │ │ │ ├── facepunch.svg │ │ │ ├── fairphone.svg │ │ │ ├── falco.svg │ │ │ ├── falcon.svg │ │ │ ├── fampay.svg │ │ │ ├── fandango.svg │ │ │ ├── fandom.svg │ │ │ ├── fanfou.svg │ │ │ ├── fantom.svg │ │ │ ├── farcaster.svg │ │ │ ├── fareharbor.svg │ │ │ ├── farfetch.svg │ │ │ ├── fastapi.svg │ │ │ ├── fastify.svg │ │ │ ├── fastlane.svg │ │ │ ├── fastly.svg │ │ │ ├── fathom.svg │ │ │ ├── fauna.svg │ │ │ ├── favro.svg │ │ │ ├── fcc.svg │ │ │ ├── fdroid.svg │ │ │ ├── feathub.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── feedly.svg │ │ │ ├── ferrari.svg │ │ │ ├── ferrarinv.svg │ │ │ ├── ferretdb.svg │ │ │ ├── ffmpeg.svg │ │ │ ├── fi.svg │ │ │ ├── fiat.svg │ │ │ ├── fidoalliance.svg │ │ │ ├── fifa.svg │ │ │ ├── fig.svg │ │ │ ├── figma.svg │ │ │ ├── figshare.svg │ │ │ ├── fila.svg │ │ │ ├── filament.svg │ │ │ ├── filedotio.svg │ │ │ ├── files.svg │ │ │ ├── filezilla.svg │ │ │ ├── fineco.svg │ │ │ ├── fing.svg │ │ │ ├── firebase.svg │ │ │ ├── firefish.svg │ │ │ ├── fireflyiii.svg │ │ │ ├── firefox.svg │ │ │ ├── firefoxbrowser.svg │ │ │ ├── fireship.svg │ │ │ ├── firewalla.svg │ │ │ ├── first.svg │ │ │ ├── fishshell.svg │ │ │ ├── fitbit.svg │ │ │ ├── fivem.svg │ │ │ ├── fiverr.svg │ │ │ ├── fizz.svg │ │ │ ├── flashforge.svg │ │ │ ├── flask.svg │ │ │ ├── flat.svg │ │ │ ├── flathub.svg │ │ │ ├── flatpak.svg │ │ │ ├── flickr.svg │ │ │ ├── flightaware.svg │ │ │ ├── flipboard.svg │ │ │ ├── flipkart.svg │ │ │ ├── floatplane.svg │ │ │ ├── flood.svg │ │ │ ├── fluentbit.svg │ │ │ ├── fluentd.svg │ │ │ ├── fluke.svg │ │ │ ├── flutter.svg │ │ │ ├── flux.svg │ │ │ ├── fluxus.svg │ │ │ ├── flydotio.svg │ │ │ ├── flyway.svg │ │ │ ├── fmod.svg │ │ │ ├── fnac.svg │ │ │ ├── folium.svg │ │ │ ├── fonoma.svg │ │ │ ├── fontawesome.svg │ │ │ ├── fontbase.svg │ │ │ ├── fontforge.svg │ │ │ ├── foobar2000.svg │ │ │ ├── foodpanda.svg │ │ │ ├── ford.svg │ │ │ ├── forgejo.svg │ │ │ ├── formik.svg │ │ │ ├── formspree.svg │ │ │ ├── formstack.svg │ │ │ ├── fortinet.svg │ │ │ ├── fortran.svg │ │ │ ├── fossa.svg │ │ │ ├── fossilscm.svg │ │ │ ├── foundryvirtualtabletop.svg │ │ │ ├── foursquare.svg │ │ │ ├── foursquarecityguide.svg │ │ │ ├── fox.svg │ │ │ ├── foxtel.svg │ │ │ ├── fozzy.svg │ │ │ ├── framer.svg │ │ │ ├── framework.svg │ │ │ ├── framework7.svg │ │ │ ├── franprix.svg │ │ │ ├── frappe.svg │ │ │ ├── fraunhofergesellschaft.svg │ │ │ ├── freebsd.svg │ │ │ ├── freecad.svg │ │ │ ├── freecodecamp.svg │ │ │ ├── freedesktopdotorg.svg │ │ │ ├── freelancer.svg │ │ │ ├── freelancermap.svg │ │ │ ├── freenas.svg │ │ │ ├── freenet.svg │ │ │ ├── freepik.svg │ │ │ ├── fresh.svg │ │ │ ├── frontendmentor.svg │ │ │ ├── frontify.svg │ │ │ ├── fsecure.svg │ │ │ ├── fsharp.svg │ │ │ ├── fubo.svg │ │ │ ├── fueler.svg │ │ │ ├── fugacloud.svg │ │ │ ├── fujifilm.svg │ │ │ ├── fujitsu.svg │ │ │ ├── funimation.svg │ │ │ ├── furaffinity.svg │ │ │ ├── furrynetwork.svg │ │ │ ├── fusionauth.svg │ │ │ ├── futurelearn.svg │ │ │ ├── g2.svg │ │ │ ├── g2a.svg │ │ │ ├── g2g.svg │ │ │ ├── galaxus.svg │ │ │ ├── gameandwatch.svg │ │ │ ├── gamebanana.svg │ │ │ ├── gamedeveloper.svg │ │ │ ├── gamejolt.svg │ │ │ ├── gameloft.svg │ │ │ ├── gamemaker.svg │ │ │ ├── gamescience.svg │ │ │ ├── garmin.svg │ │ │ ├── gatling.svg │ │ │ ├── gatsby.svg │ │ │ ├── gcore.svg │ │ │ ├── gdal.svg │ │ │ ├── geant.svg │ │ │ ├── geeksforgeeks.svg │ │ │ ├── generalelectric.svg │ │ │ ├── generalmotors.svg │ │ │ ├── genius.svg │ │ │ ├── gentoo.svg │ │ │ ├── geocaching.svg │ │ │ ├── geode.svg │ │ │ ├── geopandas.svg │ │ │ ├── gerrit.svg │ │ │ ├── getx.svg │ │ │ ├── ghost.svg │ │ │ ├── ghostery.svg │ │ │ ├── gimp.svg │ │ │ ├── gin.svg │ │ │ ├── giphy.svg │ │ │ ├── git.svg │ │ │ ├── gitbook.svg │ │ │ ├── gitconnected.svg │ │ │ ├── gitea.svg │ │ │ ├── gitee.svg │ │ │ ├── gitextensions.svg │ │ │ ├── gitforwindows.svg │ │ │ ├── github.svg │ │ │ ├── githubactions.svg │ │ │ ├── githubcopilot.svg │ │ │ ├── githubpages.svg │ │ │ ├── githubsponsors.svg │ │ │ ├── gitignoredotio.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitlfs.svg │ │ │ ├── gitpod.svg │ │ │ ├── gitter.svg │ │ │ ├── glassdoor.svg │ │ │ ├── glide.svg │ │ │ ├── glitch.svg │ │ │ ├── globus.svg │ │ │ ├── glovo.svg │ │ │ ├── gltf.svg │ │ │ ├── gmail.svg │ │ │ ├── gmx.svg │ │ │ ├── gnome.svg │ │ │ ├── gnometerminal.svg │ │ │ ├── gnu.svg │ │ │ ├── gnubash.svg │ │ │ ├── gnuemacs.svg │ │ │ ├── gnuicecat.svg │ │ │ ├── gnuprivacyguard.svg │ │ │ ├── gnusocial.svg │ │ │ ├── go.svg │ │ │ ├── gocd.svg │ │ │ ├── godaddy.svg │ │ │ ├── godotengine.svg │ │ │ ├── gofundme.svg │ │ │ ├── gogdotcom.svg │ │ │ ├── gojek.svg │ │ │ ├── goland.svg │ │ │ ├── goldenline.svg │ │ │ ├── goldmansachs.svg │ │ │ ├── goodreads.svg │ │ │ ├── google.svg │ │ │ ├── googleadmob.svg │ │ │ ├── googleads.svg │ │ │ ├── googleadsense.svg │ │ │ ├── googleanalytics.svg │ │ │ ├── googleappsscript.svg │ │ │ ├── googleassistant.svg │ │ │ ├── googleauthenticator.svg │ │ │ ├── googlebigquery.svg │ │ │ ├── googlebigtable.svg │ │ │ ├── googlecalendar.svg │ │ │ ├── googlecampaignmanager360.svg │ │ │ ├── googlecardboard.svg │ │ │ ├── googlechat.svg │ │ │ ├── googlechrome.svg │ │ │ ├── googlechronicle.svg │ │ │ ├── googleclassroom.svg │ │ │ ├── googlecloud.svg │ │ │ ├── googlecloudcomposer.svg │ │ │ ├── googlecloudspanner.svg │ │ │ ├── googlecloudstorage.svg │ │ │ ├── googlecolab.svg │ │ │ ├── googlecontaineroptimizedos.svg │ │ │ ├── googledataflow.svg │ │ │ ├── googledataproc.svg │ │ │ ├── googledatastudio.svg │ │ │ ├── googledisplayandvideo360.svg │ │ │ ├── googledocs.svg │ │ │ ├── googledrive.svg │ │ │ ├── googleearth.svg │ │ │ ├── googleearthengine.svg │ │ │ ├── googlefit.svg │ │ │ ├── googlefonts.svg │ │ │ ├── googleforms.svg │ │ │ ├── googlegemini.svg │ │ │ ├── googlehome.svg │ │ │ ├── googlekeep.svg │ │ │ ├── googlelens.svg │ │ │ ├── googlemaps.svg │ │ │ ├── googlemarketingplatform.svg │ │ │ ├── googlemeet.svg │ │ │ ├── googlemessages.svg │ │ │ ├── googlenearby.svg │ │ │ ├── googlenews.svg │ │ │ ├── googlepay.svg │ │ │ ├── googlephotos.svg │ │ │ ├── googleplay.svg │ │ │ ├── googlepubsub.svg │ │ │ ├── googlescholar.svg │ │ │ ├── googlesearchconsole.svg │ │ │ ├── googlesheets.svg │ │ │ ├── googleslides.svg │ │ │ ├── googlestreetview.svg │ │ │ ├── googletagmanager.svg │ │ │ ├── googletasks.svg │ │ │ ├── googletranslate.svg │ │ │ ├── gotomeeting.svg │ │ │ ├── grab.svg │ │ │ ├── gradle.svg │ │ │ ├── gradleplaypublisher.svg │ │ │ ├── grafana.svg │ │ │ ├── grammarly.svg │ │ │ ├── grandfrais.svg │ │ │ ├── grapheneos.svg │ │ │ ├── graphite.svg │ │ │ ├── graphql.svg │ │ │ ├── grav.svg │ │ │ ├── gravatar.svg │ │ │ ├── graylog.svg │ │ │ ├── greasyfork.svg │ │ │ ├── greatlearning.svg │ │ │ ├── greenhouse.svg │ │ │ ├── greensock.svg │ │ │ ├── griddotai.svg │ │ │ ├── gridsome.svg │ │ │ ├── grocy.svg │ │ │ ├── groupme.svg │ │ │ ├── groupon.svg │ │ │ ├── grubhub.svg │ │ │ ├── grunt.svg │ │ │ ├── gsk.svg │ │ │ ├── gsmarenadotcom.svg │ │ │ ├── gstreamer.svg │ │ │ ├── gtk.svg │ │ │ ├── guangzhoumetro.svg │ │ │ ├── guilded.svg │ │ │ ├── guitarpro.svg │ │ │ ├── gulp.svg │ │ │ ├── gumroad.svg │ │ │ ├── gumtree.svg │ │ │ ├── gunicorn.svg │ │ │ ├── gurobi.svg │ │ │ ├── gusto.svg │ │ │ ├── gutenberg.svg │ │ │ ├── h3.svg │ │ │ ├── habr.svg │ │ │ ├── hackaday.svg │ │ │ ├── hackclub.svg │ │ │ ├── hackerearth.svg │ │ │ ├── hackernoon.svg │ │ │ ├── hackerone.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hackster.svg │ │ │ ├── hackthebox.svg │ │ │ ├── hal.svg │ │ │ ├── handlebarsdotjs.svg │ │ │ ├── handm.svg │ │ │ ├── handshake.svg │ │ │ ├── handshake_protocol.svg │ │ │ ├── happycow.svg │ │ │ ├── harbor.svg │ │ │ ├── harmonyos.svg │ │ │ ├── hashicorp.svg │ │ │ ├── hashnode.svg │ │ │ ├── haskell.svg │ │ │ ├── hasura.svg │ │ │ ├── hatenabookmark.svg │ │ │ ├── haveibeenpwned.svg │ │ │ ├── haxe.svg │ │ │ ├── hbo.svg │ │ │ ├── hcl.svg │ │ │ ├── hdfcbank.svg │ │ │ ├── headlessui.svg │ │ │ ├── headphonezone.svg │ │ │ ├── headspace.svg │ │ │ ├── hearth.svg │ │ │ ├── hearthisdotat.svg │ │ │ ├── hedera.svg │ │ │ ├── helium.svg │ │ │ ├── helix.svg │ │ │ ├── hellofresh.svg │ │ │ ├── hellyhansen.svg │ │ │ ├── helm.svg │ │ │ ├── helpdesk.svg │ │ │ ├── helpscout.svg │ │ │ ├── hepsiemlak.svg │ │ │ ├── here.svg │ │ │ ├── hermes.svg │ │ │ ├── heroku.svg │ │ │ ├── hetzner.svg │ │ │ ├── hevy.svg │ │ │ ├── hexlet.svg │ │ │ ├── hexo.svg │ │ │ ├── hey.svg │ │ │ ├── hibernate.svg │ │ │ ├── hibob.svg │ │ │ ├── hilton.svg │ │ │ ├── hiltonhotelsandresorts.svg │ │ │ ├── hitachi.svg │ │ │ ├── hive.svg │ │ │ ├── hive_blockchain.svg │ │ │ ├── hivemq.svg │ │ │ ├── homarr.svg │ │ │ ├── homeadvisor.svg │ │ │ ├── homeassistant.svg │ │ │ ├── homeassistantcommunitystore.svg │ │ │ ├── homebrew.svg │ │ │ ├── homebridge.svg │ │ │ ├── homepage.svg │ │ │ ├── homify.svg │ │ │ ├── honda.svg │ │ │ ├── honey.svg │ │ │ ├── honeybadger.svg │ │ │ ├── honeygain.svg │ │ │ ├── hono.svg │ │ │ ├── honor.svg │ │ │ ├── hootsuite.svg │ │ │ ├── hoppscotch.svg │ │ │ ├── hostinger.svg │ │ │ ├── hotelsdotcom.svg │ │ │ ├── hotjar.svg │ │ │ ├── hotwire.svg │ │ │ ├── houdini.svg │ │ │ ├── houzz.svg │ │ │ ├── hp.svg │ │ │ ├── hsbc.svg │ │ │ ├── htc.svg │ │ │ ├── htcvive.svg │ │ │ ├── html5.svg │ │ │ ├── htmlacademy.svg │ │ │ ├── htmx.svg │ │ │ ├── htop.svg │ │ │ ├── httpie.svg │ │ │ ├── huawei.svg │ │ │ ├── hubspot.svg │ │ │ ├── huggingface.svg │ │ │ ├── hugo.svg │ │ │ ├── humblebundle.svg │ │ │ ├── humhub.svg │ │ │ ├── hungryjacks.svg │ │ │ ├── husqvarna.svg │ │ │ ├── hyper.svg │ │ │ ├── hyperskill.svg │ │ │ ├── hyperx.svg │ │ │ ├── hypothesis.svg │ │ │ ├── hyprland.svg │ │ │ ├── hyundai.svg │ │ │ ├── i18next.svg │ │ │ ├── i3.svg │ │ │ ├── iata.svg │ │ │ ├── ibeacon.svg │ │ │ ├── iberia.svg │ │ │ ├── iced.svg │ │ │ ├── iceland.svg │ │ │ ├── icicibank.svg │ │ │ ├── icinga.svg │ │ │ ├── icloud.svg │ │ │ ├── icomoon.svg │ │ │ ├── icon.svg │ │ │ ├── iconfinder.svg │ │ │ ├── iconify.svg │ │ │ ├── iconjar.svg │ │ │ ├── icons8.svg │ │ │ ├── icq.svg │ │ │ ├── ieee.svg │ │ │ ├── ifixit.svg │ │ │ ├── ifood.svg │ │ │ ├── ifttt.svg │ │ │ ├── igdb.svg │ │ │ ├── ign.svg │ │ │ ├── iheartradio.svg │ │ │ ├── ikea.svg │ │ │ ├── iledefrancemobilites.svg │ │ │ ├── imagedotsc.svg │ │ │ ├── imagej.svg │ │ │ ├── imdb.svg │ │ │ ├── imessage.svg │ │ │ ├── imgur.svg │ │ │ ├── immer.svg │ │ │ ├── immich.svg │ │ │ ├── imou.svg │ │ │ ├── improvmx.svg │ │ │ ├── indeed.svg │ │ │ ├── indiansuperleague.svg │ │ │ ├── indiehackers.svg │ │ │ ├── indigo.svg │ │ │ ├── inductiveautomation.svg │ │ │ ├── inertia.svg │ │ │ ├── infiniti.svg │ │ │ ├── influxdb.svg │ │ │ ├── infomaniak.svg │ │ │ ├── infoq.svg │ │ │ ├── informatica.svg │ │ │ ├── infosys.svg │ │ │ ├── infracost.svg │ │ │ ├── ingress.svg │ │ │ ├── inkdrop.svg │ │ │ ├── inkscape.svg │ │ │ ├── inoreader.svg │ │ │ ├── insomnia.svg │ │ │ ├── inspire.svg │ │ │ ├── insta360.svg │ │ │ ├── instacart.svg │ │ │ ├── instagram.svg │ │ │ ├── instapaper.svg │ │ │ ├── instatus.svg │ │ │ ├── instructables.svg │ │ │ ├── instructure.svg │ │ │ ├── intel.svg │ │ │ ├── intellijidea.svg │ │ │ ├── interactiondesignfoundation.svg │ │ │ ├── interactjs.svg │ │ │ ├── interbase.svg │ │ │ ├── intercom.svg │ │ │ ├── intermarche.svg │ │ │ ├── internetarchive.svg │ │ │ ├── internetcomputer.svg │ │ │ ├── intigriti.svg │ │ │ ├── intuit.svg │ │ │ ├── invision.svg │ │ │ ├── invoiceninja.svg │ │ │ ├── iobroker.svg │ │ │ ├── ionic.svg │ │ │ ├── ionos.svg │ │ │ ├── ios.svg │ │ │ ├── iota.svg │ │ │ ├── ipfs.svg │ │ │ ├── iris.svg │ │ │ ├── irobot.svg │ │ │ ├── isc2.svg │ │ │ ├── issuu.svg │ │ │ ├── istio.svg │ │ │ ├── itchdotio.svg │ │ │ ├── iterm2.svg │ │ │ ├── itunes.svg │ │ │ ├── itvx.svg │ │ │ ├── iveco.svg │ │ │ ├── jabber.svg │ │ │ ├── jaeger.svg │ │ │ ├── jaguar.svg │ │ │ ├── jamboard.svg │ │ │ ├── jameson.svg │ │ │ ├── jamstack.svg │ │ │ ├── japanairlines.svg │ │ │ ├── jasmine.svg │ │ │ ├── javascript.svg │ │ │ ├── jbl.svg │ │ │ ├── jcb.svg │ │ │ ├── jeep.svg │ │ │ ├── jekyll.svg │ │ │ ├── jellyfin.svg │ │ │ ├── jenkins.svg │ │ │ ├── jest.svg │ │ │ ├── jet.svg │ │ │ ├── jetblue.svg │ │ │ ├── jetbrains.svg │ │ │ ├── jetpackcompose.svg │ │ │ ├── jfrog.svg │ │ │ ├── jfrogpipelines.svg │ │ │ ├── jhipster.svg │ │ │ ├── jinja.svg │ │ │ ├── jio.svg │ │ │ ├── jira.svg │ │ │ ├── jirasoftware.svg │ │ │ ├── jitpack.svg │ │ │ ├── jitsi.svg │ │ │ ├── johndeere.svg │ │ │ ├── joomla.svg │ │ │ ├── joplin.svg │ │ │ ├── jordan.svg │ │ │ ├── jouav.svg │ │ │ ├── jovian.svg │ │ │ ├── jpeg.svg │ │ │ ├── jquery.svg │ │ │ ├── jrgroup.svg │ │ │ ├── jsdelivr.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── json.svg │ │ │ ├── jsonwebtokens.svg │ │ │ ├── jsr.svg │ │ │ ├── jss.svg │ │ │ ├── juce.svg │ │ │ ├── juejin.svg │ │ │ ├── juke.svg │ │ │ ├── julia.svg │ │ │ ├── junipernetworks.svg │ │ │ ├── junit5.svg │ │ │ ├── jupyter.svg │ │ │ ├── justeat.svg │ │ │ ├── justgiving.svg │ │ │ ├── k3s.svg │ │ │ ├── k6.svg │ │ │ ├── kaggle.svg │ │ │ ├── kagi.svg │ │ │ ├── kahoot.svg │ │ │ ├── kaios.svg │ │ │ ├── kakao.svg │ │ │ ├── kakaotalk.svg │ │ │ ├── kalilinux.svg │ │ │ ├── kamailio.svg │ │ │ ├── kaniko.svg │ │ │ ├── karlsruherverkehrsverbund.svg │ │ │ ├── kasasmart.svg │ │ │ ├── kashflow.svg │ │ │ ├── kaspersky.svg │ │ │ ├── katacoda.svg │ │ │ ├── katana.svg │ │ │ ├── kaufland.svg │ │ │ ├── kde.svg │ │ │ ├── kdenlive.svg │ │ │ ├── kdeplasma.svg │ │ │ ├── kedro.svg │ │ │ ├── keenetic.svg │ │ │ ├── keepachangelog.svg │ │ │ ├── keepassxc.svg │ │ │ ├── keeper.svg │ │ │ ├── keeweb.svg │ │ │ ├── kentico.svg │ │ │ ├── keras.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── keycloak.svg │ │ │ ├── keystone.svg │ │ │ ├── kfc.svg │ │ │ ├── khanacademy.svg │ │ │ ├── khronosgroup.svg │ │ │ ├── kia.svg │ │ │ ├── kibana.svg │ │ │ ├── kicad.svg │ │ │ ├── kick.svg │ │ │ ├── kickstarter.svg │ │ │ ├── kik.svg │ │ │ ├── kingstontechnology.svg │ │ │ ├── kinopoisk.svg │ │ │ ├── kinsta.svg │ │ │ ├── kirby.svg │ │ │ ├── kit.svg │ │ │ ├── kitsu.svg │ │ │ ├── klarna.svg │ │ │ ├── kleinanzeigen.svg │ │ │ ├── klm.svg │ │ │ ├── klook.svg │ │ │ ├── knative.svg │ │ │ ├── knexdotjs.svg │ │ │ ├── knime.svg │ │ │ ├── knip.svg │ │ │ ├── knowledgebase.svg │ │ │ ├── known.svg │ │ │ ├── koa.svg │ │ │ ├── koc.svg │ │ │ ├── kodak.svg │ │ │ ├── kodi.svg │ │ │ ├── koenigsegg.svg │ │ │ ├── kofax.svg │ │ │ ├── kofi.svg │ │ │ ├── komoot.svg │ │ │ ├── konami.svg │ │ │ ├── kong.svg │ │ │ ├── kongregate.svg │ │ │ ├── konva.svg │ │ │ ├── kotlin.svg │ │ │ ├── koyeb.svg │ │ │ ├── krita.svg │ │ │ ├── ktm.svg │ │ │ ├── ktor.svg │ │ │ ├── kuaishou.svg │ │ │ ├── kubernetes.svg │ │ │ ├── kubuntu.svg │ │ │ ├── kucoin.svg │ │ │ ├── kueski.svg │ │ │ ├── kuma.svg │ │ │ ├── kununu.svg │ │ │ ├── kuula.svg │ │ │ ├── kx.svg │ │ │ ├── kyocera.svg │ │ │ ├── labview.svg │ │ │ ├── lada.svg │ │ │ ├── lamborghini.svg │ │ │ ├── landrover.svg │ │ │ ├── langchain.svg │ │ │ ├── languagetool.svg │ │ │ ├── lapce.svg │ │ │ ├── laragon.svg │ │ │ ├── laravel.svg │ │ │ ├── laravelhorizon.svg │ │ │ ├── laravelnova.svg │ │ │ ├── lastdotfm.svg │ │ │ ├── lastpass.svg │ │ │ ├── latex.svg │ │ │ ├── launchpad.svg │ │ │ ├── lazarus.svg │ │ │ ├── lazyvim.svg │ │ │ ├── lbry.svg │ │ │ ├── leaderprice.svg │ │ │ ├── leaflet.svg │ │ │ ├── leagueoflegends.svg │ │ │ ├── leanpub.svg │ │ │ ├── leetcode.svg │ │ │ ├── lefthook.svg │ │ │ ├── legacygames.svg │ │ │ ├── leica.svg │ │ │ ├── lemmy.svg │ │ │ ├── lemonsqueezy.svg │ │ │ ├── lenovo.svg │ │ │ ├── lens.svg │ │ │ ├── leptos.svg │ │ │ ├── lequipe.svg │ │ │ ├── lerna.svg │ │ │ ├── leroymerlin.svg │ │ │ ├── leslibraires.svg │ │ │ ├── less.svg │ │ │ ├── letsencrypt.svg │ │ │ ├── letterboxd.svg │ │ │ ├── levelsdotfyi.svg │ │ │ ├── lg.svg │ │ │ ├── liberadotchat.svg │ │ │ ├── liberapay.svg │ │ │ ├── librariesdotio.svg │ │ │ ├── librarything.svg │ │ │ ├── libreoffice.svg │ │ │ ├── libreofficebase.svg │ │ │ ├── libreofficecalc.svg │ │ │ ├── libreofficedraw.svg │ │ │ ├── libreofficeimpress.svg │ │ │ ├── libreofficemath.svg │ │ │ ├── libreofficewriter.svg │ │ │ ├── libretranslate.svg │ │ │ ├── libretube.svg │ │ │ ├── librewolf.svg │ │ │ ├── libuv.svg │ │ │ ├── lichess.svg │ │ │ ├── lidl.svg │ │ │ ├── lifx.svg │ │ │ ├── lightburn.svg │ │ │ ├── lighthouse.svg │ │ │ ├── lightning.svg │ │ │ ├── limesurvey.svg │ │ │ ├── line.svg │ │ │ ├── lineageos.svg │ │ │ ├── linear.svg │ │ │ ├── lining.svg │ │ │ ├── linkedin.svg │ │ │ ├── linkerd.svg │ │ │ ├── linkfire.svg │ │ │ ├── linksys.svg │ │ │ ├── linktree.svg │ │ │ ├── linphone.svg │ │ │ ├── lintcode.svg │ │ │ ├── linux.svg │ │ │ ├── linuxcontainers.svg │ │ │ ├── linuxfoundation.svg │ │ │ ├── linuxmint.svg │ │ │ ├── linuxprofessionalinstitute.svg │ │ │ ├── linuxserver.svg │ │ │ ├── lionair.svg │ │ │ ├── liquibase.svg │ │ │ ├── listmonk.svg │ │ │ ├── lit.svg │ │ │ ├── litecoin.svg │ │ │ ├── literal.svg │ │ │ ├── litiengine.svg │ │ │ ├── livechat.svg │ │ │ ├── livejournal.svg │ │ │ ├── livewire.svg │ │ │ ├── llvm.svg │ │ │ ├── lmms.svg │ │ │ ├── lobsters.svg │ │ │ ├── local.svg │ │ │ ├── lodash.svg │ │ │ ├── logitech.svg │ │ │ ├── logitechg.svg │ │ │ ├── logmein.svg │ │ │ ├── logseq.svg │ │ │ ├── logstash.svg │ │ │ ├── looker.svg │ │ │ ├── loom.svg │ │ │ ├── loop.svg │ │ │ ├── loopback.svg │ │ │ ├── lootcrate.svg │ │ │ ├── lospec.svg │ │ │ ├── lotpolishairlines.svg │ │ │ ├── ltspice.svg │ │ │ ├── lua.svg │ │ │ ├── lubuntu.svg │ │ │ ├── lucia.svg │ │ │ ├── lucid.svg │ │ │ ├── lucide.svg │ │ │ ├── ludwig.svg │ │ │ ├── lufthansa.svg │ │ │ ├── lumen.svg │ │ │ ├── lunacy.svg │ │ │ ├── lutris.svg │ │ │ ├── lvgl.svg │ │ │ ├── lydia.svg │ │ │ ├── lyft.svg │ │ │ ├── maas.svg │ │ │ ├── macos.svg │ │ │ ├── macpaw.svg │ │ │ ├── macys.svg │ │ │ ├── magasinsu.svg │ │ │ ├── magento.svg │ │ │ ├── magic.svg │ │ │ ├── magisk.svg │ │ │ ├── mahindra.svg │ │ │ ├── mailboxdotorg.svg │ │ │ ├── mailchimp.svg │ │ │ ├── maildotcom.svg │ │ │ ├── maildotru.svg │ │ │ ├── mailgun.svg │ │ │ ├── mailtrap.svg │ │ │ ├── mainwp.svg │ │ │ ├── majorleaguehacking.svg │ │ │ ├── make.svg │ │ │ ├── makerbot.svg │ │ │ ├── malt.svg │ │ │ ├── malwarebytes.svg │ │ │ ├── mambaui.svg │ │ │ ├── mamp.svg │ │ │ ├── man.svg │ │ │ ├── manageiq.svg │ │ │ ├── manjaro.svg │ │ │ ├── mantine.svg │ │ │ ├── mapbox.svg │ │ │ ├── mapillary.svg │ │ │ ├── maplibre.svg │ │ │ ├── maptiler.svg │ │ │ ├── mariadb.svg │ │ │ ├── mariadbfoundation.svg │ │ │ ├── markdown.svg │ │ │ ├── marketo.svg │ │ │ ├── marko.svg │ │ │ ├── marriott.svg │ │ │ ├── marvelapp.svg │ │ │ ├── maserati.svg │ │ │ ├── mastercard.svg │ │ │ ├── mastercomfig.svg │ │ │ ├── mastodon.svg │ │ │ ├── materialdesign.svg │ │ │ ├── materialdesignicons.svg │ │ │ ├── materialformkdocs.svg │ │ │ ├── matillion.svg │ │ │ ├── matomo.svg │ │ │ ├── matrix.svg │ │ │ ├── matterdotjs.svg │ │ │ ├── mattermost.svg │ │ │ ├── matternet.svg │ │ │ ├── mautic.svg │ │ │ ├── max.svg │ │ │ ├── maxplanckgesellschaft.svg │ │ │ ├── maytag.svg │ │ │ ├── mazda.svg │ │ │ ├── maze.svg │ │ │ ├── mcafee.svg │ │ │ ├── mcdonalds.svg │ │ │ ├── mclaren.svg │ │ │ ├── mdbook.svg │ │ │ ├── mdnwebdocs.svg │ │ │ ├── mdx.svg │ │ │ ├── mediafire.svg │ │ │ ├── mediamarkt.svg │ │ │ ├── mediapipe.svg │ │ │ ├── mediatek.svg │ │ │ ├── medibangpaint.svg │ │ │ ├── medium.svg │ │ │ ├── medusa.svg │ │ │ ├── meetup.svg │ │ │ ├── mega.svg │ │ │ ├── meilisearch.svg │ │ │ ├── meituan.svg │ │ │ ├── meizu.svg │ │ │ ├── mendeley.svg │ │ │ ├── mentorcruise.svg │ │ │ ├── mercadopago.svg │ │ │ ├── mercedes.svg │ │ │ ├── merck.svg │ │ │ ├── mercurial.svg │ │ │ ├── mermaid.svg │ │ │ ├── messenger.svg │ │ │ ├── meta.svg │ │ │ ├── metabase.svg │ │ │ ├── metacritic.svg │ │ │ ├── metafilter.svg │ │ │ ├── metasploit.svg │ │ │ ├── meteor.svg │ │ │ ├── metro.svg │ │ │ ├── metrodelaciudaddemexico.svg │ │ │ ├── metrodemadrid.svg │ │ │ ├── metrodeparis.svg │ │ │ ├── mewe.svg │ │ │ ├── mg.svg │ │ │ ├── microbit.svg │ │ │ ├── microdotblog.svg │ │ │ ├── microeditor.svg │ │ │ ├── microgenetics.svg │ │ │ ├── micropython.svg │ │ │ ├── microstation.svg │ │ │ ├── microstrategy.svg │ │ │ ├── midi.svg │ │ │ ├── migadu.svg │ │ │ ├── mihoyo.svg │ │ │ ├── mikrotik.svg │ │ │ ├── milanote.svg │ │ │ ├── milvus.svg │ │ │ ├── minds.svg │ │ │ ├── minetest.svg │ │ │ ├── mingww64.svg │ │ │ ├── mini.svg │ │ │ ├── minio.svg │ │ │ ├── mintlify.svg │ │ │ ├── minutemailer.svg │ │ │ ├── miraheze.svg │ │ │ ├── miro.svg │ │ │ ├── misskey.svg │ │ │ ├── mitsubishi.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixpanel.svg │ │ │ ├── mlb.svg │ │ │ ├── mlflow.svg │ │ │ ├── mobx.svg │ │ │ ├── mobxstatetree.svg │ │ │ ├── mocha.svg │ │ │ ├── mockserviceworker.svg │ │ │ ├── modal.svg │ │ │ ├── modin.svg │ │ │ ├── modrinth.svg │ │ │ ├── modx.svg │ │ │ ├── mojeek.svg │ │ │ ├── moleculer.svg │ │ │ ├── momenteo.svg │ │ │ ├── monero.svg │ │ │ ├── moneygram.svg │ │ │ ├── mongodb.svg │ │ │ ├── mongoose.svg │ │ │ ├── mongoosedotws.svg │ │ │ ├── monica.svg │ │ │ ├── monkeytie.svg │ │ │ ├── monkeytype.svg │ │ │ ├── monogame.svg │ │ │ ├── monoprix.svg │ │ │ ├── monster.svg │ │ │ ├── monzo.svg │ │ │ ├── moo.svg │ │ │ ├── moodle.svg │ │ │ ├── moonrepo.svg │ │ │ ├── moq.svg │ │ │ ├── moqups.svg │ │ │ ├── morrisons.svg │ │ │ ├── moscowmetro.svg │ │ │ ├── motorola.svg │ │ │ ├── movistar.svg │ │ │ ├── mozilla.svg │ │ │ ├── mpv.svg │ │ │ ├── mqtt.svg │ │ │ ├── msi.svg │ │ │ ├── msibusiness.svg │ │ │ ├── mta.svg │ │ │ ├── mtr.svg │ │ │ ├── mubi.svg │ │ │ ├── mui.svg │ │ │ ├── mulesoft.svg │ │ │ ├── muller.svg │ │ │ ├── mullvad.svg │ │ │ ├── multisim.svg │ │ │ ├── mumble.svg │ │ │ ├── muo.svg │ │ │ ├── mural.svg │ │ │ ├── musescore.svg │ │ │ ├── musicbrainz.svg │ │ │ ├── mxlinux.svg │ │ │ ├── myanimelist.svg │ │ │ ├── myget.svg │ │ │ ├── myob.svg │ │ │ ├── myspace.svg │ │ │ ├── mysql.svg │ │ │ ├── n26.svg │ │ │ ├── n8n.svg │ │ │ ├── namebase.svg │ │ │ ├── namecheap.svg │ │ │ ├── namemc.svg │ │ │ ├── namesilo.svg │ │ │ ├── namuwiki.svg │ │ │ ├── nano.svg │ │ │ ├── nanostores.svg │ │ │ ├── napster.svg │ │ │ ├── nasa.svg │ │ │ ├── nationalgrid.svg │ │ │ ├── nationalrail.svg │ │ │ ├── nativescript.svg │ │ │ ├── natsdotio.svg │ │ │ ├── naver.svg │ │ │ ├── nba.svg │ │ │ ├── nbb.svg │ │ │ ├── nbc.svg │ │ │ ├── ndr.svg │ │ │ ├── near.svg │ │ │ ├── nebula.svg │ │ │ ├── nec.svg │ │ │ ├── neo4j.svg │ │ │ ├── neovim.svg │ │ │ ├── neptune.svg │ │ │ ├── nestjs.svg │ │ │ ├── netapp.svg │ │ │ ├── netbsd.svg │ │ │ ├── netcup.svg │ │ │ ├── netdata.svg │ │ │ ├── neteasecloudmusic.svg │ │ │ ├── netflix.svg │ │ │ ├── netgear.svg │ │ │ ├── netlify.svg │ │ │ ├── nette.svg │ │ │ ├── netto.svg │ │ │ ├── neutralinojs.svg │ │ │ ├── newbalance.svg │ │ │ ├── newegg.svg │ │ │ ├── newjapanprowrestling.svg │ │ │ ├── newrelic.svg │ │ │ ├── newyorktimes.svg │ │ │ ├── nexon.svg │ │ │ ├── nextbilliondotai.svg │ │ │ ├── nextcloud.svg │ │ │ ├── nextdns.svg │ │ │ ├── nextdoor.svg │ │ │ ├── nextdotjs.svg │ │ │ ├── nextflow.svg │ │ │ ├── nextra.svg │ │ │ ├── nextui.svg │ │ │ ├── nexusmods.svg │ │ │ ├── nfc.svg │ │ │ ├── nginx.svg │ │ │ ├── nginxproxymanager.svg │ │ │ ├── ngrok.svg │ │ │ ├── ngrx.svg │ │ │ ├── nhl.svg │ │ │ ├── nicehash.svg │ │ │ ├── niconico.svg │ │ │ ├── nike.svg │ │ │ ├── nikon.svg │ │ │ ├── nim.svg │ │ │ ├── nintendo.svg │ │ │ ├── nintendo3ds.svg │ │ │ ├── nintendods.svg │ │ │ ├── nintendogamecube.svg │ │ │ ├── nintendoswitch.svg │ │ │ ├── nissan.svg │ │ │ ├── nixos.svg │ │ │ ├── nodedotjs.svg │ │ │ ├── nodemon.svg │ │ │ ├── nodered.svg │ │ │ ├── nokia.svg │ │ │ ├── nomad.svg │ │ │ ├── norco.svg │ │ │ ├── nordicsemiconductor.svg │ │ │ ├── nordvpn.svg │ │ │ ├── normalizedotcss.svg │ │ │ ├── norton.svg │ │ │ ├── norwegian.svg │ │ │ ├── notepadplusplus.svg │ │ │ ├── notion.svg │ │ │ ├── notist.svg │ │ │ ├── nounproject.svg │ │ │ ├── novu.svg │ │ │ ├── now.svg │ │ │ ├── npm.svg │ │ │ ├── nrwl.svg │ │ │ ├── nsis.svg │ │ │ ├── ntfy.svg │ │ │ ├── nubank.svg │ │ │ ├── nucleo.svg │ │ │ ├── nuget.svg │ │ │ ├── nuke.svg │ │ │ ├── numba.svg │ │ │ ├── numpy.svg │ │ │ ├── nunjucks.svg │ │ │ ├── nushell.svg │ │ │ ├── nutanix.svg │ │ │ ├── nuxtdotjs.svg │ │ │ ├── nvidia.svg │ │ │ ├── nvm.svg │ │ │ ├── nx.svg │ │ │ ├── nxp.svg │ │ │ ├── nzxt.svg │ │ │ ├── o2.svg │ │ │ ├── obb.svg │ │ │ ├── observable.svg │ │ │ ├── obsidian.svg │ │ │ ├── obsstudio.svg │ │ │ ├── ocaml.svg │ │ │ ├── oclc.svg │ │ │ ├── oclif.svg │ │ │ ├── octanerender.svg │ │ │ ├── octave.svg │ │ │ ├── octobercms.svg │ │ │ ├── octoprint.svg │ │ │ ├── octopusdeploy.svg │ │ │ ├── oculus.svg │ │ │ ├── odin.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── odoo.svg │ │ │ ├── odysee.svg │ │ │ ├── ohdear.svg │ │ │ ├── okcupid.svg │ │ │ ├── okta.svg │ │ │ ├── okx.svg │ │ │ ├── ollama.svg │ │ │ ├── omadacloud.svg │ │ │ ├── oneplus.svg │ │ │ ├── onlyfans.svg │ │ │ ├── onlyoffice.svg │ │ │ ├── onnx.svg │ │ │ ├── onstar.svg │ │ │ ├── opel.svg │ │ │ ├── openaccess.svg │ │ │ ├── openai.svg │ │ │ ├── openaigym.svg │ │ │ ├── openapiinitiative.svg │ │ │ ├── openbadges.svg │ │ │ ├── openbsd.svg │ │ │ ├── openbugbounty.svg │ │ │ ├── opencollective.svg │ │ │ ├── opencontainersinitiative.svg │ │ │ ├── opencv.svg │ │ │ ├── openfaas.svg │ │ │ ├── opengl.svg │ │ │ ├── openhab.svg │ │ │ ├── openid.svg │ │ │ ├── openjdk.svg │ │ │ ├── openjsfoundation.svg │ │ │ ├── openlayers.svg │ │ │ ├── openmediavault.svg │ │ │ ├── openmined.svg │ │ │ ├── opennebula.svg │ │ │ ├── openproject.svg │ │ │ ├── openscad.svg │ │ │ ├── opensea.svg │ │ │ ├── opensearch.svg │ │ │ ├── opensourcehardware.svg │ │ │ ├── opensourceinitiative.svg │ │ │ ├── openssl.svg │ │ │ ├── openstack.svg │ │ │ ├── openstreetmap.svg │ │ │ ├── opensuse.svg │ │ │ ├── opentelemetry.svg │ │ │ ├── opentext.svg │ │ │ ├── opentofu.svg │ │ │ ├── openverse.svg │ │ │ ├── openvpn.svg │ │ │ ├── openwrt.svg │ │ │ ├── openzeppelin.svg │ │ │ ├── openzfs.svg │ │ │ ├── opera.svg │ │ │ ├── operagx.svg │ │ │ ├── opnsense.svg │ │ │ ├── oppo.svg │ │ │ ├── opsgenie.svg │ │ │ ├── opslevel.svg │ │ │ ├── optimism.svg │ │ │ ├── oracle.svg │ │ │ ├── orange.svg │ │ │ ├── orcid.svg │ │ │ ├── oreilly.svg │ │ │ ├── org.svg │ │ │ ├── organicmaps.svg │ │ │ ├── origin.svg │ │ │ ├── osano.svg │ │ │ ├── osf.svg │ │ │ ├── osgeo.svg │ │ │ ├── oshkosh.svg │ │ │ ├── osmc.svg │ │ │ ├── osu.svg │ │ │ ├── otto.svg │ │ │ ├── outline.svg │ │ │ ├── overcast.svg │ │ │ ├── overleaf.svg │ │ │ ├── ovh.svg │ │ │ ├── owasp.svg │ │ │ ├── owncloud.svg │ │ │ ├── oxygen.svg │ │ │ ├── oyo.svg │ │ │ ├── p5dotjs.svg │ │ │ ├── packagist.svg │ │ │ ├── packer.svg │ │ │ ├── packt.svg │ │ │ ├── paddle.svg │ │ │ ├── paddlepaddle.svg │ │ │ ├── paddypower.svg │ │ │ ├── pagekit.svg │ │ │ ├── pagerduty.svg │ │ │ ├── pagespeedinsights.svg │ │ │ ├── pagseguro.svg │ │ │ ├── palantir.svg │ │ │ ├── paloaltonetworks.svg │ │ │ ├── paloaltosoftware.svg │ │ │ ├── panasonic.svg │ │ │ ├── pandas.svg │ │ │ ├── pandora.svg │ │ │ ├── pantheon.svg │ │ │ ├── paperlessngx.svg │ │ │ ├── paperspace.svg │ │ │ ├── paperswithcode.svg │ │ │ ├── paradoxinteractive.svg │ │ │ ├── paramountplus.svg │ │ │ ├── paritysubstrate.svg │ │ │ ├── parrotsecurity.svg │ │ │ ├── parsedotly.svg │ │ │ ├── passport.svg │ │ │ ├── pastebin.svg │ │ │ ├── patreon.svg │ │ │ ├── paychex.svg │ │ │ ├── payhip.svg │ │ │ ├── payloadcms.svg │ │ │ ├── payoneer.svg │ │ │ ├── paypal.svg │ │ │ ├── paytm.svg │ │ │ ├── pcgamingwiki.svg │ │ │ ├── pdm.svg │ │ │ ├── pdq.svg │ │ │ ├── peakdesign.svg │ │ │ ├── pearson.svg │ │ │ ├── peerlist.svg │ │ │ ├── peertube.svg │ │ │ ├── pegasusairlines.svg │ │ │ ├── pelican.svg │ │ │ ├── peloton.svg │ │ │ ├── penny.svg │ │ │ ├── penpot.svg │ │ │ ├── percy.svg │ │ │ ├── perforce.svg │ │ │ ├── perl.svg │ │ │ ├── perplexity.svg │ │ │ ├── persistent.svg │ │ │ ├── personio.svg │ │ │ ├── petsathome.svg │ │ │ ├── peugeot.svg │ │ │ ├── pexels.svg │ │ │ ├── pfsense.svg │ │ │ ├── phabricator.svg │ │ │ ├── philipshue.svg │ │ │ ├── phoenixframework.svg │ │ │ ├── phonepe.svg │ │ │ ├── phosphoricons.svg │ │ │ ├── photobucket.svg │ │ │ ├── photocrowd.svg │ │ │ ├── photon.svg │ │ │ ├── photopea.svg │ │ │ ├── php.svg │ │ │ ├── phpbb.svg │ │ │ ├── phpmyadmin.svg │ │ │ ├── phpstorm.svg │ │ │ ├── piaggiogroup.svg │ │ │ ├── piapro.svg │ │ │ ├── picardsurgeles.svg │ │ │ ├── picartodottv.svg │ │ │ ├── picnic.svg │ │ │ ├── picpay.svg │ │ │ ├── picrew.svg │ │ │ ├── picsart.svg │ │ │ ├── picxy.svg │ │ │ ├── pihole.svg │ │ │ ├── pimcore.svg │ │ │ ├── pinboard.svg │ │ │ ├── pinescript.svg │ │ │ ├── pinetwork.svg │ │ │ ├── pingdom.svg │ │ │ ├── pino.svg │ │ │ ├── pinterest.svg │ │ │ ├── pioneerdj.svg │ │ │ ├── piped.svg │ │ │ ├── pipx.svg │ │ │ ├── pivotaltracker.svg │ │ │ ├── piwigo.svg │ │ │ ├── pix.svg │ │ │ ├── pixabay.svg │ │ │ ├── pixelfed.svg │ │ │ ├── pixiv.svg │ │ │ ├── pixlr.svg │ │ │ ├── pkgsrc.svg │ │ │ ├── planet.svg │ │ │ ├── planetscale.svg │ │ │ ├── plangrid.svg │ │ │ ├── platformdotsh.svg │ │ │ ├── platformio.svg │ │ │ ├── platzi.svg │ │ │ ├── plausibleanalytics.svg │ │ │ ├── playcanvas.svg │ │ │ ├── playerdotme.svg │ │ │ ├── playerfm.svg │ │ │ ├── playstation.svg │ │ │ ├── playstation2.svg │ │ │ ├── playstation3.svg │ │ │ ├── playstation4.svg │ │ │ ├── playstation5.svg │ │ │ ├── playstationportable.svg │ │ │ ├── playstationvita.svg │ │ │ ├── pleroma.svg │ │ │ ├── plesk.svg │ │ │ ├── plex.svg │ │ │ ├── plotly.svg │ │ │ ├── plume.svg │ │ │ ├── pluralsight.svg │ │ │ ├── plurk.svg │ │ │ ├── pluscodes.svg │ │ │ ├── pm2.svg │ │ │ ├── pnpm.svg │ │ │ ├── pocket.svg │ │ │ ├── pocketbase.svg │ │ │ ├── pocketcasts.svg │ │ │ ├── podcastaddict.svg │ │ │ ├── podcastindex.svg │ │ │ ├── podman.svg │ │ │ ├── poe.svg │ │ │ ├── poetry.svg │ │ │ ├── pointy.svg │ │ │ ├── pokemon.svg │ │ │ ├── polars.svg │ │ │ ├── polestar.svg │ │ │ ├── polkadot.svg │ │ │ ├── poly.svg │ │ │ ├── polygon.svg │ │ │ ├── polymerproject.svg │ │ │ ├── polywork.svg │ │ │ ├── pond5.svg │ │ │ ├── popos.svg │ │ │ ├── porkbun.svg │ │ │ ├── porsche.svg │ │ │ ├── portainer.svg │ │ │ ├── portswigger.svg │ │ │ ├── posit.svg │ │ │ ├── postcss.svg │ │ │ ├── postgresql.svg │ │ │ ├── posthog.svg │ │ │ ├── postman.svg │ │ │ ├── postmates.svg │ │ │ ├── powers.svg │ │ │ ├── prdotco.svg │ │ │ ├── preact.svg │ │ │ ├── precommit.svg │ │ │ ├── prefect.svg │ │ │ ├── premierleague.svg │ │ │ ├── prepbytes.svg │ │ │ ├── prestashop.svg │ │ │ ├── presto.svg │ │ │ ├── prettier.svg │ │ │ ├── pretzel.svg │ │ │ ├── prevention.svg │ │ │ ├── prezi.svg │ │ │ ├── prime.svg │ │ │ ├── primefaces.svg │ │ │ ├── primeng.svg │ │ │ ├── primereact.svg │ │ │ ├── primevideo.svg │ │ │ ├── primevue.svg │ │ │ ├── printables.svg │ │ │ ├── prisma.svg │ │ │ ├── prismic.svg │ │ │ ├── privatedivision.svg │ │ │ ├── privateinternetaccess.svg │ │ │ ├── probot.svg │ │ │ ├── processingfoundation.svg │ │ │ ├── processwire.svg │ │ │ ├── producthunt.svg │ │ │ ├── progate.svg │ │ │ ├── progress.svg │ │ │ ├── prometheus.svg │ │ │ ├── pronounsdotpage.svg │ │ │ ├── prosieben.svg │ │ │ ├── proteus.svg │ │ │ ├── protocolsdotio.svg │ │ │ ├── protodotio.svg │ │ │ ├── proton.svg │ │ │ ├── protoncalendar.svg │ │ │ ├── protondb.svg │ │ │ ├── protondrive.svg │ │ │ ├── protonmail.svg │ │ │ ├── protonvpn.svg │ │ │ ├── protools.svg │ │ │ ├── protractor.svg │ │ │ ├── proxmox.svg │ │ │ ├── pterodactyl.svg │ │ │ ├── pubg.svg │ │ │ ├── publons.svg │ │ │ ├── pubmed.svg │ │ │ ├── pug.svg │ │ │ ├── pulumi.svg │ │ │ ├── puma.svg │ │ │ ├── puppet.svg │ │ │ ├── puppeteer.svg │ │ │ ├── purescript.svg │ │ │ ├── purgecss.svg │ │ │ ├── purism.svg │ │ │ ├── pushbullet.svg │ │ │ ├── pusher.svg │ │ │ ├── pwa.svg │ │ │ ├── pycharm.svg │ │ │ ├── pycqa.svg │ │ │ ├── pydantic.svg │ │ │ ├── pyg.svg │ │ │ ├── pypi.svg │ │ │ ├── pypy.svg │ │ │ ├── pyscaffold.svg │ │ │ ├── pysyft.svg │ │ │ ├── pytest.svg │ │ │ ├── python.svg │ │ │ ├── pythonanywhere.svg │ │ │ ├── pytorch.svg │ │ │ ├── pyup.svg │ │ │ ├── qantas.svg │ │ │ ├── qase.svg │ │ │ ├── qatarairways.svg │ │ │ ├── qbittorrent.svg │ │ │ ├── qemu.svg │ │ │ ├── qgis.svg │ │ │ ├── qi.svg │ │ │ ├── qiita.svg │ │ │ ├── qiskit.svg │ │ │ ├── qiwi.svg │ │ │ ├── qlik.svg │ │ │ ├── qmk.svg │ │ │ ├── qnap.svg │ │ │ ├── qt.svg │ │ │ ├── qualcomm.svg │ │ │ ├── qualtrics.svg │ │ │ ├── qualys.svg │ │ │ ├── quantcast.svg │ │ │ ├── quantconnect.svg │ │ │ ├── quarkus.svg │ │ │ ├── quarto.svg │ │ │ ├── quasar.svg │ │ │ ├── qubesos.svg │ │ │ ├── quest.svg │ │ │ ├── quickbooks.svg │ │ │ ├── quicklook.svg │ │ │ ├── quicktime.svg │ │ │ ├── quicktype.svg │ │ │ ├── quip.svg │ │ │ ├── quizlet.svg │ │ │ ├── quora.svg │ │ │ ├── qwant.svg │ │ │ ├── qwik.svg │ │ │ ├── qwiklabs.svg │ │ │ ├── qzone.svg │ │ │ ├── r.svg │ │ │ ├── r3.svg │ │ │ ├── rabbitmq.svg │ │ │ ├── racket.svg │ │ │ ├── radar.svg │ │ │ ├── radarr.svg │ │ │ ├── radiopublic.svg │ │ │ ├── radixui.svg │ │ │ ├── radstudio.svg │ │ │ ├── railway.svg │ │ │ ├── rainmeter.svg │ │ │ ├── rakuten.svg │ │ │ ├── ram.svg │ │ │ ├── rancher.svg │ │ │ ├── rapid.svg │ │ │ ├── rarible.svg │ │ │ ├── rasa.svg │ │ │ ├── raspberrypi.svg │ │ │ ├── ravelry.svg │ │ │ ├── ray.svg │ │ │ ├── raycast.svg │ │ │ ├── raylib.svg │ │ │ ├── razer.svg │ │ │ ├── razorpay.svg │ │ │ ├── rclone.svg │ │ │ ├── react.svg │ │ │ ├── reactbootstrap.svg │ │ │ ├── reacthookform.svg │ │ │ ├── reactiveresume.svg │ │ │ ├── reactivex.svg │ │ │ ├── reactos.svg │ │ │ ├── reactquery.svg │ │ │ ├── reactrouter.svg │ │ │ ├── reacttable.svg │ │ │ ├── readdotcv.svg │ │ │ ├── readme.svg │ │ │ ├── readthedocs.svg │ │ │ ├── realm.svg │ │ │ ├── reason.svg │ │ │ ├── reasonstudios.svg │ │ │ ├── recoil.svg │ │ │ ├── red.svg │ │ │ ├── redash.svg │ │ │ ├── redbubble.svg │ │ │ ├── redbull.svg │ │ │ ├── redcandlegames.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── redhatopenshift.svg │ │ │ ├── redis.svg │ │ │ ├── redmine.svg │ │ │ ├── redox.svg │ │ │ ├── redragon.svg │ │ │ ├── redsys.svg │ │ │ ├── redux.svg │ │ │ ├── reduxsaga.svg │ │ │ ├── redwoodjs.svg │ │ │ ├── reebok.svg │ │ │ ├── refine.svg │ │ │ ├── refinedgithub.svg │ │ │ ├── relay.svg │ │ │ ├── relianceindustrieslimited.svg │ │ │ ├── remark.svg │ │ │ ├── remedyentertainment.svg │ │ │ ├── remix.svg │ │ │ ├── removedotbg.svg │ │ │ ├── renault.svg │ │ │ ├── render.svg │ │ │ ├── renovate.svg │ │ │ ├── renpy.svg │ │ │ ├── renren.svg │ │ │ ├── replicate.svg │ │ │ ├── replit.svg │ │ │ ├── republicofgamers.svg │ │ │ ├── rescript.svg │ │ │ ├── rescuetime.svg │ │ │ ├── researchgate.svg │ │ │ ├── resend.svg │ │ │ ├── resharper.svg │ │ │ ├── resurrectionremixos.svg │ │ │ ├── retool.svg │ │ │ ├── retroarch.svg │ │ │ ├── retropie.svg │ │ │ ├── revanced.svg │ │ │ ├── revealdotjs.svg │ │ │ ├── reverbnation.svg │ │ │ ├── revoltdotchat.svg │ │ │ ├── revolut.svg │ │ │ ├── revue.svg │ │ │ ├── rewe.svg │ │ │ ├── rezgo.svg │ │ │ ├── rhinoceros.svg │ │ │ ├── rich.svg │ │ │ ├── rider.svg │ │ │ ├── rimacautomobili.svg │ │ │ ├── rime.svg │ │ │ ├── ring.svg │ │ │ ├── riotgames.svg │ │ │ ├── ripple.svg │ │ │ ├── riscv.svg │ │ │ ├── riseup.svg │ │ │ ├── ritzcarlton.svg │ │ │ ├── rive.svg │ │ │ ├── roadmapdotsh.svg │ │ │ ├── roamresearch.svg │ │ │ ├── robinhood.svg │ │ │ ├── roblox.svg │ │ │ ├── robloxstudio.svg │ │ │ ├── roboflow.svg │ │ │ ├── robotframework.svg │ │ │ ├── rocket.svg │ │ │ ├── rocketdotchat.svg │ │ │ ├── rocksdb.svg │ │ │ ├── rockstargames.svg │ │ │ ├── rockwellautomation.svg │ │ │ ├── rockylinux.svg │ │ │ ├── roku.svg │ │ │ ├── roll20.svg │ │ │ ├── rollsroyce.svg │ │ │ ├── rollupdotjs.svg │ │ │ ├── roon.svg │ │ │ ├── rootme.svg │ │ │ ├── roots.svg │ │ │ ├── rootsbedrock.svg │ │ │ ├── rootssage.svg │ │ │ ├── ros.svg │ │ │ ├── rossmann.svg │ │ │ ├── rotaryinternational.svg │ │ │ ├── rottentomatoes.svg │ │ │ ├── roundcube.svg │ │ │ ├── rsocket.svg │ │ │ ├── rss.svg │ │ │ ├── rstudioide.svg │ │ │ ├── rte.svg │ │ │ ├── rtl.svg │ │ │ ├── rtlzwei.svg │ │ │ ├── rtm.svg │ │ │ ├── rubocop.svg │ │ │ ├── ruby.svg │ │ │ ├── rubygems.svg │ │ │ ├── rubymine.svg │ │ │ ├── rubyonrails.svg │ │ │ ├── rubysinatra.svg │ │ │ ├── ruff.svg │ │ │ ├── rumahweb.svg │ │ │ ├── rumble.svg │ │ │ ├── rundeck.svg │ │ │ ├── runkeeper.svg │ │ │ ├── runkit.svg │ │ │ ├── runrundotit.svg │ │ │ ├── rust.svg │ │ │ ├── rustdesk.svg │ │ │ ├── rxdb.svg │ │ │ ├── ryanair.svg │ │ │ ├── rye.svg │ │ │ ├── s7airlines.svg │ │ │ ├── sabanci.svg │ │ │ ├── safari.svg │ │ │ ├── sage.svg │ │ │ ├── sahibinden.svg │ │ │ ├── sailfishos.svg │ │ │ ├── sailsdotjs.svg │ │ │ ├── salesforce.svg │ │ │ ├── salla.svg │ │ │ ├── saltproject.svg │ │ │ ├── samsclub.svg │ │ │ ├── samsung.svg │ │ │ ├── samsungpay.svg │ │ │ ├── sandisk.svg │ │ │ ├── sanfranciscomunicipalrailway.svg │ │ │ ├── sanic.svg │ │ │ ├── sanity.svg │ │ │ ├── saopaulometro.svg │ │ │ ├── sap.svg │ │ │ ├── sartorius.svg │ │ │ ├── sass.svg │ │ │ ├── sat1.svg │ │ │ ├── satellite.svg │ │ │ ├── saturn.svg │ │ │ ├── saucelabs.svg │ │ │ ├── saudia.svg │ │ │ ├── scala.svg │ │ │ ├── scalar.svg │ │ │ ├── scaleway.svg │ │ │ ├── scania.svg │ │ │ ├── schneiderelectric.svg │ │ │ ├── scikitlearn.svg │ │ │ ├── scilab.svg │ │ │ ├── scipy.svg │ │ │ ├── scopus.svg │ │ │ ├── scpfoundation.svg │ │ │ ├── scrapbox.svg │ │ │ ├── scrapy.svg │ │ │ ├── scratch.svg │ │ │ ├── screencastify.svg │ │ │ ├── scribd.svg │ │ │ ├── scrimba.svg │ │ │ ├── scrollreveal.svg │ │ │ ├── scrumalliance.svg │ │ │ ├── scrutinizerci.svg │ │ │ ├── scylladb.svg │ │ │ ├── seagate.svg │ │ │ ├── searxng.svg │ │ │ ├── seat.svg │ │ │ ├── seatgeek.svg │ │ │ ├── securityscorecard.svg │ │ │ ├── sefaria.svg │ │ │ ├── sega.svg │ │ │ ├── selenium.svg │ │ │ ├── sellfy.svg │ │ │ ├── semanticrelease.svg │ │ │ ├── semanticscholar.svg │ │ │ ├── semanticui.svg │ │ │ ├── semanticuireact.svg │ │ │ ├── semanticweb.svg │ │ │ ├── semaphoreci.svg │ │ │ ├── semrush.svg │ │ │ ├── semver.svg │ │ │ ├── sencha.svg │ │ │ ├── sendgrid.svg │ │ │ ├── sennheiser.svg │ │ │ ├── sensu.svg │ │ │ ├── sentry.svg │ │ │ ├── sepa.svg │ │ │ ├── sequelize.svg │ │ │ ├── serverfault.svg │ │ │ ├── serverless.svg │ │ │ ├── session.svg │ │ │ ├── sessionize.svg │ │ │ ├── setapp.svg │ │ │ ├── sfml.svg │ │ │ ├── shadcnui.svg │ │ │ ├── shadow.svg │ │ │ ├── shanghaimetro.svg │ │ │ ├── sharex.svg │ │ │ ├── sharp.svg │ │ │ ├── shazam.svg │ │ │ ├── shell.svg │ │ │ ├── shelly.svg │ │ │ ├── shenzhenmetro.svg │ │ │ ├── shieldsdotio.svg │ │ │ ├── shikimori.svg │ │ │ ├── shopee.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── shortcut.svg │ │ │ ├── showpad.svg │ │ │ ├── showtime.svg │ │ │ ├── showwcase.svg │ │ │ ├── shutterstock.svg │ │ │ ├── sidekiq.svg │ │ │ ├── sidequest.svg │ │ │ ├── siemens.svg │ │ │ ├── sifive.svg │ │ │ ├── signal.svg │ │ │ ├── silverairways.svg │ │ │ ├── similarweb.svg │ │ │ ├── simkl.svg │ │ │ ├── simpleanalytics.svg │ │ │ ├── simpleicons.svg │ │ │ ├── simplelogin.svg │ │ │ ├── simplenote.svg │ │ │ ├── simplex.svg │ │ │ ├── sinaweibo.svg │ │ │ ├── singaporeairlines.svg │ │ │ ├── singlestore.svg │ │ │ ├── sitecore.svg │ │ │ ├── sitepoint.svg │ │ │ ├── siyuan.svg │ │ │ ├── skaffold.svg │ │ │ ├── sketch.svg │ │ │ ├── sketchfab.svg │ │ │ ├── sketchup.svg │ │ │ ├── skillshare.svg │ │ │ ├── skoda.svg │ │ │ ├── sky.svg │ │ │ ├── skypack.svg │ │ │ ├── skyrock.svg │ │ │ ├── slack.svg │ │ │ ├── slackware.svg │ │ │ ├── slashdot.svg │ │ │ ├── slickpic.svg │ │ │ ├── slides.svg │ │ │ ├── slideshare.svg │ │ │ ├── slint.svg │ │ │ ├── smart.svg │ │ │ ├── smartthings.svg │ │ │ ├── smashdotgg.svg │ │ │ ├── smashingmagazine.svg │ │ │ ├── smrt.svg │ │ │ ├── smugmug.svg │ │ │ ├── snapchat.svg │ │ │ ├── snapcraft.svg │ │ │ ├── snapdragon.svg │ │ │ ├── sncf.svg │ │ │ ├── snort.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowpack.svg │ │ │ ├── snyk.svg │ │ │ ├── socialblade.svg │ │ │ ├── society6.svg │ │ │ ├── socket.svg │ │ │ ├── socketdotio.svg │ │ │ ├── softcatala.svg │ │ │ ├── softpedia.svg │ │ │ ├── sogou.svg │ │ │ ├── solana.svg │ │ │ ├── solid.svg │ │ │ ├── solidity.svg │ │ │ ├── sololearn.svg │ │ │ ├── solus.svg │ │ │ ├── sonar.svg │ │ │ ├── sonarcloud.svg │ │ │ ├── sonarlint.svg │ │ │ ├── sonarqube.svg │ │ │ ├── sonarr.svg │ │ │ ├── sonatype.svg │ │ │ ├── songkick.svg │ │ │ ├── songoda.svg │ │ │ ├── sonicwall.svg │ │ │ ├── sonos.svg │ │ │ ├── sony.svg │ │ │ ├── soriana.svg │ │ │ ├── soundcharts.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourceengine.svg │ │ │ ├── sourceforge.svg │ │ │ ├── sourcehut.svg │ │ │ ├── sourcetree.svg │ │ │ ├── southwestairlines.svg │ │ │ ├── spacemacs.svg │ │ │ ├── spaceship.svg │ │ │ ├── spacex.svg │ │ │ ├── spacy.svg │ │ │ ├── sparkar.svg │ │ │ ├── sparkasse.svg │ │ │ ├── sparkfun.svg │ │ │ ├── sparkpost.svg │ │ │ ├── spdx.svg │ │ │ ├── speakerdeck.svg │ │ │ ├── spectrum.svg │ │ │ ├── speedtest.svg │ │ │ ├── speedypage.svg │ │ │ ├── sphinx.svg │ │ │ ├── spigotmc.svg │ │ │ ├── spine.svg │ │ │ ├── spinnaker.svg │ │ │ ├── spinrilla.svg │ │ │ ├── splunk.svg │ │ │ ├── spoj.svg │ │ │ ├── spond.svg │ │ │ ├── spotify.svg │ │ │ ├── spotlight.svg │ │ │ ├── spreadshirt.svg │ │ │ ├── spreaker.svg │ │ │ ├── spring.svg │ │ │ ├── spring_creators.svg │ │ │ ├── springboot.svg │ │ │ ├── springsecurity.svg │ │ │ ├── spyderide.svg │ │ │ ├── sqlalchemy.svg │ │ │ ├── sqlite.svg │ │ │ ├── square.svg │ │ │ ├── squareenix.svg │ │ │ ├── squarespace.svg │ │ │ ├── srgssr.svg │ │ │ ├── ssrn.svg │ │ │ ├── sst.svg │ │ │ ├── stackbit.svg │ │ │ ├── stackblitz.svg │ │ │ ├── stackedit.svg │ │ │ ├── stackexchange.svg │ │ │ ├── stackhawk.svg │ │ │ ├── stackoverflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── stackshare.svg │ │ │ ├── stadia.svg │ │ │ ├── staffbase.svg │ │ │ ├── stagetimer.svg │ │ │ ├── standardjs.svg │ │ │ ├── standardresume.svg │ │ │ ├── starbucks.svg │ │ │ ├── stardock.svg │ │ │ ├── starlingbank.svg │ │ │ ├── starship.svg │ │ │ ├── startpage.svg │ │ │ ├── startrek.svg │ │ │ ├── starz.svg │ │ │ ├── statamic.svg │ │ │ ├── statista.svg │ │ │ ├── statuspage.svg │ │ │ ├── statuspal.svg │ │ │ ├── steam.svg │ │ │ ├── steamdb.svg │ │ │ ├── steamdeck.svg │ │ │ ├── steamworks.svg │ │ │ ├── steelseries.svg │ │ │ ├── steem.svg │ │ │ ├── steemit.svg │ │ │ ├── steinberg.svg │ │ │ ├── stellar.svg │ │ │ ├── stencil.svg │ │ │ ├── stencyl.svg │ │ │ ├── stimulus.svg │ │ │ ├── stitcher.svg │ │ │ ├── stmicroelectronics.svg │ │ │ ├── stockx.svg │ │ │ ├── stopstalk.svg │ │ │ ├── storyblok.svg │ │ │ ├── storybook.svg │ │ │ ├── strapi.svg │ │ │ ├── strava.svg │ │ │ ├── streamlabs.svg │ │ │ ├── streamlit.svg │ │ │ ├── streamrunners.svg │ │ │ ├── stremio.svg │ │ │ ├── stripe.svg │ │ │ ├── strongswan.svg │ │ │ ├── stryker.svg │ │ │ ├── stubhub.svg │ │ │ ├── studio3t.svg │ │ │ ├── studyverse.svg │ │ │ ├── styledcomponents.svg │ │ │ ├── stylelint.svg │ │ │ ├── styleshare.svg │ │ │ ├── stylus.svg │ │ │ ├── subaru.svg │ │ │ ├── sublimetext.svg │ │ │ ├── substack.svg │ │ │ ├── subtitleedit.svg │ │ │ ├── subversion.svg │ │ │ ├── suckless.svg │ │ │ ├── sui.svg │ │ │ ├── sumologic.svg │ │ │ ├── suno.svg │ │ │ ├── sunrise.svg │ │ │ ├── supabase.svg │ │ │ ├── supercrease.svg │ │ │ ├── supermicro.svg │ │ │ ├── superuser.svg │ │ │ ├── surfshark.svg │ │ │ ├── surrealdb.svg │ │ │ ├── surveymonkey.svg │ │ │ ├── suse.svg │ │ │ ├── suzuki.svg │ │ │ ├── svelte.svg │ │ │ ├── svg.svg │ │ │ ├── svgdotjs.svg │ │ │ ├── svgo.svg │ │ │ ├── svgtrace.svg │ │ │ ├── swagger.svg │ │ │ ├── swarm.svg │ │ │ ├── sway.svg │ │ │ ├── swc.svg │ │ │ ├── swift.svg │ │ │ ├── swiggy.svg │ │ │ ├── swiper.svg │ │ │ ├── swr.svg │ │ │ ├── symantec.svg │ │ │ ├── symbolab.svg │ │ │ ├── symfony.svg │ │ │ ├── symphony.svg │ │ │ ├── sympy.svg │ │ │ ├── syncthing.svg │ │ │ ├── synology.svg │ │ │ ├── system76.svg │ │ │ ├── tabelog.svg │ │ │ ├── tableau.svg │ │ │ ├── tablecheck.svg │ │ │ ├── tacobell.svg │ │ │ ├── tado.svg │ │ │ ├── taichigraphics.svg │ │ │ ├── taichilang.svg │ │ │ ├── tails.svg │ │ │ ├── tailscale.svg │ │ │ ├── tailwindcss.svg │ │ │ ├── taipy.svg │ │ │ ├── taketwointeractivesoftware.svg │ │ │ ├── talend.svg │ │ │ ├── talenthouse.svg │ │ │ ├── talos.svg │ │ │ ├── tamiya.svg │ │ │ ├── tampermonkey.svg │ │ │ ├── taobao.svg │ │ │ ├── tapas.svg │ │ │ ├── target.svg │ │ │ ├── tarom.svg │ │ │ ├── task.svg │ │ │ ├── tasmota.svg │ │ │ ├── tata.svg │ │ │ ├── tauri.svg │ │ │ ├── taxbuzz.svg │ │ │ ├── tcs.svg │ │ │ ├── teal.svg │ │ │ ├── teamcity.svg │ │ │ ├── teamspeak.svg │ │ │ ├── teamviewer.svg │ │ │ ├── techcrunch.svg │ │ │ ├── ted.svg │ │ │ ├── teepublic.svg │ │ │ ├── teespring.svg │ │ │ ├── tekton.svg │ │ │ ├── tele5.svg │ │ │ ├── telefonica.svg │ │ │ ├── telegram.svg │ │ │ ├── telegraph.svg │ │ │ ├── telequebec.svg │ │ │ ├── temporal.svg │ │ │ ├── tencentqq.svg │ │ │ ├── tensorflow.svg │ │ │ ├── teradata.svg │ │ │ ├── teratail.svg │ │ │ ├── termius.svg │ │ │ ├── terraform.svg │ │ │ ├── tesco.svg │ │ │ ├── tesla.svg │ │ │ ├── testcafe.svg │ │ │ ├── testin.svg │ │ │ ├── testinglibrary.svg │ │ │ ├── testrail.svg │ │ │ ├── tether.svg │ │ │ ├── textpattern.svg │ │ │ ├── tga.svg │ │ │ ├── thangs.svg │ │ │ ├── thanos.svg │ │ │ ├── thealgorithms.svg │ │ │ ├── theboringcompany.svg │ │ │ ├── theconversation.svg │ │ │ ├── thefinals.svg │ │ │ ├── theguardian.svg │ │ │ ├── theirishtimes.svg │ │ │ ├── themighty.svg │ │ │ ├── themodelsresource.svg │ │ │ ├── themoviedatabase.svg │ │ │ ├── thenorthface.svg │ │ │ ├── theodinproject.svg │ │ │ ├── theregister.svg │ │ │ ├── thesoundsresource.svg │ │ │ ├── thespritersresource.svg │ │ │ ├── thewashingtonpost.svg │ │ │ ├── theweatherchannel.svg │ │ │ ├── thingiverse.svg │ │ │ ├── thinkpad.svg │ │ │ ├── thirdweb.svg │ │ │ ├── threadless.svg │ │ │ ├── threads.svg │ │ │ ├── threedotjs.svg │ │ │ ├── threema.svg │ │ │ ├── thumbtack.svg │ │ │ ├── thunderbird.svg │ │ │ ├── thunderstore.svg │ │ │ ├── thurgauerkantonalbank.svg │ │ │ ├── thymeleaf.svg │ │ │ ├── ticketmaster.svg │ │ │ ├── ticktick.svg │ │ │ ├── tidal.svg │ │ │ ├── tiddlywiki.svg │ │ │ ├── tide.svg │ │ │ ├── tidyverse.svg │ │ │ ├── tietoevry.svg │ │ │ ├── tiktok.svg │ │ │ ├── tildapublishing.svg │ │ │ ├── tile.svg │ │ │ ├── timescale.svg │ │ │ ├── tina.svg │ │ │ ├── tinder.svg │ │ │ ├── tindie.svg │ │ │ ├── tinkercad.svg │ │ │ ├── tinygrad.svg │ │ │ ├── tinyletter.svg │ │ │ ├── tistory.svg │ │ │ ├── tldraw.svg │ │ │ ├── tmobile.svg │ │ │ ├── tmux.svg │ │ │ ├── todoist.svg │ │ │ ├── toggl.svg │ │ │ ├── toggltrack.svg │ │ │ ├── tokyometro.svg │ │ │ ├── toll.svg │ │ │ ├── toml.svg │ │ │ ├── tomorrowland.svg │ │ │ ├── tomtom.svg │ │ │ ├── ton.svg │ │ │ ├── topcoder.svg │ │ │ ├── topdotgg.svg │ │ │ ├── toptal.svg │ │ │ ├── torbrowser.svg │ │ │ ├── torproject.svg │ │ │ ├── toshiba.svg │ │ │ ├── totvs.svg │ │ │ ├── tourbox.svg │ │ │ ├── tower.svg │ │ │ ├── toyota.svg │ │ │ ├── tplink.svg │ │ │ ├── tqdm.svg │ │ │ ├── traccar.svg │ │ │ ├── tradingview.svg │ │ │ ├── traefikmesh.svg │ │ │ ├── traefikproxy.svg │ │ │ ├── trailforks.svg │ │ │ ├── trainerroad.svg │ │ │ ├── trakt.svg │ │ │ ├── transifex.svg │ │ │ ├── transmission.svg │ │ │ ├── transportforireland.svg │ │ │ ├── transportforlondon.svg │ │ │ ├── travisci.svg │ │ │ ├── treehouse.svg │ │ │ ├── trello.svg │ │ │ ├── trendmicro.svg │ │ │ ├── treyarch.svg │ │ │ ├── tricentis.svg │ │ │ ├── trilium.svg │ │ │ ├── triller.svg │ │ │ ├── trillertv.svg │ │ │ ├── trimble.svg │ │ │ ├── trino.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tripdotcom.svg │ │ │ ├── trivago.svg │ │ │ ├── trivy.svg │ │ │ ├── trove.svg │ │ │ ├── trpc.svg │ │ │ ├── truenas.svg │ │ │ ├── trueup.svg │ │ │ ├── trulia.svg │ │ │ ├── trustedshops.svg │ │ │ ├── trustpilot.svg │ │ │ ├── tryhackme.svg │ │ │ ├── tryitonline.svg │ │ │ ├── tsnode.svg │ │ │ ├── tubi.svg │ │ │ ├── tui.svg │ │ │ ├── tumblr.svg │ │ │ ├── tunein.svg │ │ │ ├── turbo.svg │ │ │ ├── turborepo.svg │ │ │ ├── turbosquid.svg │ │ │ ├── turkishairlines.svg │ │ │ ├── turso.svg │ │ │ ├── tutanota.svg │ │ │ ├── tv4play.svg │ │ │ ├── tvtime.svg │ │ │ ├── twilio.svg │ │ │ ├── twinkly.svg │ │ │ ├── twinmotion.svg │ │ │ ├── twitch.svg │ │ │ ├── typeform.svg │ │ │ ├── typeorm.svg │ │ │ ├── typer.svg │ │ │ ├── typescript.svg │ │ │ ├── typo3.svg │ │ │ ├── typst.svg │ │ │ ├── uber.svg │ │ │ ├── ubereats.svg │ │ │ ├── ubiquiti.svg │ │ │ ├── ubisoft.svg │ │ │ ├── ublockorigin.svg │ │ │ ├── ubuntu.svg │ │ │ ├── ubuntumate.svg │ │ │ ├── udacity.svg │ │ │ ├── udemy.svg │ │ │ ├── udotsdotnews.svg │ │ │ ├── ufc.svg │ │ │ ├── uikit.svg │ │ │ ├── uipath.svg │ │ │ ├── ukca.svg │ │ │ ├── ulule.svg │ │ │ ├── umami.svg │ │ │ ├── umbraco.svg │ │ │ ├── uml.svg │ │ │ ├── unacademy.svg │ │ │ ├── underarmour.svg │ │ │ ├── underscoredotjs.svg │ │ │ ├── undertale.svg │ │ │ ├── unicode.svg │ │ │ ├── unilever.svg │ │ │ ├── uniqlo.svg │ │ │ ├── uniqlo_ja.svg │ │ │ ├── unitedairlines.svg │ │ │ ├── unitednations.svg │ │ │ ├── unity.svg │ │ │ ├── unjs.svg │ │ │ ├── unlicense.svg │ │ │ ├── unocss.svg │ │ │ ├── unpkg.svg │ │ │ ├── unraid.svg │ │ │ ├── unrealengine.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── upcloud.svg │ │ │ ├── uphold.svg │ │ │ ├── uplabs.svg │ │ │ ├── upptime.svg │ │ │ ├── ups.svg │ │ │ ├── upstash.svg │ │ │ ├── uptimekuma.svg │ │ │ ├── uptobox.svg │ │ │ ├── upwork.svg │ │ │ ├── usps.svg │ │ │ ├── utorrent.svg │ │ │ ├── uv.svg │ │ │ ├── v.svg │ │ │ ├── v2ex.svg │ │ │ ├── v8.svg │ │ │ ├── vaadin.svg │ │ │ ├── vagrant.svg │ │ │ ├── vala.svg │ │ │ ├── valorant.svg │ │ │ ├── valve.svg │ │ │ ├── vapor.svg │ │ │ ├── vault.svg │ │ │ ├── vaultwarden.svg │ │ │ ├── vauxhall.svg │ │ │ ├── vbulletin.svg │ │ │ ├── vectary.svg │ │ │ ├── vectorlogozone.svg │ │ │ ├── vectorworks.svg │ │ │ ├── veeam.svg │ │ │ ├── veed.svg │ │ │ ├── veepee.svg │ │ │ ├── vega.svg │ │ │ ├── vegas.svg │ │ │ ├── velog.svg │ │ │ ├── vencord.svg │ │ │ ├── venmo.svg │ │ │ ├── vercel.svg │ │ │ ├── verdaccio.svg │ │ │ ├── veritas.svg │ │ │ ├── verizon.svg │ │ │ ├── vespa.svg │ │ │ ├── vestel.svg │ │ │ ├── vexxhost.svg │ │ │ ├── vfairs.svg │ │ │ ├── viadeo.svg │ │ │ ├── viaplay.svg │ │ │ ├── viber.svg │ │ │ ├── viblo.svg │ │ │ ├── victoriametrics.svg │ │ │ ├── victronenergy.svg │ │ │ ├── vim.svg │ │ │ ├── vimeo.svg │ │ │ ├── vimeolivestream.svg │ │ │ ├── virgin.svg │ │ │ ├── virginatlantic.svg │ │ │ ├── virginmedia.svg │ │ │ ├── virtualbox.svg │ │ │ ├── virustotal.svg │ │ │ ├── visa.svg │ │ │ ├── visx.svg │ │ │ ├── vite.svg │ │ │ ├── vitepress.svg │ │ │ ├── vitess.svg │ │ │ ├── vitest.svg │ │ │ ├── vivaldi.svg │ │ │ ├── vivawallet.svg │ │ │ ├── vivino.svg │ │ │ ├── vivint.svg │ │ │ ├── vivo.svg │ │ │ ├── vk.svg │ │ │ ├── vlcmediaplayer.svg │ │ │ ├── vmware.svg │ │ │ ├── vodafone.svg │ │ │ ├── voidlinux.svg │ │ │ ├── voipdotms.svg │ │ │ ├── volkswagen.svg │ │ │ ├── volvo.svg │ │ │ ├── vonage.svg │ │ │ ├── vorondesign.svg │ │ │ ├── vowpalwabbit.svg │ │ │ ├── vox.svg │ │ │ ├── vrchat.svg │ │ │ ├── vsco.svg │ │ │ ├── vscodium.svg │ │ │ ├── vtex.svg │ │ │ ├── vuedotjs.svg │ │ │ ├── vuetify.svg │ │ │ ├── vulkan.svg │ │ │ ├── vultr.svg │ │ │ ├── vyond.svg │ │ │ ├── w3schools.svg │ │ │ ├── wacom.svg │ │ │ ├── wagmi.svg │ │ │ ├── wagtail.svg │ │ │ ├── wails.svg │ │ │ ├── wakatime.svg │ │ │ ├── walkman.svg │ │ │ ├── wallabag.svg │ │ │ ├── walletconnect.svg │ │ │ ├── walmart.svg │ │ │ ├── wantedly.svg │ │ │ ├── wappalyzer.svg │ │ │ ├── warnerbros.svg │ │ │ ├── warp.svg │ │ │ ├── wasabi.svg │ │ │ ├── wasmcloud.svg │ │ │ ├── wasmer.svg │ │ │ ├── watchtower.svg │ │ │ ├── wattpad.svg │ │ │ ├── wayland.svg │ │ │ ├── waze.svg │ │ │ ├── wazirx.svg │ │ │ ├── wearos.svg │ │ │ ├── weasyl.svg │ │ │ ├── web3dotjs.svg │ │ │ ├── webassembly.svg │ │ │ ├── webauthn.svg │ │ │ ├── webcomponentsdotorg.svg │ │ │ ├── webdotde.svg │ │ │ ├── webdriverio.svg │ │ │ ├── webex.svg │ │ │ ├── webflow.svg │ │ │ ├── webgl.svg │ │ │ ├── webgpu.svg │ │ │ ├── weblate.svg │ │ │ ├── webmin.svg │ │ │ ├── webmoney.svg │ │ │ ├── webpack.svg │ │ │ ├── webrtc.svg │ │ │ ├── webstorm.svg │ │ │ ├── webtoon.svg │ │ │ ├── webtrees.svg │ │ │ ├── wechat.svg │ │ │ ├── wegame.svg │ │ │ ├── weightsandbiases.svg │ │ │ ├── welcometothejungle.svg │ │ │ ├── wellfound.svg │ │ │ ├── wellsfargo.svg │ │ │ ├── wemo.svg │ │ │ ├── westerndigital.svg │ │ │ ├── westernunion.svg │ │ │ ├── wetransfer.svg │ │ │ ├── wezterm.svg │ │ │ ├── wgpu.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wheniwork.svg │ │ │ ├── wii.svg │ │ │ ├── wiiu.svg │ │ │ ├── wikibooks.svg │ │ │ ├── wikidata.svg │ │ │ ├── wikidotgg.svg │ │ │ ├── wikidotjs.svg │ │ │ ├── wikimediacommons.svg │ │ │ ├── wikimediafoundation.svg │ │ │ ├── wikipedia.svg │ │ │ ├── wikiquote.svg │ │ │ ├── wikiversity.svg │ │ │ ├── wikivoyage.svg │ │ │ ├── winamp.svg │ │ │ ├── wine.svg │ │ │ ├── wipro.svg │ │ │ ├── wire.svg │ │ │ ├── wireguard.svg │ │ │ ├── wireshark.svg │ │ │ ├── wise.svg │ │ │ ├── wish.svg │ │ │ ├── wistia.svg │ │ │ ├── wix.svg │ │ │ ├── wizzair.svg │ │ │ ├── wolfram.svg │ │ │ ├── wolframlanguage.svg │ │ │ ├── wolframmathematica.svg │ │ │ ├── wondershare.svg │ │ │ ├── wondersharefilmora.svg │ │ │ ├── woo.svg │ │ │ ├── woocommerce.svg │ │ │ ├── wordpress.svg │ │ │ ├── workplace.svg │ │ │ ├── worldhealthorganization.svg │ │ │ ├── wpengine.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wprocket.svg │ │ │ ├── writedotas.svg │ │ │ ├── wwe.svg │ │ │ ├── wwise.svg │ │ │ ├── wykop.svg │ │ │ ├── wyze.svg │ │ │ ├── x.svg │ │ │ ├── xampp.svg │ │ │ ├── xcode.svg │ │ │ ├── xdadevelopers.svg │ │ │ ├── xdotorg.svg │ │ │ ├── xendit.svg │ │ │ ├── xero.svg │ │ │ ├── xfce.svg │ │ │ ├── xiaohongshu.svg │ │ │ ├── xiaomi.svg │ │ │ ├── xing.svg │ │ │ ├── xml.svg │ │ │ ├── xmpp.svg │ │ │ ├── xo.svg │ │ │ ├── xrp.svg │ │ │ ├── xsplit.svg │ │ │ ├── xstate.svg │ │ │ ├── xubuntu.svg │ │ │ ├── yabai.svg │ │ │ ├── yale.svg │ │ │ ├── yamahacorporation.svg │ │ │ ├── yamahamotorcorporation.svg │ │ │ ├── yaml.svg │ │ │ ├── yandexcloud.svg │ │ │ ├── yarn.svg │ │ │ ├── ycombinator.svg │ │ │ ├── yelp.svg │ │ │ ├── yeti.svg │ │ │ ├── yii.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube.svg │ │ │ ├── youtubegaming.svg │ │ │ ├── youtubekids.svg │ │ │ ├── youtubemusic.svg │ │ │ ├── youtubeshorts.svg │ │ │ ├── youtubestudio.svg │ │ │ ├── youtubetv.svg │ │ │ ├── yr.svg │ │ │ ├── yubico.svg │ │ │ ├── yunohost.svg │ │ │ ├── zabka.svg │ │ │ ├── zaim.svg │ │ │ ├── zalando.svg │ │ │ ├── zalo.svg │ │ │ ├── zap.svg │ │ │ ├── zapier.svg │ │ │ ├── zara.svg │ │ │ ├── zazzle.svg │ │ │ ├── zcash.svg │ │ │ ├── zcool.svg │ │ │ ├── zdf.svg │ │ │ ├── zebpay.svg │ │ │ ├── zebratechnologies.svg │ │ │ ├── zedindustries.svg │ │ │ ├── zelle.svg │ │ │ ├── zend.svg │ │ │ ├── zendesk.svg │ │ │ ├── zenn.svg │ │ │ ├── zenodo.svg │ │ │ ├── zensar.svg │ │ │ ├── zerodha.svg │ │ │ ├── zerotier.svg │ │ │ ├── zerply.svg │ │ │ ├── zettlr.svg │ │ │ ├── zhihu.svg │ │ │ ├── zig.svg │ │ │ ├── zigbee.svg │ │ │ ├── zigbee2mqtt.svg │ │ │ ├── ziggo.svg │ │ │ ├── zilch.svg │ │ │ ├── zillow.svg │ │ │ ├── zincsearch.svg │ │ │ ├── zingat.svg │ │ │ ├── zod.svg │ │ │ ├── zoho.svg │ │ │ ├── zoiper.svg │ │ │ ├── zomato.svg │ │ │ ├── zoom.svg │ │ │ ├── zorin.svg │ │ │ ├── zotero.svg │ │ │ ├── zsh.svg │ │ │ ├── zulip.svg │ │ │ └── zyte.svg │ ├── search-engines │ │ ├── bing.png │ │ ├── brave.png │ │ ├── duckduckgo.svg │ │ ├── ecosia.png │ │ ├── google.png │ │ ├── kagi.png │ │ ├── startpage.png │ │ ├── yahoo.png │ │ └── yandex.png │ └── wallpapers │ │ └── default.png ├── config-utils.html ├── config-utils │ └── scripts │ │ ├── handle.ts │ │ ├── init.ts │ │ ├── load-page.ts │ │ ├── ui.ts │ │ └── utils │ │ ├── convert.ts │ │ └── switch-buttons.ts ├── index.html ├── newtab │ ├── scripts │ │ ├── init.ts │ │ ├── keys.ts │ │ ├── load-page.ts │ │ ├── ui.ts │ │ └── utils │ │ │ ├── animations.ts │ │ │ ├── animations │ │ │ └── handle-animation.ts │ │ │ ├── bookmarks │ │ │ ├── bookmark-icon.ts │ │ │ ├── bookmark-render-utils.ts │ │ │ ├── bookmark-search-utils.ts │ │ │ ├── convert-browser-bookmarks.ts │ │ │ ├── flatten-bookmarks.ts │ │ │ ├── listen-bookmark-number-keys.ts │ │ │ ├── open-bookmark.ts │ │ │ ├── open-folder.ts │ │ │ ├── render-bookmarks-default-blocky.ts │ │ │ ├── render-bookmarks-default.ts │ │ │ ├── render-bookmarks-user-defined.ts │ │ │ └── render-bookmarks.ts │ │ │ ├── extras │ │ │ └── snow-effect.ts │ │ │ ├── favicon-url.ts │ │ │ ├── fix-disappearing-ui.ts │ │ │ ├── focus-utils.ts │ │ │ ├── get-font-name.ts │ │ │ ├── hide-cover.ts │ │ │ ├── insert-css.ts │ │ │ ├── load-favicon.ts │ │ │ ├── load-wallpaper.ts │ │ │ ├── messages │ │ │ ├── afternoon-morning.ts │ │ │ ├── custom.ts │ │ │ ├── date.ts │ │ │ ├── set-message.ts │ │ │ ├── time.ts │ │ │ └── weather.ts │ │ │ ├── search.ts │ │ │ ├── search │ │ │ ├── handle-conversion.ts │ │ │ ├── handle-date.ts │ │ │ ├── handle-definition.ts │ │ │ ├── handle-history.ts │ │ │ ├── handle-math.ts │ │ │ ├── handle-search-assist.ts │ │ │ └── search-assist-utils.ts │ │ │ ├── set-title.ts │ │ │ ├── set-ui-style.ts │ │ │ ├── show-options-button.ts │ │ │ ├── style-message.ts │ │ │ ├── style-search.ts │ │ │ ├── tab-key-pressed.ts │ │ │ └── top-distance.ts │ └── styles │ │ ├── animations.css │ │ ├── index.css │ │ └── tailwind.css ├── options.html ├── options │ ├── scripts │ │ ├── init.ts │ │ ├── inputs.ts │ │ ├── keybinds.ts │ │ ├── load-page.ts │ │ ├── oconfig.ts │ │ ├── ui.ts │ │ └── utils │ │ │ ├── collapse-option.ts │ │ │ ├── control-utils.ts │ │ │ ├── export-config.ts │ │ │ ├── fill-helpers │ │ │ ├── fill-animations.ts │ │ │ ├── fill-bookmarks.ts │ │ │ ├── fill-extras.ts │ │ │ ├── fill-hotkeys.ts │ │ │ ├── fill-message.ts │ │ │ ├── fill-options.ts │ │ │ ├── fill-search.ts │ │ │ ├── fill-title.ts │ │ │ ├── fill-ui.ts │ │ │ ├── fill-user-defined-bookmarks.ts │ │ │ ├── fill-user.ts │ │ │ └── fill-wallpapers.ts │ │ │ ├── fill-inputs.ts │ │ │ ├── get-selected-button.ts │ │ │ ├── handle-switch.ts │ │ │ ├── handle-wallpaper-url-change.ts │ │ │ ├── hotkey-inputs.ts │ │ │ ├── import-config.ts │ │ │ ├── preview.ts │ │ │ ├── random-color.ts │ │ │ ├── save-config.ts │ │ │ ├── save-helpers │ │ │ ├── save-animations.ts │ │ │ ├── save-bookmarks.ts │ │ │ ├── save-extras.ts │ │ │ ├── save-hotkeys.ts │ │ │ ├── save-message.ts │ │ │ ├── save-name.ts │ │ │ ├── save-options.ts │ │ │ ├── save-search.ts │ │ │ ├── save-title.ts │ │ │ ├── save-ui.ts │ │ │ ├── save-user-defined-bookmarks.ts │ │ │ └── save-wallpaper.ts │ │ │ ├── set-default-config.ts │ │ │ ├── switch-buttons.ts │ │ │ ├── toggle-checkbox.ts │ │ │ ├── ui-helpers.ts │ │ │ ├── upload-favicon.ts │ │ │ └── upload-wallpaper.ts │ └── styles │ │ └── index.css ├── popup.html ├── popup │ ├── popup.css │ └── popup.ts ├── shared │ ├── control.css │ └── nerdfont-webfont.css └── utils │ ├── config.ts │ ├── deep-merge.ts │ ├── genid.ts │ ├── logger.ts │ ├── migrate-config.ts │ ├── modify.ts │ ├── options-data.ts │ └── user-agent.ts ├── tailwind.config.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 2 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = false 12 | insert_final_newline = false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .parcel-cache 4 | package -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | bun prettier -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 23.3.0 -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "tailwindcss": {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .parcel-cache 4 | 5 | ui.ts -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": false, 3 | "semi": true, 4 | "tabWidth": 2, 5 | "printWidth": 100, 6 | "trailingComma": "none", 7 | "arrowParens": "always", 8 | "plugins": ["prettier-plugin-tailwindcss"], 9 | "overrides": [ 10 | { 11 | "files": "*.html", 12 | "options": { 13 | "printWidth": 200 14 | } 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | # Changes in 1.8.9 2 | 3 | in this release: 4 | 5 | - bug fixes 6 | -------------------------------------------------------------------------------- /EXTENSION_VERSION.txt: -------------------------------------------------------------------------------- 1 | 1.8.9 -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | things to do: 4 | 5 | - nothing :D 6 | -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/1.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/3.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/4.png -------------------------------------------------------------------------------- /assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/5.png -------------------------------------------------------------------------------- /assets/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/logo-full.png -------------------------------------------------------------------------------- /assets/mtab-showcase-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/mtab-showcase-1.png -------------------------------------------------------------------------------- /assets/mtab-showcase-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/mtab-showcase-2.png -------------------------------------------------------------------------------- /assets/mtab-showcase-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/mtab-showcase-3.png -------------------------------------------------------------------------------- /assets/mtab-showcase-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/mtab-showcase-all.png -------------------------------------------------------------------------------- /assets/mtab-showcase-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/mtab-showcase-old.png -------------------------------------------------------------------------------- /assets/mtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/mtab.png -------------------------------------------------------------------------------- /assets/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/popup.png -------------------------------------------------------------------------------- /assets/promo-marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo-marquee.png -------------------------------------------------------------------------------- /assets/promo-new/mtab-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo-new/mtab-1.png -------------------------------------------------------------------------------- /assets/promo-new/mtab-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo-new/mtab-2.png -------------------------------------------------------------------------------- /assets/promo-new/mtab-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo-new/mtab-3.png -------------------------------------------------------------------------------- /assets/promo-new/mtab-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo-new/mtab-4.png -------------------------------------------------------------------------------- /assets/promo-new/mtab-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo-new/mtab-5.png -------------------------------------------------------------------------------- /assets/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/promo.png -------------------------------------------------------------------------------- /assets/resized/1-resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/resized/1-resized.png -------------------------------------------------------------------------------- /assets/resized/2-resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/resized/2-resized.png -------------------------------------------------------------------------------- /assets/resized/3-resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/resized/3-resized.png -------------------------------------------------------------------------------- /assets/resized/4-resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/resized/4-resized.png -------------------------------------------------------------------------------- /assets/resized/5-resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/assets/resized/5-resized.png -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/bun.lockb -------------------------------------------------------------------------------- /scripts/linux/copy_assets.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp -r src/assets/. dist 4 | -------------------------------------------------------------------------------- /scripts/linux/package_chrome.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | EXTENSION_VERSION=$(cat EXTENSION_VERSION.txt) 4 | 5 | mkdir -p package && 6 | cd dist && 7 | # messy but need it in case zip command runs before parcel is done buildling 8 | sleep 10 && 9 | zip -r -FS ../package/mtab-v$EXTENSION_VERSION-chrome.zip * --exclude "*.git*" -------------------------------------------------------------------------------- /scripts/linux/package_firefox.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | EXTENSION_VERSION=$(cat EXTENSION_VERSION.txt) 4 | 5 | mkdir -p package && 6 | cd dist && 7 | # messy but need it in case zip command runs before parcel is done buildling 8 | sleep 10 && 9 | zip -r -FS ../package/mtab-v$EXTENSION_VERSION-firefox.zip * --exclude "*.git*" 10 | -------------------------------------------------------------------------------- /scripts/linux/zip_source.sh: -------------------------------------------------------------------------------- 1 | EXTENSION_VERSION=$(cat EXTENSION_VERSION.txt) 2 | 3 | zip -r -FS ../mtab-v$EXTENSION_VERSION-source.zip * -x "*.git*" -x "node_modules/*" -x "assets/*" -x ".parcel-cache/*" -x "dist" -x "package/*" -x ".husky/*" -------------------------------------------------------------------------------- /scripts/win/copy_assets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | xcopy src\assets dist /E /I /Y -------------------------------------------------------------------------------- /src/assets/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/128.png -------------------------------------------------------------------------------- /src/assets/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/16.png -------------------------------------------------------------------------------- /src/assets/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/32.png -------------------------------------------------------------------------------- /src/assets/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/48.png -------------------------------------------------------------------------------- /src/assets/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/64.png -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/fonts/JetBrainsMonoNerdFontMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/fonts/JetBrainsMonoNerdFontMono-Regular.ttf -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/icons/fontawesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/fontawesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/fontawesome/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/icons/remixicon/remixicon.eot -------------------------------------------------------------------------------- /src/assets/icons/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/icons/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /src/assets/icons/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/icons/remixicon/remixicon.woff -------------------------------------------------------------------------------- /src/assets/icons/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/icons/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/42.svg: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/accenture.svg: -------------------------------------------------------------------------------- 1 | Accenture -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/activitypub.svg: -------------------------------------------------------------------------------- 1 | ActivityPub -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/adguard.svg: -------------------------------------------------------------------------------- 1 | AdGuard -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/adidas.svg: -------------------------------------------------------------------------------- 1 | Adidas -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/adobe.svg: -------------------------------------------------------------------------------- 1 | Adobe -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/adroll.svg: -------------------------------------------------------------------------------- 1 | Adroll -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/adventofcode.svg: -------------------------------------------------------------------------------- 1 | Advent Of Code -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/aerospike.svg: -------------------------------------------------------------------------------- 1 | Aerospike -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/affinity.svg: -------------------------------------------------------------------------------- 1 | Affinity -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/aframe.svg: -------------------------------------------------------------------------------- 1 | A-Frame -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/airbrake.svg: -------------------------------------------------------------------------------- 1 | Airbrake -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/airfrance.svg: -------------------------------------------------------------------------------- 1 | Air France -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/alacritty.svg: -------------------------------------------------------------------------------- 1 | Alacritty -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/alfred.svg: -------------------------------------------------------------------------------- 1 | Alfred -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/algorand.svg: -------------------------------------------------------------------------------- 1 | Algorand -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/alpinedotjs.svg: -------------------------------------------------------------------------------- 1 | Alpine.js -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/amp.svg: -------------------------------------------------------------------------------- 1 | AMP -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/analogue.svg: -------------------------------------------------------------------------------- 1 | Analogue -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/androidauto.svg: -------------------------------------------------------------------------------- 1 | Android Auto -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/angular.svg: -------------------------------------------------------------------------------- 1 | Angular -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/anthropic.svg: -------------------------------------------------------------------------------- 1 | Anthropic -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/anycubic.svg: -------------------------------------------------------------------------------- 1 | Anycubic -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/anydesk.svg: -------------------------------------------------------------------------------- 1 | AnyDesk -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/anytype.svg: -------------------------------------------------------------------------------- 1 | Anytype -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/apmterminals.svg: -------------------------------------------------------------------------------- 1 | APM Terminals -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/artixlinux.svg: -------------------------------------------------------------------------------- 1 | Artix Linux -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/asciinema.svg: -------------------------------------------------------------------------------- 1 | asciinema -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/aseprite.svg: -------------------------------------------------------------------------------- 1 | Aseprite -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/atlasos.svg: -------------------------------------------------------------------------------- 1 | AtlasOS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/auth0.svg: -------------------------------------------------------------------------------- 1 | Auth0 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/autodesk.svg: -------------------------------------------------------------------------------- 1 | Autodesk -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | Autoprefixer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/awesomelists.svg: -------------------------------------------------------------------------------- 1 | Awesome Lists -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/awesomewm.svg: -------------------------------------------------------------------------------- 1 | awesomeWM -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/awsamplify.svg: -------------------------------------------------------------------------------- 1 | AWS Amplify -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/awwwards.svg: -------------------------------------------------------------------------------- 1 | Awwwards -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/axios.svg: -------------------------------------------------------------------------------- 1 | Axios -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/babelio.svg: -------------------------------------------------------------------------------- 1 | Babelio -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/babylondotjs.svg: -------------------------------------------------------------------------------- 1 | Babylon.js -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bambulab.svg: -------------------------------------------------------------------------------- 1 | Bambu Lab -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bandcamp.svg: -------------------------------------------------------------------------------- 1 | Bandcamp -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bandsintown.svg: -------------------------------------------------------------------------------- 1 | Bandsintown -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/beats.svg: -------------------------------------------------------------------------------- 1 | Beats -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/beatsbydre.svg: -------------------------------------------------------------------------------- 1 | Beats by Dre -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/beatstars.svg: -------------------------------------------------------------------------------- 1 | BeatStars -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/betfair.svg: -------------------------------------------------------------------------------- 1 | Betfair -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bigcartel.svg: -------------------------------------------------------------------------------- 1 | Big Cartel -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/biome.svg: -------------------------------------------------------------------------------- 1 | Biome -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bitbucket.svg: -------------------------------------------------------------------------------- 1 | Bitbucket -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/boardgamegeek.svg: -------------------------------------------------------------------------------- 1 | BoardGameGeek -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/boat.svg: -------------------------------------------------------------------------------- 1 | boAt -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bookmeter.svg: -------------------------------------------------------------------------------- 1 | Bookmeter -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/boosty.svg: -------------------------------------------------------------------------------- 1 | Boosty -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/buffer.svg: -------------------------------------------------------------------------------- 1 | Buffer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bulma.svg: -------------------------------------------------------------------------------- 1 | Bulma -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/burpsuite.svg: -------------------------------------------------------------------------------- 1 | Burp Suite -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/buzzfeed.svg: -------------------------------------------------------------------------------- 1 | BuzzFeed -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/bytedance.svg: -------------------------------------------------------------------------------- 1 | ByteDance -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/campaignmonitor.svg: -------------------------------------------------------------------------------- 1 | Campaign Monitor -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/capacitor.svg: -------------------------------------------------------------------------------- 1 | Capacitor -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/carthrottle.svg: -------------------------------------------------------------------------------- 1 | Car Throttle -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ce.svg: -------------------------------------------------------------------------------- 1 | CE -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/chainlink.svg: -------------------------------------------------------------------------------- 1 | Chainlink -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/chartmogul.svg: -------------------------------------------------------------------------------- 1 | ChartMogul -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/chase.svg: -------------------------------------------------------------------------------- 1 | Chase -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/chatwoot.svg: -------------------------------------------------------------------------------- 1 | Chatwoot -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/checkmk.svg: -------------------------------------------------------------------------------- 1 | Checkmk -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/clickhouse.svg: -------------------------------------------------------------------------------- 1 | ClickHouse -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/clickup.svg: -------------------------------------------------------------------------------- 1 | ClickUp -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/cloudera.svg: -------------------------------------------------------------------------------- 1 | Cloudera -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/cloudflareworkers.svg: -------------------------------------------------------------------------------- 1 | Cloudflare Workers -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | Cloudsmith -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/cmake.svg: -------------------------------------------------------------------------------- 1 | CMake -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/codeberg.svg: -------------------------------------------------------------------------------- 1 | Codeberg -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/codeclimate.svg: -------------------------------------------------------------------------------- 1 | Code Climate -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/codesandbox.svg: -------------------------------------------------------------------------------- 1 | CodeSandbox -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/codio.svg: -------------------------------------------------------------------------------- 1 | Codio -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/collaboraonline.svg: -------------------------------------------------------------------------------- 1 | Collabora Online -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/commodore.svg: -------------------------------------------------------------------------------- 1 | Commodore -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/containerd.svg: -------------------------------------------------------------------------------- 1 | containerd -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/conventionalcommits.svg: -------------------------------------------------------------------------------- 1 | Conventional Commits -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/cratedb.svg: -------------------------------------------------------------------------------- 1 | CrateDB -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/crehana.svg: -------------------------------------------------------------------------------- 1 | Crehana -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/css3.svg: -------------------------------------------------------------------------------- 1 | CSS3 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/cssdesignawards.svg: -------------------------------------------------------------------------------- 1 | CSS Design Awards -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/dacia.svg: -------------------------------------------------------------------------------- 1 | Dacia -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/daserste.svg: -------------------------------------------------------------------------------- 1 | Das Erste -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/datastax.svg: -------------------------------------------------------------------------------- 1 | DataStax -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/datocms.svg: -------------------------------------------------------------------------------- 1 | DatoCMS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/decapcms.svg: -------------------------------------------------------------------------------- 1 | Decap CMS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/deepcool.svg: -------------------------------------------------------------------------------- 1 | DeepCool -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/delicious.svg: -------------------------------------------------------------------------------- 1 | del.icio.us -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/deutschebank.svg: -------------------------------------------------------------------------------- 1 | Deutsche Bank -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/devexpress.svg: -------------------------------------------------------------------------------- 1 | DevExpress -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/deviantart.svg: -------------------------------------------------------------------------------- 1 | DeviantArt -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/devpost.svg: -------------------------------------------------------------------------------- 1 | Devpost -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/dolby.svg: -------------------------------------------------------------------------------- 1 | Dolby -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/doordash.svg: -------------------------------------------------------------------------------- 1 | DoorDash -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/douban.svg: -------------------------------------------------------------------------------- 1 | Douban -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/doubanread.svg: -------------------------------------------------------------------------------- 1 | Douban Read -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/dovetail.svg: -------------------------------------------------------------------------------- 1 | Dovetail -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/dropbox.svg: -------------------------------------------------------------------------------- 1 | Dropbox -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/dunked.svg: -------------------------------------------------------------------------------- 1 | Dunked -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/dwm.svg: -------------------------------------------------------------------------------- 1 | dwm -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ea.svg: -------------------------------------------------------------------------------- 1 | EA -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/eac.svg: -------------------------------------------------------------------------------- 1 | EAC -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/eclipseche.svg: -------------------------------------------------------------------------------- 1 | Eclipse Che -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/elasticstack.svg: -------------------------------------------------------------------------------- 1 | Elastic Stack -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/elementor.svg: -------------------------------------------------------------------------------- 1 | Elementor -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/elevenlabs.svg: -------------------------------------------------------------------------------- 1 | ElevenLabs -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/elixir.svg: -------------------------------------------------------------------------------- 1 | Elixir -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ello.svg: -------------------------------------------------------------------------------- 1 | Ello -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/elm.svg: -------------------------------------------------------------------------------- 1 | Elm -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/embark.svg: -------------------------------------------------------------------------------- 1 | Embark -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/engadget.svg: -------------------------------------------------------------------------------- 1 | Engadget -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/eraser.svg: -------------------------------------------------------------------------------- 1 | Eraser -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/erpnext.svg: -------------------------------------------------------------------------------- 1 | ERPNext -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/esbuild.svg: -------------------------------------------------------------------------------- 1 | esbuild -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/esea.svg: -------------------------------------------------------------------------------- 1 | ESEA -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ethereum.svg: -------------------------------------------------------------------------------- 1 | Ethereum -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/exoscale.svg: -------------------------------------------------------------------------------- 1 | Exoscale -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/expertsexchange.svg: -------------------------------------------------------------------------------- 1 | Experts Exchange -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/facebookgaming.svg: -------------------------------------------------------------------------------- 1 | Facebook Gaming -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/faceit.svg: -------------------------------------------------------------------------------- 1 | FACEIT -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/farfetch.svg: -------------------------------------------------------------------------------- 1 | FARFETCH -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/fastapi.svg: -------------------------------------------------------------------------------- 1 | FastAPI -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/feathub.svg: -------------------------------------------------------------------------------- 1 | FeatHub -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/flashforge.svg: -------------------------------------------------------------------------------- 1 | Flashforge -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/flipboard.svg: -------------------------------------------------------------------------------- 1 | Flipboard -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/flutter.svg: -------------------------------------------------------------------------------- 1 | Flutter -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/formspree.svg: -------------------------------------------------------------------------------- 1 | Formspree -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/framer.svg: -------------------------------------------------------------------------------- 1 | Framer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/framework7.svg: -------------------------------------------------------------------------------- 1 | Framework7 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/frappe.svg: -------------------------------------------------------------------------------- 1 | Frappe -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/freelancer.svg: -------------------------------------------------------------------------------- 1 | Freelancer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/fsharp.svg: -------------------------------------------------------------------------------- 1 | F# -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/funimation.svg: -------------------------------------------------------------------------------- 1 | Funimation -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/futurelearn.svg: -------------------------------------------------------------------------------- 1 | FutureLearn -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/g2g.svg: -------------------------------------------------------------------------------- 1 | G2G -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gamemaker.svg: -------------------------------------------------------------------------------- 1 | Gamemaker -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/giphy.svg: -------------------------------------------------------------------------------- 1 | GIPHY -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gitlfs.svg: -------------------------------------------------------------------------------- 1 | Git LFS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gitter.svg: -------------------------------------------------------------------------------- 1 | Gitter -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/glide.svg: -------------------------------------------------------------------------------- 1 | Glide -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gmail.svg: -------------------------------------------------------------------------------- 1 | Gmail -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gocd.svg: -------------------------------------------------------------------------------- 1 | GoCD -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/goldenline.svg: -------------------------------------------------------------------------------- 1 | GoldenLine -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/googlechat.svg: -------------------------------------------------------------------------------- 1 | Google Chat -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/googlechronicle.svg: -------------------------------------------------------------------------------- 1 | Google Chronicle -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/googlecloudcomposer.svg: -------------------------------------------------------------------------------- 1 | Google Cloud Composer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/googlefonts.svg: -------------------------------------------------------------------------------- 1 | Google Fonts -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/googlescholar.svg: -------------------------------------------------------------------------------- 1 | Google Scholar -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/googleslides.svg: -------------------------------------------------------------------------------- 1 | Google Slides -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/graphite.svg: -------------------------------------------------------------------------------- 1 | Graphite -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/greatlearning.svg: -------------------------------------------------------------------------------- 1 | Great Learning -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/griddotai.svg: -------------------------------------------------------------------------------- 1 | Grid.ai -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gtk.svg: -------------------------------------------------------------------------------- 1 | GTK -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/guangzhoumetro.svg: -------------------------------------------------------------------------------- 1 | Guangzhou Metro -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/gurobi.svg: -------------------------------------------------------------------------------- 1 | Gurobi -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/handshake.svg: -------------------------------------------------------------------------------- 1 | Handshake -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hashicorp.svg: -------------------------------------------------------------------------------- 1 | HashiCorp -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hashnode.svg: -------------------------------------------------------------------------------- 1 | Hashnode -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/haskell.svg: -------------------------------------------------------------------------------- 1 | Haskell -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hdfcbank.svg: -------------------------------------------------------------------------------- 1 | HDFC Bank -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hearth.svg: -------------------------------------------------------------------------------- 1 | Hearth -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hedera.svg: -------------------------------------------------------------------------------- 1 | Hedera -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hermes.svg: -------------------------------------------------------------------------------- 1 | Hermes -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hexlet.svg: -------------------------------------------------------------------------------- 1 | Hexlet -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hexo.svg: -------------------------------------------------------------------------------- 1 | Hexo -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hibernate.svg: -------------------------------------------------------------------------------- 1 | Hibernate -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/homeadvisor.svg: -------------------------------------------------------------------------------- 1 | HomeAdvisor -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hostinger.svg: -------------------------------------------------------------------------------- 1 | Hostinger -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hotwire.svg: -------------------------------------------------------------------------------- 1 | Hotwire -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/houzz.svg: -------------------------------------------------------------------------------- 1 | Houzz -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hsbc.svg: -------------------------------------------------------------------------------- 1 | HSBC -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/html5.svg: -------------------------------------------------------------------------------- 1 | HTML5 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/htmx.svg: -------------------------------------------------------------------------------- 1 | htmx -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/hyper.svg: -------------------------------------------------------------------------------- 1 | Hyper -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/iberia.svg: -------------------------------------------------------------------------------- 1 | Iberia -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/icons8.svg: -------------------------------------------------------------------------------- 1 | Icons8 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ifttt.svg: -------------------------------------------------------------------------------- 1 | IFTTT -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/indiehackers.svg: -------------------------------------------------------------------------------- 1 | Indie Hackers -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/inertia.svg: -------------------------------------------------------------------------------- 1 | Inertia -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/infomaniak.svg: -------------------------------------------------------------------------------- 1 | Infomaniak -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/informatica.svg: -------------------------------------------------------------------------------- 1 | Informatica -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/inoreader.svg: -------------------------------------------------------------------------------- 1 | Inoreader -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/instapaper.svg: -------------------------------------------------------------------------------- 1 | Instapaper -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/instructure.svg: -------------------------------------------------------------------------------- 1 | Instructure -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/istio.svg: -------------------------------------------------------------------------------- 1 | Istio -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/jamboard.svg: -------------------------------------------------------------------------------- 1 | Jamboard -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/jamstack.svg: -------------------------------------------------------------------------------- 1 | Jamstack -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/jhipster.svg: -------------------------------------------------------------------------------- 1 | JHipster -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/jsr.svg: -------------------------------------------------------------------------------- 1 | JSR -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/juejin.svg: -------------------------------------------------------------------------------- 1 | Juejin -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/julia.svg: -------------------------------------------------------------------------------- 1 | Julia -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kahoot.svg: -------------------------------------------------------------------------------- 1 | Kahoot! -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kaufland.svg: -------------------------------------------------------------------------------- 1 | Kaufland -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kedro.svg: -------------------------------------------------------------------------------- 1 | Kedro -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/keenetic.svg: -------------------------------------------------------------------------------- 1 | Keenetic -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/keras.svg: -------------------------------------------------------------------------------- 1 | Keras -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/keystone.svg: -------------------------------------------------------------------------------- 1 | Keystone -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kibana.svg: -------------------------------------------------------------------------------- 1 | Kibana -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kick.svg: -------------------------------------------------------------------------------- 1 | Kick -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kirby.svg: -------------------------------------------------------------------------------- 1 | Kirby -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/klarna.svg: -------------------------------------------------------------------------------- 1 | Klarna -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/konva.svg: -------------------------------------------------------------------------------- 1 | Konva -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kotlin.svg: -------------------------------------------------------------------------------- 1 | Kotlin -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/koyeb.svg: -------------------------------------------------------------------------------- 1 | Koyeb -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ktor.svg: -------------------------------------------------------------------------------- 1 | Ktor -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kuula.svg: -------------------------------------------------------------------------------- 1 | Kuula -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kx.svg: -------------------------------------------------------------------------------- 1 | KX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/kyocera.svg: -------------------------------------------------------------------------------- 1 | Kyocera -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lapce.svg: -------------------------------------------------------------------------------- 1 | Lapce -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lens.svg: -------------------------------------------------------------------------------- 1 | Lens -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/libreofficewriter.svg: -------------------------------------------------------------------------------- 1 | LibreOffice Writer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lighthouse.svg: -------------------------------------------------------------------------------- 1 | Lighthouse -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lightning.svg: -------------------------------------------------------------------------------- 1 | Lightning -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/linksys.svg: -------------------------------------------------------------------------------- 1 | Linksys -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lintcode.svg: -------------------------------------------------------------------------------- 1 | LintCode -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/linuxfoundation.svg: -------------------------------------------------------------------------------- 1 | Linux Foundation -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/listmonk.svg: -------------------------------------------------------------------------------- 1 | listmonk -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lit.svg: -------------------------------------------------------------------------------- 1 | Lit -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lmms.svg: -------------------------------------------------------------------------------- 1 | LMMS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/logstash.svg: -------------------------------------------------------------------------------- 1 | Logstash -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lospec.svg: -------------------------------------------------------------------------------- 1 | Lospec -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lucia.svg: -------------------------------------------------------------------------------- 1 | Lucia -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/lucid.svg: -------------------------------------------------------------------------------- 1 | Lucid -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ludwig.svg: -------------------------------------------------------------------------------- 1 | Ludwig -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/macys.svg: -------------------------------------------------------------------------------- 1 | Macy's -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/magento.svg: -------------------------------------------------------------------------------- 1 | Magento -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/mailboxdotorg.svg: -------------------------------------------------------------------------------- 1 | mailbox.org -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/manjaro.svg: -------------------------------------------------------------------------------- 1 | Manjaro -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/marketo.svg: -------------------------------------------------------------------------------- 1 | Marketo -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/marko.svg: -------------------------------------------------------------------------------- 1 | Marko -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/materialdesignicons.svg: -------------------------------------------------------------------------------- 1 | Material Design Icons -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/materialformkdocs.svg: -------------------------------------------------------------------------------- 1 | Material for MkDocs -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/mcafee.svg: -------------------------------------------------------------------------------- 1 | McAfee -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/mdnwebdocs.svg: -------------------------------------------------------------------------------- 1 | MDN Web Docs -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/merck.svg: -------------------------------------------------------------------------------- 1 | Merck -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/mermaid.svg: -------------------------------------------------------------------------------- 1 | Mermaid -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/metafilter.svg: -------------------------------------------------------------------------------- 1 | MetaFilter -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/micropython.svg: -------------------------------------------------------------------------------- 1 | MicroPython -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/microstrategy.svg: -------------------------------------------------------------------------------- 1 | MicroStrategy -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/minutemailer.svg: -------------------------------------------------------------------------------- 1 | Minutemailer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/miro.svg: -------------------------------------------------------------------------------- 1 | Miro -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/mitsubishi.svg: -------------------------------------------------------------------------------- 1 | Mitsubishi -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/mlflow.svg: -------------------------------------------------------------------------------- 1 | MLflow -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/modx.svg: -------------------------------------------------------------------------------- 1 | MODX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/monoprix.svg: -------------------------------------------------------------------------------- 1 | Monoprix -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/monster.svg: -------------------------------------------------------------------------------- 1 | Monster -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/myget.svg: -------------------------------------------------------------------------------- 1 | MyGet -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/namemc.svg: -------------------------------------------------------------------------------- 1 | NameMC -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nanostores.svg: -------------------------------------------------------------------------------- 1 | Nano Stores -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/natsdotio.svg: -------------------------------------------------------------------------------- 1 | NATS.io -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/naver.svg: -------------------------------------------------------------------------------- 1 | Naver -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nebula.svg: -------------------------------------------------------------------------------- 1 | Nebula -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/neovim.svg: -------------------------------------------------------------------------------- 1 | Neovim -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/netapp.svg: -------------------------------------------------------------------------------- 1 | NetApp -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/netdata.svg: -------------------------------------------------------------------------------- 1 | Netdata -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/netflix.svg: -------------------------------------------------------------------------------- 1 | Netflix -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/newrelic.svg: -------------------------------------------------------------------------------- 1 | New Relic -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nextdotjs.svg: -------------------------------------------------------------------------------- 1 | Next.js -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nicehash.svg: -------------------------------------------------------------------------------- 1 | NiceHash -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nomad.svg: -------------------------------------------------------------------------------- 1 | Nomad -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/norco.svg: -------------------------------------------------------------------------------- 1 | Norco -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nordvpn.svg: -------------------------------------------------------------------------------- 1 | NordVPN -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/normalizedotcss.svg: -------------------------------------------------------------------------------- 1 | Normalize.css -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/npm.svg: -------------------------------------------------------------------------------- 1 | npm -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/nunjucks.svg: -------------------------------------------------------------------------------- 1 | Nunjucks -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/okta.svg: -------------------------------------------------------------------------------- 1 | Okta -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/oneplus.svg: -------------------------------------------------------------------------------- 1 | OnePlus -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/opencontainersinitiative.svg: -------------------------------------------------------------------------------- 1 | Open Containers Initiative -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/openzeppelin.svg: -------------------------------------------------------------------------------- 1 | OpenZeppelin -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/oracle.svg: -------------------------------------------------------------------------------- 1 | Oracle -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/orange.svg: -------------------------------------------------------------------------------- 1 | Orange -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/osano.svg: -------------------------------------------------------------------------------- 1 | Osano -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ovh.svg: -------------------------------------------------------------------------------- 1 | OVH -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/packer.svg: -------------------------------------------------------------------------------- 1 | Packer -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pagekit.svg: -------------------------------------------------------------------------------- 1 | Pagekit -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/palantir.svg: -------------------------------------------------------------------------------- 1 | Palantir -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/paloaltonetworks.svg: -------------------------------------------------------------------------------- 1 | Palo Alto Networks -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pandas.svg: -------------------------------------------------------------------------------- 1 | pandas -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pandora.svg: -------------------------------------------------------------------------------- 1 | Pandora -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/paperswithcode.svg: -------------------------------------------------------------------------------- 1 | Papers With Code -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/parrotsecurity.svg: -------------------------------------------------------------------------------- 1 | Parrot Security -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/passport.svg: -------------------------------------------------------------------------------- 1 | Passport -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/patreon.svg: -------------------------------------------------------------------------------- 1 | Patreon -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/payloadcms.svg: -------------------------------------------------------------------------------- 1 | Payload CMS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/peakdesign.svg: -------------------------------------------------------------------------------- 1 | Peak Design -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/peertube.svg: -------------------------------------------------------------------------------- 1 | PeerTube -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pexels.svg: -------------------------------------------------------------------------------- 1 | Pexels -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pinboard.svg: -------------------------------------------------------------------------------- 1 | Pinboard -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pino.svg: -------------------------------------------------------------------------------- 1 | pino -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pixelfed.svg: -------------------------------------------------------------------------------- 1 | Pixelfed -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pkgsrc.svg: -------------------------------------------------------------------------------- 1 | pkgsrc -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/planetscale.svg: -------------------------------------------------------------------------------- 1 | PlanetScale -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/platformdotsh.svg: -------------------------------------------------------------------------------- 1 | Platform.sh -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/playcanvas.svg: -------------------------------------------------------------------------------- 1 | PlayCanvas -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/playerdotme.svg: -------------------------------------------------------------------------------- 1 | Player.me -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/playstation2.svg: -------------------------------------------------------------------------------- 1 | PlayStation 2 -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/playstationportable.svg: -------------------------------------------------------------------------------- 1 | PlayStation Portable -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pleroma.svg: -------------------------------------------------------------------------------- 1 | Pleroma -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pnpm.svg: -------------------------------------------------------------------------------- 1 | pnpm -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/poetry.svg: -------------------------------------------------------------------------------- 1 | Poetry -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/polestar.svg: -------------------------------------------------------------------------------- 1 | Polestar -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/polymerproject.svg: -------------------------------------------------------------------------------- 1 | Polymer Project -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/portswigger.svg: -------------------------------------------------------------------------------- 1 | PortSwigger -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/prefect.svg: -------------------------------------------------------------------------------- 1 | Prefect -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/printables.svg: -------------------------------------------------------------------------------- 1 | Printables -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/privatedivision.svg: -------------------------------------------------------------------------------- 1 | Private Division -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/prosieben.svg: -------------------------------------------------------------------------------- 1 | ProSieben -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/puppet.svg: -------------------------------------------------------------------------------- 1 | Puppet -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/purism.svg: -------------------------------------------------------------------------------- 1 | Purism -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/pyup.svg: -------------------------------------------------------------------------------- 1 | PyUp -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/quarto.svg: -------------------------------------------------------------------------------- 1 | Quarto -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/quicktime.svg: -------------------------------------------------------------------------------- 1 | QuickTime -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/quora.svg: -------------------------------------------------------------------------------- 1 | Quora -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/radar.svg: -------------------------------------------------------------------------------- 1 | Radar -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/radixui.svg: -------------------------------------------------------------------------------- 1 | Radix UI -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/rakuten.svg: -------------------------------------------------------------------------------- 1 | Rakuten -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/razorpay.svg: -------------------------------------------------------------------------------- 1 | Razorpay -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/red.svg: -------------------------------------------------------------------------------- 1 | Red -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/renault.svg: -------------------------------------------------------------------------------- 1 | Renault -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/replicate.svg: -------------------------------------------------------------------------------- 1 | Replicate -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/replit.svg: -------------------------------------------------------------------------------- 1 | Replit -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/reverbnation.svg: -------------------------------------------------------------------------------- 1 | ReverbNation -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/riotgames.svg: -------------------------------------------------------------------------------- 1 | Riot Games -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/riseup.svg: -------------------------------------------------------------------------------- 1 | Riseup -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/roblox.svg: -------------------------------------------------------------------------------- 1 | Roblox -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/robloxstudio.svg: -------------------------------------------------------------------------------- 1 | Roblox Studio -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/rockylinux.svg: -------------------------------------------------------------------------------- 1 | Rocky Linux -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/rootsbedrock.svg: -------------------------------------------------------------------------------- 1 | Roots Bedrock -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/rtlzwei.svg: -------------------------------------------------------------------------------- 1 | RTLZWEI -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/rubygems.svg: -------------------------------------------------------------------------------- 1 | RubyGems -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ruff.svg: -------------------------------------------------------------------------------- 1 | Ruff -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/rundeck.svg: -------------------------------------------------------------------------------- 1 | Rundeck -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/sailsdotjs.svg: -------------------------------------------------------------------------------- 1 | Sails.js -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/saltproject.svg: -------------------------------------------------------------------------------- 1 | Salt Project -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/saopaulometro.svg: -------------------------------------------------------------------------------- 1 | São Paulo Metro -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/semanticweb.svg: -------------------------------------------------------------------------------- 1 | Semantic Web -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/serverless.svg: -------------------------------------------------------------------------------- 1 | Serverless -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/shutterstock.svg: -------------------------------------------------------------------------------- 1 | Shutterstock -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/sifive.svg: -------------------------------------------------------------------------------- 1 | SiFive -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/simpleanalytics.svg: -------------------------------------------------------------------------------- 1 | Simple Analytics -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/siyuan.svg: -------------------------------------------------------------------------------- 1 | SiYuan -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/skaffold.svg: -------------------------------------------------------------------------------- 1 | Skaffold -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/slashdot.svg: -------------------------------------------------------------------------------- 1 | Slashdot -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/slickpic.svg: -------------------------------------------------------------------------------- 1 | SlickPic -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/snapcraft.svg: -------------------------------------------------------------------------------- 1 | Snapcraft -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/snowpack.svg: -------------------------------------------------------------------------------- 1 | Snowpack -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/socket.svg: -------------------------------------------------------------------------------- 1 | Socket -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/sourcehut.svg: -------------------------------------------------------------------------------- 1 | SourceHut -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/spacex.svg: -------------------------------------------------------------------------------- 1 | SpaceX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/sparkar.svg: -------------------------------------------------------------------------------- 1 | Spark AR -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/spdx.svg: -------------------------------------------------------------------------------- 1 | SPDX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/spectrum.svg: -------------------------------------------------------------------------------- 1 | Spectrum -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/spinrilla.svg: -------------------------------------------------------------------------------- 1 | Spinrilla -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/spreadshirt.svg: -------------------------------------------------------------------------------- 1 | Spreadshirt -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/spreaker.svg: -------------------------------------------------------------------------------- 1 | Spreaker -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/squareenix.svg: -------------------------------------------------------------------------------- 1 | Square Enix -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/stackblitz.svg: -------------------------------------------------------------------------------- 1 | StackBlitz -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/steamdeck.svg: -------------------------------------------------------------------------------- 1 | Steam Deck -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/stencil.svg: -------------------------------------------------------------------------------- 1 | Stencil -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/stitcher.svg: -------------------------------------------------------------------------------- 1 | Stitcher -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/stockx.svg: -------------------------------------------------------------------------------- 1 | StockX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/strava.svg: -------------------------------------------------------------------------------- 1 | Strava -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/streamlit.svg: -------------------------------------------------------------------------------- 1 | Streamlit -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/substack.svg: -------------------------------------------------------------------------------- 1 | Substack -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/suckless.svg: -------------------------------------------------------------------------------- 1 | suckless -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/suno.svg: -------------------------------------------------------------------------------- 1 | Suno -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/sunrise.svg: -------------------------------------------------------------------------------- 1 | Sunrise -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/supabase.svg: -------------------------------------------------------------------------------- 1 | Supabase -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/suzuki.svg: -------------------------------------------------------------------------------- 1 | Suzuki -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/task.svg: -------------------------------------------------------------------------------- 1 | Task -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tasmota.svg: -------------------------------------------------------------------------------- 1 | Tasmota -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/techcrunch.svg: -------------------------------------------------------------------------------- 1 | TechCrunch -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/telegraph.svg: -------------------------------------------------------------------------------- 1 | Telegraph -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tensorflow.svg: -------------------------------------------------------------------------------- 1 | TensorFlow -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/teratail.svg: -------------------------------------------------------------------------------- 1 | teratail -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/terraform.svg: -------------------------------------------------------------------------------- 1 | Terraform -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/testcafe.svg: -------------------------------------------------------------------------------- 1 | TestCafe -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/thefinals.svg: -------------------------------------------------------------------------------- 1 | THE FINALS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/thurgauerkantonalbank.svg: -------------------------------------------------------------------------------- 1 | Thurgauer Kantonalbank -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ticktick.svg: -------------------------------------------------------------------------------- 1 | TickTick -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tidal.svg: -------------------------------------------------------------------------------- 1 | Tidal -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tistory.svg: -------------------------------------------------------------------------------- 1 | Tistory -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tmux.svg: -------------------------------------------------------------------------------- 1 | tmux -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/toggltrack.svg: -------------------------------------------------------------------------------- 1 | Toggl Track -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/toml.svg: -------------------------------------------------------------------------------- 1 | TOML -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/topdotgg.svg: -------------------------------------------------------------------------------- 1 | Top.gg -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/toptal.svg: -------------------------------------------------------------------------------- 1 | Toptal -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tradingview.svg: -------------------------------------------------------------------------------- 1 | TradingView -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/trailforks.svg: -------------------------------------------------------------------------------- 1 | Trailforks -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/transportforireland.svg: -------------------------------------------------------------------------------- 1 | Transport for Ireland -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tricentis.svg: -------------------------------------------------------------------------------- 1 | Tricentis -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/truenas.svg: -------------------------------------------------------------------------------- 1 | TrueNAS -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/trustpilot.svg: -------------------------------------------------------------------------------- 1 | Trustpilot -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/tvtime.svg: -------------------------------------------------------------------------------- 1 | TV Time -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/twinmotion.svg: -------------------------------------------------------------------------------- 1 | Twinmotion -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/twitch.svg: -------------------------------------------------------------------------------- 1 | Twitch -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/uikit.svg: -------------------------------------------------------------------------------- 1 | UIkit -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/undertale.svg: -------------------------------------------------------------------------------- 1 | Undertale -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/unraid.svg: -------------------------------------------------------------------------------- 1 | Unraid -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/unsplash.svg: -------------------------------------------------------------------------------- 1 | Unsplash -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/upptime.svg: -------------------------------------------------------------------------------- 1 | Upptime -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/uv.svg: -------------------------------------------------------------------------------- 1 | uv -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/v2ex.svg: -------------------------------------------------------------------------------- 1 | V2EX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vagrant.svg: -------------------------------------------------------------------------------- 1 | Vagrant -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vbulletin.svg: -------------------------------------------------------------------------------- 1 | vBulletin -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vectorlogozone.svg: -------------------------------------------------------------------------------- 1 | Vector Logo Zone -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vega.svg: -------------------------------------------------------------------------------- 1 | Vega -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vercel.svg: -------------------------------------------------------------------------------- 1 | Vercel -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/verizon.svg: -------------------------------------------------------------------------------- 1 | Verizon -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/viaplay.svg: -------------------------------------------------------------------------------- 1 | Viaplay -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/viblo.svg: -------------------------------------------------------------------------------- 1 | Viblo -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/virustotal.svg: -------------------------------------------------------------------------------- 1 | VirusTotal -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vitess.svg: -------------------------------------------------------------------------------- 1 | Vitess -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vonage.svg: -------------------------------------------------------------------------------- 1 | Vonage -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vorondesign.svg: -------------------------------------------------------------------------------- 1 | Voron Design -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vuedotjs.svg: -------------------------------------------------------------------------------- 1 | Vue.js -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/vuetify.svg: -------------------------------------------------------------------------------- 1 | Vuetify -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/warp.svg: -------------------------------------------------------------------------------- 1 | Warp -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/wazirx.svg: -------------------------------------------------------------------------------- 1 | WazirX -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/webflow.svg: -------------------------------------------------------------------------------- 1 | Webflow -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/webgpu.svg: -------------------------------------------------------------------------------- 1 | WebGPU -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/westernunion.svg: -------------------------------------------------------------------------------- 1 | Western Union -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/wgpu.svg: -------------------------------------------------------------------------------- 1 | wgpu -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/wise.svg: -------------------------------------------------------------------------------- 1 | Wise -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/wish.svg: -------------------------------------------------------------------------------- 1 | Wish -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/x.svg: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/xdadevelopers.svg: -------------------------------------------------------------------------------- 1 | XDA Developers -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/xsplit.svg: -------------------------------------------------------------------------------- 1 | XSplit -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/xstate.svg: -------------------------------------------------------------------------------- 1 | XState -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/ycombinator.svg: -------------------------------------------------------------------------------- 1 | Y Combinator -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/yeti.svg: -------------------------------------------------------------------------------- 1 | Yeti -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/yubico.svg: -------------------------------------------------------------------------------- 1 | Yubico -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zcash.svg: -------------------------------------------------------------------------------- 1 | Zcash -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zend.svg: -------------------------------------------------------------------------------- 1 | Zend -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zendesk.svg: -------------------------------------------------------------------------------- 1 | Zendesk -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zerodha.svg: -------------------------------------------------------------------------------- 1 | Zerodha -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zig.svg: -------------------------------------------------------------------------------- 1 | Zig -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zincsearch.svg: -------------------------------------------------------------------------------- 1 | ZincSearch -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zorin.svg: -------------------------------------------------------------------------------- 1 | Zorin -------------------------------------------------------------------------------- /src/assets/icons/simpleicons/zotero.svg: -------------------------------------------------------------------------------- 1 | Zotero -------------------------------------------------------------------------------- /src/assets/search-engines/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/bing.png -------------------------------------------------------------------------------- /src/assets/search-engines/brave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/brave.png -------------------------------------------------------------------------------- /src/assets/search-engines/ecosia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/ecosia.png -------------------------------------------------------------------------------- /src/assets/search-engines/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/google.png -------------------------------------------------------------------------------- /src/assets/search-engines/kagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/kagi.png -------------------------------------------------------------------------------- /src/assets/search-engines/startpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/startpage.png -------------------------------------------------------------------------------- /src/assets/search-engines/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/yahoo.png -------------------------------------------------------------------------------- /src/assets/search-engines/yandex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/search-engines/yandex.png -------------------------------------------------------------------------------- /src/assets/wallpapers/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhu08/mtab/a7f40e423a49025c95171b4a0433b7d21a09b3cf/src/assets/wallpapers/default.png -------------------------------------------------------------------------------- /src/config-utils/scripts/init.ts: -------------------------------------------------------------------------------- 1 | import { loadPage } from "src/config-utils/scripts/load-page"; 2 | 3 | loadPage(); 4 | -------------------------------------------------------------------------------- /src/newtab/scripts/init.ts: -------------------------------------------------------------------------------- 1 | import { loadPage } from "src/newtab/scripts/load-page"; 2 | 3 | loadPage(); 4 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/bookmarks/open-folder.ts: -------------------------------------------------------------------------------- 1 | export const openFolder = (currFolderAreaEl: HTMLDivElement, openfolderAreaEl: HTMLDivElement) => { 2 | currFolderAreaEl.classList.replace("grid", "hidden"); 3 | currFolderAreaEl.setAttribute("folder-state", "closed"); 4 | openfolderAreaEl.classList.replace("hidden", "grid"); 5 | openfolderAreaEl.setAttribute("folder-state", "open"); 6 | }; 7 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/favicon-url.ts: -------------------------------------------------------------------------------- 1 | export const getFaviconURL = (url: string, source: "duckduckgo" | "google") => { 2 | if (!url) return ""; 3 | 4 | if (source === "duckduckgo") 5 | return `https://icons.duckduckgo.com/ip3/${new URL(url).hostname}.ico`; 6 | else return `https://www.google.com/s2/favicons?domain=${encodeURIComponent(url)}&sz=256`; 7 | }; 8 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/fix-disappearing-ui.ts: -------------------------------------------------------------------------------- 1 | export const fixDisappearingUI = () => { 2 | // for user clicks on bookmark ui disappears 3 | window.addEventListener("pageshow", (e) => { 4 | if (e.persisted) { 5 | window.location.reload(); 6 | } 7 | }); 8 | }; 9 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/get-font-name.ts: -------------------------------------------------------------------------------- 1 | export const getFontNameFromURL = (url: string) => { 2 | const urlParams = new URLSearchParams(url.split("?")[1]); 3 | const fontFamily = urlParams.get("family"); 4 | if (fontFamily) return fontFamily.split(":")[0].replace(/\+/g, " "); // replace '+' with spaces to get the proper font name 5 | 6 | return null; 7 | }; 8 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/hide-cover.ts: -------------------------------------------------------------------------------- 1 | import { coverEl } from "src/newtab/scripts/ui"; 2 | 3 | export const hideCover = () => { 4 | coverEl.classList.add("opacity-0"); 5 | }; 6 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/insert-css.ts: -------------------------------------------------------------------------------- 1 | export const insertCSS = (css: string) => { 2 | const styleElement = document.createElement("style"); 3 | styleElement.type = "text/css"; 4 | styleElement.appendChild(document.createTextNode(css)); 5 | document.head.appendChild(styleElement); 6 | }; 7 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/search/handle-date.ts: -------------------------------------------------------------------------------- 1 | export const handleDate = (val: string) => { 2 | if (val === "date") { 3 | return { type: "date" } as const; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/set-title.ts: -------------------------------------------------------------------------------- 1 | export const setTitle = (title: string) => { 2 | document.title = title; 3 | }; 4 | -------------------------------------------------------------------------------- /src/newtab/scripts/utils/tab-key-pressed.ts: -------------------------------------------------------------------------------- 1 | let tabKeyPressed = false; 2 | 3 | document.addEventListener("keydown", (e) => e.key === "Tab" && (tabKeyPressed = true)); 4 | document.addEventListener("keyup", (e) => e.key === "Tab" && (tabKeyPressed = false)); 5 | 6 | export const getTabKeyPressed = () => tabKeyPressed; 7 | -------------------------------------------------------------------------------- /src/newtab/styles/tailwind.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /src/options/scripts/init.ts: -------------------------------------------------------------------------------- 1 | import { loadPage } from "src/options/scripts/load-page"; 2 | 3 | loadPage(); 4 | -------------------------------------------------------------------------------- /src/options/scripts/keybinds.ts: -------------------------------------------------------------------------------- 1 | import { saveConfig } from "src/options/scripts/utils/save-config"; 2 | 3 | export const listenToKeys = () => { 4 | document.addEventListener("keydown", (e) => { 5 | if (e.ctrlKey && e.key === "s") { 6 | e.preventDefault(); 7 | 8 | saveConfig(); 9 | } 10 | }); 11 | }; 12 | -------------------------------------------------------------------------------- /src/options/scripts/oconfig.ts: -------------------------------------------------------------------------------- 1 | export const oconfig = { 2 | inputBorderClass: "border-pink-500" 3 | }; 4 | -------------------------------------------------------------------------------- /src/options/scripts/utils/fill-helpers/fill-options.ts: -------------------------------------------------------------------------------- 1 | import { Config } from "src/utils/config"; 2 | import { optionsShowOptionsButtonCheckboxEl } from "src/options/scripts/ui"; 3 | 4 | export const fillOptionsInputs = (config: Config) => { 5 | optionsShowOptionsButtonCheckboxEl.checked = config.options.showOptionsButton; 6 | }; 7 | -------------------------------------------------------------------------------- /src/options/scripts/utils/fill-helpers/fill-user.ts: -------------------------------------------------------------------------------- 1 | import { Config } from "src/utils/config"; 2 | import { usernameInputEl } from "src/options/scripts/ui"; 3 | 4 | export const fillUserInputs = (config: Config) => { 5 | usernameInputEl.value = config.user.name; 6 | }; 7 | -------------------------------------------------------------------------------- /src/options/scripts/utils/get-selected-button.ts: -------------------------------------------------------------------------------- 1 | export const getSelectedButton = (btnOptionType: string): HTMLButtonElement => { 2 | return document.querySelector( 3 | `button[btn-option-type="${btnOptionType}"][selected="yes"]` 4 | ) as HTMLButtonElement; 5 | }; 6 | -------------------------------------------------------------------------------- /src/options/scripts/utils/save-helpers/save-name.ts: -------------------------------------------------------------------------------- 1 | import { Config } from "src/utils/config"; 2 | import { usernameInputEl } from "src/options/scripts/ui"; 3 | 4 | export const saveNameToDraft = (draft: Config) => { 5 | draft.user.name = usernameInputEl.value; 6 | }; 7 | -------------------------------------------------------------------------------- /src/options/scripts/utils/save-helpers/save-options.ts: -------------------------------------------------------------------------------- 1 | import { Config } from "src/utils/config"; 2 | import { optionsShowOptionsButtonCheckboxEl } from "src/options/scripts/ui"; 3 | 4 | export const saveOptionsSettingsToDraft = (draft: Config) => { 5 | draft.options.showOptionsButton = optionsShowOptionsButtonCheckboxEl.checked; 6 | }; 7 | -------------------------------------------------------------------------------- /src/utils/genid.ts: -------------------------------------------------------------------------------- 1 | import { v4 as uuidv4 } from "uuid"; 2 | 3 | export const genid = () => { 4 | return uuidv4().replace(/-/g, ""); 5 | }; 6 | -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- 1 | export const logger = { 2 | log: (...args: any[]) => { 3 | console.log("[MTAB]", ...args); 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /src/utils/modify.ts: -------------------------------------------------------------------------------- 1 | export function modifyNestedObject(obj: T, modifier: (draft: T) => void): T { 2 | const draft = { ...obj }; 3 | modifier(draft); 4 | 5 | return draft; 6 | } 7 | -------------------------------------------------------------------------------- /src/utils/user-agent.ts: -------------------------------------------------------------------------------- 1 | export const getUserAgent = () => { 2 | if (navigator.userAgent.indexOf("Chrome") !== -1) return "chrome"; 3 | else if (navigator.userAgent.indexOf("Firefox") !== -1) return "firefox"; 4 | else return "unknown"; 5 | }; 6 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./src/**/*.{html,js,ts,jsx,tsx}"], 4 | theme: { 5 | extend: {} 6 | }, 7 | plugins: [] 8 | }; 9 | --------------------------------------------------------------------------------